00001 #ifndef IONFLUX_TOOLS_CONFIG
00002 #define IONFLUX_TOOLS_CONFIG
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 #include <pcre.h>
00030 #include <string>
00031 #include <iostream>
00032 #include <fstream>
00033 #include <map>
00034 #include <vector>
00035
00036 namespace Ionflux
00037 {
00038
00039 namespace Tools
00040 {
00041
00054 struct ConfigOption
00055 {
00057 std::string key;
00059 std::string value;
00060 };
00061
00066 struct ConfigLine
00067 {
00074 ConfigOption option;
00076 int type;
00078 static const int CL_INVALID;
00080 static const int CL_OPTION;
00082 static const int CL_COMMENT;
00084 static const int CL_BLANK;
00086 static const int CL_NESTED;
00088 static const int CL_ROOT_DATA;
00089 };
00090
00096 class Config
00097 {
00098 public:
00103 Config() { };
00104
00109 virtual ~Config() { };
00110
00116 virtual void clear() = 0;
00117
00125 virtual void readConfig(const std::string& configFile) = 0;
00126
00134 virtual void writeConfig(const std::string& configFile) = 0;
00135
00141 virtual void writeConfig() = 0;
00142
00153 virtual std::string get(const std::string& key) = 0;
00154
00162 virtual void set(const std::string& key, const std::string& value) = 0;
00163
00164 };
00165
00167
00168 }
00169
00170 }
00171
00175 #endif