X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fconfig.h;h=1f7fa712839f5b5bdc346681e3a346c117aafba4;hb=HEAD;hp=a82e53685c390b0fdc7e528b1a2ad9a71b3199b2;hpb=3938f8030b1f62802decce19777ce70fdafaff10;p=builder.git diff --git a/source/config.h b/source/config.h deleted file mode 100644 index a82e536..0000000 --- a/source/config.h +++ /dev/null @@ -1,66 +0,0 @@ -#ifndef CONFIG_H_ -#define CONFIG_H_ - -#include -#include -#include -#include -#include -#include "feature.h" - -class SourcePackage; - -/** -Manages configuration for a package. A configuration may have an arbitary -amount of options, as well as a modification time (mtime). -*/ -class Config -{ -public: - /** A single configuration option. */ - struct Option: public Feature - { - std::string value; - - Option(const Feature &); - }; - - using InputOptions = std::map; - -private: - class Loader: public Msp::DataFile::ObjectLoader - { - public: - Loader(Config &); - private: - void option(const std::string &, const std::string &); - }; - - SourcePackage &package; - std::map 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 std::map &get_options() const { return options; } - const Msp::Time::TimeStamp &get_mtime() const { return mtime; } - - void load(); - void save() const; -}; - -#endif