1 | /*
|
---|
2 | * CommandLineParser.hpp
|
---|
3 | *
|
---|
4 | * Created on: May 8, 2010
|
---|
5 | * Author: heber
|
---|
6 | */
|
---|
7 |
|
---|
8 | #ifndef COMMANDLINEPARSER_HPP_
|
---|
9 | #define COMMANDLINEPARSER_HPP_
|
---|
10 |
|
---|
11 | // include config.h
|
---|
12 | #ifdef HAVE_CONFIG_H
|
---|
13 | #include <config.h>
|
---|
14 | #endif
|
---|
15 |
|
---|
16 |
|
---|
17 | #include <boost/program_options.hpp>
|
---|
18 |
|
---|
19 | namespace po = boost::program_options;
|
---|
20 |
|
---|
21 | #include "CodePatterns/Singleton.hpp"
|
---|
22 | #include "UIElements/CommandLineUI/TypeEnumContainer.hpp"
|
---|
23 |
|
---|
24 | #include <map>
|
---|
25 |
|
---|
26 | class Action;
|
---|
27 | class OptionTrait;
|
---|
28 |
|
---|
29 | /** This class is a wrapper for boost::program_options.
|
---|
30 | *
|
---|
31 | * <h1> CommandLine Howto </h1>
|
---|
32 | * <h2> Introduction </h2>
|
---|
33 | *
|
---|
34 | * The UIFactory is a base class for the User Interaction. There are three UI specializations:
|
---|
35 | * Text, GUI and CommandLine. Accessing functionality via the CommandLine UI is explained here.
|
---|
36 | *
|
---|
37 | * First, an Action has to be written for the specific functionality. This Action should
|
---|
38 | * be added in Actions/...Action in the respective subdirectory of the following types:
|
---|
39 | * -# Analysis: Analysis actions like evaluating pair correlation, bonds, ...
|
---|
40 | * -# Atom: adding, removing, manipulating atoms
|
---|
41 | * -# Cmd: specifying data bases, verbosity, ...
|
---|
42 | * -# Fragmentation: fragmenting a system, performing graph analysis, ...
|
---|
43 | * -# Molecule: adding, removing, manipulating molecules
|
---|
44 | * -# Parser: Parsing files (loading, saving)
|
---|
45 | * -# Tesselation: obtaining (non)convex surface of a molecule, embedding, ...
|
---|
46 | * -# World: Setting Box dimensions, default name of new molecules, ...
|
---|
47 | *
|
---|
48 | * The CommandLineUIFactory is a specialization of the UIFactory for parsing command
|
---|
49 | * line parameters, generating and executing actions there from.
|
---|
50 | *
|
---|
51 | * The idea of the CommandLineFactory is explained elsewhere, here we would like to give a
|
---|
52 | * receipe for creating new actions.
|
---|
53 | *
|
---|
54 | * <h3>Introducing new actions</h3>
|
---|
55 | *
|
---|
56 | * Let us now introduce what to do if a new action is to be implemented. Here, we use the
|
---|
57 | * CommandLineVersionAction as an example.
|
---|
58 | * This consists if basically three parts:
|
---|
59 | * 1. Create the files, write the classes and make them compilable
|
---|
60 | * - Create new source and header files in one of the above subfolders in the Actions folder,
|
---|
61 | * e.g. create VersionAction.cpp and VersionAction.hpp in Actions/Cmd/
|
---|
62 | * - Give it a sensible class name, the convention is <type><what it does>Action,
|
---|
63 | * where <type> is basically the naming (written out) of the subdirectory,
|
---|
64 | * e.g. class CommandLineVersionAction.
|
---|
65 | * - Add the source and header file to the respective variables in molecuilder/src/Makefile.am,
|
---|
66 | * e.g. if you add a Cmd action the variables are CMDACTIONSOURCE and CMDACTIONHEADER,
|
---|
67 | * such that they get compiled.
|
---|
68 | * 2. Add an instance to the CommandLineUIFactory, such that they are known to the UI.
|
---|
69 | * - Add the header file as an include to UIElements/CommandLineWindow.cpp, e.g.
|
---|
70 | * #include "Actions/Cmd/VersionAction.hpp"
|
---|
71 | * - Add an instance of your class to the specific populater-function in
|
---|
72 | * UIElements/CommandLineWindow.cpp, e.g. for the above Cmd action, add to populateCommandActions()
|
---|
73 | * add new CommandLineVersionAction().
|
---|
74 | * This will automatically register in the ActionRegistry.
|
---|
75 | * 3. Give them an option name, short hand an description, such that they can be referenced from
|
---|
76 | * the command line.
|
---|
77 | * - think of a new key name, e.g. "version", which is the long form of the command parameter,
|
---|
78 | * i.e. --version).
|
---|
79 | * - add this key to every map of MapofActions, i.e. to
|
---|
80 | * - MapofActions::DescriptionMap: the description which appears as help and tooltip
|
---|
81 | * - MapofActions::ShortFormMap: the short form of the command parameter (e.g. -v)
|
---|
82 | * - MapofActions::ValueMap: the value the command parameter has (do not create if it does not need one)
|
---|
83 | * - If your action requires additional parameters, these need to be added in the same manner as in
|
---|
84 | * the list item above.
|
---|
85 | *
|
---|
86 | * Don't forget to write the actual code. :)
|
---|
87 | *
|
---|
88 | * <h3>Writing an action</h3>
|
---|
89 | *
|
---|
90 | * As you write a new action you may think in terms of the command line, i.e. you want to use this
|
---|
91 | * new functionality you add by calling molecuilder as: ./molecuilder --super-action foobar.txt, where
|
---|
92 | * the key of your new action would be "super-action". While this is fine, keep in mind, that your action
|
---|
93 | * should be useable for the other UI specializations as well, i.e. from the menu and the GUI. Therefore,
|
---|
94 | * -# Don't use cin to ask the user for input: Use Query...()!
|
---|
95 | * -# Rather don't use cout/cerrs, but either give Log() or eLog() or use QueryEmpty() if you want to give
|
---|
96 | * the user specific information what you ask of him.
|
---|
97 | *
|
---|
98 | */
|
---|
99 | class CommandLineParser : public Singleton<CommandLineParser> {
|
---|
100 | friend class Singleton<CommandLineParser>;
|
---|
101 | public:
|
---|
102 |
|
---|
103 | // Parses the command line arguments in CommandLineParser::**argv with currently known options.
|
---|
104 | void Run(int _argc, char **_argv);
|
---|
105 |
|
---|
106 | // Initialises all options from ActionRegistry.
|
---|
107 | void InitializeCommandArguments();
|
---|
108 |
|
---|
109 | // Checks whether there have been any commands on the command line.
|
---|
110 | bool isEmpty();
|
---|
111 |
|
---|
112 | /* boost's program_options are sorted into three categories:
|
---|
113 | * -# generic options: option available to both command line and config
|
---|
114 | * -# config options: only available in the config file
|
---|
115 | * -# hidden options: options which the user is not shown on "help"
|
---|
116 | */
|
---|
117 | po::options_description analysis;
|
---|
118 | po::options_description atom;
|
---|
119 | po::options_description command;
|
---|
120 | po::options_description edit;
|
---|
121 | po::options_description fragmentation;
|
---|
122 | po::options_description molecule;
|
---|
123 | po::options_description parser;
|
---|
124 | po::options_description selection;
|
---|
125 | po::options_description tesselation;
|
---|
126 | po::options_description world;
|
---|
127 | po::options_description options;
|
---|
128 |
|
---|
129 | po::options_description visible;
|
---|
130 |
|
---|
131 | po::variables_map vm;
|
---|
132 |
|
---|
133 | // private sequence of actions as they appeared on the command line
|
---|
134 | std::list<std::string> SequenceOfActions;
|
---|
135 |
|
---|
136 | private:
|
---|
137 | // private constructor and destructor
|
---|
138 | CommandLineParser();
|
---|
139 | virtual ~CommandLineParser();
|
---|
140 |
|
---|
141 | /* The following program_options options_decriptions are used to
|
---|
142 | * generate the various cases and call differently in Parse().
|
---|
143 | */
|
---|
144 | po::options_description cmdline_options;
|
---|
145 | po::options_description config_file_options;
|
---|
146 |
|
---|
147 | // adds options to the parser
|
---|
148 | void AddOptionToParser(const OptionTrait * const currentOption, po::options_description* OptionList);
|
---|
149 |
|
---|
150 | // creates a map from short forms to action tokens needed to parse command line
|
---|
151 | std::map <std::string, std::string> getShortFormToActionMap() const;
|
---|
152 |
|
---|
153 | typedef std::map< std::string , po::options_description *> CmdParserLookupMap;
|
---|
154 |
|
---|
155 | // lookup list from "configmenus" to the ones of CommandLineParser
|
---|
156 | CmdParserLookupMap CmdParserLookup;
|
---|
157 |
|
---|
158 | // Sets the options from the three cases.
|
---|
159 | void setOptions(int _argc, char **_argv);
|
---|
160 |
|
---|
161 | // Parses all options from command line and config file
|
---|
162 | void Parse();
|
---|
163 |
|
---|
164 | // as boost's program_options does not care about of order of appearance but we do for actions,
|
---|
165 | // we have to have a list and a function to obtain it.
|
---|
166 | void scanforSequenceOfArguments();
|
---|
167 |
|
---|
168 | TypeEnumContainer TypeToEnums;
|
---|
169 |
|
---|
170 | // argument counter and array passed on from main()
|
---|
171 | int argc;
|
---|
172 | char **argv;
|
---|
173 | };
|
---|
174 |
|
---|
175 | #endif /* COMMANDLINEPARSER_HPP_ */
|
---|