1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
/*
* Copyright (c) 2011 Kevin Smith
* Licensed under the GNU General Public License v3.
* See Documentation/Licenses/GPLv3.txt for more information.
*/
#include <Swiftob/Storage.h>
#include <boost/filesystem/operations.hpp>
#include <Swiften/Base/String.h>
#include <Swiften/Base/ByteArray.h>
#include <Swiften/Base/foreach.h>
typedef std::pair<std::string, std::string> Strings;
Storage::Storage(const std::string& path) : settingsPath_(boost::filesystem::path(path)) {
load();
}
Storage::Storage(const boost::filesystem::path& path) : settingsPath_(path) {
load();
}
void Storage::load() {
if (boost::filesystem::exists(settingsPath_)) {
Swift::ByteArray data;
Swift::readByteArrayFromFile(data, settingsPath_.string());
foreach (std::string line, Swift::String::split(Swift::byteArrayToString(data), '\n')) {
std::pair<std::string, std::string> pair = Swift::String::getSplittedAtFirst(line, '\t');
settings_[pair.first] = pair.second;
}
}
}
void Storage::saveSetting(const std::string& setting, const std::string& value) {
settings_[setting] = value;
std::string settingsString;
foreach(Strings pair, settings_) {
settingsString += pair.first + '\t' + pair.second + '\n';
}
boost::filesystem::ofstream file(settingsPath_);
file << settingsString;
file.close();
}
std::string Storage::getSetting(const std::string& setting) {
return settings_[setting];
}
|