X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fconfig.h;h=1f7fa712839f5b5bdc346681e3a346c117aafba4;hb=HEAD;hp=2767f8263a827a67693ee18376d605e842077530;hpb=57bdb055acb0453c75b22cb64f35cc0e817a2827;p=builder.git diff --git a/source/config.h b/source/config.h deleted file mode 100644 index 2767f82..0000000 --- a/source/config.h +++ /dev/null @@ -1,62 +0,0 @@ -#ifndef CONFIG_H_ -#define CONFIG_H_ - -#include -#include -#include -#include -#include - -typedef std::map RawOptionMap; - -/** -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 - { - std::string name; - std::string defv; - std::string descr; - std::string value; - - Option(const std::string &, const std::string &, const std::string &); - }; - typedef std::map OptionMap; - - 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 - { - public: - Loader(Config &); - private: - Config &conf; - - void option(const std::string &, const std::string &); - }; - - Msp::Path::Path source; - OptionMap options; - Msp::Time::TimeStamp mtime; - - bool set_option(const std::string &, const std::string &); - void load(); -}; - -#endif