[97ebf8] | 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);
|
---|
[7e6b00] | 32 | map <std::string, std::string> getShortFormToActionMap();
|
---|
[97ebf8] | 33 |
|
---|
| 34 | void AddOptionsToParser();
|
---|
| 35 |
|
---|
| 36 | // check presence and getter for action type
|
---|
| 37 | bool hasValue(string actionname);
|
---|
| 38 | bool isShortFormPresent(string shortform);
|
---|
| 39 | enum OptionTypes getValueType(string actionname);
|
---|
| 40 |
|
---|
| 41 | set<string> generic;
|
---|
| 42 | set<string> config;
|
---|
| 43 | set<string> hidden;
|
---|
| 44 | set<string> visible;
|
---|
| 45 | set<string> inputfile;
|
---|
| 46 |
|
---|
| 47 | private:
|
---|
| 48 | // private constructor and destructor
|
---|
| 49 | MapOfActions();
|
---|
| 50 | virtual ~MapOfActions();
|
---|
| 51 |
|
---|
| 52 | // lookup list from our configs to the ones of CommandLineParser
|
---|
| 53 | map< set<std::string> *, po::options_description *> CmdParserLookup;
|
---|
| 54 |
|
---|
| 55 | // map of the action names and their description
|
---|
[e30ce8] | 56 | map<std::string, std::string> DefaultValue;
|
---|
[97ebf8] | 57 | map<std::string, std::string> DescriptionMap;
|
---|
| 58 | map<std::string, std::string> ShortFormMap;
|
---|
| 59 | map<std::string, enum OptionTypes > TypeMap;
|
---|
| 60 | };
|
---|
| 61 |
|
---|
| 62 |
|
---|
| 63 | #endif /* MAPOFACTIONS_HPP_ */
|
---|