/* Minetest Copyright (C) 2010-2013 celeron55, Perttu Ahola This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include "settings.h" #include "irrlichttypes_bloated.h" #include "exceptions.h" #include "jthread/jmutexautolock.h" #include "strfnd.h" #include #include #include #include "debug.h" #include "log.h" #include "util/serialize.h" #include "filesys.h" #include #include Settings::~Settings() { std::map::const_iterator it; for (it = m_settings.begin(); it != m_settings.end(); ++it) delete it->second.group; } Settings & Settings::operator += (const Settings &other) { update(other); return *this; } Settings & Settings::operator = (const Settings &other) { if (&other == this) return *this; JMutexAutoLock lock(m_mutex); JMutexAutoLock lock2(other.m_mutex); clearNoLock(); updateNoLock(other); return *this; } std::string Settings::sanitizeString(const std::string &value) { std::string str = value; for (const char *s = "\t\n\v\f\r\b =\""; *s; s++) str.erase(std::remove(str.begin(), str.end(), *s), str.end()); return str; } std::string Settings::getMultiline(std::istream &is) { std::string value; std::string line; while (is.good()) { std::getline(is, line); if (line == "\"\"\"") break; value += line; value.push_back('\n'); } size_t len = value.size(); if (len) value.erase(len - 1); return value; } bool Settings::parseConfigLines(std::istream &is, const std::string &end) { JMutexAutoLock lock(m_mutex); std::string line, name, value; while (is.good()) { std::getline(is, line); SettingsParseEvent event = parseConfigObject(line, end, name, value); switch (event) { case SPE_NONE: case SPE_INVALID: case SPE_COMMENT: break; case SPE_KVPAIR: m_settings[name] = SettingsEntry(value); break; case SPE_END: return true; case SPE_GROUP: { Settings *branch = new Settings; if (!branch->parseConfigLines(is, "}")) return false; m_settings[name] = SettingsEntry(branch); break; } case SPE_MULTILINE: m_settings[name] = SettingsEntry(getMultiline(is)); break; } } return end.empty(); } bool Settings::readConfigFile(const char *filename) { std::ifstream is(filename); if (!is.good()) return false; return parseConfigLines(is, ""); } void Settings::writeLines(std::ostream &os, u32 tab_depth) const { JMutexAutoLock lock(m_mutex); for (std::map::const_iterator it = m_settings.begin(); it != m_settings.end(); ++it) { bool is_multiline = it->second.value.find('\n') != std::string::npos; printValue(os, it->first, it->second, is_multiline, tab_depth); } } void Settings::printValue(std::ostream &os, const std::string &name, const SettingsEntry &entry, bool is_value_multiline, u32 tab_depth) { for (u32 i = 0; i != tab_depth; i++) os << "\t"; os << name << " = "; if (is_value_multiline) os << "\"\"\"\n" << entry.value << "\n\"\"\"\n"; else os << entry.value << "\n"; Settings *group = entry.group; if (group) { for (u32 i = 0; i != tab_depth; i++) os << "\t"; os << name << " = {\n"; group->writeLines(os, tab_depth + 1); for (u32 i = 0; i != tab_depth; i++) os << "\t"; os << "}\n"; } } bool Settings::updateConfigObject(std::istream &is, std::ostream &os, const std::string &end, u32 tab_depth) { std::map::const_iterator it; std::set settings_in_config; bool was_modified = false; bool end_found = false; std::string line, name, value; // Add any settings that exist in the config file with the current value // in the object if existing while (is.good() && !end_found) { std::getline(is, line); SettingsParseEvent event = parseConfigObject(line, end, name, value); switch (event) { case SPE_END: end_found = true; break; case SPE_KVPAIR: case SPE_MULTILINE: it = m_settings.find(name); if (it != m_settings.end()) { if (event == SPE_MULTILINE) value = getMultiline(is); if (value != it->second.value) { value = it->second.value; was_modified = true; } } settings_in_config.insert(name); printValue(os, name, SettingsEntry(value), event == SPE_MULTILINE, tab_depth); break; case SPE_GROUP: { Settings *group = NULL; it = m_settings.find(name); if (it != m_settings.end()) group = it->second.group; settings_in_config.insert(name); os << name << " = {\n"; if (group) { was_modified |= group->updateConfigObject(is, os, "}", tab_depth + 1); } else { Settings dummy_settings; dummy_settings.updateConfigObject(is, os, "}", tab_depth + 1); } for (u32 i = 0; i != tab_depth; i++) os << "\t"; os << "}\n"; break; } default: os << line << (is.eof() ? "" : "\n"); break; } } // Add any settings in the object that don't exist in the config file yet for (it = m_settings.begin(); it != m_settings.end(); ++it) { if (settings_in_config.find(it->first) != settings_in_config.end()) continue; was_modified = true; bool is_multiline = it->second.value.find('\n') != std::string::npos; printValue(os, it->first, it->second, is_multiline, tab_depth); } return was_modified; } bool Settings::updateConfigFile(const char *filename) { JMutexAutoLock lock(m_mutex); std::ifstream is(filename); std::ostringstream os(std::ios_base::binary); if (!updateConfigObject(is, os, "")) return true; if (!fs::safeWriteToFile(filename, os.str())) { errorstream << "Error writing configuration file: \"" << filename << "\"" << std::endl; return false; } return true; } bool Settings::parseCommandLine(int argc, char *argv[], std::map &allowed_options) { int nonopt_index = 0; for (int i = 1; i < argc; i++) { std::string arg_name = argv[i]; if (arg_name.substr(0, 2) != "--") { // If option doesn't start with -, read it in as nonoptX if (arg_name[0] != '-'){ std::string name = "nonopt"; name += itos(nonopt_index); set(name, arg_name); nonopt_index++; continue; } errorstream << "Invalid command-line parameter \"" << arg_name << "\": --