![]() |
XTL
0.1
eXtended Template Library
|
text parsing and AST generation More...
Go to the source code of this file.
Data Structures | |
class | xtd::parse::and_<> |
Represents a parse algorithm where all specified elements parse are contiguously present in the input stream All the terminals and rules listed in the parameter pack must parse successfully to satisfy the parse rule. More... | |
class | xtd::parse::character< _value > |
Character terminal parsing algorithm. More... | |
class | xtd::parse::one_or_more_< _Ty > |
Represents a parse algorithm where where the terminal or rule is repeated one or more times in the input stream The specified item must parse successfully at least once to satisfy the parse rule. More... | |
class | xtd::parse::or_<> |
Represents a parse algorithm where one of the listed elements is present in the input stream One of the terminals or rules listed in the parameter pack must parse successfully to satisfy the parse rule. More... | |
class | xtd::parser< _RuleT, _IgnoreCase, _WhitespaceT > |
Main parser class. More... | |
class | xtd::parse::regex< _Ty, > |
regular expression parsing algorithm. More... | |
class | xtd::parse::rule< _DeclT, _ImplT > |
Curiously recurring template pattern to simplify creation of rule_base implementations Rules and terminals implement the rule_base interface through this pattern. More... | |
class | xtd::parse::rule_base |
Base class of both rules and terminals Though rules and terminals are technically different they share the rule_base ancestor in XTL to have a cleaner object model and simpler parsing algorithms. More... | |
class | xtd::parse::string< _Ty, > |
String terminal parsing algorithm. More... | |
class | xtd::parse::whitespace< _Ch > |
list of whitespace characters to ignore in the input stream. More... | |
class | xtd::parse::zero_or_more_< _Ty > |
Represents a parse algorithm where the terminal or rule repeats zero or more times in the input stream Always successfully parses whether or not the element parses. More... | |
class | xtd::parse::zero_or_one_< _Ty > |
Represents a parse algorithm where the terminal or rule repeats exactly zero or one time in the input stream Always successfully parses whether or not the element parses. More... | |
Namespaces | |
xtd | |
The main namespace of the XTL library. | |
xtd::parse | |
Grammar and AST declarations. | |
Macros | |
#define | CHARACTER_(_name, _value) |
Declares a single character terminal. More... | |
#define | REGEX(_name, _value) |
Declares a regular expression terminal. More... | |
#define | STRING(_name, _value) |
Declares a string terminal Must be used at namespace scope. More... | |
#define | STRING_(x) |
Declares a string terminal with the value equal to the name. More... | |
text parsing and AST generation
Definition in file parse.hpp.
class xtd::parse::and_ |
Represents a parse algorithm where all specified elements parse are contiguously present in the input stream All the terminals and rules listed in the parameter pack must parse successfully to satisfy the parse rule.
... | list of child rules and terminals to parse |
class xtd::parse::or_ |
Represents a parse algorithm where one of the listed elements is present in the input stream One of the terminals or rules listed in the parameter pack must parse successfully to satisfy the parse rule.
... | list of child rules and terminals to parse |
class xtd::parse::regex |
regular expression parsing algorithm.
This template is infrequently used directly. The REGEX macro is provided to declare a regular expression terminal.
class xtd::parse::string |
String terminal parsing algorithm.
This template is infrequently used directly. The STRING and STRING_ macros are provided to declare string terminals.
class xtd::parse::whitespace |
list of whitespace characters to ignore in the input stream.
Whitespace characters are parsed and discarded from the input stream when encountered between rules or terminals. A typical whitespace declaration for written language might be: whitespace<'\r', '\n', '\t', ' '>;
_Ch... | list of characters to ignore. |
Data Fields | ||
---|---|---|
whitespace_type |
#define CHARACTER_ | ( | _name, | |
_value | |||
) |
Declares a single character terminal.
Must be used at namespace scope.
_name | name of the terminal. |
_value | value of the terminal. Must be a single character enclosed in single quotes. |
#define REGEX | ( | _name, | |
_value | |||
) |
Declares a regular expression terminal.
Must be used at namespace scope.
_name | name of the terminal. |
_value | regular expression of the terminal. |
#define STRING | ( | _name, | |
_value | |||
) |
Declares a string terminal Must be used at namespace scope.
_name | name of the terminal |
_value | string value of the terminal. Must be enclosed in double quotes. |
#define STRING_ | ( | x | ) |
Declares a string terminal with the value equal to the name.
Must be used at namespace scope
x | name and value of the terminal |