1 // ANNA - Anna is Not Nothingness Anymore //
3 // (c) Copyright 2005-2015 Eduardo Ramos Testillano & Francisco Ruiz Rayo //
5 // See project site at http://redmine.teslayout.com/projects/anna-suite //
6 // See accompanying file LICENSE or copy at http://www.teslayout.com/projects/public/anna.LICENSE //
9 #ifndef anna_core_util_CommandLine_hpp
10 #define anna_core_util_CommandLine_hpp
16 #include <anna/core/functions.hpp>
17 #include <anna/core/Singleton.hpp>
21 class RuntimeException;
29 Command line parser helper for our application. It's close to GNU-style, supporting
30 single letter (single hyphen) and long argument names (double hyphen). No bare hyphen
31 or double-dash end of parsing separator are supported. No positional arguments are supported.
33 class CommandLine : public Singleton <CommandLine> {
35 /* returns first no-leading hyphen position; -1 is error */
36 static int removeLeadingHyphens(std::string &argv) throw();
40 Define los tipos de argumento
43 struct Argument { enum Type { Mandatory = 0, Optional}; };
47 @return la lista de cadenas indicadas en la linea de comandos al ejecutar este programa.
48 Mientras que no invoquemos al metodo #initialize devolvera NULL.
50 const char** getArgv() const throw() { return a_argv; }
53 @return El numero de parametros indicados en la linea de comandos al ejecutar este programa.
55 int getArgc() const throw() { return a_argc; }
61 Establece la informacion necesaria para analizar la linea de comandos
62 indicada por el usuario. Debe invocarse antes que cualquier otro metodo
63 relacionado con la obtencion/comprobacion de valor de la linea de comandos.
65 Recibe una copia de los parametros que los recibidos por el metodo 'main'.
67 @param argv Conjunto de cadenas que se reciben de la linea de comandos.
68 @param argc Numero de cadenas recibidas.
69 @param positionalArguments Enables positional arguments. An offset will be applied to start command-line interpretation.
70 These positional arguments are mandatory, and the user could retrieve their values through #getPositional. By default no
71 positional arguments are specified.
73 void initialize(const char** argv, const int argc, int positionalArguments = 0) throw(RuntimeException);
76 Register an argument name in our application
78 @param argumentExpression Argument name, or comma-separated set with both short and long argument names. For example 'v,version', 'h,help', or simply 'f' or 'file'. If both,
79 provided, one of them shall be a single letter and the other will be a word. In other case, nothing will be registered. Command line arguments stands for -<single letter option>
80 and --<word option> when proceed. If NULL provided, nothing is done.
81 @param type Argument type. See Variable#Type.
82 @param comment Argument explanation.
83 @param needValue If our argument has an additional associated value, this will be true. False in other case (flags).
85 void add(const char* argumentExpression, Argument::Type type, const char* comment, const bool needValue = true) throw();
88 Gets a positional argument. There must be registered or NULL will be returned.
90 @param position Argument position from 1 to N
92 @return Value of mandatory positional argument with position provided
94 const char *getPositional(int position) const throw() {
95 const char *result = NULL;
96 if ((position > 0) && (position <= a_positionalArguments)) result = a_argv[position];
101 Obtiene el valor asociado al argumento recibido como parametro.
102 El valor devuelto puede ser NULL en caso de que el argumento no sea
103 obligatorio y no este en la linea de comandos.
104 Si el argumento es obligatorio y no este en la linea de comandos o
105 no tiene valor asociado la ejecucion del programa TERMINA inmediatamente.
107 @param argumentExpression You should look for the registered expression (#add), internally tokenized if needed.
108 @param exitOnFault Indica el funcionamiento del metodo en caso de que el
109 argumento solicitado no halla sido indicado. Si el parametro no existe
110 si vale @em true la aplicacion terminara, si vale @em false devolvera NULL.
112 @return Valor asociadoal argumento recibido como parametro. Puede ser NULL.
114 const char* getValue(const char* argumentExpression, const bool exitOnFault = true) throw();
117 Obtiene el valor asociado al argumento recibido, pero convirtiendo a
118 numero el valor obtenido por #getValue.
120 @param argumentExpression You should look for the registered expression (#add), internally tokenized if needed.
122 @return Valor numerico del valor devuelto por #getValue.
124 int getIntegerValue(const char* argumentExpression) throw() { return atoi(getValue(argumentExpression)); }
127 Comprueba si el argumento recibido como parametro estña presente en la linea de
130 @param argumentExpression You should look for the registered expression (#add), internally tokenized if needed.
132 @return true si el argumento esta en la linea de comandos y false en otro caso.
134 bool exists(const char* argumentExpression) throw() { return (getValue(argumentExpression, false) != NULL) ? true : false; }
137 Comprueba la linea de comandos del programa para verificar que coincide con los argumentos
138 registrados por nuestra aplicacion:
140 @li Verifica que los parametros obligatorios estan en la linea de comandos.
141 @li Verifica que los valores de los argumento son correctos de forma que si un parametro
142 debe llevar un valor asociado este esta presente y que si no debe llevarlo no esta.
143 El orden en que aparezcan los argumento en la linea de comandos es indiferente a la hora de
144 hacer las comprobacion.
146 Si hay algun fallo en la linea de comandos establecida al ejecutar el programa visualiza un
147 resumen con los parametros soportados y la ejecucion del programa finaliza.
149 void verify() throw(RuntimeException);
153 Class string representation
154 \return String with relevant information for this instance.
156 std::string asString() const throw();
159 Class xml representation
160 \param parent Parent XML node on which hold this instance information.
161 \return XML document with relevant information for this instance.
163 xml::Node* asXML(xml::Node* parent) const throw();
172 Variable(const std::string &name1, const std::string &name2, const Argument::Type type, const char* comment, const bool needValue = true) :
173 a_name1(name1), a_name2(name2), a_type(type), a_comment(comment), a_needValue(needValue), a_isOn(false), a_value(NULL) {
175 virtual ~Variable() { if(a_value) free(a_value); }
178 const std::string& getName1() const throw() { return a_name1; }
179 const std::string& getName2() const throw() { return a_name2; }
180 std::string getHelpExpression() const throw();
181 const char* getValue() const throw() { return a_value; }
182 const char* getComment() const throw() { return a_comment; }
183 bool getNeedValue() const throw() { return a_needValue; }
184 bool getIsOn() const throw() { return a_isOn; }
185 Argument::Type getType() const throw() { return a_type; }
188 void setValue(const char* value) throw() { a_value = (value == NULL) ? NULL : strdup(value); }
189 void setIsOn(const bool isOn) throw() { a_isOn = isOn; }
192 std::string asString() const throw();
195 std::string a_name1, a_name2;
196 const char* a_comment;
198 Argument::Type a_type;
206 std::vector <Variable*> a_arguments;
207 int a_positionalArguments;
209 CommandLine() : a_argv(NULL), a_argc(0), a_positionalArguments(0) {;}
211 bool analize() throw();
212 const Variable* search(const char *argumentExpression) const throw();
213 void printUsage() const throw();
215 friend class Singleton <CommandLine>;