X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2FMoof%2FSettings.cc;h=9f0538b3b827c56e4d6037a79edd2f659e62eaba;hb=4f62ce947db282f0bbf4d49b3aafb83d7cf51adc;hp=6883ddc4f852d3edd4191957e81529f87f155c8a;hpb=8ad81a8282ce6e9e488a453e6bcd05fbc09715dc;p=chaz%2Fyoink diff --git a/src/Moof/Settings.cc b/src/Moof/Settings.cc index 6883ddc..9f0538b 100644 --- a/src/Moof/Settings.cc +++ b/src/Moof/Settings.cc @@ -28,23 +28,18 @@ #include #include // getenv -#include // strchr -#include - -#include "Log.hh" #include "Settings.hh" namespace Mf { -Settings::Settings(int argc, char* argv[]) +Settings::~Settings() { - parseArgs(argc, argv); + save(); } - Settings& Settings::getInstance() { static Settings settings; @@ -56,44 +51,20 @@ void Settings::parseArgs(int argc, char* argv[]) { for (int i = 1; i < argc; ++i) { - char* where = strchr(argv[i], (int)'='); - - if (where) - { - std::string key(argv[i], (size_t)(where - argv[i])); - std::string stringValue(where + 1); - - std::stringstream stream; - stream << stringValue << std::endl; - - Deserializer deserializer(stream); - - try - { - SerializableP value(deserializer.deserialize()); - map_[key] = value; - } - catch (std::exception e) - { - // it doesn't deserialize to anything we know, so just store it - // as a string - map_[key] = SerializableP(new SerializableBasic(stringValue)); - } - } + mScript.doString(argv[i]); } } -void Settings::loadFromFile(const std::string& filePath, bool precedence) +void Settings::loadFromFile(const std::string& filePath) { std::vector paths; boost::split(paths, filePath, boost::is_any_of(":")); - loadFromFiles(paths, precedence); + loadFromFiles(paths); } -void Settings::loadFromFiles(const std::vector& filePaths, - bool precedence) +void Settings::loadFromFiles(const std::vector& filePaths) { std::vector::const_iterator it; @@ -106,37 +77,41 @@ void Settings::loadFromFiles(const std::vector& filePaths, if (home) { boost::replace_all(path, "$HOME", home); - } - try - { - Deserializer deserializer(*it, true); - - SerializableP obj = deserializer.deserialize(); - Serializable::Map map; - - if (obj && obj->get(map)) - { - if (!precedence) - { - map_.insert(map.begin(), map.end()); - } - else - { - map.insert(map_.begin(), map_.end()); - map_ = map; - } - } + //Mf::logDebug("Copying global settings..."); + //mUserFile = path; + //mGlobals.pushCopy(); + //mScript.set("globals", Script::REGISTRY); } - catch (Deserializer::Exception e) + + if (mScript.doFile(path) != Script::SUCCESS) { - logWarning("cannot load settings from %s because an exception was" - "thrown: %s", (*it).c_str(), e.what()); + std::string str; + mScript[-1].get(str); + logWarning(str); + mScript.clear(); } } } +void Settings::clear() +{ + mScript.reset(); +} + + +void Settings::saveAs(const std::string& filePath) +{ + mUserFile = filePath; + save(); +} + +void Settings::save() const +{ +} + + } // namepsace Mf /** vim: set ts=4 sw=4 tw=80: *************************************************/