]> git.tdb.fi Git - builder.git/blobdiff - source/config.h
Save caches before starting the build
[builder.git] / source / config.h
index 2767f8263a827a67693ee18376d605e842077530..3257794671530e119edcc9de67a9f78633d2d0c6 100644 (file)
@@ -3,11 +3,12 @@
 
 #include <map>
 #include <string>
-#include <msp/parser/loader.h>
-#include <msp/path/path.h>
+#include <msp/datafile/loader.h>
+#include <msp/fs/path.h>
 #include <msp/time/timestamp.h>
+#include "feature.h"
 
-typedef std::map<std::string, std::string> RawOptionMap;
+class SourcePackage;
 
 /**
 Manages configuration for a package.  A configuration may have an arbitary
@@ -16,47 +17,51 @@ amount of options, as well as a modification time (mtime).
 class Config
 {
 public:
-       /**
-       A single configuration option.
-       */
-       struct Option
+       /** A single configuration option. */
+       struct Option: public Feature
        {
-               std::string name;
-               std::string defv;
-               std::string descr;
                std::string value;
 
-               Option(const std::string &, const std::string &, const std::string &);
+               Option(const Feature &);
        };
+
        typedef std::map<std::string, Option> OptionMap;
+       typedef std::map<std::string, std::string> InputOptions;
 
-       void add_option(const std::string &, const std::string &, const std::string &);
-       const Option &get_option(const std::string &) const;
-       const OptionMap &get_options() const          { return options; }
-       const Msp::Time::TimeStamp &get_mtime() const { return mtime; }
-       bool is_option(const std::string &) const;
-       void select_last_profile();
-       void select_profile(const std::string &);
-       bool update(const RawOptionMap &);
-       void set_source(const Msp::Path::Path &s)     { source=s; }
-       void save() const;
 private:
-       class Loader: public Msp::Parser::Loader
+       class Loader: public Msp::DataFile::ObjectLoader<Config>
        {
        public:
                Loader(Config &);
        private:
-               Config &conf;
-               
                void option(const std::string &, const std::string &);
        };
-       
-       Msp::Path::Path source;
-       OptionMap       options;
+
+       SourcePackage &package;
+       OptionMap options;
+       InputOptions pending_options;
        Msp::Time::TimeStamp mtime;
+       mutable bool changed;
+
+public:
+       Config(SourcePackage &);
+
+       /** Adds a configuration option based on a feature. */
+       const Option &add_option(const Feature &);
 
        bool set_option(const std::string &, const std::string &);
+
+       /** Checks whether an option exists. */
+       bool is_option(const std::string &) const;
+
+       /** Gets a configuration option by name. */
+       const Option &get_option(const std::string &) const;
+
+       const OptionMap &get_options() const { return options; }
+       const Msp::Time::TimeStamp &get_mtime() const { return mtime; }
+
        void load();
+       void save() const;
 };
 
 #endif