]> git.tdb.fi Git - builder.git/blobdiff - source/config.h
Save caches before starting the build
[builder.git] / source / config.h
index 8372af90f99c330c197a0343000b63d481df0013..3257794671530e119edcc9de67a9f78633d2d0c6 100644 (file)
@@ -6,7 +6,7 @@
 #include <msp/datafile/loader.h>
 #include <msp/fs/path.h>
 #include <msp/time/timestamp.h>
-#include "misc.h"
+#include "feature.h"
 
 class SourcePackage;
 
@@ -18,14 +18,11 @@ class Config
 {
 public:
        /** A single configuration option. */
-       struct 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;
@@ -44,13 +41,18 @@ private:
        OptionMap options;
        InputOptions pending_options;
        Msp::Time::TimeStamp mtime;
-       bool changed;
+       mutable bool changed;
 
 public:
        Config(SourcePackage &);
 
-       /** Adds a configuration option with name, default value and description. */
-       void add_option(const std::string &, const std::string &, const std::string &);
+       /** 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;
@@ -58,12 +60,8 @@ public:
        const OptionMap &get_options() const { return options; }
        const Msp::Time::TimeStamp &get_mtime() const { return mtime; }
 
-       /** Checks whether an option exists. */
-       bool is_option(const std::string &) const;
-
-       void save() const;
-       bool set_option(const std::string &, const std::string &);
        void load();
+       void save() const;
 };
 
 #endif