source: trunk/FACT++/src/Configuration.h@ 11495

Last change on this file since 11495 was 11483, checked in by tbretz, 13 years ago
Added a registry for wildcarded options to detect unaccessed options; for this EvalConfiguration(const Configuration&) has been changed to EvalOptions(Configuration&)
File size: 8.4 KB
Line 
1#ifndef FACT_Configuration
2#define FACT_Configuration
3
4#include <iostream>
5#include <boost/program_options.hpp>
6
7namespace po = boost::program_options;
8
9class Configuration
10{
11private:
12 /// Convienience enum to access the fOption* data memebers more verbosely.
13 enum
14 {
15 kHidden = 0, ///< Index for hidden options (not shown in PrintParsed)
16 kVisible = 1 ///< Index for options visible in PrintParsed
17 };
18
19 const std::string fName; /// argv[0]
20
21 std::map<std::string, std::string> fEnvMap;
22
23 po::options_description fOptionsCommandline[2]; /// Description of the command-line options
24 po::options_description fOptionsConfigfile[2]; /// Description of the options in the configuration file
25 po::options_description fOptionsDatabase[2]; /// Description of options from the database
26 po::options_description fOptionsEnvironment[2]; /// Description of options from the environment
27
28 po::positional_options_description fArgumentPositions; /// Description of positional command-line options (arguments)
29
30 std::vector<std::string> fUnknownCommandline; /// Storage container for unrecognized commandline options
31 std::vector<std::string> fUnknownConfigfile; /// Storage container for unrecognized options from configuration files
32 std::vector<std::string> fUnknownEnvironment; /// Storage container for unrecognized options from the environment
33 std::vector<std::string> fUnknownDatabase; /// Storage container for unrecognized options retrieved from the database
34
35 std::map<std::string, std::string> fWildcardOptions; /// Options which were registered using wildcards
36
37 std::string fPriorityFile; /// File name of the priority configuration file (overwrites option from the databse)
38 std::string fDefaultFile; /// File name of the default configuration file (usually {program}.rc)
39 std::string fDatabase; /// URL for database connection (see Configuration::parse_database)
40
41 po::variables_map fVariables; /// Variables as compiled by the Parse-function, which will be passed to the program
42
43 /// A default mapper for environment variables skipping all of them
44 std::string DefaultMapper(const std::string env)
45 {
46 return fEnvMap[env];
47 }
48
49 /// Pointer to the mapper function for environment variables
50 std::function<std::string(std::string)> fNameMapper;
51 std::function<void()> fPrintUsage;
52 std::function<void(const std::string&)> fPrintVersion;
53
54 /// Helper function which return the max of the two arguments in the first argument
55 static void Max(int &val, const int &comp)
56 {
57 if (comp>val)
58 val=comp;
59 }
60
61 /// Helper for Parse to create list of used wildcard options
62 void CreateWildcardOptions();
63
64 // Helper functions for PrintOptions and GetOptions
65 template<class T>
66 std::string VecAsStr(const po::variable_value &v) const;
67 std::string VarAsStr(const po::variable_value &v) const;
68
69 /// Print all options from a list of already parsed options
70 void PrintParsed(const po::parsed_options &parsed) const;
71 /// Print a list of all unkown options within the given vector
72 void PrintUnknown(const std::vector<std::string> &vec, int steps=1) const;
73
74 virtual void PrintUsage() const { }
75 virtual void PrintVersion() const;
76
77 std::string UnLibToolize(const std::string &src) const;
78
79public:
80 Configuration(const std::string &prgname="");
81 virtual ~Configuration() { }
82
83 /// Retrieve data from a database and return them as options
84 static po::basic_parsed_options<char>
85 parse_database(const std::string &database, const po::options_description& desc, bool allow_unregistered=false);
86
87 // Setup
88 void AddOptionsCommandline(const po::options_description &cl, bool visible=true);
89 void AddOptionsConfigfile(const po::options_description &cf, bool visible=true);
90 void AddOptionsEnvironment(const po::options_description &env, bool visible=true);
91 void AddOptionsDatabase(const po::options_description &db, bool visible=true);
92 void AddOptions(const po::options_description &opt, bool visible=true)
93 {
94 AddOptionsCommandline(opt, visible);
95 AddOptionsConfigfile(opt, visible);
96 AddOptionsEnvironment(opt, visible);
97 AddOptionsDatabase(opt, visible);
98 }
99
100 void SetArgumentPositions(const po::positional_options_description &desc);
101
102 void SetNameMapper(const std::function<std::string(std::string)> &func);
103 void SetNameMapper();
104
105 void SetPrintUsage(const std::function<void(void)> &func);
106 void SetPrintUsage();
107
108 void SetPrintVersion(const std::function<void(const std::string &)> &func);
109 void SetPrintVersion();
110
111 void AddEnv(const std::string &conf, const std::string &env)
112 {
113 fEnvMap[env] = conf;
114 }
115
116 // Output
117 void PrintOptions() const;
118 void PrintUnknown() const;
119 void PrintWildcardOptions() const;
120
121 const std::map<std::string,std::string> &GetWildcardOptions() const { return fWildcardOptions; }
122
123 std::multimap<std::string, std::string> GetOptions() const;
124
125 // Process command line arguments
126 const po::variables_map &Parse(int argc, const char **argv);
127
128 bool HasVersion()
129 {
130 return Has("version");
131 }
132
133 bool HasHelp()
134 {
135 return Has("help") || Has("help-config") || Has("help-env") || Has("help-database");
136 }
137
138 bool HasPrint()
139 {
140 return Has("print-all") || Has("print") || Has("print-default") ||
141 Has("print-database") || Has("print-config") ||
142 Has("print-environment") || Has("print-unknown") ||
143 Has("print-options") || Has("print-wildcards");
144 }
145
146 // Simplified access to the parsed options
147 template<class T>
148 T Get(const std::string &var) { fWildcardOptions.erase(var); return fVariables[var].as<T>(); }
149 bool Has(const std::string &var) { fWildcardOptions.erase(var); return fVariables.count(var)>0; }
150
151 template<class T>
152 std::vector<T> Vec(const std::string &var) { return Has(var) ? fVariables[var].as<std::vector<T>>() : std::vector<T>(); }
153
154 template<class T, class S>
155 T Get(const std::string &var, const S &val)
156 {
157 std::ostringstream str;
158 str << var << val;
159 return Get<T>(str.str());
160 }
161
162 template<class T>
163 bool Has(const std::string &var, const T &val)
164 {
165 std::ostringstream str;
166 str << var << val;
167 return Has(str.str());
168 }
169
170 template<class T, class S>
171 T GetDef(const std::string &var, const S &val)
172 {
173 return Has(var, val) ? Get<T>(var, val) : Get<T>(var+"default");
174 }
175
176 template<class T>
177 bool HasDef(const std::string &var, const T &val)
178 {
179 return Has(var, val) ? true : Has(var+"default");
180 }
181/*
182 template<class T>
183 std::map<std::string, T> GetMap(const std::string &var)
184 {
185 const size_t len = var.length();
186
187 std::map<std::string, T> rc;
188 for (std::map<std::string, boost::program_options::variable_value>::const_iterator it=fVariables.begin();
189 it!=fVariables.end(); it++)
190 if (it->first.substr(0, len)==var)
191 rc[it->first] = it->second.as<T>();
192
193 return rc;
194 }
195
196 template<class T>
197 std::vector<std::string> GetKeys(const std::string &var)
198 {
199 const size_t len = var.length();
200
201 std::vector<std::string> rc;
202 for (std::map<std::string, boost::program_options::variable_value>::const_iterator it=fVariables.begin();
203 it!=fVariables.end(); it++)
204 if (it->first.substr(0, len)==var)
205 rc.push_back(it->first);
206
207 return rc;
208 }
209*/
210 const std::string &GetName() const { return fName; }
211};
212
213template<typename T>
214struct Hex
215{
216 T val;
217 Hex() { }
218 Hex(const T &v) : val(v) { }
219 operator T() const { return val; }
220};
221template<typename T>
222std::istream &operator>>(std::istream &in, Hex<T> &rc)
223{
224 T val;
225 in >> std::hex >> val;
226 rc.val = val;
227 return in;
228}
229
230template<class T>
231inline po::typed_value<T> *var(T *ptr=0)
232{ return po::value<T>(ptr); }
233
234template<class T>
235inline po::typed_value<T> *var(const T &val, T *ptr=0)
236{ return po::value<T>(ptr)->default_value(val); }
237
238template<class T>
239inline po::typed_value<std::vector<T>> *vars()
240{ return po::value<std::vector<T>>(); }
241
242inline po::typed_value<bool> *po_switch()
243{ return po::bool_switch(); }
244
245inline po::typed_value<bool> *po_bool()
246{ return po::value<bool>()->implicit_value(true)->default_value(false); }
247
248#endif
Note: See TracBrowser for help on using the repository browser.