Home › Parser Tools tcllib
pt::pe::op
Parsing Expression Utilities
literal type exactly as shown
argument replace with your value
?optional? may be omitted
Synopsis#
package require Tcl 8.5 9
package require pt::pe::op ?1.0.2?
package require pt::pe ?1?
package require struct::set
::pt::pe::op drop dropset pe
::pt::pe::op rename nt ntnew pe
::pt::pe::op called pe
::pt::pe::op flatten pe
::pt::pe::op fusechars pe
Description#
Are you lost ? Do you have trouble understanding this document ? In that case please read the overview provided by the Introduction to Parser Tools. This document is the entrypoint to the whole system the current package is a part of.
This package provides additional commands to work with the serializations of parsing expressions as managed by the PEG and related packages, and specified in section PE serialization format.
This is an internal package, for use by the higher level packages handling PEGs, their conversion into and out of various other formats, or other uses.
API#
::pt::pe::opdropdropset pe#-
This command removes all occurences of any of the nonterminals symbols in the set dropset from the parsing expression pe, and simplifies it. This may result in the expression becoming "epsilon", i.e. matching nothing.
::pt::pe::oprenament ntnew pe#-
This command renames all occurences of the nonterminal nt in the parsing expression pe into ntnew.
::pt::pe::opcalledpe#-
This command extracts the set of all nonterminal symbols used, i.e. 'called', in the parsing expression pe.
::pt::pe::opflattenpe#-
This command transforms the parsing expression by eliminating sequences nested in sequences, and choices in choices, lifting the children of the nested expression into the parent. It further eliminates all sequences and choices with only one child, as these are redundant.
The resulting parsing expression is returned as the result of the command.
::pt::pe::opfusecharspe#-
This command transforms the parsing expression by fusing adjacent terminals in sequences and adjacent terminals and ranges in choices, it (re)constructs highlevel strings and character classes.
The resulting pseudo-parsing expression is returned as the result of the command and may contain the pseudo-operators
strfor character sequences, aka strings, andclfor character choices, aka character classes.The result is called a pseudo-parsing expression because it is not a true parsing expression anymore, and will fail a check with
::pt::peg verifyif the new pseudo-operators are present in the result, but is otherwise of sound structure for a parsing expression. Notably, the commands::pt::peg bottomupand::pt::peg topdownwill process them without trouble.
Pe serialization format#
Here we specify the format used by the Parser Tools to serialize Parsing Expressions as immutable values for transport, comparison, etc.
We distinguish between regular and canonical serializations. While a parsing expression may have more than one regular serialization only exactly one of them will be canonical.
- Regular serialization
-
Atomic Parsing Expressions#-
- [1]
-
The string
epsilonis an atomic parsing expression. It matches the empty string. - [2]
-
The string
dotis an atomic parsing expression. It matches any character. - [3]
-
The string
alnumis an atomic parsing expression. It matches any Unicode alphabet or digit character. This is a custom extension of PEs based on Tcl's builtin commandstring is. - [4]
-
The string
alphais an atomic parsing expression. It matches any Unicode alphabet character. This is a custom extension of PEs based on Tcl's builtin commandstring is. - [5]
-
The string
asciiis an atomic parsing expression. It matches any Unicode character below U0080. This is a custom extension of PEs based on Tcl's builtin commandstring is. - [6]
-
The string
controlis an atomic parsing expression. It matches any Unicode control character. This is a custom extension of PEs based on Tcl's builtin commandstring is. - [7]
-
The string
digitis an atomic parsing expression. It matches any Unicode digit character. Note that this includes characters outside of the [0..9] range. This is a custom extension of PEs based on Tcl's builtin commandstring is. - [8]
-
The string
graphis an atomic parsing expression. It matches any Unicode printing character, except for space. This is a custom extension of PEs based on Tcl's builtin commandstring is. - [9]
-
The string
loweris an atomic parsing expression. It matches any Unicode lower-case alphabet character. This is a custom extension of PEs based on Tcl's builtin commandstring is. - [10]
-
The string
printis an atomic parsing expression. It matches any Unicode printing character, including space. This is a custom extension of PEs based on Tcl's builtin commandstring is. - [11]
-
The string
punctis an atomic parsing expression. It matches any Unicode punctuation character. This is a custom extension of PEs based on Tcl's builtin commandstring is. - [12]
-
The string
spaceis an atomic parsing expression. It matches any Unicode space character. This is a custom extension of PEs based on Tcl's builtin commandstring is. - [13]
-
The string
upperis an atomic parsing expression. It matches any Unicode upper-case alphabet character. This is a custom extension of PEs based on Tcl's builtin commandstring is. - [14]
-
The string
wordcharis an atomic parsing expression. It matches any Unicode word character. This is any alphanumeric character (see alnum), and any connector punctuation characters (e.g. underscore). This is a custom extension of PEs based on Tcl's builtin commandstring is. - [15]
-
The string
xdigitis an atomic parsing expression. It matches any hexadecimal digit character. This is a custom extension of PEs based on Tcl's builtin commandstring is. - [16]
-
The string
ddigitis an atomic parsing expression. It matches any decimal digit character. This is a custom extension of PEs based on Tcl's builtin commandregexp. - [17]
-
The expression [list t
x] is an atomic parsing expression. It matches the terminal stringx. - [18]
-
The expression [list n
A] is an atomic parsing expression. It matches the nonterminalA.
Combined Parsing Expressions#-
- [1]
-
For parsing expressions
e1,e2, ... the result of [list /e1e2... ] is a parsing expression as well. This is the ordered choice, aka prioritized choice. - [2]
-
For parsing expressions
e1,e2, ... the result of [list xe1e2... ] is a parsing expression as well. This is the sequence. - [3]
-
For a parsing expression
ethe result of [list *e] is a parsing expression as well. This is the kleene closure, describing zero or more repetitions. - [4]
-
For a parsing expression
ethe result of [list +e] is a parsing expression as well. This is the positive kleene closure, describing one or more repetitions. - [5]
-
For a parsing expression
ethe result of [list &e] is a parsing expression as well. This is the and lookahead predicate. - [6]
-
For a parsing expression
ethe result of [list !e] is a parsing expression as well. This is the not lookahead predicate. - [7]
-
For a parsing expression
ethe result of [list ?e] is a parsing expression as well. This is the optional input.
- Canonical serialization
-
The canonical serialization of a parsing expression has the format as specified in the previous item, and then additionally satisfies the constraints below, which make it unique among all the possible serializations of this parsing expression.
- [1]
-
The string representation of the value is the canonical representation of a pure Tcl list. I.e. it does not contain superfluous whitespace.
- [2]
-
Terminals are not encoded as ranges (where start and end of the range are identical).
Example#
Assuming the parsing expression shown on the right-hand side of the rule
Expression <- Term (AddOp Term)*
then its canonical serialization (except for whitespace) is
{x {n Term} {* {x {n AddOp} {n Term}}}}
Bugs, ideas, feedback#
This document, and the package it describes, will undoubtedly contain bugs and other problems. Please report such in the category pt of the Tcllib Trackers [http://core.tcl.tk/tcllib/reportlist]. Please also report any ideas for enhancements you may have for either package and/or documentation.
When proposing code changes, please provide unified diffs, i.e the output of diff -u.
Note further that attachments are strongly preferred over inlined patches. Attachments can be made by going to the Edit form of the ticket immediately after its creation, and then using the left-most button in the secondary navigation bar.
Category#
Parsing and Grammars
Copyright#
Copyright (c) 2009 Andreas Kupries <andreas_kupries@users.sourceforge.net>
Keywords#
EBNF · LL(k) · PEG · TDPL · context-free languages · expression · grammar · matching · parser · parsing expression · parsing expression grammar · push down automaton · recursive descent · state · top-down parsing languages · transducer