X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fconfig.cpp;h=69abe9d0b51b929d84a50ee08f3e9d7ef2bbb673;hb=HEAD;hp=8cabb56fa767dd64f8c199f309cbe0c6fe5c905c;hpb=bd61d7fbd0ba77356b6def1dd20f8cebe31de182;p=builder.git diff --git a/source/config.cpp b/source/config.cpp deleted file mode 100644 index 8cabb56..0000000 --- a/source/config.cpp +++ /dev/null @@ -1,108 +0,0 @@ -#include -#include -#include -#include -#include -#include -#include "builder.h" -#include "config.h" -#include "sourcepackage.h" - -using namespace std; -using namespace Msp; - -Config::Config(SourcePackage &p): - package(p), - changed(false) -{ } - -void Config::add_option(const string &n, const string &v, const string &d) -{ - Option opt(n, v, d); - if(pending_options.count(n)) - opt.value = pending_options[n]; - options.insert(OptionMap::value_type(n, opt)); -} - -const Config::Option &Config::get_option(const string &name) const -{ - return get_item(options, name); -} - -bool Config::is_option(const string &name) const -{ - return options.count(name); -} - -void Config::save() const -{ - if(!changed) - return; - - FS::Path fn = package.get_source()/".config"; - - package.get_builder().get_logger().log("files", format("Writing %s", fn)); - IO::BufferedFile out(fn.str(), IO::M_WRITE); - - for(OptionMap::const_iterator i=options.begin(); i!=options.end(); ++i) - IO::print(out, "option \"%s\" \"%s\";\n", i->second.name, i->second.value); -} - -bool Config::set_option(const string &opt, const string &val) -{ - bool result = false; - - OptionMap::iterator i = options.find(opt); - if(i!=options.end()) - { - if(i->second.value!=val) - { - result = true; - changed = true; - } - i->second.value = val; - } - - return result; -} - -void Config::load() -{ - FS::Path fn = package.get_source()/".config"; - - FS::Stat stat = FS::stat(fn); - if(stat) - { - package.get_builder().get_logger().log("files", format("Reading %s", fn)); - IO::BufferedFile in(fn.str()); - - mtime = stat.get_modify_time(); - - DataFile::Parser parser(in, fn.str()); - Loader loader(*this); - loader.load(parser); - } -} - - -Config::Option::Option(const string &n, const string &v, const string &d): - name(n), - defv(v), - descr(d), - value(v) -{ } - - -Config::Loader::Loader(Config &c): - DataFile::ObjectLoader(c) -{ - add("option", &Loader::option); -} - -void Config::Loader::option(const string &n, const string &v) -{ - if(obj.options.count(n)) - obj.set_option(n, v); - else - obj.pending_options[n] = v; -}