source: molecuilder/src/Actions/MapOfActions.hpp@ 2e06c4

Last change on this file since 2e06c4 was 2e06c4, checked in by Frederik Heber <heber@…>, 15 years ago

Added all commands defined in ParseCommandLineOptions() as Actions.

  • Actions are not yet used, except verbose, version and help.
  • Files are present and included in Makefile.am
  • not unit tests written so far
  • no action has been tested so far (except for MapOfActions)
  • structure introduced to to transition from ParseCommandLineOptions to actions.
  • program name and config file are fixed arguments.

Signed-off-by: Frederik Heber <heber@…>

  • Property mode set to 100644
File size: 1.6 KB
Line 
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
16class MapOfActionsTest;
17
18#include "Patterns/Singleton.hpp"
19
20namespace po = boost::program_options;
21
22class MapOfActions : public Singleton<MapOfActions> {
23 friend class Singleton<MapOfActions>;
24 friend class MapOfActionsTest;
25public:
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
46private:
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> DescriptionMap;
56 map<std::string, std::string> ShortFormMap;
57 map<std::string, enum OptionTypes > TypeMap;
58};
59
60
61#endif /* MAPOFACTIONS_HPP_ */
Note: See TracBrowser for help on using the repository browser.