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