X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fconfig.h;h=3257794671530e119edcc9de67a9f78633d2d0c6;hb=c7df14c38a87ceca13df47fa700d3f9fa250be91;hp=e35743a3050e5ff1c4c979be8b5b9d5d2c57fcbf;hpb=b6dcf65b5e1b99f6c65454358c7610f3e9c8af2b;p=builder.git diff --git a/source/config.h b/source/config.h index e35743a..3257794 100644 --- a/source/config.h +++ b/source/config.h @@ -3,12 +3,12 @@ #include #include -#include -#include +#include +#include #include -#include "misc.h" +#include "feature.h" -class Package; +class SourcePackage; /** Manages configuration for a package. A configuration may have an arbitary @@ -17,49 +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 OptionMap; + typedef std::map InputOptions; - Config(Package &); - 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 StringMap &); - void finish(); - void save() const; private: - class Loader: public Msp::Parser::Loader + class Loader: public Msp::DataFile::ObjectLoader { public: Loader(Config &); private: - Config &conf; - void option(const std::string &, const std::string &); }; - Package &package; - OptionMap options; + SourcePackage &package; + OptionMap options; + InputOptions pending_options; Msp::Time::TimeStamp mtime; - bool freeze_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