| 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 | namespace MoleCuilder { | 
|---|
| 27 | class Action; | 
|---|
| 28 | class OptionTrait; | 
|---|
| 29 | } | 
|---|
| 30 | class CommandLineParser_ActionRegistry_ConsistenyTest; | 
|---|
| 31 |  | 
|---|
| 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 | 
|---|
| 75 | *     UIElements/CommandLineWindow.cpp, e.g. for the above Cmd action, add to populateCommandActions() | 
|---|
| 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 | */ | 
|---|
| 102 | class CommandLineParser : public Singleton<CommandLineParser> { | 
|---|
| 103 | friend class Singleton<CommandLineParser>; | 
|---|
| 104 |  | 
|---|
| 105 | //!> test needs to access CmdParserLookup to see whether menus are missing | 
|---|
| 106 | friend class CommandLineParser_ActionRegistry_ConsistencyTest; | 
|---|
| 107 | public: | 
|---|
| 108 |  | 
|---|
| 109 | // Parses the command line arguments in CommandLineParser::**argv with currently known options. | 
|---|
| 110 | void Run(int _argc, char **_argv); | 
|---|
| 111 |  | 
|---|
| 112 | // Initialises all options from ActionRegistry. | 
|---|
| 113 | void InitializeCommandArguments(); | 
|---|
| 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 | */ | 
|---|
| 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; | 
|---|
| 128 | po::options_description graph; | 
|---|
| 129 | po::options_description molecule; | 
|---|
| 130 | po::options_description options; | 
|---|
| 131 | po::options_description parser; | 
|---|
| 132 | po::options_description selection; | 
|---|
| 133 | po::options_description tesselation; | 
|---|
| 134 | po::options_description world; | 
|---|
| 135 |  | 
|---|
| 136 | po::options_description visible; | 
|---|
| 137 |  | 
|---|
| 138 | po::variables_map vm; | 
|---|
| 139 |  | 
|---|
| 140 | // private sequence of actions as they appeared on the command line | 
|---|
| 141 | std::list<std::string> SequenceOfActions; | 
|---|
| 142 |  | 
|---|
| 143 | private: | 
|---|
| 144 | // private constructor and destructor | 
|---|
| 145 | CommandLineParser(); | 
|---|
| 146 | virtual ~CommandLineParser(); | 
|---|
| 147 |  | 
|---|
| 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 |  | 
|---|
| 154 | // adds options to the parser | 
|---|
| 155 | void AddOptionToParser(const MoleCuilder::OptionTrait * const currentOption, po::options_description* OptionList); | 
|---|
| 156 |  | 
|---|
| 157 | // creates a map from short forms to action tokens needed to parse command line | 
|---|
| 158 | std::map <std::string, std::string> getShortFormToActionMap() const; | 
|---|
| 159 |  | 
|---|
| 160 | typedef std::map< std::string , po::options_description *> CmdParserLookupMap; | 
|---|
| 161 |  | 
|---|
| 162 | // lookup list from "configmenus" to the ones of CommandLineParser | 
|---|
| 163 | CmdParserLookupMap CmdParserLookup; | 
|---|
| 164 |  | 
|---|
| 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 |  | 
|---|
| 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. | 
|---|
| 173 | void scanforSequenceOfArguments(); | 
|---|
| 174 |  | 
|---|
| 175 | TypeEnumContainer TypeToEnums; | 
|---|
| 176 |  | 
|---|
| 177 | // argument counter and array passed on from main() | 
|---|
| 178 | int argc; | 
|---|
| 179 | char **argv; | 
|---|
| 180 | }; | 
|---|
| 181 |  | 
|---|
| 182 | #endif /* COMMANDLINEPARSER_HPP_ */ | 
|---|