X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fconfig.cpp;h=36e7870683b3bfed9e1474306ee8adde2ce13a84;hb=c7df14c38a87ceca13df47fa700d3f9fa250be91;hp=61f7322e742ead72279f2d89a33f1012a4c8f497;hpb=cbb3c4c6aab7b04f7bd2178fb8f12846d532a472;p=builder.git diff --git a/source/config.cpp b/source/config.cpp index 61f7322..36e7870 100644 --- a/source/config.cpp +++ b/source/config.cpp @@ -1,24 +1,48 @@ -#include -#include -#include +#include +#include +#include +#include +#include #include +#include "builder.h" #include "config.h" +#include "sourcepackage.h" using namespace std; using namespace Msp; -void Config::add_option(const string &n, const string &v, const string &d) +Config::Config(SourcePackage &p): + package(p), + changed(false) +{ } + +const Config::Option &Config::add_option(const Feature &f) { - options.insert(OptionMap::value_type(n, Option(n, v, d))); + Option opt(f); + InputOptions::const_iterator i = pending_options.find(opt.name); + if(i!=pending_options.end()) + opt.value = i->second; + + return options.insert(OptionMap::value_type(opt.name, opt)).first->second; } -const Config::Option &Config::get_option(const string &name) const +bool Config::set_option(const string &opt, const string &val) { - OptionMap::const_iterator i=options.find(name); - if(i==options.end()) - throw Exception("Tried to access nonexistent option "+name); + bool result = false; + + OptionMap::iterator 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 i->second; + return result; } bool Config::is_option(const string &name) const @@ -26,65 +50,63 @@ bool Config::is_option(const string &name) const return options.count(name); } -bool Config::process(const RawOptionMap &opts) +const Config::Option &Config::get_option(const string &name) const { - bool changed=false; - for(RawOptionMap::const_iterator i=opts.begin(); i!=opts.end(); ++i) + return get_item(options, name); +} + +void Config::load() +{ + FS::Path fn = package.get_source_directory()/".config"; + FS::Stat stat = FS::stat(fn); + if(stat) { - OptionMap::iterator j=options.find(i->first); - if(j!=options.end()) - { - if(i->second!=j->second.value) - changed=true; - j->second.value=i->second; - } - } + package.get_builder().get_logger().log("files", format("Reading %s", fn)); + IO::BufferedFile in(fn.str()); - if(changed) - mtime=Time::now(); + mtime = stat.get_modify_time(); - return changed; + DataFile::Parser parser(in, fn.str()); + Loader loader(*this); + loader.load(parser); + } } -void Config::load(const Path::Path &fn) +void Config::save() const { - ifstream in(fn.str().c_str()); - if(!in) return; + if(!changed) + return; + + FS::Path fn = package.get_source_directory()/".config"; - struct stat st; - Path::stat(fn, st); - mtime=Time::TimeStamp::from_unixtime(st.st_mtime); + package.get_builder().get_logger().log("files", format("Writing %s", fn)); + IO::BufferedFile out(fn.str(), IO::M_WRITE); - Parser::Parser parser(in, fn.str()); - Loader loader(*this); - loader.load(parser); + for(OptionMap::const_iterator i=options.begin(); i!=options.end(); ++i) + IO::print(out, "option \"%s\" \"%s\";\n", i->second.name, i->second.value); + + changed = false; } -void Config::save(const Path::Path &fn) const + +Config::Option::Option(const Feature &f): + Feature(f), + value(default_value) { - ofstream out(fn.str().c_str()); - if(!out) return; - - for(OptionMap::const_iterator i=options.begin(); i!=options.end(); ++i) - out<<"option \""<second.name<<"\" \""<second.value<<"\";\n"; + name = "with_"+name; } -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): - conf(c) + DataFile::ObjectLoader(c) { add("option", &Loader::option); } void Config::Loader::option(const string &n, const string &v) { - OptionMap::iterator i=conf.options.find(n); - if(i!=conf.options.end()) - i->second.value=v; + if(obj.options.count(n)) + obj.set_option(n, v); + else + obj.pending_options[n] = v; }