[//000000001]: # (pt::peg::to::cparam \- Parser Tools) [//000000002]: # (Generated from file 'to\.inc' by tcllib/doctools with format 'markdown') [//000000003]: # (Copyright © 2009 Andreas Kupries ) [//000000004]: # (pt::peg::to::cparam\(n\) 1\.1\.2 tcllib "Parser Tools")
[ Main Table Of Contents | Table Of Contents | Keyword Index | Categories | Modules | Applications ]
# NAME pt::peg::to::cparam \- PEG Conversion\. Write CPARAM format # Table Of Contents - [Table Of Contents](#toc) - [Synopsis](#synopsis) - [Description](#section1) - [API](#section2) - [Options](#section3) - [C/PARAM code representation of parsing expression grammars](#section4) - [Example](#subsection1) - [PEG serialization format](#section5) - [Example](#subsection2) - [PE serialization format](#section6) - [Example](#subsection3) - [Bugs, Ideas, Feedback](#section7) - [Keywords](#keywords) - [Category](#category) - [Copyright](#copyright) # SYNOPSIS package require Tcl 8\.5 package require pt::peg::to::cparam ?1\.1\.2? [__pt::peg::to::cparam__ __reset__](#1) [__pt::peg::to::cparam__ __configure__](#2) [__pt::peg::to::cparam__ __configure__ *option*](#3) [__pt::peg::to::cparam__ __configure__ *option* *value*\.\.\.](#4) [__pt::peg::to::cparam__ __convert__ *serial*](#5) # 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](pt\_introduction\.md)*\. This document is the entrypoint to the whole system the current package is a part of\. This package implements the converter from parsing expression grammars to CPARAM markup\. It resides in the Export section of the Core Layer of Parser Tools, and can be used either directly with the other packages of this layer, or indirectly through the export manager provided by __[pt::peg::export](pt\_peg\_export\.md)__\. The latter is intented for use in untrusted environments and done through the corresponding export plugin __pt::peg::export::cparam__ sitting between converter and export manager\. ![](\.\./\.\./\.\./\.\./image/arch\_core\_eplugins\.png) # API The API provided by this package satisfies the specification of the Converter API found in the *[Parser Tools Export API](pt\_to\_api\.md)* specification\. - __pt::peg::to::cparam__ __reset__ This command resets the configuration of the package to its default settings\. - __pt::peg::to::cparam__ __configure__ This command returns a dictionary containing the current configuration of the package\. - __pt::peg::to::cparam__ __configure__ *option* This command returns the current value of the specified configuration *option* of the package\. For the set of legal options, please read the section [Options](#section3)\. - __pt::peg::to::cparam__ __configure__ *option* *value*\.\.\. This command sets the given configuration *option*s of the package, to the specified *value*s\. For the set of legal options, please read the section [Options](#section3)\. - __pt::peg::to::cparam__ __convert__ *serial* This command takes the canonical serialization of a parsing expression grammar, as specified in section [PEG serialization format](#section5), and contained in *serial*, and generates CPARAM markup encoding the grammar, per the current package configuration\. The created string is then returned as the result of the command\. # Options The converter to C code recognizes the following configuration variables and changes its behaviour as they specify\. - __\-file__ string The value of this option is the name of the file or other entity from which the grammar came, for which the command is run\. The default value is __unknown__\. - __\-name__ string The value of this option is the name of the grammar we are processing\. The default value is __a\_pe\_grammar__\. - __\-user__ string The value of this option is the name of the user for which the command is run\. The default value is __unknown__\. - __\-template__ string The value of this option is a string into which to put the generated text and the other configuration settings\. The various locations for user\-data are expected to be specified with the placeholders listed below\. The default value is "__@code@__"\. * __@user@__ To be replaced with the value of the option __\-user__\. * __@format@__ To be replaced with the the constant __C/PARAM__\. * __@file@__ To be replaced with the value of the option __\-file__\. * __@name@__ To be replaced with the value of the option __\-name__\. * __@code@__ To be replaced with the generated Tcl code\. The following options are special, in that they will occur within the generated code, and are replaced there as well\. * __@statedecl@__ To be replaced with the value of the option __state\-decl__\. * __@stateref@__ To be replaced with the value of the option __state\-ref__\. * __@strings@__ To be replaced with the value of the option __string\-varname__\. * __@self@__ To be replaced with the value of the option __self\-command__\. * __@def@__ To be replaced with the value of the option __fun\-qualifier__\. * __@ns@__ To be replaced with the value of the option __namespace__\. * __@main@__ To be replaced with the value of the option __main__\. * __@prelude@__ To be replaced with the value of the option __prelude__\. - __\-state\-decl__ string A C string representing the argument declaration to use in the generated parsing functions to refer to the parsing state\. In essence type and argument name\. The default value is the string __RDE\_PARAM p__\. - __\-state\-ref__ string A C string representing the argument named used in the generated parsing functions to refer to the parsing state\. The default value is the string __p__\. - __\-self\-command__ string A C string representing the reference needed to call the generated parser function \(methods \.\.\.\) from another parser fonction, per the chosen framework \(template\)\. The default value is the empty string\. - __\-fun\-qualifier__ string A C string containing the attributes to give to the generated functions \(methods \.\.\.\), per the chosen framework \(template\)\. The default value is __static__\. - __\-namespace__ string The name of the C namespace the parser functions \(methods, \.\.\.\) shall reside in, or a general prefix to add to the function names\. The default value is the empty string\. - __\-main__ string The name of the main function \(method, \.\.\.\) to be called by the chosen framework \(template\) to start parsing input\. The default value is __\_\_main__\. - __\-string\-varname__ string The name of the variable used for the table of strings used by the generated parser, i\.e\. error messages, symbol names, etc\. The default value is __p\_string__\. - __\-prelude__ string A snippet of code to be inserted at the head of each generated parsing function\. The default value is the empty string\. - __\-indent__ integer The number of characters to indent each line of the generated code by\. The default value is __0__\. - __\-comments__ boolean A flag controlling the generation of code comments containing the original parsing expression a parsing function is for\. The default value is __on__\. While the high parameterizability of this converter, as shown by the multitude of options it supports, is an advantage to the advanced user, allowing her to customize the output of the converter as needed, a novice user will likely not see the forest for the trees\. To help these latter users an adjunct package is provided, containing a canned configuration which will generate immediately useful full parsers\. It is - __[pt::cparam::configuration::critcl](pt\_cparam\_config\_critcl\.md)__ Generated parsers are embedded into a __Critcl__\-based framework\. # C/PARAM code representation of parsing expression grammars The __c__ format is executable code, a parser for the grammar\. The parser implementation is written in C and can be tweaked to the users' needs through a multitude of options\. The __critcl__ format, for example, is implemented as a canned configuration of these options on top of the generator for __c__\. The bulk of such a framework has to be specified through the option __\-template__\. The additional options - __\-fun\-qualifier__ string - __\-main__ string - __\-namespace__ string - __\-prelude__ string - __\-self\-command__ string - __\-state\-decl__ string - __\-state\-ref__ string - __\-string\-varname__ string provide code snippets which help to glue framework and generated code together\. Their placeholders are in the *generated* code\. Further the options - __\-indent__ integer - __\-comments__ boolean allow for the customization of the code indent \(default none\), and whether to generate comments showing the parsing expressions a function is for \(default on\)\. ## Example We are forgoing an example of this representation, with apologies\. It would be way to large for this document\. # PEG serialization format Here we specify the format used by the Parser Tools to serialize Parsing Expression Grammars as immutable values for transport, comparison, etc\. We distinguish between *regular* and *canonical* serializations\. While a PEG may have more than one regular serialization only exactly one of them will be *canonical*\. - regular serialization 1. The serialization of any PEG is a nested Tcl dictionary\. 1. This dictionary holds a single key, __pt::grammar::peg__, and its value\. This value holds the contents of the grammar\. 1. The contents of the grammar are a Tcl dictionary holding the set of nonterminal symbols and the starting expression\. The relevant keys and their values are * __rules__ The value is a Tcl dictionary whose keys are the names of the nonterminal symbols known to the grammar\. 1) Each nonterminal symbol may occur only once\. 1) The empty string is not a legal nonterminal symbol\. 1) The value for each symbol is a Tcl dictionary itself\. The relevant keys and their values in this dictionary are + __is__ The value is the serialization of the parsing expression describing the symbols sentennial structure, as specified in the section [PE serialization format](#section6)\. + __mode__ The value can be one of three values specifying how a parser should handle the semantic value produced by the symbol\. - __value__ The semantic value of the nonterminal symbol is an abstract syntax tree consisting of a single node node for the nonterminal itself, which has the ASTs of the symbol's right hand side as its children\. - __leaf__ The semantic value of the nonterminal symbol is an abstract syntax tree consisting of a single node node for the nonterminal, without any children\. Any ASTs generated by the symbol's right hand side are discarded\. - __void__ The nonterminal has no semantic value\. Any ASTs generated by the symbol's right hand side are discarded \(as well\)\. * __start__ The value is the serialization of the start parsing expression of the grammar, as specified in the section [PE serialization format](#section6)\. 1. The terminal symbols of the grammar are specified implicitly as the set of all terminal symbols used in the start expression and on the RHS of the grammar rules\. - canonical serialization The canonical serialization of a grammar 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 grammar\. 1. The keys found in all the nested Tcl dictionaries are sorted in ascending dictionary order, as generated by Tcl's builtin command __lsort \-increasing \-dict__\. 1. The string representation of the value is the canonical representation of a Tcl dictionary\. I\.e\. it does not contain superfluous whitespace\. ## Example Assuming the following PEG for simple mathematical expressions PEG calculator (Expression) Digit <- '0'/'1'/'2'/'3'/'4'/'5'/'6'/'7'/'8'/'9' ; Sign <- '-' / '+' ; Number <- Sign? Digit+ ; Expression <- Term (AddOp Term)* ; MulOp <- '*' / '/' ; Term <- Factor (MulOp Factor)* ; AddOp <- '+'/'-' ; Factor <- '(' Expression ')' / Number ; END; then its canonical serialization \(except for whitespace\) is pt::grammar::peg { rules { AddOp {is {/ {t -} {t +}} mode value} Digit {is {/ {t 0} {t 1} {t 2} {t 3} {t 4} {t 5} {t 6} {t 7} {t 8} {t 9}} mode value} Expression {is {x {n Term} {* {x {n AddOp} {n Term}}}} mode value} Factor {is {/ {x {t (} {n Expression} {t )}} {n Number}} mode value} MulOp {is {/ {t *} {t /}} mode value} Number {is {x {? {n Sign}} {+ {n Digit}}} mode value} Sign {is {/ {t -} {t +}} mode value} Term {is {x {n Factor} {* {x {n MulOp} {n Factor}}}} mode value} } start {n Expression} } # 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 __epsilon__ is an atomic parsing expression\. It matches the empty string\. 1. The string __dot__ is an atomic parsing expression\. It matches any character\. 1. The string __alnum__ is an atomic parsing expression\. It matches any Unicode alphabet or digit character\. This is a custom extension of PEs based on Tcl's builtin command __string is__\. 1. The string __alpha__ is an atomic parsing expression\. It matches any Unicode alphabet character\. This is a custom extension of PEs based on Tcl's builtin command __string is__\. 1. The string __ascii__ is an atomic parsing expression\. It matches any Unicode character below U0080\. This is a custom extension of PEs based on Tcl's builtin command __string is__\. 1. The string __control__ is an atomic parsing expression\. It matches any Unicode control character\. This is a custom extension of PEs based on Tcl's builtin command __string is__\. 1. The string __digit__ is 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 command __string is__\. 1. The string __graph__ is 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 command __string is__\. 1. The string __lower__ is an atomic parsing expression\. It matches any Unicode lower\-case alphabet character\. This is a custom extension of PEs based on Tcl's builtin command __string is__\. 1. The string __print__ is an atomic parsing expression\. It matches any Unicode printing character, including space\. This is a custom extension of PEs based on Tcl's builtin command __string is__\. 1. The string __punct__ is an atomic parsing expression\. It matches any Unicode punctuation character\. This is a custom extension of PEs based on Tcl's builtin command __string is__\. 1. The string __space__ is an atomic parsing expression\. It matches any Unicode space character\. This is a custom extension of PEs based on Tcl's builtin command __string is__\. 1. The string __upper__ is an atomic parsing expression\. It matches any Unicode upper\-case alphabet character\. This is a custom extension of PEs based on Tcl's builtin command __string is__\. 1. The string __wordchar__ is 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 command __string is__\. 1. The string __xdigit__ is an atomic parsing expression\. It matches any hexadecimal digit character\. This is a custom extension of PEs based on Tcl's builtin command __string is__\. 1. The string __ddigit__ is an atomic parsing expression\. It matches any decimal digit character\. This is a custom extension of PEs based on Tcl's builtin command __regexp__\. 1. The expression \[list t __x__\] is an atomic parsing expression\. It matches the terminal string __x__\. 1. The expression \[list n __A__\] is an atomic parsing expression\. It matches the nonterminal __A__\. * __Combined Parsing Expressions__ 1. For parsing expressions __e1__, __e2__, \.\.\. the result of \[list / __e1__ __e2__ \.\.\. \] is a parsing expression as well\. This is the *ordered choice*, aka *prioritized choice*\. 1. For parsing expressions __e1__, __e2__, \.\.\. the result of \[list x __e1__ __e2__ \.\.\. \] is a parsing expression as well\. This is the *sequence*\. 1. For a parsing expression __e__ the result of \[list \* __e__\] is a parsing expression as well\. This is the *kleene closure*, describing zero or more repetitions\. 1. For a parsing expression __e__ the result of \[list \+ __e__\] is a parsing expression as well\. This is the *positive kleene closure*, describing one or more repetitions\. 1. For a parsing expression __e__ the result of \[list & __e__\] is a parsing expression as well\. This is the *and lookahead predicate*\. 1. For a parsing expression __e__ the result of \[list \! __e__\] is a parsing expression as well\. This is the *not lookahead predicate*\. 1. For a parsing expression __e__ the 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\. 1. 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\. # KEYWORDS [CPARAM](\.\./\.\./\.\./\.\./index\.md\#cparam), [EBNF](\.\./\.\./\.\./\.\./index\.md\#ebnf), [LL\(k\)](\.\./\.\./\.\./\.\./index\.md\#ll\_k\_), [PEG](\.\./\.\./\.\./\.\./index\.md\#peg), [TDPL](\.\./\.\./\.\./\.\./index\.md\#tdpl), [context\-free languages](\.\./\.\./\.\./\.\./index\.md\#context\_free\_languages), [conversion](\.\./\.\./\.\./\.\./index\.md\#conversion), [expression](\.\./\.\./\.\./\.\./index\.md\#expression), [format conversion](\.\./\.\./\.\./\.\./index\.md\#format\_conversion), [grammar](\.\./\.\./\.\./\.\./index\.md\#grammar), [matching](\.\./\.\./\.\./\.\./index\.md\#matching), [parser](\.\./\.\./\.\./\.\./index\.md\#parser), [parsing expression](\.\./\.\./\.\./\.\./index\.md\#parsing\_expression), [parsing expression grammar](\.\./\.\./\.\./\.\./index\.md\#parsing\_expression\_grammar), [push down automaton](\.\./\.\./\.\./\.\./index\.md\#push\_down\_automaton), [recursive descent](\.\./\.\./\.\./\.\./index\.md\#recursive\_descent), [serialization](\.\./\.\./\.\./\.\./index\.md\#serialization), [state](\.\./\.\./\.\./\.\./index\.md\#state), [top\-down parsing languages](\.\./\.\./\.\./\.\./index\.md\#top\_down\_parsing\_languages), [transducer](\.\./\.\./\.\./\.\./index\.md\#transducer) # CATEGORY Parsing and Grammars # COPYRIGHT Copyright © 2009 Andreas Kupries