X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fconfig.h;h=a82e53685c390b0fdc7e528b1a2ad9a71b3199b2;hb=3938f8030b1f62802decce19777ce70fdafaff10;hp=5c87eedf98d78644d3bf742f4791be7b697b6832;hpb=d701ca81b781cd061fd60244312b0316cf5bf4d9;p=builder.git diff --git a/source/config.h b/source/config.h index 5c87eed..a82e536 100644 --- a/source/config.h +++ b/source/config.h @@ -6,7 +6,7 @@ #include #include #include -#include "misc.h" +#include "feature.h" class SourcePackage; @@ -18,17 +18,14 @@ 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 OptionMap; + using InputOptions = std::map; private: class Loader: public Msp::DataFile::ObjectLoader @@ -40,46 +37,30 @@ private: }; SourcePackage &package; - OptionMap options; + std::map options; + InputOptions pending_options; Msp::Time::TimeStamp mtime; - bool freeze_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 &); - /** 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; } + bool set_option(const std::string &, const std::string &); /** Checks whether an option exists. */ bool is_option(const std::string &) const; - /** Selects the last profile used. If the profile cache file is not - present, the default profile is assumed. */ - void select_last_profile(); - - /** Selects a profile. */ - void select_profile(const std::string &); - - /** Processes options from the given raw option map. Nonexistent options - are ignored. If any options were changed, the mtime of the configuration is - updated to the current time. Return value indicates whether any options - were changed. */ - bool update(const StringMap &); + /** Gets a configuration option by name. */ + const Option &get_option(const std::string &) const; - /** Expands any variable references in options. */ - void finish(); + const std::map &get_options() const { return options; } + const Msp::Time::TimeStamp &get_mtime() const { return mtime; } - void save() const; -private: - bool set_option(const std::string &, const std::string &); void load(); + void save() const; }; #endif