Basic class for arg parsing. Example use: More...
#include <ArgMap.h>
Classes | |
struct | ArgProcessor |
Public Types | |
enum | Separator { Separator::COLON, Separator::EQUALS, Separator::WHITESPACE } |
Public Member Functions | |
template<typename T > | |
ArgMap & | arg (const std::string &name, T &value) |
Add a new argument description Adds a new argument description with value of type T. Throws helib::RuntimeError if the arg key is duplicated or if the storing variable is used more than once. More... | |
template<typename T > | |
ArgMap & | arg (const std::string &name, T &value, const std::string &doc) |
Add a new argument with docs Adds a new argument description with value of type T and docs. Throws helib::RuntimeError if the arg key is duplicated or if the storing variable is used more than once. More... | |
template<typename T > | |
ArgMap & | arg (const std::string &name, T &value, const std::string &doc, const char *info) |
Add a new argument with docs and default description Adds a new argument description with value of type T, with docs and default description. Throws helib::RuntimeError if the arg key is duplicated or if the storing variable is used more than once. More... | |
template<typename C > | |
ArgMap & | dots (C &container, const char *name) |
Adds variable number of positional arg types after defined arg types are exhausted. These are treated as optional. More... | |
ArgMap & | parse (int argc, char **argv) |
Parse the argv array Parse the argv array If it fails or -h is an argument it prints the usage and exits the program. More... | |
ArgMap & | parse (const std::string &filepath) |
Parse the configuration/parameters file Parsing a configuration file only functions with named arguments Parse the config file Throws RuntimeError on failure. More... | |
ArgMap & | optional () |
Swaps to optional arg mode (default) Swaps to optional arg mode. Following arguments will be considered optional. More... | |
ArgMap & | required () |
Swaps to required arg mode Swaps to required arg mode. Following arguments will be considered required. More... | |
ArgMap & | toggle (bool t=true) |
Swaps to toggle arg type Swaps to required arg mode. Following arguments will be considered of toggle type. More... | |
ArgMap & | named () |
Swaps to named arg type (default) Swaps to required arg mode. Following arguments will be considered of named type. More... | |
ArgMap & | positional () |
Swaps to positional arg type Swaps to required arg mode. Following arguments will be considered of positional type. More... | |
ArgMap & | helpArgs (const std::initializer_list< std::string > s) |
Provide custom help toggle args. (defaults are "-h", "--help") Overwrite default help toggle args to custom ones for parsing. More... | |
ArgMap & | helpArgs (const std::string s) |
ArgMap & | diagnostics (std::ostream &ostrm=std::cout) |
Turns on diagnostics printout when parsing Swaps to required arg mode. Following arguments will be considered of positional type. More... | |
ArgMap & | separator (Separator s) |
Sets the key-value separator Sets the named args key-value pair separator character. More... | |
ArgMap & | note (const std::string &s) |
Adds a note to usage Adds a note to the arg usage description. More... | |
void | usage (const std::string &msg="") const |
Print usage and exit Prints the usage and exits the program. More... | |
std::string | doc () const |
Return arg docs Returns the argument documentation as a string. More... | |
Detailed Description
Basic class for arg parsing. Example use:
Member Enumeration Documentation
◆ Separator
|
strong |
Member Function Documentation
◆ arg() [1/3]
ArgMap & helib::ArgMap::arg | ( | const std::string & | name, |
T & | value | ||
) |
Add a new argument description Adds a new argument description with value of type T. Throws helib::RuntimeError if the arg key is duplicated or if the storing variable is used more than once.
- Template Parameters
-
T The type of the argument
- Parameters
-
name The argument name (key) value a variable where the argument will be stored. Also used as default value
- Returns
- A reference to the modified ArgMap object
◆ arg() [2/3]
ArgMap & helib::ArgMap::arg | ( | const std::string & | name, |
T & | value, | ||
const std::string & | doc | ||
) |
Add a new argument with docs Adds a new argument description with value of type T and docs. Throws helib::RuntimeError if the arg key is duplicated or if the storing variable is used more than once.
- Template Parameters
-
T The type of the argument
- Parameters
-
name The argument name (key) value a variable where the argument will be stored. Also used as default value doc1 Description of the argument used when displaying usage
- Returns
- A reference to the modified ArgMap object
◆ arg() [3/3]
ArgMap & helib::ArgMap::arg | ( | const std::string & | name, |
T & | value, | ||
const std::string & | doc, | ||
const char * | info | ||
) |
Add a new argument with docs and default description Adds a new argument description with value of type T, with docs and default description. Throws helib::RuntimeError if the arg key is duplicated or if the storing variable is used more than once.
- Template Parameters
-
T The type of the argument
- Parameters
-
name The argument name (key) value a variable where the argument will be stored. Also used as default value doc1 Description of the argument used when displaying usage info The default value description (ignored if nullptr or "")
- Returns
- A reference to the modified ArgMap object
◆ diagnostics()
|
inline |
Turns on diagnostics printout when parsing Swaps to required arg mode. Following arguments will be considered of positional type.
- Returns
- A reference to the ArgMap object
◆ doc()
|
inline |
Return arg docs Returns the argument documentation as a string.
- Returns
- the argument documentation string
◆ dots()
ArgMap & helib::ArgMap::dots | ( | C & | container, |
const char * | name | ||
) |
Adds variable number of positional arg types after defined arg types are exhausted. These are treated as optional.
- Parameters
-
container holds the variable positional args. It must have a push_back method for insertion
- Returns
- A reference to the ArgMap object
◆ helpArgs() [1/2]
|
inline |
Provide custom help toggle args. (defaults are "-h", "--help") Overwrite default help toggle args to custom ones for parsing.
- Returns
- A reference to the ArgMap object
◆ helpArgs() [2/2]
|
inline |
◆ named()
|
inline |
Swaps to named arg type (default) Swaps to required arg mode. Following arguments will be considered of named type.
- Returns
- A reference to the ArgMap object
◆ note()
|
inline |
Adds a note to usage Adds a note to the arg usage description.
- Parameters
-
s The note string
- Returns
- A reference to the ArgMap object
◆ optional()
|
inline |
Swaps to optional arg mode (default) Swaps to optional arg mode. Following arguments will be considered optional.
- Returns
- A reference to the ArgMap object
◆ parse() [1/2]
|
inline |
Parse the configuration/parameters file Parsing a configuration file only functions with named arguments Parse the config file Throws RuntimeError on failure.
- Parameters
-
filepath the config file path
- Returns
- A reference to the ArgMap object
◆ parse() [2/2]
|
inline |
Parse the argv array Parse the argv array If it fails or -h is an argument it prints the usage and exits the program.
- Parameters
-
argc number of entries in argv argv array containing the arguments
- Returns
- A reference to the ArgMap object
◆ positional()
|
inline |
Swaps to positional arg type Swaps to required arg mode. Following arguments will be considered of positional type.
- Returns
- A reference to the ArgMap object
◆ required()
|
inline |
Swaps to required arg mode Swaps to required arg mode. Following arguments will be considered required.
- Returns
- A reference to the ArgMap object
◆ separator()
Sets the key-value separator Sets the named args key-value pair separator character.
- Parameters
-
s the separator enum must be set either to COLON or EQUALS(default).
- Returns
- A reference to the ArgMap object
◆ toggle()
|
inline |
Swaps to toggle arg type Swaps to required arg mode. Following arguments will be considered of toggle type.
- Returns
- A reference to the ArgMap object
◆ usage()
|
inline |
Print usage and exit Prints the usage and exits the program.
- Parameters
-
msg An additional message to print before showing usage