source: src/UIElements/CommandLineUI/CommandLineParser.hpp@ c6e5eb

Action_Thermostats Add_AtomRandomPerturbation Add_FitFragmentPartialChargesAction Add_RotateAroundBondAction Add_SelectAtomByNameAction Added_ParseSaveFragmentResults AddingActions_SaveParseParticleParameters Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_ParticleName_to_Atom Adding_StructOpt_integration_tests AtomFragments Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.5.4 Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator CombiningParticlePotentialParsing Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_BoundInBox_CenterInBox_MoleculeActions Fix_ChargeSampling_PBC Fix_ChronosMutex Fix_FitPartialCharges Fix_FitPotential_needs_atomicnumbers Fix_ForceAnnealing Fix_IndependentFragmentGrids Fix_ParseParticles Fix_ParseParticles_split_forward_backward_Actions Fix_PopActions Fix_QtFragmentList_sorted_selection Fix_Restrictedkeyset_FragmentMolecule Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns Fix_fitting_potentials Fixes ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion FragmentAction_writes_AtomFragments FragmentMolecule_checks_bonddegrees GeometryObjects Gui_Fixes Gui_displays_atomic_force_velocity ImplicitCharges IndependentFragmentGrids IndependentFragmentGrids_IndividualZeroInstances IndependentFragmentGrids_IntegrationTest IndependentFragmentGrids_Sole_NN_Calculation JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix MoreRobust_FragmentAutomation ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PdbParser_setsAtomName PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks Rewrite_FitPartialCharges RotateToPrincipalAxisSystem_UndoRedo SaturateAtoms_findBestMatching SaturateAtoms_singleDegree StoppableMakroAction Subpackage_CodePatterns Subpackage_JobMarket Subpackage_LinearAlgebra Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg Switchable_LogView ThirdParty_MPQC_rebuilt_buildsystem TrajectoryDependenant_MaxOrder TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps TremoloParser_setsAtomName Ubuntu_1604_changes stable
Last change on this file since c6e5eb was c6e5eb, checked in by Frederik Heber <heber@…>, 14 years ago

FIX: CommandLineParser::setOptions() added option_descriptions hard-coded.

  • this is prone to errors (which took us a while to find), instead all contained in CmdParserLookup are added to both visible and cmdline_options.
  • Property mode set to 100644
File size: 7.0 KB
Line 
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
19namespace po = boost::program_options;
20
21#include "CodePatterns/Singleton.hpp"
22#include "UIElements/CommandLineUI/TypeEnumContainer.hpp"
23
24#include <map>
25
26class Action;
27class 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 */
99class CommandLineParser : public Singleton<CommandLineParser> {
100 friend class Singleton<CommandLineParser>;
101public:
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
136private:
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_ */
Note: See TracBrowser for help on using the repository browser.