1 | /*
|
---|
2 | * MapOfActions.hpp
|
---|
3 | *
|
---|
4 | * Created on: 10.05.2010
|
---|
5 | * Author: heber
|
---|
6 | */
|
---|
7 |
|
---|
8 | #ifndef MAPOFACTIONS_HPP_
|
---|
9 | #define MAPOFACTIONS_HPP_
|
---|
10 |
|
---|
11 | #include "Helpers/Assert.hpp"
|
---|
12 | #include <boost/program_options.hpp>
|
---|
13 | #include <map>
|
---|
14 | #include <set>
|
---|
15 |
|
---|
16 | class MapOfActionsTest;
|
---|
17 |
|
---|
18 | #include "Patterns/Singleton.hpp"
|
---|
19 |
|
---|
20 | namespace po = boost::program_options;
|
---|
21 |
|
---|
22 | class MapOfActions : public Singleton<MapOfActions> {
|
---|
23 | friend class Singleton<MapOfActions>;
|
---|
24 | friend class MapOfActionsTest;
|
---|
25 | public:
|
---|
26 | enum OptionTypes { None, Boolean, Integer, ListOfInts, Double, ListOfDoubles, String, Axis, Vector, Box, Molecule, ListOfMolecules, Atom, ListOfAtoms, Element, ListOfElements };
|
---|
27 |
|
---|
28 | // getter for the action descriptions and short forms
|
---|
29 | std::string getDescription(string actionname);
|
---|
30 | std::string getKeyAndShortForm(string actionname);
|
---|
31 | std::string getShortForm(string actionname);
|
---|
32 |
|
---|
33 | void AddOptionsToParser();
|
---|
34 |
|
---|
35 | // check presence and getter for action type
|
---|
36 | bool hasValue(string actionname);
|
---|
37 | bool isShortFormPresent(string shortform);
|
---|
38 | enum OptionTypes getValueType(string actionname);
|
---|
39 |
|
---|
40 | set<string> generic;
|
---|
41 | set<string> config;
|
---|
42 | set<string> hidden;
|
---|
43 | set<string> visible;
|
---|
44 | set<string> inputfile;
|
---|
45 |
|
---|
46 | private:
|
---|
47 | // private constructor and destructor
|
---|
48 | MapOfActions();
|
---|
49 | virtual ~MapOfActions();
|
---|
50 |
|
---|
51 | // lookup list from our configs to the ones of CommandLineParser
|
---|
52 | map< set<std::string> *, po::options_description *> CmdParserLookup;
|
---|
53 |
|
---|
54 | // map of the action names and their description
|
---|
55 | map<std::string, std::string> DefaultValue;
|
---|
56 | map<std::string, std::string> DescriptionMap;
|
---|
57 | map<std::string, std::string> ShortFormMap;
|
---|
58 | map<std::string, enum OptionTypes > TypeMap;
|
---|
59 | };
|
---|
60 |
|
---|
61 |
|
---|
62 | #endif /* MAPOFACTIONS_HPP_ */
|
---|