]> Dogcows Code - chaz/yoink/blobdiff - src/Moof/Settings.cc
simplified win32 installer build script
[chaz/yoink] / src / Moof / Settings.cc
index d13302d729234f2f7c6aa5710646dae82cf8a53b..9f0538b3b827c56e4d6037a79edd2f659e62eaba 100644 (file)
@@ -28,9 +28,6 @@
 
 #include <sstream>
 #include <cstdlib>             // getenv
-#include <cstring>             // strchr
-
-#include <boost/algorithm/string.hpp>
 
 #include "Settings.hh"
 
 namespace Mf {
 
 
-Settings::Settings(int argc, char* argv[])
+Settings::~Settings()
+{
+       save();
+}
+
+Settings& Settings::getInstance()
 {
-       parseArgs(argc, argv);
+       static Settings settings;
+       return settings;
 }
 
 
 void Settings::parseArgs(int argc, char* argv[])
 {
-       for (int i = 1; i < argc; i++)
+       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
-                       {
-                               SerializablePtr 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] = SerializablePtr(new SerializableString(stringValue));
-                       }
-               }
+               mScript.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;
 
        char* home = getenv("HOME");
 
-       for (it = filePaths.begin(); it != filePaths.end(); it++)
+       for (it = filePaths.begin(); it != filePaths.end(); ++it)
        {
                std::string path = *it;
 
                if (home)
                {
-                       boost::replace_first(path, "$HOME", home);
-               }
-
-               Deserializer deserializer(*it, true);
+                       boost::replace_all(path, "$HOME", home);
 
-               std::cout << "Looking for a config file at " << path << std::endl;
-               try
-               {
-                       SerializablePtr obj = deserializer.deserialize();
-                       std::map<std::string,SerializablePtr> 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)
                {
-                       std::cerr << "Cannot load settings from " << *it <<
-                               " because an exception was thrown: " << e.what() << std::endl;
+                       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: *************************************************/
This page took 0.022839 seconds and 4 git commands to generate.