Header lexy/dsl.hpp
The rule DSL for specifying the grammar.
template <typename T>
concept rule = …;The grammar in lexy is specified in several productions, where each one defines an associated rule.
This rule is an object built from the objects and functions of namespace lexy::dsl that defines some (implementation-defined) parsing function.
Parsing a rule takes the reader, which remembers the current position of the input, and the context, which stores information about the current production and whitespace rules, and is responsible for handling errors and values.
Parsing can have one of the following results:
Parsing can succeed. Then it consumes some input by advancing the reader position and produces zero or more values.
Parsing can fail. Then it reports an error, potentially after having consumed some input but without producing values. The parent rule can react to the failure by recovering from it or they fail itself.
Parsing can fail, but then recover. Then it has reported an error, but now it has consumed enough input to be in a known good state and parsing continues normally. See
error recoveryfor details.
A branch rule is a special kind of rule that has an easy to check condition. They are used to guide decisions in the parsing algorithm. Every branch rule defines some (implementation defined) branch parsing function. It mostly behaves the same as the normal parse rule, but can have one additional result: branch parsing can backtrack. If it backtracks, it hasn’t consumed any input, raised errors or produced values. The parsing algorithm is then free to try another branch.
Note | The idea is that a branch rule can relatively quickly decide whether or not it should backtrack. If a branch rule does not backtrack, but fails instead, this failure is propagated and the parsing algorithm does not try another branch. |
A token rule is a special kind of rule that describes the atomic elements. Parsing them never produces any values and can happen easily, as such they’re also branch rules where the entire rule is used as the condition. Because they’re atomic elements of the input, they also participate in automatic whitespace skipping: after every token, lexy will automatically skip whitespace, if one has been defined.
The parse context stores state that can be accessed during parsing.
This includes things like the current recursion depth, see lexy::dsl::recurse,
whether or not automatic whitespace skipping is currently enabled, see whitespace skipping,
but also arbitrary user-defined variables, see lexy::dsl::context_flag, lexy::dsl::context_counter, and lexy::dsl::context_identifier.
When a rule modifies the context during parsing, by adding an additional context variable for example,
this modification is available for all following rules in the current production and all child productions.
In particular, the modification is no longer visible in any parent production.
If a rule is parsed in a loop, e.g. by lexy::dsl::loop or lexy::dsl::list,
any context modification does not persist between loop iterations, and is also not available outside the loop.
How to read the DSL documentation [1]
The behavior of a rule is described by the following sections.
- Matching/parsing
This section describes what input is matched for the rule to succeed, and what is consumed. For token rules it is called "matching", otherwise "parsing".
It often delegates to the behavior of other rules: Here, the term "parsing" refers to the parsing operation of a rule, "branch parsing" or "try to parse" refers to the special parsing operation of a branch rule, which can backtrack, "matching" refers to the parsing operation of a token rule, which cannot produce values, and "try matching" refers to the branch parsing operation of a token rule, which cannot produce values or raise errors.
- Branch parsing
This section describes what input is matched, consumed, and leads to a backtracking for a branch rule. Note that a rule can parse something different here than during non-branch parsing.
- Errors
This section describes what errors are raised, when, and where. It also describes whether the rule can recover after the error.
- Values
This section describes what values are produced during a successful parsing operation. It is omitted for token rules, which never produce values.
- Parse tree
This section describes what nodes are created in the
lexy::parse_tree. If omitted, a token rule creates a single token node covering everything consumed, and a rule produces no extra nodes besides the ones created by the other rules it parses.
If a rule parses another rule in a new context (e.g. lexy::dsl::peek),
the other rule does not have access to context variables, and any context modification is not visible outside of the rule.
The rule DSL
Primitive rules
lexy::dsl::anymatch anything
lexy::dsl::eofmatch EOF
lexy::dsl::newlineandlexy::dsl::eolmatch the end of a line
Literal rules
lexy::dsl::lit_cmatch a single character
lexy::dsl::litandLEXY_LITmatch character sequences
lexy::dsl::lit_bmatch a sequence of bytes
lexy::dsl::lit_cpmatch a code point with the specified value
punctuatorsmatch common punctuation
lexy::dsl::literal_setandLEXY_LITERAL_SETmatch one of the specified literals
lexy::dsl::followed_byandlexy::dsl::not_followed_byensure a literal is (not) followed by a char class
lexy::dsl::ascii::case_foldingandlexy::dsl::unicode::simple_case_foldingmatch a literal case-insensitively
Char classes
lexy::dsl::code_pointmatch specific Unicode code points
lexy::dsl::asciimatch ASCII char classes
lexy::dsl::unicodematch Unicode char classes
lexy::dsl::operator/ (char class),lexy::dsl::operator- (unary),lexy::dsl::operator-,lexy::dsl::operator&combine char classes
LEXY_CHAR_CLASScreate a named char class
Branch conditions
lexy::dsl::operator>>add a branch condition to a rule
lexy::dsl::else_branch condition that is always taken
lexy::dsl::peekandlexy::dsl::peek_notcheck whether something matches without consuming it
lexy::dsl::lookaheadcheck whether something matches somewhere in the input without consuming it
Combinators
lexy::dsl::tokenturn a rule into a token
lexy::dsl::operator+parse a sequence of rules
lexy::dsl::operator|parse one of the specified (branch) rules
lexy::dsl::combinationandlexy::dsl::partial_combinationparse all (some) of the (branch) rules in arbitrary order
lexy::dsl::if_andlexy::dsl::optparse a branch rule if its condition matches
lexy::dsl::loopparse a rule repeatedly
lexy::dsl::while_andlexy::dsl::while_oneparse a branch rule while its condition matches
lexy::dsl::listparse a list of things
lexy::dsl::timesandlexy::dsl::repeatparse a rule
Ntimeslexy::dsl::untilskip everything until a rule matches
Brackets and delimited
lexy::dsl::terminatorparse something that ends with a terminator
lexy::dsl::bracketsparse something surrounded by brackets
lexy::dsl::delimitedandlexy::dsl::escapeparse everything between two delimiters, with optional escape sequences
Productions
lexy::dsl::pandlexy::dsl::recurseparse another production
lexy::dsl::inline_parse another production’s rule inline
lexy::dsl::return_exit early from parsing a production
lexy::dsl::subgrammarparse a production defined in a different source file
Values
lexy::dsl::capturecapture everything consumed by a token rule
lexy::dsl::positionproduce the current input position
lexy::dsl::nulloptproduce an empty placeholder value
lexy::dsl::memberparse something into a member variable
lexy::dsl::scanparse a completely user-defined rule
lexy::dsl::parse_asparses a rule ensuring it always produces a specific value
Errors and error recovery
lexy::dsl::errorexplicitly raise an error
lexy::dsl::mustraise an error if a branch backtracks
lexy::dsl::try_recover from a failed rule
lexy::dsl::recoverrecover by looking and then continuing with some other rule
lexy::dsl::findrecover by looking for synchronization tokens
Whitespace
lexy::dsl::whitespaceexplicitly skip whitespace
lexy::dsl::no_whitespacedo not skip whitespace
Identifiers
lexy::dsl::identifierparse an identifier
lexy::dsl::keywordparse a keyword
lexy::dsl::symbolparse one of the specified symbols and produce their value
lexy::dsl::flagandlexy::dsl::flagsparses (multiple) symbols representing enum flags in any order
Numbers
lexy::dsl::zeroparse zero
lexy::dsl::digitparse a digit
lexy::dsl::digitsparse one or more digits
lexy::dsl::n_digitsparse N digits
lexy::dsl::integerconvert digits to an integer
lexy::dsl::sign,lexy::dsl::plus_signandlexy::dsl::minus_signparse a sign
lexy::dsl::code_point_idconvert N digits into a code point
Operator precedence parsing
lexy::dsl::opparse an operator
lexy::dsl::operator/ (operator)parse one of multiple operators
expressionparse an expression consisting of multiple operators
Context-sensitive parsing
lexy::dsl::context_flaga boolean flag
lexy::dsl::context_counteran integer counter
lexy::dsl::context_identifieran identifier variable
Byte input
lexy::dsl::bytesandlexy::dsl::padding_bytesparse
Nbyteslexy::dsl::bint8,lexy::dsl::bint16, …parse a little/big endian integer
lexy::dsl::bitsparse a byte with specific bit patterns
lexy::dsl::bomparse a byte-order mark (BOM)
Input and action specific rules
lexy::dsl::argv_separatormatch the argument separator of a
lexy::argv_inputlexy::dsl::tnodeandlexy::dsl::pnodematch a node of a
lexy::parse_tree_inputlexy::dsl::debuggenerate a debug event that is visualized by
lexy::trace