]> git.tdb.fi Git - builder.git/blobdiff - source/config.cpp
Refactor transitive dependencies to work on all targets
[builder.git] / source / config.cpp
diff --git a/source/config.cpp b/source/config.cpp
deleted file mode 100644 (file)
index 11092c1..0000000
+++ /dev/null
@@ -1,107 +0,0 @@
-#include <msp/core/maputils.h>
-#include <msp/fs/stat.h>
-#include <msp/fs/utils.h>
-#include <msp/io/file.h>
-#include <msp/io/print.h>
-#include <msp/time/utils.h>
-#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));
-}
-
-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;
-}
-
-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", 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);
-       }
-}
-
-void Config::save() const
-{
-       if(!changed)
-               return;
-
-       FS::Path fn = package.get_source_directory()/".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);
-}
-
-
-Config::Option::Option(const string &n, const string &v, const string &d):
-       name(n),
-       default_value(v),
-       description(d),
-       value(v)
-{ }
-
-
-Config::Loader::Loader(Config &c):
-       DataFile::ObjectLoader<Config>(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;
-}