X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fconfig.h;h=5c87eedf98d78644d3bf742f4791be7b697b6832;hb=06678c3bb61404c483e4b9c39eaa7e7fb3f40c62;hp=1b7f853b21d11312ec3cecaeea0a8e7b21ac7bc6;hpb=bb5c048950a011f181cb3235ed2b0b2677869171;p=builder.git diff --git a/source/config.h b/source/config.h index 1b7f853..5c87eed 100644 --- a/source/config.h +++ b/source/config.h @@ -1,21 +1,14 @@ -/* $Id$ - -This file is part of builder -Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - #ifndef CONFIG_H_ #define CONFIG_H_ #include #include #include -#include +#include #include #include "misc.h" -class Package; +class SourcePackage; /** Manages configuration for a package. A configuration may have an arbitary @@ -24,9 +17,7 @@ amount of options, as well as a modification time (mtime). class Config { public: - /** - A single configuration option. - */ + /** A single configuration option. */ struct Option { std::string name; @@ -36,35 +27,57 @@ public: Option(const std::string &, const std::string &, const std::string &); }; + typedef std::map OptionMap; - 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::DataFile::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; Msp::Time::TimeStamp mtime; bool freeze_mtime; + 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 &); + /** 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; } + + /** 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 &); + + /** Expands any variable references in options. */ + void finish(); + + void save() const; +private: bool set_option(const std::string &, const std::string &); void load(); };