X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fconfig.h;h=ba23462c00e53a63196fcb0cb08fdae72fa40d2a;hb=654de39b62a9a58fd8e1b5a557361d628345788b;hp=2767f8263a827a67693ee18376d605e842077530;hpb=57bdb055acb0453c75b22cb64f35cc0e817a2827;p=builder.git diff --git a/source/config.h b/source/config.h index 2767f82..ba23462 100644 --- a/source/config.h +++ b/source/config.h @@ -1,13 +1,21 @@ +/* $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" -typedef std::map RawOptionMap; +class SourcePackage; /** Manages configuration for a package. A configuration may have an arbitary @@ -30,6 +38,7 @@ public: }; typedef std::map OptionMap; + Config(SourcePackage &); 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; } @@ -37,23 +46,24 @@ public: 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; } + bool update(const StringMap &); + void finish(); void save() const; private: - class Loader: public Msp::Parser::Loader + class Loader: public Msp::DataFile::Loader { public: Loader(Config &); private: Config &conf; - + void option(const std::string &, const std::string &); }; - - Msp::Path::Path source; + + SourcePackage &package; OptionMap options; Msp::Time::TimeStamp mtime; + bool freeze_mtime; bool set_option(const std::string &, const std::string &); void load();