source: src/Actions/MapOfActions.cpp@ 48ab70a

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 Candidate_v1.7.0 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 48ab70a was 48ab70a, checked in by Frederik Heber <heber@…>, 15 years ago

Case 'u' is now handled by CommandLineUI.

  • Property mode set to 100644
File size: 22.7 KB
Line 
1/*
2 * MapOfActions.cpp
3 *
4 * Created on: 10.05.2010
5 * Author: heber
6 */
7
8using namespace std;
9
10#include "Patterns/Singleton_impl.hpp"
11#include "Actions/MapOfActions.hpp"
12#include "Helpers/Assert.hpp"
13
14#include <boost/lexical_cast.hpp>
15#include <boost/optional.hpp>
16#include <boost/program_options.hpp>
17
18#include "CommandLineParser.hpp"
19#include "log.hpp"
20#include "verbose.hpp"
21
22#include "Actions/Values.hpp"
23
24void validate(boost::any& v, const std::vector<std::string>& values, VectorValue *, int)
25{
26 VectorValue VV;
27 if (values.size() != 3) {
28 cerr << "Specified vector does not have three components but " << values.size() << endl;
29 throw boost::program_options::validation_error("Specified vector does not have three components");
30 }
31 VV.x = boost::lexical_cast<double>(values.at(0));
32 VV.y = boost::lexical_cast<double>(values.at(1));
33 VV.z = boost::lexical_cast<double>(values.at(2));
34 v = boost::any(VectorValue(VV));
35}
36
37void validate(boost::any& v, const std::vector<std::string>& values, BoxValue *, int)
38{
39 BoxValue BV;
40 if (values.size() != 6) {
41 cerr << "Specified vector does not have three components but " << values.size() << endl;
42 throw boost::program_options::validation_error("Specified symmetric box matrix does not have six components");
43 }
44 BV.xx = boost::lexical_cast<double>(values.at(0));
45 BV.xy = boost::lexical_cast<double>(values.at(1));
46 BV.xz = boost::lexical_cast<double>(values.at(2));
47 BV.yy = boost::lexical_cast<double>(values.at(3));
48 BV.yz = boost::lexical_cast<double>(values.at(4));
49 BV.zz = boost::lexical_cast<double>(values.at(5));
50 v = boost::any(BoxValue(BV));
51}
52
53
54/** Constructor of class MapOfActions.
55 *
56 */
57MapOfActions::MapOfActions()
58{
59 // initialise lookup map
60 CmdParserLookup[&generic] = &(CommandLineParser::getInstance().generic);
61 CmdParserLookup[&config] = &(CommandLineParser::getInstance().config);
62 CmdParserLookup[&hidden] = &(CommandLineParser::getInstance().hidden);
63 CmdParserLookup[&visible] = &(CommandLineParser::getInstance().visible);
64
65 // keys for actions
66 DescriptionMap["add-atom"] = "add atom of specified element";
67 DescriptionMap["bond-table"] = "setting name of the bond length table file";
68 DescriptionMap["bond-file"] = "name of the bond file";
69 DescriptionMap["boundary"] = "change box to add an empty boundary around all atoms";
70 DescriptionMap["bound-in-box"] = "bound all atoms in the domain";
71 DescriptionMap["center-edge"] = "center edge of all atoms on (0,0,0)";
72 DescriptionMap["center-in-box"] = "center all atoms in the domain";
73 DescriptionMap["change-box"] = "change the symmetrc matrix of the simulation domain";
74 DescriptionMap["change-element"] = "change the element of an atom";
75 DescriptionMap["change-molname"] = "change the name of a molecule";
76 DescriptionMap["convex-envelope"] = "create the convex envelope for a molecule";
77 DescriptionMap["default-molname"] = "set the default name of new molecules";
78 DescriptionMap["depth-first-search"] = "Depth-First Search analysis of the molecular system";
79 DescriptionMap["element-db"] = "setting the path where the element databases can be found";
80 DescriptionMap["fastparsing"] = "setting whether trajectories shall be parsed completely (n) or just first step (y)";
81 DescriptionMap["fill-molecule"] = "fill empty space of box with a filler molecule";
82 DescriptionMap["fragment-mol"] = "create for a given molecule into fragments up to given order";
83 DescriptionMap["help"] = "Give this help screen";
84 DescriptionMap["linear-interpolate"] = "linear interpolation in discrete steps between start and end position of a molecule";
85 DescriptionMap["nonconvex-envelope"] = "create the non-convex envelope for a molecule";
86 DescriptionMap["molecular-volume"] = "calculate the volume of a given molecule";
87 DescriptionMap["pair-correlation"] = "pair correlation analysis between two elements";
88 DescriptionMap["pair-correlation-point"] = "pair correlation analysis between atoms of a element to a given point";
89 DescriptionMap["pair-correlation-surface"] = "pair correlation analysis between atoms of a given element and a surface";
90 DescriptionMap["parse-xyz"] = "parse xyz file into World";
91 DescriptionMap["principal-axis-system"] = "calculate the principal axis system of the specified molecule";
92 DescriptionMap["remove-atom"] = "remove a specified atom";
93 DescriptionMap["remove-sphere"] = "remove sphere of atoms of around a specified atom";
94 DescriptionMap["repeat-box"] = "create periodic copies of the simulation box per axis";
95 DescriptionMap["rotate-to-pas"] = "calculate the principal axis system of the specified molecule and rotate specified axis to align with main axis";
96 DescriptionMap["set-basis"] = "set the name of the gaussian basis set for MPQC";
97 DescriptionMap["save-adjacency"] = "name of the adjacency file to write to";
98 DescriptionMap["save-bonds"] = "name of the bonds file to write to";
99 DescriptionMap["save-temperature"] = "name of the temperature file to write to";
100 DescriptionMap["scale-box"] = "scale box and atomic positions inside";
101 DescriptionMap["subspace-dissect"] = "dissect the molecular system into molecules representing disconnected subgraphs";
102 DescriptionMap["suspend-in-water"] = "suspend the given molecule in water such that in the domain the mean density is as specified";
103 DescriptionMap["translate-mol"] = "translate molecule by given vector";
104 DescriptionMap["verbose"] = "set verbosity level";
105 DescriptionMap["verlet-integrate"] = "perform verlet integration of a given force file";
106 DescriptionMap["version"] = "show version";
107 // keys for values
108 DescriptionMap["bin-output-file"] = "name of the bin output file";
109 DescriptionMap["bin-end"] = "start of the last bin";
110 DescriptionMap["bin-start"] = "start of the first bin";
111 DescriptionMap["bin-width"] = "width of the bins";
112 DescriptionMap["distance"] = "distance in space";
113 DescriptionMap["distances"] = "list of three of distances in space, one for each axis direction";
114 DescriptionMap["DoRotate"] = "whether to rotate or just report angles";
115 DescriptionMap["element"] = "set of elements";
116 DescriptionMap["end-mol"] = "last or end step";
117 DescriptionMap["input"] = "name of input file";
118 DescriptionMap["length"] = "length in space";
119 DescriptionMap["lengths"] = "list of three of lengths in space, one for each axis direction";
120 DescriptionMap["MaxDistance"] = "maximum distance in space";
121 DescriptionMap["molecule-by-id"] = "index of a molecule";
122 DescriptionMap["output-file"] = "name of the output file";
123 DescriptionMap["periodic"] = "system is constraint to periodic boundary conditions (y/n)";
124 DescriptionMap["position"] = "position in R^3 space";
125 DescriptionMap["start-mol"] = "first or start step";
126
127 // short forms for the actions
128 ShortFormMap["add-atom"] = "a";
129 ShortFormMap["bond-table"] = "g";
130 ShortFormMap["bond-file"] = "A";
131 ShortFormMap["boundary"] = "c";
132 ShortFormMap["change-box"] = "B";
133 ShortFormMap["center-edge"] = "O";
134 ShortFormMap["center-in-box"] = "b";
135 ShortFormMap["change-element"] = "E";
136 ShortFormMap["convex-envelope"] = "o";
137 ShortFormMap["default-molname"] = "X";
138 ShortFormMap["depth-first-search"] = "D";
139 ShortFormMap["element-db"] = "e";
140 ShortFormMap["fastparsing"] = "n";
141 ShortFormMap["fill-molecule"] = "F";
142 ShortFormMap["fragment-mol"] = "f";
143 ShortFormMap["help"] = "h";
144 ShortFormMap["input"] = "i";
145 ShortFormMap["linear-interpolate"] = "L";
146 ShortFormMap["nonconvex-envelope"] = "N";
147 ShortFormMap["pair-correlation"] = "CE";
148 ShortFormMap["pair-correlation-point"] = "CP";
149 ShortFormMap["pair-correlation-surface"] = "CS";
150 ShortFormMap["parse-xyz"] = "p";
151 ShortFormMap["remove-atom"] = "r";
152 ShortFormMap["remove-sphere"] = "R";
153 ShortFormMap["repeat-box"] = "d";
154 ShortFormMap["rotate-to-pas"] = "m";
155 ShortFormMap["save-adjacency"] = "J";
156 ShortFormMap["save-bonds"] = "j";
157 ShortFormMap["save-temperature"] = "S";
158 ShortFormMap["scale-box"] = "s";
159 ShortFormMap["set-basis"] = "M";
160 ShortFormMap["subspace-dissect"] = "I";
161 ShortFormMap["suspend-in-water"] = "u";
162 ShortFormMap["translate-mol"] = "t";
163 ShortFormMap["verbose"] = "v";
164 ShortFormMap["verlet-integrate"] = "P";
165 ShortFormMap["version"] = "V";
166
167 // value types for the actions
168 TypeMap["add-atom"] = Atom;
169 TypeMap["bond-file"] = String;
170 TypeMap["bond-table"] = String;
171 TypeMap["boundary"] = Vector;
172 TypeMap["center-in-box"] = Box;
173 TypeMap["change-box"] = Box;
174 TypeMap["change-element"] = Element;
175 TypeMap["change-molname"] = String;
176 TypeMap["convex-envelope"] = Molecule;
177 TypeMap["default-molname"] = String;
178 TypeMap["depth-first-search"] = Double;
179 TypeMap["element-db"] = String;
180 TypeMap["end-mol"] = Molecule;
181 TypeMap["fastparsing"] = Boolean;
182 TypeMap["fill-molecule"] = String;
183 TypeMap["fragment-mol"] = Molecule;
184 TypeMap["input"] = String;
185 TypeMap["linear-interpolate"] = String;
186 TypeMap["molecular-volume"] = Molecule;
187 TypeMap["nonconvex-envelope"] = Molecule;
188 TypeMap["parse-xyz"] = String;
189 TypeMap["principal-axis-system"] = Axis;
190 TypeMap["remove-atom"] = Atom;
191 TypeMap["remove-sphere"] = Atom;
192 TypeMap["repeat-box"] = Vector;
193 TypeMap["rotate-to-pas"] = Molecule;
194 TypeMap["save-adjacency"] = String;
195 TypeMap["save-bonds"] = String;
196 TypeMap["save-temperature"] = String;
197 TypeMap["scale-box"] = Vector;
198 TypeMap["set-basis"] = String;
199 TypeMap["start-mol"] = Molecule;
200 TypeMap["suspend-in-water"] = Double;
201 TypeMap["translate-mol"] = Vector;
202 TypeMap["verlet-integrate"] = String;
203 TypeMap["verbose"] = Integer;
204
205 // value types for the values
206 TypeMap["bin-output-file"] = String;
207 TypeMap["bin-end"] = Double;
208 TypeMap["bin-start"] = Double;
209 TypeMap["distance"] = Double;
210 TypeMap["distances"] = Vector;
211 TypeMap["DoRotate"] = Boolean;
212 TypeMap["elements"] = Element;
213 TypeMap["elements"] = ListOfElements;
214 TypeMap["length"] = Double;
215 TypeMap["lengths"] = Vector;
216 TypeMap["MaxDistance"] = Double;
217 TypeMap["molecule-by-id"] = Molecule;
218 TypeMap["output-file"] = String;
219 TypeMap["periodic"] = Boolean;
220 TypeMap["position"] = Vector;
221
222 // default values for any action that needs one (always string!)
223 DefaultValue["molecule-by-id"] = "-1";
224
225
226 // list of generic actions
227// generic.insert("add-atom");
228// generic.insert("bond-file");
229// generic.insert("bond-table");
230 generic.insert("boundary");
231// generic.insert("bound-in-box");
232 generic.insert("center-edge");
233 generic.insert("center-in-box");
234 generic.insert("change-box");
235// generic.insert("change-molname");
236// generic.insert("change-element");
237// generic.insert("convex-envelope");
238// generic.insert("default-molname");
239// generic.insert("depth-first-search");
240// generic.insert("element-db");
241// generic.insert("fastparsing");
242 generic.insert("fill-molecule");
243// generic.insert("fragment-mol");
244 generic.insert("help");
245// generic.insert("linear-interpolate");
246// generic.insert("molecular-volume");
247// generic.insert("nonconvex-envelope");
248// generic.insert("pair-correlation");
249// generic.insert("pair-correlation-point");
250// generic.insert("pair-correlation-surface");
251// generic.insert("parse-xyz");
252// generic.insert("principal-axis-system");
253// generic.insert("remove-atom");
254// generic.insert("remove-sphere");
255 generic.insert("repeat-box");
256// generic.insert("rotate-to-pas");
257// generic.insert("save-adjacency");
258// generic.insert("save-bonds");
259// generic.insert("save-temperature");
260 generic.insert("scale-box");
261// generic.insert("set-basis");
262// generic.insert("subspace-dissect");
263 generic.insert("suspend-in-water");
264// generic.insert("translate-mol");
265 generic.insert("verbose");
266// generic.insert("verlet-integrate");
267 generic.insert("version");
268// // list of generic values
269// generic.insert("bin-output-file");
270// generic.insert("bin-end");
271// generic.insert("bin-start");
272// generic.insert("distance");
273// generic.insert("distances");
274// generic.insert("element");
275// generic.insert("end-mol");
276 generic.insert("input");
277// generic.insert("length");
278// generic.insert("output-file");
279// generic.insert("periodic");
280// generic.insert("position");
281// generic.insert("start-mol");
282
283 // positional arguments
284 inputfile.insert("input");
285
286 // hidden arguments
287// generic.insert("distance");
288 generic.insert("DoRotate");
289 generic.insert("distances");
290 generic.insert("lengths");
291 generic.insert("MaxDistance");
292 generic.insert("molecule-by-id");
293}
294
295/** Destructor of class MapOfActions.
296 *
297 */
298MapOfActions::~MapOfActions()
299{
300 DescriptionMap.clear();
301}
302
303/** Adds all options to the CommandLineParser.
304 *
305 */
306void MapOfActions::AddOptionsToParser()
307{
308 // add other options
309 for (map< set<string>*, po::options_description* >::iterator ListRunner = CmdParserLookup.begin(); ListRunner != CmdParserLookup.end(); ++ListRunner) {
310 for (set<string>::iterator OptionRunner = ListRunner->first->begin(); OptionRunner != ListRunner->first->end(); ++OptionRunner) {
311 if (hasValue(*OptionRunner)) {
312 DoLog(0) && (Log() << Verbose(0) << "Adding option " << *OptionRunner << " with type " << TypeMap[*OptionRunner] << " to CommandLineParser." << endl);
313 switch((enum OptionTypes) TypeMap[*OptionRunner]) {
314 default:
315 case None:
316 ListRunner->second->add_options()
317 (getKeyAndShortForm(*OptionRunner).c_str(), getDescription(*OptionRunner).c_str())
318 ;
319 break;
320 case Boolean:
321 ListRunner->second->add_options()
322 (getKeyAndShortForm(*OptionRunner).c_str(),
323 DefaultValue.find(*OptionRunner) != DefaultValue.end() ?
324 po::value< bool >()->default_value(atoi(DefaultValue[*OptionRunner].c_str())) :
325 po::value< bool >(),
326 getDescription(*OptionRunner).c_str())
327 ;
328 break;
329 case Box:
330 ListRunner->second->add_options()
331 (getKeyAndShortForm(*OptionRunner).c_str(),
332 po::value<BoxValue>()->multitoken(),
333 getDescription(*OptionRunner).c_str())
334 ;
335 break;
336 case Integer:
337 ListRunner->second->add_options()
338 (getKeyAndShortForm(*OptionRunner).c_str(),
339 DefaultValue.find(*OptionRunner) != DefaultValue.end() ?
340 po::value< int >()->default_value(atoi(DefaultValue[*OptionRunner].c_str())) :
341 po::value< int >(),
342 getDescription(*OptionRunner).c_str())
343 ;
344 break;
345 case ListOfInts:
346 ListRunner->second->add_options()
347 (getKeyAndShortForm(*OptionRunner).c_str(),
348 po::value< vector<int> >()->multitoken(),
349 getDescription(*OptionRunner).c_str())
350 ;
351 break;
352 case Double:
353 ListRunner->second->add_options()
354 (getKeyAndShortForm(*OptionRunner).c_str(),
355 DefaultValue.find(*OptionRunner) != DefaultValue.end() ?
356 po::value< double >()->default_value(atof(DefaultValue[*OptionRunner].c_str())) :
357 po::value< double >(),
358 getDescription(*OptionRunner).c_str())
359 ;
360 break;
361 case ListOfDoubles:
362 ListRunner->second->add_options()
363 (getKeyAndShortForm(*OptionRunner).c_str(),
364 po::value< vector<double> >()->multitoken(),
365 getDescription(*OptionRunner).c_str())
366 ;
367 break;
368 case String:
369 ListRunner->second->add_options()
370 (getKeyAndShortForm(*OptionRunner).c_str(),
371 DefaultValue.find(*OptionRunner) != DefaultValue.end() ?
372 po::value< std::string >()->default_value(DefaultValue[*OptionRunner]) :
373 po::value< std::string >(),
374 getDescription(*OptionRunner).c_str())
375 ;
376 break;
377 case Axis:
378 ListRunner->second->add_options()
379 (getKeyAndShortForm(*OptionRunner).c_str(),
380 DefaultValue.find(*OptionRunner) != DefaultValue.end() ?
381 po::value< int >()->default_value(atoi(DefaultValue[*OptionRunner].c_str())) :
382 po::value< int >(),
383 getDescription(*OptionRunner).c_str())
384 ;
385 break;
386 case Vector:
387 ListRunner->second->add_options()
388 (getKeyAndShortForm(*OptionRunner).c_str(),
389 po::value<VectorValue>()->multitoken(),
390 getDescription(*OptionRunner).c_str())
391 ;
392 break;
393 case Molecule:
394 ListRunner->second->add_options()
395 (getKeyAndShortForm(*OptionRunner).c_str(),
396 DefaultValue.find(*OptionRunner) != DefaultValue.end() ?
397 po::value< int >()->default_value(atoi(DefaultValue[*OptionRunner].c_str())) :
398 po::value< int >(),
399 getDescription(*OptionRunner).c_str())
400 ;
401 break;
402 case ListOfMolecules:
403 ListRunner->second->add_options()
404 (getKeyAndShortForm(*OptionRunner).c_str(),
405 po::value< vector<int> >()->multitoken(),
406 getDescription(*OptionRunner).c_str())
407 ;
408 break;
409 case Atom:
410 ListRunner->second->add_options()
411 (getKeyAndShortForm(*OptionRunner).c_str(),
412 DefaultValue.find(*OptionRunner) != DefaultValue.end() ?
413 po::value< int >()->default_value(atoi(DefaultValue[*OptionRunner].c_str())) :
414 po::value< int >(),
415 getDescription(*OptionRunner).c_str())
416 ;
417 break;
418 case ListOfAtoms:
419 ListRunner->second->add_options()
420 (getKeyAndShortForm(*OptionRunner).c_str(),
421 po::value< vector<int> >()->multitoken(),
422 getDescription(*OptionRunner).c_str())
423 ;
424 break;
425 case Element:
426 ListRunner->second->add_options()
427 (getKeyAndShortForm(*OptionRunner).c_str(),
428 DefaultValue.find(*OptionRunner) != DefaultValue.end() ?
429 po::value< int >()->default_value(atoi(DefaultValue[*OptionRunner].c_str())) :
430 po::value< int >(),
431 getDescription(*OptionRunner).c_str())
432 ;
433 break;
434 case ListOfElements:
435 ListRunner->second->add_options()
436 (getKeyAndShortForm(*OptionRunner).c_str(),
437 po::value< vector<int> >()->multitoken(),
438 getDescription(*OptionRunner).c_str())
439 ;
440 break;
441 }
442 } else {
443 DoLog(0) && (Log() << Verbose(0) << "Adding option " << *OptionRunner << " to CommandLineParser." << endl);
444 ListRunner->second->add_options()
445 (getKeyAndShortForm(*OptionRunner).c_str(), getDescription(*OptionRunner).c_str())
446 ;
447 }
448 }
449 }
450 // add positional arguments
451 for (set<string>::iterator OptionRunner = inputfile.begin(); OptionRunner != inputfile.end(); ++OptionRunner) {
452 DoLog(0) && (Log() << Verbose(0) << "Adding option " << *OptionRunner << " to positional CommandLineParser." << endl);
453 CommandLineParser::getInstance().inputfile.add((*OptionRunner).c_str(), -1);
454 }
455 cout << "Name for position 1: " << CommandLineParser::getInstance().inputfile.name_for_position(1) << endl;
456}
457
458/** Getter for MapOfActions:DescriptionMap.
459 * Note that we assert when action does not exist in CommandLineParser::DescriptionMap.
460 * \param actionname name of the action to lookup
461 * \return Description of the action
462 */
463std::string MapOfActions::getDescription(string actionname)
464{
465 ASSERT(DescriptionMap.find(actionname) != DescriptionMap.end(), "Unknown action name passed to MapOfActions::getDescription");
466 return DescriptionMap[actionname];
467}
468
469/** Specific Getter for a MapOfActions:ShortFormMap.
470 * If action has a short for, then combination is as "actionname,ShortForm" (this is
471 * the desired format for boost::program_options). If no short form exists in the map,
472 * just actionname will be returned
473 * Note that we assert when action does not exist in CommandLineParser::DescriptionMap.
474 * \param actionname name of the action to lookup
475 * \return actionname,ShortForm or Description of the action
476 */
477std::string MapOfActions::getKeyAndShortForm(string actionname)
478{
479 stringstream output;
480 ASSERT(DescriptionMap.find(actionname) != DescriptionMap.end(), "Unknown action name passed to MapOfActions::getDescriptionAndShortForm");
481 output << actionname;
482 if (ShortFormMap.find(actionname) != DescriptionMap.end())
483 output << "," << ShortFormMap[actionname];
484 return output.str();
485}
486
487/** Getter for MapOfActions:ShortFormMap.
488 * Note that we assert when action does not exist CommandLineParser::ShortFormMap.
489 * \param actionname name of the action to lookup
490 * \return ShortForm of the action
491 */
492std::string MapOfActions::getShortForm(string actionname)
493{
494 ASSERT(ShortFormMap.find(actionname) != ShortFormMap.end(), "Unknown action name passed to MapOfActions::getShortForm");
495 return ShortFormMap[actionname];
496}
497
498/** Returns whether the given action needs a value or not.
499 * \param actionname name of the action to look up
500 * \return true - value is needed, false - no value is stored in MapOfActions::TypeMap
501 */
502bool MapOfActions::hasValue(string actionname)
503{
504 return (TypeMap.find(actionname) != TypeMap.end());
505}
506
507/** Getter for MapOfActions::TypeMap.
508 * \param actionname name of the action to look up
509 * \return type of the action
510 */
511enum MapOfActions::OptionTypes MapOfActions::getValueType(string actionname)
512{
513 return TypeMap[actionname];
514}
515
516/** Searches whether action is registered with CommandLineParser.
517 * Note that this method is only meant transitionally for ParseCommandLineOptions' removal.
518 * I.e. All actions that are already handled by the new CommandLineUIFactory can be checked
519 * by this function.
520 * \param shortform command short form to look for
521 * \return true - action has been registered, false - action has not been registered.
522 */
523bool MapOfActions::isShortFormPresent(string shortform)
524{
525 bool result = false;
526 string actionname;
527 for (map<std::string, std::string>::iterator ShortFormRunner = ShortFormMap.begin(); ShortFormRunner != ShortFormMap.end(); ++ShortFormRunner)
528 if (ShortFormRunner->second == shortform) {
529 actionname = ShortFormRunner->first;
530 break;
531 }
532 result = result || (generic.find(actionname) != generic.end());
533 result = result || (config.find(actionname) != config.end());
534 result = result || (hidden.find(actionname) != hidden.end());
535 result = result || (visible.find(actionname) != visible.end());
536 result = result || (inputfile.find(actionname) != inputfile.end());
537 return result;
538}
539
540
541
542CONSTRUCT_SINGLETON(MapOfActions)
Note: See TracBrowser for help on using the repository browser.