X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fconfig.cpp;h=69abe9d0b51b929d84a50ee08f3e9d7ef2bbb673;hb=HEAD;hp=74d582e7017ddd62bd7189b10c89faabe96f5d6f;hpb=5e00719d0c63e306786ff36df61797cdbc86f3e9;p=builder.git diff --git a/source/config.cpp b/source/config.cpp deleted file mode 100644 index 74d582e..0000000 --- a/source/config.cpp +++ /dev/null @@ -1,114 +0,0 @@ -#include -#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) -{ } - -const Config::Option &Config::add_option(const Feature &f) -{ - Option opt(f); - auto i = pending_options.find(opt.name); - if(i!=pending_options.end()) - opt.value = i->second; - - return options.insert({ opt.name, opt }).first->second; -} - -bool Config::set_option(const string &opt, const string &val) -{ - bool result = false; - - auto i = options.find(opt); - if(i!=options.end()) - { - if(i->second.value!=val) - { - result = true; - changed = true; - mtime = Time::now(); - } - i->second.value = val; - } - - return result; -} - -bool Config::is_option(const string &name) const -{ - return options.count(name); -} - -const Config::Option &Config::get_option(const string &name) const -{ - return get_item(options, name); -} - -void Config::load() -{ - FS::Path fn = package.get_source_directory()/".config"; - FS::Stat stat = FS::stat(fn); - if(stat) - { - package.get_builder().get_logger().log("files", "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); - } -} - -void Config::save() const -{ - if(!changed) - return; - - FS::Path fn = package.get_source_directory()/".config"; - - package.get_builder().get_logger().log("files", "Writing %s", fn); - IO::BufferedFile out(fn.str(), IO::M_WRITE); - DataFile::Writer writer(out); - - for(const auto &kvp: options) - writer.write((DataFile::Statement("option"), kvp.second.name, kvp.second.value)); - - changed = false; -} - - -Config::Option::Option(const Feature &f): - Feature(f), - value(default_value) -{ - name = "with_"+name; -} - - -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; -}