]> Dogcows Code - chaz/yoink/blobdiff - src/Moof/Settings.cc
new level-based controllers
[chaz/yoink] / src / Moof / Settings.cc
index 6883ddc4f852d3edd4191957e81529f87f155c8a..5a321b01be9e53da843e43887d6def5029336a83 100644 (file)
 
 #include <sstream>
 #include <cstdlib>             // getenv
-#include <cstring>             // strchr
 
-#include <boost/algorithm/string.hpp>
-
-#include "Log.hh"
 #include "Settings.hh"
 
 
 namespace Mf {
 
 
-Settings::Settings(int argc, char* argv[])
-{
-       parseArgs(argc, argv);
-}
-
-
 Settings& Settings::getInstance()
 {
        static Settings settings;
@@ -56,44 +46,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<Serializable::String>(stringValue));
-                       }
-               }
+               script_.doString(argv[i]);
        }
 }
 
 
-void Settings::loadFromFile(const std::string& filePath, bool precedence)
+void Settings::loadFromFile(const std::string& filePath)
 {
        std::vector<std::string> paths;
        boost::split(paths, filePath, boost::is_any_of(":"));
 
-       loadFromFiles(paths, precedence);
+       loadFromFiles(paths);
 }
 
-void Settings::loadFromFiles(const std::vector<std::string>& filePaths,
-               bool precedence)
+void Settings::loadFromFiles(const std::vector<std::string>& filePaths)
 {
        std::vector<std::string>::const_iterator it;
 
@@ -108,30 +74,12 @@ void Settings::loadFromFiles(const std::vector<std::string>& filePaths,
                        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;
-                               }
-                       }
-               }
-               catch (Deserializer::Exception e)
+               if (script_.doFile(path) != Script::SUCCESS)
                {
-                       logWarning("cannot load settings from %s because an exception was"
-                                       "thrown: %s", (*it).c_str(), e.what());
+                       std::string str;
+                       script_[-1].get(str);
+                       logScript("%s", str.c_str());
+                       script_.clear();
                }
        }
 }
This page took 0.019038 seconds and 4 git commands to generate.