/*************************************************************************** * Copyright (C) 2009 by Felix Hammer * * f.hammer@web.de * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 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 General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ #ifndef CLEANERCONFIG_H #define CLEANERCONFIG_H #include #include #include enum ConfigState { NONEXISTING, OLD }; enum ConfigType { CONFIG_TYPE_INT, CONFIG_TYPE_STRING, CONFIG_TYPE_INT_LIST, CONFIG_TYPE_STRING_LIST }; class CleanerConfig{ public: CleanerConfig(); ~CleanerConfig(); std::string getConfigFileName() { return configFileName; } void fillBuffer(); void writeBuffer() const; void updateConfig(ConfigState); int readConfigInt(std::string varName) const; std::string readConfigString(std::string varName) const; std::list readConfigIntList(std::string varName) const; std::list readConfigStringList(std::string varName) const; void writeConfigInt(std::string varName, int varCont); void writeConfigString(std::string varName, std::string varCont); void writeConfigIntList(std::string varName, std::list varCont); void writeConfigStringList(std::string varName, std::list varCont); std::string stringToUtf8(const std::string & ); std::string stringFromUtf8(const std::string &); std::string getDefaultLanguage(); private: struct ConfigInfo { ConfigInfo(const std::string &n, ConfigType t, const std::string &d, const std::list &l =std::list()) : name(n), type(t), defaultValue(d), defaultListValue(l) {} std::string name; ConfigType type; std::string defaultValue; std::list defaultListValue; }; std::vector configList; std::vector configBufferList; std::string configFileName; std::string logDir; std::string dataDir; std::string cacheDir; int configRev; ConfigState myConfigState; }; #endif