argagg
|
There are only two hard things in Computer Science: cache invalidation and naming things (Phil Karlton). More...
Namespaces | |
namespace | convert |
The set of template instantiations that convert C-strings to other types for the option_result::as(), option_results::as(), parser_results::as(), and parser_results::all_as() methods are placed in this namespace. | |
Classes | |
struct | csv |
Represents a list of comma-separated values. This is defined as a new type to embed the delimiter semantics into the type (if it was just a std::vector then it's not clear what the delimiter is). More... | |
struct | definition |
An option definition which essentially represents what an option is. More... | |
struct | fmt_ostream |
A convenience output stream that will accumulate what is streamed to it and then, on destruction, format the accumulated string (via the argagg::fmt_string() function) to the provided std::ostream. More... | |
struct | invalid_flag |
This exception is thrown when an option's flag is invalid. This can be the case if the flag is not prefixed by one or two hyphens or contains non alpha-numeric characters after the hyphens. See is_valid_flag_definition() for more details. More... | |
struct | option_lacks_argument_error |
This exception is thrown when an option requires an argument but is not provided one. This can happen if another flag was found after the option or if we simply reach the end of the command line arguments. More... | |
struct | option_result |
Represents a single option parse result. More... | |
struct | option_results |
Represents multiple option parse results for a single option. If treated as a single parse result it defaults to the last parse result. Note that an instance of this struct is always created even if no option results are parsed for a given definition. In that case it will simply be empty. More... | |
struct | parser |
A list of option definitions used to inform how to parse arguments. More... | |
struct | parser_map |
Contains two maps which aid in option parsing. The first map, short_map, maps from a short flag (just a character) to a pointer to the original definition that the flag represents. The second map, long_map, maps from a long flag (an std::string) to a pointer to the original definition that the flag represents. More... | |
struct | parser_results |
Represents all results of the parser including options and positional arguments. More... | |
struct | unexpected_argument_error |
This exception is thrown when a long option is parsed and is given an argument using the "=" syntax but the option doesn't expect an argument. More... | |
struct | unexpected_option_error |
This exception is thrown when an option is parsed unexpectedly such as when an argument was expected for a previous option or if an option was found that has not been defined. More... | |
struct | unknown_option |
This exception is thrown when an unknown option is requested by name from an argagg::parser_results through the indexing operator ([]). More... | |
Functions | |
bool | cmd_line_arg_is_option_flag (const char *s) |
Checks whether or not a command line argument should be processed as an option flag. This is very similar to is_valid_flag_definition() but must allow for short flag groups (e.g. "-abc") and equal-assigned long flag arguments (e.g. "--output=foo.txt"). | |
bool | is_valid_flag_definition (const char *s) |
Checks whether a flag in an option definition is valid. I suggest reading through the function source to understand what dictates a valid. | |
bool | flag_is_short (const char *s) |
Tests whether or not a valid flag is short. Assumes the provided cstring is already a valid flag. | |
parser_map | validate_definitions (const std::vector< definition > &definitions) |
Validates a collection (specifically an std::vector) of definition objects by checking if the contained flags are valid. If the set of definition objects is not valid then an exception is thrown. Upon successful validation a parser_map object is returned. | |
std::string | fmt_string (const std::string &s) |
Processes the provided string using the fmt utility and returns the resulting output as a string. Not the most efficient (in time or space) but gets the job done. | |
std::string | lstrip (const std::string &text) |
std::string | rstrip (const std::string &text) |
std::string | construct_line (const std::string &indent, const std::string &contents) |
std::string | wrap_line (const std::string &single_line, const std::size_t wrap_width) |
Return a wrapped version of a single line of text. | |
There are only two hard things in Computer Science: cache invalidation and naming things (Phil Karlton).
The names of types have to be succinct and clear. This has turned out to be a more difficult thing than I expected. Here you'll find a quick overview of the type names you'll find in this namespace (and thus "library").
When a program is invoked it is passed a number of "command line arguments". Each of these "arguments" is a string (C-string to be more precise). An "option" is a command line argument that has special meaning. This library recognizes a command line argument as a potential option if it starts with a dash ('-') or double-dash ('–').
A "parser" is a set of "definitions" (not a literal std::set but rather a std::vector). A parser is represented by the argagg::parser struct.
A "definition" is a structure with four components that define what "options" are recognized. The four components are the name of the option, the strings that represent the option, the option's help text, and how many arguments the option should expect. "Flags" are the individual strings that represent the option ("-v" and "--verbose" are flags for the "verbose" option). A definition is represented by the argagg::definition struct.
Note at this point that the word "option" can be used interchangeably to mean the notion of an option and the actual instance of an option given a set of command line arguments. To be unambiguous we use a "definition" to represent the notion of an option and an "option result" to represent an actual option parsed from a set of command line arguments. An "option result" is represented by the argagg::option_result struct.
There's one more wrinkle to this: an option can show up multiple times in a given set of command line arguments. For example, "-n 1 -n 2 -n 3". This will parse into three distinct argagg::option_result instances, but all of them correspond to the same argagg::definition. We aggregate these into the argagg::option_results struct which represents "all parser results for a given option definition". This argagg::option_results is basically a std::vector of argagg::option_result.
Options aren't the only thing parsed though. Positional arguments are also parsed. Thus a parser produces a result that contains both option results and positional arguments. The parser results are represented by the argagg::parser_results struct. All option results are stored in a mapping from option name to the argagg::option_results. All positional arguments are simply stored in a vector of C-strings.
|
inline |
Checks whether or not a command line argument should be processed as an option flag. This is very similar to is_valid_flag_definition() but must allow for short flag groups (e.g. "-abc") and equal-assigned long flag arguments (e.g. "--output=foo.txt").
Definition at line 929 of file argagg.hpp.
|
inline |
Definition at line 1622 of file argagg.hpp.
|
inline |
Tests whether or not a valid flag is short. Assumes the provided cstring is already a valid flag.
Definition at line 1065 of file argagg.hpp.
|
inline |
Processes the provided string using the fmt utility and returns the resulting output as a string. Not the most efficient (in time or space) but gets the job done.
Definition at line 1670 of file argagg.hpp.
|
inline |
Checks whether a flag in an option definition is valid. I suggest reading through the function source to understand what dictates a valid.
Definition at line 1009 of file argagg.hpp.
|
inline |
Definition at line 1590 of file argagg.hpp.
|
inline |
Definition at line 1606 of file argagg.hpp.
|
inline |
Validates a collection (specifically an std::vector) of definition objects by checking if the contained flags are valid. If the set of definition objects is not valid then an exception is thrown. Upon successful validation a parser_map object is returned.
Definition at line 1110 of file argagg.hpp.
|
inline |
Return a wrapped version of a single line of text.
Definition at line 1634 of file argagg.hpp.