arg_router
1.4.0
C++ command line argument parsing and routing
|
Types that derive from tree_node form the nodes of the parse tree.
The first task tree_node has to do is organise the constructor parameters.
static_assert
failureSplitting out other tree_node derived types has a further complexity due to list, which will need flattening first.
Every node needs pre-parse functionality because it is what the parent uses to determine if a set of tokens are for a particular child node. For a leaf node, the method performs these operations:
A mode-like node implements this method very differently, because its job is to collect the parsing::parse_target results of all of its children rather than directly processing the tokens itself.
Every tree_node derived type also needs to provide a parse function, which as the name suggests, processes the tokens (if any) in the given parsing::parse_target in order to produce a value that represents the tokens in some way.
It's important to note that the parse method is not called directly, the parsing::parse_target returned from the pre-parse is a type erasing function object type. When it is created it creates a closure around the target node and its parents, so when it is executed it calls the target node's parse method passing itself and the parents into it.
Let's look at what a typical node like arg_t does:
There are two exits for the node, if the node is top-level then once parsing is complete we can exit to the library user's code with the result via the routing policy, as it's the only value expected to be parsed from the command line. However, often the node is the child of a mode-like type (e.g. mode_t) which is building up a results tuple from the parsed tokens, in that case we return the value to the mode.
It's important to note that every node needs this method, even if they don't parse a value off the command line e.g. flag_t which does this:
true
resultI.e. there is no parsing as the presence of a flag indicates a positive value.