summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2011-02-18 22:35:22 +0100
committerAndy Wingo <wingo@pobox.com>2011-03-24 21:10:05 +0100
commit4c7622eb6ece4fbafbd09498e78315c75a815842 (patch)
tree8f7ed8065220381d15cd217c1e89acf49b3dbeb2
parent20f8cb08959c7cce8ca9757c093e17f1056ef7f5 (diff)
downloadguile-4c7622eb6ece4fbafbd09498e78315c75a815842.tar.gz
reformat and reflow api-peg.texi
* doc/ref/api-peg.texi: Reformat and reflow.
-rw-r--r--doc/ref/api-peg.texi508
1 files changed, 366 insertions, 142 deletions
diff --git a/doc/ref/api-peg.texi b/doc/ref/api-peg.texi
index f9eb7ffa4..b53139de5 100644
--- a/doc/ref/api-peg.texi
+++ b/doc/ref/api-peg.texi
@@ -1,21 +1,35 @@
@c -*-texinfo-*-
@c This is part of the GNU Guile Reference Manual.
-@c Copyright (C) 2006, 2010
+@c Copyright (C) 2006, 2010, 2011
@c Free Software Foundation, Inc.
@c See the file guile.texi for copying conditions.
@node PEG Parsing
@section PEG Parsing
-Parsing Expression Grammars (PEGs) are a way of specifying formal languages for text processing. They can be used either for matching (like regular expressions) or for building recursive descent parsers (like lex/yacc). Guile uses a superset of PEG syntax that allows more control over what information is preserved during parsing.
+Parsing Expression Grammars (PEGs) are a way of specifying formal
+languages for text processing. They can be used either for matching
+(like regular expressions) or for building recursive descent parsers
+(like lex/yacc). Guile uses a superset of PEG syntax that allows more
+control over what information is preserved during parsing.
-Wikipedia has a clear and concise introduction to PEGs if you want to familiarize yourself with the syntax: @url{http://en.wikipedia.org/wiki/Parsing_expression_grammar}.
+Wikipedia has a clear and concise introduction to PEGs if you want to
+familiarize yourself with the syntax:
+@url{http://en.wikipedia.org/wiki/Parsing_expression_grammar}.
-The module works by compiling PEGs down to lambda expressions. These can either be stored in variables at compile-time by the define macros (@code{define-nonterm} and @code{define-grammar}) or calculated explicitly at runtime with the compile functions (@code{peg-sexp-compile} and @code{peg-string-compile}).
+The module works by compiling PEGs down to lambda expressions. These
+can either be stored in variables at compile-time by the define macros
+(@code{define-nonterm} and @code{define-grammar}) or calculated
+explicitly at runtime with the compile functions
+(@code{peg-sexp-compile} and @code{peg-string-compile}).
-They can then be used for either parsing (@code{peg-parse}) or matching (@code{peg-match}). For convenience, @code{peg-match} also takes pattern literals in case you want to inline a simple search (people often use regular expressions this way).
+They can then be used for either parsing (@code{peg-parse}) or matching
+(@code{peg-match}). For convenience, @code{peg-match} also takes
+pattern literals in case you want to inline a simple search (people
+often use regular expressions this way).
-The rest of this documentation consists of a syntax reference, an API reference, and a tutorial.
+The rest of this documentation consists of a syntax reference, an API
+reference, and a tutorial.
@menu
* PEG Syntax Reference::
@@ -28,70 +42,113 @@ The rest of this documentation consists of a syntax reference, an API reference,
@subsubheading Normal PEG Syntax:
-Format: @*
-Name @*
-Description @*
-String Syntax @*
-S-expression Syntax @*
-
-Sequence @code{a} @code{b}: @*
-Parses @code{a}. If this succeeds, continues to parse @code{b} from the end of the text parsed as @code{a}. Succeeds if both @code{a} and @code{b} succeed. @*
-@code{"a b"} @*
-@code{(and a b)} @*
-
-Ordered choice @code{a} @code{b}: @*
-Parses @code{a}. If this fails, backtracks and parses @code{b}. Succeeds if either @code{a} or @code{b} succeeds. @*
-@code{"a/b"} @*
-@code{(or a b)} @*
-
-Zero or more @code{a}: @*
-Parses @code{a} as many times in a row as it can, starting each @code{a} at the end of the text parsed by the previous @code{a}. Always succeeds. @*
-@code{"a*"} @*
-@code{(body lit a *)} @*
-
-One or more @code{a}: @*
-Parses @code{a} as many times in a row as it can, starting each @code{a} at the end of the text parsed by the previous @code{a}. Succeeds if at least one @code{a} was parsed. @*
-@code{"a+"} @*
-@code{(body lit a +)} @*
-
-Optional @code{a}: @*
-Tries to parse @code{a}. Succeeds if @code{a} succeeds. @*
-@code{"a?"} @*
-@code{(body lit a ?)} @*
-
-And predicate @code{a}: @*
-Makes sure it is possible to parse @code{a}, but does not actually parse it. Succeeds if @code{a} would succeed. @*
-@code{"&a"} @*
-@code{(body & a 1)} @*
-
-Not predicate @code{a}: @*
-Makes sure it is impossible to parse @code{a}, but does not actually parse it. Succeeds if @code{a} would fail. @*
-@code{"!a"} @*
-@code{(body ! a 1)} @*
-
-String literal @code{"abc"}: @*
-Parses the string @code{"abc"}. Succeeds if that parsing succeeds. @*
-@code{"'abc'"} @*
-@code{"abc"} @*
-
-Any character: @*
-Parses any single character. Succeeds unless there is no more text to be parsed. @*
-@code{"."} @*
-@code{peg-any} @*
-
-Character class @code{a} @code{b}: @*
-Alternative syntax for ``Ordered Choice @code{a} @code{b}'' if @code{a} and @code{b} are characters. @*
-@code{"[ab]"} @*
-@code{(or "a" "b")} @*
-
-Range of characters @code{a} to @code{z}: @*
-Parses any character falling between @code{a} and @code{z}. @*
-@code{"[a-z]"} @*
-@code{(range #\a #\z)} @*
-
-Example: @*
-@code{"(a !b / c &d*) 'e'+"} @*
+@deftp {PEG Pattern} sequence a b
+Parses @var{a}. If this succeeds, continues to parse @var{b} from the
+end of the text parsed as @var{a}. Succeeds if both @var{a} and
+@var{b} succeed.
+
+@code{"a b"}
+
+@code{(and a b)}
+@end deftp
+
+@deftp {PEG Pattern} {ordered choice} a b
+Parses @var{a}. If this fails, backtracks and parses @var{b}.
+Succeeds if either @var{a} or @var{b} succeeds.
+
+@code{"a/b"}
+
+@code{(or a b)}
+@end deftp
+
+@deftp {PEG Pattern} {zero or more} a
+Parses @var{a} as many times in a row as it can, starting each @var{a}
+at the end of the text parsed by the previous @var{a}. Always
+succeeds.
+
+@code{"a*"}
+
+@code{(body lit a *)}
+@end deftp
+
+@deftp {PEG Pattern} {one or more} a
+Parses @var{a} as many times in a row as it can, starting each @var{a}
+at the end of the text parsed by the previous @var{a}. Succeeds if at
+least one @var{a} was parsed.
+
+@code{"a+"}
+
+@code{(body lit a +)}
+@end deftp
+
+@deftp {PEG Pattern} optional a
+Tries to parse @var{a}. Succeeds if @var{a} succeeds.
+
+@code{"a?"}
+
+@code{(body lit a ?)}
+@end deftp
+
+@deftp {PEG Pattern} {and predicate} a
+Makes sure it is possible to parse @var{a}, but does not actually parse
+it. Succeeds if @var{a} would succeed.
+
+@code{"&a"}
+
+@code{(body & a 1)}
+@end deftp
+
+@deftp {PEG Pattern} {not predicate} a
+Makes sure it is impossible to parse @var{a}, but does not actually
+parse it. Succeeds if @var{a} would fail.
+
+@code{"!a"}
+
+@code{(body ! a 1)}
+@end deftp
+
+@deftp {PEG Pattern} {string literal} ``abc''
+Parses the string @var{"abc"}. Succeeds if that parsing succeeds.
+
+@code{"'abc'"}
+
+@code{"abc"}
+@end deftp
+
+@deftp {PEG Pattern} {any character}
+Parses any single character. Succeeds unless there is no more text to
+be parsed.
+
+@code{"."}
+
+@code{peg-any}
+@end deftp
+
+@deftp {PEG Pattern} {character class} a b
+Alternative syntax for ``Ordered Choice @var{a} @var{b}'' if @var{a} and
+@var{b} are characters.
+
+@code{"[ab]"}
+
+@code{(or "a" "b")}
+@end deftp
+
+@deftp {PEG Pattern} {range of characters} a z
+Parses any character falling between @var{a} and @var{z}.
+
+@code{"[a-z]"}
+
+@code{(range #\a #\z)}
+@end deftp
+
+Example:
+
+@example
+"(a !b / c &d*) 'e'+"
+@end example
+
Would be:
+
@lisp
(and
(or
@@ -100,25 +157,30 @@ Would be:
(body lit "e" +))
@end lisp
-@subsubheading Extended Syntax:
+@subsubheading Extended Syntax
+
There is some extra syntax for S-expressions.
-Format: @*
-Description @*
-S-expression syntax @*
+@deftp {PEG Pattern} ignore a
+Ignore the text matching @var{a}
+@end deftp
-Ignore the text matching @code{a}: @*
-@code{(ignore a)} @*
+@deftp {PEG Pattern} capture a
+Capture the text matching @var{a}.
+@end deftp
-Capture the text matching @code{a}: @*
-@code{(capture a)} @*
+@deftp {PEG Pattern} peg a
+Embed the PEG pattern @var{a} using string syntax.
+@end deftp
+
+Example:
-Embed the PEG pattern @code{a} using string syntax: @*
-@code{(peg a)} @*
+@example
+"!a / 'b'"
+@end example
-Example: @*
-@code{"!a / 'b'"} @*
Would be:
+
@lisp
(or (peg "!a") "b")
@end lisp
@@ -128,10 +190,26 @@ Would be:
@subsubheading Define Macros
-The most straightforward way to define a PEG is by using one of the define macros (both of these macroexpand into @code{define} expressions). These macros bind parsing functions to variables. These parsing functions may be invoked by @code{peg-parse} or @code{peg-match}, which return a PEG match record. Raw data can be retrieved from this record with the PEG match deconstructor functions. More complicated (and perhaps enlightening) examples can be found in the tutorial.
+The most straightforward way to define a PEG is by using one of the
+define macros (both of these macroexpand into @code{define}
+expressions). These macros bind parsing functions to variables. These
+parsing functions may be invoked by @code{peg-parse} or
+@code{peg-match}, which return a PEG match record. Raw data can be
+retrieved from this record with the PEG match deconstructor functions.
+More complicated (and perhaps enlightening) examples can be found in the
+tutorial.
@deffn {Scheme Macro} define-grammar peg-string
-Defines all the nonterminals in the PEG @var{peg-string}. More precisely, @code{define-grammar} takes a superset of PEGs. A normal PEG has a @code{<-} between the nonterminal and the pattern. @code{define-grammar} uses this symbol to determine what information it should propagate up the parse tree. The normal @code{<-} propagates the matched text up the parse tree, @code{<--} propagates the matched text up the parse tree tagged with the name of the nonterminal, and @code{<} discards that matched text and propagates nothing up the parse tree. Also, nonterminals may consist of any alphanumeric character or a ``-'' character (in normal PEGs nonterminals can only be alphabetic).
+Defines all the nonterminals in the PEG @var{peg-string}. More
+precisely, @code{define-grammar} takes a superset of PEGs. A normal PEG
+has a @code{<-} between the nonterminal and the pattern.
+@code{define-grammar} uses this symbol to determine what information it
+should propagate up the parse tree. The normal @code{<-} propagates the
+matched text up the parse tree, @code{<--} propagates the matched text
+up the parse tree tagged with the name of the nonterminal, and @code{<}
+discards that matched text and propagates nothing up the parse tree.
+Also, nonterminals may consist of any alphanumeric character or a ``-''
+character (in normal PEGs nonterminals can only be alphabetic).
For example, if we:
@lisp
@@ -152,16 +230,27 @@ Then:
#<peg start: 0 end: 2 string: aabbcc tree: (as-or-bs-tag (as-tag aa))>
@end lisp
-Note that in doing this, we have bound 6 variables at the toplevel (@var{as}, @var{bs}, @var{as-or-bs}, @var{as-tag}, @var{bs-tag}, and @var{as-or-bs-tag}).
+Note that in doing this, we have bound 6 variables at the toplevel
+(@var{as}, @var{bs}, @var{as-or-bs}, @var{as-tag}, @var{bs-tag}, and
+@var{as-or-bs-tag}).
@end deffn
@deffn {Scheme Macro} define-nonterm name capture-type peg-sexp
-Defines a single nonterminal @var{name}. @var{capture-type} determines how much information is passed up the parse tree. @var{peg-sexp} is a PEG in S-expression form.
-
-Possible values for capture-type: @*
-@code{all}: passes the matched text up the parse tree tagged with the name of the nonterminal. @*
-@code{body}: passes the matched text up the parse tree. @*
-@code{none}: passes nothing up the parse tree.
+Defines a single nonterminal @var{name}. @var{capture-type} determines
+how much information is passed up the parse tree. @var{peg-sexp} is a
+PEG in S-expression form.
+
+Possible values for capture-type:
+
+@table @code
+@item all
+passes the matched text up the parse tree tagged with the name of the
+nonterminal.
+@item body
+passes the matched text up the parse tree.
+@item none
+passes nothing up the parse tree.
+@end table
For Example, if we:
@lisp
@@ -180,42 +269,66 @@ Then:
#<peg start: 0 end: 2 string: aabbcc tree: (as-or-bs-tag (as-tag aa))>
@end lisp
-Note that in doing this, we have bound 6 variables at the toplevel (@var{as}, @var{bs}, @var{as-or-bs}, @var{as-tag}, @var{bs-tag}, and @var{as-or-bs-tag}).
+Note that in doing this, we have bound 6 variables at the toplevel
+(@var{as}, @var{bs}, @var{as-or-bs}, @var{as-tag}, @var{bs-tag}, and
+@var{as-or-bs-tag}).
@end deffn
-These are macros, with all that entails. If you've built up a list at runtime and want to define a new PEG from it, you should e.g.:
+These are macros, with all that entails. If you've built up a list at
+runtime and want to define a new PEG from it, you should e.g.:
@lisp
(define exp '(body lit "a" +))
(eval `(define-nonterm as body ,exp) (interaction-environment))
@end lisp
-The @code{eval} function has a bad reputation with regard to efficiency, but this is mostly because of the extra work that has to be done compiling the expressions, which has to be done anyway when compiling the PEGs at runtime.
-
-@subsubheading
+The @code{eval} function has a bad reputation with regard to efficiency,
+but this is mostly because of the extra work that has to be done
+compiling the expressions, which has to be done anyway when compiling
+the PEGs at runtime.
@subsubheading Compile Functions
-It is sometimes useful to be able to compile anonymous PEG patterns at runtime. These functions let you do that using either syntax.
+It is sometimes useful to be able to compile anonymous PEG patterns at
+runtime. These functions let you do that using either syntax.
@deffn {Scheme Procedure} peg-string-compile peg-string capture-type
-Compiles the PEG pattern in @var{peg-string} propagating according to @var{capture-type} (capture-type can be any of the values from @code{define-nonterm}).
+Compiles the PEG pattern in @var{peg-string} propagating according to
+@var{capture-type} (capture-type can be any of the values from
+@code{define-nonterm}).
@end deffn
@deffn {Scheme Procedure} peg-sexp-compile peg-sexp capture-type
-Compiles the PEG pattern in @var{peg-sexp} propagating according to @var{capture-type} (capture-type can be any of the values from @code{define-nonterm}).
+Compiles the PEG pattern in @var{peg-sexp} propagating according to
+@var{capture-type} (capture-type can be any of the values from
+@code{define-nonterm}).
@end deffn
@subsubheading Parsing & Matching Functions
-For our purposes, ``parsing'' means parsing a string into a tree starting from the first character, while ``matching'' means searching through the string for a substring. In practice, the only difference between the two functions is that @code{peg-parse} gives up if it can't find a valid substring starting at index 0 and @code{peg-match} keeps looking. They are both equally capable of ``parsing'' and ``matching'' given those constraints.
+For our purposes, ``parsing'' means parsing a string into a tree
+starting from the first character, while ``matching'' means searching
+through the string for a substring. In practice, the only difference
+between the two functions is that @code{peg-parse} gives up if it can't
+find a valid substring starting at index 0 and @code{peg-match} keeps
+looking. They are both equally capable of ``parsing'' and ``matching''
+given those constraints.
@deffn {Scheme Procedure} peg-parse nonterm string
-Parses @var{string} using the PEG stored in @var{nonterm}. If no match was found, @code{peg-parse} returns false. If a match was found, a PEG match record is returned.
-
-The @code{capture-type} argument to @code{define-nonterm} allows you to choose what information to hold on to while parsing. The options are: @*
-@code{all}: tag the matched text with the nonterminal @*
-@code{body}: just the matched text @*
-@code{none}: nothing @*
+Parses @var{string} using the PEG stored in @var{nonterm}. If no match
+was found, @code{peg-parse} returns false. If a match was found, a PEG
+match record is returned.
+
+The @code{capture-type} argument to @code{define-nonterm} allows you to
+choose what information to hold on to while parsing. The options are:
+
+@table @code
+@item all
+tag the matched text with the nonterminal
+@item body
+just the matched text
+@item none
+nothing
+@end table
@lisp
(define-nonterm as all (body lit "a" +))
@@ -237,7 +350,12 @@ The @code{capture-type} argument to @code{define-nonterm} allows you to choose w
@end deffn
@deffn {Scheme Macro} peg-match nonterm-or-peg string
-Searches through @var{string} looking for a matching subexpression. @var{nonterm-or-peg} can either be a nonterminal or a literal PEG pattern. When a literal PEG pattern is provided, @code{peg-match} works very similarly to the regular expression searches many hackers are used to. If no match was found, @code{peg-match} returns false. If a match was found, a PEG match record is returned.
+Searches through @var{string} looking for a matching subexpression.
+@var{nonterm-or-peg} can either be a nonterminal or a literal PEG
+pattern. When a literal PEG pattern is provided, @code{peg-match} works
+very similarly to the regular expression searches many hackers are used
+to. If no match was found, @code{peg-match} returns false. If a match
+was found, a PEG match record is returned.
@lisp
(define-nonterm as body (body lit "a" +))
@@ -271,22 +389,31 @@ Searches through @var{string} looking for a matching subexpression. @var{nonter
@end deffn
@subsubheading PEG Match Records
-The @code{peg-parse} and @code{peg-match} functions both return PEG match records. Actual information can be extracted from these with the following functions.
+The @code{peg-parse} and @code{peg-match} functions both return PEG
+match records. Actual information can be extracted from these with the
+following functions.
@deffn {Scheme Procedure} peg:string peg-match
-Returns the original string that was parsed in the creation of @code{peg-match}.
+Returns the original string that was parsed in the creation of
+@code{peg-match}.
@end deffn
@deffn {Scheme Procedure} peg:start peg-match
-Returns the index of the first parsed character in the original string (from @code{peg:string}). If this is the same as @code{peg:end}, nothing was parsed.
+Returns the index of the first parsed character in the original string
+(from @code{peg:string}). If this is the same as @code{peg:end},
+nothing was parsed.
@end deffn
@deffn {Scheme Procedure} peg:end peg-match
-Returns one more than the index of the last parsed character in the original string (from @code{peg:string}). If this is the same as @code{peg:start}, nothing was parsed.
+Returns one more than the index of the last parsed character in the
+original string (from @code{peg:string}). If this is the same as
+@code{peg:start}, nothing was parsed.
@end deffn
@deffn {Scheme Procedure} peg:substring peg-match
-Returns the substring parsed by @code{peg-match}. This is equivalent to @code{(substring (peg:string peg-match) (peg:start peg-match) (peg:end peg-match))}.
+Returns the substring parsed by @code{peg-match}. This is equivalent to
+@code{(substring (peg:string peg-match) (peg:start peg-match) (peg:end
+peg-match))}.
@end deffn
@deffn {Scheme Procedure} peg:tree peg-match
@@ -294,7 +421,8 @@ Returns the tree parsed by @code{peg-match}.
@end deffn
@deffn {Scheme Procedure} peg-record? peg-match
-Returns true if @code{peg-match} is a PEG match record, or false otherwise.
+Returns true if @code{peg-match} is a PEG match record, or false
+otherwise.
@end deffn
Example:
@@ -322,7 +450,10 @@ Example:
@subsubheading Miscellaneous
@deffn {Scheme Procedure} context-flatten tst lst
-Takes a predicate @var{tst} and a list @var{lst}. Flattens @var{lst} until all elements are either atoms or satisfy @var{tst}. If @var{lst} itself satisfies @var{tst}, @code{(list lst)} is returned (this is a flat list whose only element satisfies @var{tst}).
+Takes a predicate @var{tst} and a list @var{lst}. Flattens @var{lst}
+until all elements are either atoms or satisfy @var{tst}. If @var{lst}
+itself satisfies @var{tst}, @code{(list lst)} is returned (this is a
+flat list whose only element satisfies @var{tst}).
@lisp
(context-flatten (lambda (x) (and (number? (car x)) (= (car x) 1))) '(2 2 (1 1 (2 2)) (2 2 (1 1)))) @result{}
@@ -335,7 +466,10 @@ If you're wondering why this is here, take a look at the tutorial.
@end deffn
@deffn {Scheme Procedure} keyword-flatten terms lst
-A less general form of @code{context-flatten}. Takes a list of terminal atoms @code{terms} and flattens @var{lst} until all elements are either atoms, or lists which have an atom from @code{terms} as their first element.
+A less general form of @code{context-flatten}. Takes a list of terminal
+atoms @code{terms} and flattens @var{lst} until all elements are either
+atoms, or lists which have an atom from @code{terms} as their first
+element.
@lisp
(keyword-flatten '(a b) '(c a b (a c) (b c) (c (b a) (c a)))) @result{}
(c a b (a c) (b c) c (b a) c a)
@@ -363,7 +497,8 @@ messagebus:x:103:107::/var/run/dbus:/bin/false
")
@end lisp
-As a first pass at this, we might want to have all the entries in /etc/passwd in a list.
+As a first pass at this, we might want to have all the entries in
+/etc/passwd in a list.
Doing this with string-based PEG syntax would look like this:
@lisp
@@ -372,9 +507,19 @@ Doing this with string-based PEG syntax would look like this:
entry <-- (! NL .)* NL*
NL < '\n'")
@end lisp
-A @code{passwd} file is 0 or more entries (@code{entry*}) until the end of the file (@code{!.} (@code{.} is any character, so @code{!.} means ``not anything'')). We want to capture the data in the nonterminal @code{passwd}, but not tag it with the name, so we use @code{<-}.
-An entry is a series of 0 or more characters that aren't newlines (@code{(! NL .)*}) followed by 0 or more newlines (@code{NL*}). We want to tag all the entries with @code{entry}, so we use @code{<--}.
-A newline is just a literal newline (@code{'\n'}). We don't want a bunch of newlines cluttering up the output, so we use @code{<} to throw away the captured data.
+
+A @code{passwd} file is 0 or more entries (@code{entry*}) until the end
+of the file (@code{!.} (@code{.} is any character, so @code{!.} means
+``not anything'')). We want to capture the data in the nonterminal
+@code{passwd}, but not tag it with the name, so we use @code{<-}.
+
+An entry is a series of 0 or more characters that aren't newlines
+(@code{(! NL .)*}) followed by 0 or more newlines (@code{NL*}). We want
+to tag all the entries with @code{entry}, so we use @code{<--}.
+
+A newline is just a literal newline (@code{'\n'}). We don't want a
+bunch of newlines cluttering up the output, so we use @code{<} to throw
+away the captured data.
Here is the same PEG defined using S-expressions:
@lisp
@@ -384,12 +529,24 @@ Here is the same PEG defined using S-expressions:
(define-nonterm NL none "\n")
@end lisp
-Obviously this is much more verbose. On the other hand, it's more explicit, and thus easier to build automatically. However, there are some tricks that make S-expressions easier to use in some cases. One is the @code{ignore} keyword; the string syntax has no way to say ``throw away this text'' except breaking it out into a separate nonterminal. For instance, to throw away the newlines we had to define @code{NL}. In the S-expression syntax, we could have simply written @code{(ignore "\n")}. Also, for the cases where string syntax is really much cleaner, the @code{peg} keyword can be used to embed string syntax in S-expression syntax. For instance, we could have written:
+Obviously this is much more verbose. On the other hand, it's more
+explicit, and thus easier to build automatically. However, there are
+some tricks that make S-expressions easier to use in some cases. One is
+the @code{ignore} keyword; the string syntax has no way to say ``throw
+away this text'' except breaking it out into a separate nonterminal.
+For instance, to throw away the newlines we had to define @code{NL}. In
+the S-expression syntax, we could have simply written @code{(ignore
+"\n")}. Also, for the cases where string syntax is really much cleaner,
+the @code{peg} keyword can be used to embed string syntax in
+S-expression syntax. For instance, we could have written:
+
@lisp
(define-nonterm passwd body (peg "entry* !."))
@end lisp
-However we define it, parsing @code{*etc-passwd*} with the @code{passwd} nonterminal yields the same results:
+However we define it, parsing @code{*etc-passwd*} with the @code{passwd}
+nonterminal yields the same results:
+
@lisp
(peg:tree (peg-parse passwd *etc-passwd*)) @result{}
((entry "root:x:0:0:root:/root:/bin/bash")
@@ -401,14 +558,30 @@ However we define it, parsing @code{*etc-passwd*} with the @code{passwd} nonterm
@end lisp
However, here is something to be wary of:
+
@lisp
(peg:tree (peg-parse passwd "one entry")) @result{}
(entry "one entry")
@end lisp
-By default, the parse trees generated by PEGs are compressed as much as possible without losing information. It may not look like this is what you want at first, but uncompressed parse trees are an enormous headache (there's no easy way to predict how deep particular lists will nest, there are empty lists littered everywhere, etc. etc.). One side-effect of this, however, is that sometimes the compressor is too aggressive. No information is discarded when @code{((entry "one entry"))} is compressed to @code{(entry "one entry")}, but in this particular case it probably isn't what we want. @*
-
-There are two functions for easily dealing with this: @code{keyword-flatten} and @code{context-flatten}. The @code{keyword-flatten} function takes a list of keywords and a list to flatten, then tries to coerce the list such that the first element of all sublists is one of the keywords. The @code{context-flatten} function is similar, but instead of a list of keywords it takes a predicate that should indicate whether a given sublist is good enough (refer to the API reference for more details). @*
+By default, the parse trees generated by PEGs are compressed as much as
+possible without losing information. It may not look like this is what
+you want at first, but uncompressed parse trees are an enormous headache
+(there's no easy way to predict how deep particular lists will nest,
+there are empty lists littered everywhere, etc. etc.). One side-effect
+of this, however, is that sometimes the compressor is too aggressive.
+No information is discarded when @code{((entry "one entry"))} is
+compressed to @code{(entry "one entry")}, but in this particular case it
+probably isn't what we want.
+
+There are two functions for easily dealing with this:
+@code{keyword-flatten} and @code{context-flatten}. The
+@code{keyword-flatten} function takes a list of keywords and a list to
+flatten, then tries to coerce the list such that the first element of
+all sublists is one of the keywords. The @code{context-flatten}
+function is similar, but instead of a list of keywords it takes a
+predicate that should indicate whether a given sublist is good enough
+(refer to the API reference for more details).
What we want here is @code{keyword-flatten}.
@lisp
@@ -423,7 +596,10 @@ What we want here is @code{keyword-flatten}.
((entry "one entry"))
@end lisp
-Of course, this is a somewhat contrived example. In practice we would probably just tag the @code{passwd} nonterminal to remove the ambiguity (using either the @code{all} keyword for S-expressions or the @code{<--} symbol for strings)..
+Of course, this is a somewhat contrived example. In practice we would
+probably just tag the @code{passwd} nonterminal to remove the ambiguity
+(using either the @code{all} keyword for S-expressions or the @code{<--}
+symbol for strings)..
@lisp
(define-nonterm tag-passwd all (peg "entry* !."))
@@ -440,13 +616,22 @@ Of course, this is a somewhat contrived example. In practice we would probably
(entry "one entry"))
@end lisp
-If you're ever uncertain about the potential results of parsing something, remember the two absolute rules: @*
-1. No parsing information will ever be discarded. @*
-2. There will never be any lists with fewer than 2 elements. @*
+If you're ever uncertain about the potential results of parsing
+something, remember the two absolute rules:
+@enumerate
+@item
+No parsing information will ever be discarded.
+@item
+There will never be any lists with fewer than 2 elements.
+@end enumerate
+
+For the purposes of (1), "parsing information" means things tagged with
+the @code{any} keyword or the @code{<--} symbol. Plain strings will be
+concatenated.
-For the purposes of (1), "parsing information" means things tagged with the @code{any} keyword or the @code{<--} symbol. Plain strings will be concatenated. @*
+Let's extend this example a bit more and actually pull some useful
+information out of the passwd file:
-Let's extend this example a bit more and actually pull some useful information out of the passwd file:
@lisp
(define-grammar
"passwd <-- entry* !.
@@ -517,9 +702,18 @@ This produces rather pretty parse trees:
(shell (path (pathELEMENT "bin") (pathELEMENT "false")))))
@end lisp
-Notice that when there's no entry in a field (e.g. @code{nameORcomment} for messagebus) the symbol is inserted. This is the ``don't throw away any information'' rule---we succesfully matched a @code{nameORcomment} of 0 characters (since we used @code{*} when defining it). This is usually what you want, because it allows you to e.g. use @code{list-ref} to pull out elements (since they all have known offsets). @*
+Notice that when there's no entry in a field (e.g. @code{nameORcomment}
+for messagebus) the symbol is inserted. This is the ``don't throw away
+any information'' rule---we succesfully matched a @code{nameORcomment}
+of 0 characters (since we used @code{*} when defining it). This is
+usually what you want, because it allows you to e.g. use @code{list-ref}
+to pull out elements (since they all have known offsets).
-If you'd prefer not to have symbols for empty matches, you can replace the @code{*} with a @code{+} and add a @code{?} after the @code{nameORcomment} in @code{entry}. Then it will try to parse 1 or more characters, fail (inserting nothing into the parse tree), but continue because it didn't have to match the nameORcomment to continue.
+If you'd prefer not to have symbols for empty matches, you can replace
+the @code{*} with a @code{+} and add a @code{?} after the
+@code{nameORcomment} in @code{entry}. Then it will try to parse 1 or
+more characters, fail (inserting nothing into the parse tree), but
+continue because it didn't have to match the nameORcomment to continue.
@subsubheading Embedding Arithmetic Expressions
@@ -558,9 +752,14 @@ Then:
(product (value (number "2")))))))
@end lisp
-There is very little wasted effort in this PEG. The @code{number} nonterminal has to be tagged because otherwise the numbers might run together with the arithmetic expressions during the string concatenation stage of parse-tree compression (the parser will see ``1'' followed by ``/'' and decide to call it ``1/''). When in doubt, tag.
+There is very little wasted effort in this PEG. The @code{number}
+nonterminal has to be tagged because otherwise the numbers might run
+together with the arithmetic expressions during the string concatenation
+stage of parse-tree compression (the parser will see ``1'' followed by
+``/'' and decide to call it ``1/''). When in doubt, tag.
It is very easy to turn these parse trees into lisp expressions:
+
@lisp
(define (parse-sum sum left . rest)
(if (null? rest)
@@ -583,7 +782,9 @@ It is very easy to turn these parse trees into lisp expressions:
(define parse-expr parse-sum)
@end lisp
-(Notice all these functions look very similar; for a more complicated PEG, it would be worth abstracting.)
+
+(Notice all these functions look very similar; for a more complicated
+PEG, it would be worth abstracting.)
Then:
@lisp
@@ -591,11 +792,21 @@ Then:
(+ 1 (+ (/ 1 (* 2 3)) (/ (+ 1 1) 2)))
@end lisp
-But wait! The associativity is wrong! Where it says @code{(/ 1 (* 2 3))}, it should say @code{(* (/ 1 2) 3)}.
+But wait! The associativity is wrong! Where it says @code{(/ 1 (* 2
+3))}, it should say @code{(* (/ 1 2) 3)}.
-It's tempting to try replacing e.g. @code{"sum <-- (product ('+' / '-') sum) / product"} with @code{"sum <-- (sum ('+' / '-') product) / product"}, but this is a Bad Idea. PEGs don't support left recursion. To see why, imagine what the parser will do here. When it tries to parse @code{sum}, it first has to try and parse @code{sum}. But to do that, it first has to try and parse @code{sum}. This will continue until the stack gets blown off.
+It's tempting to try replacing e.g. @code{"sum <-- (product ('+' / '-')
+sum) / product"} with @code{"sum <-- (sum ('+' / '-') product) /
+product"}, but this is a Bad Idea. PEGs don't support left recursion.
+To see why, imagine what the parser will do here. When it tries to
+parse @code{sum}, it first has to try and parse @code{sum}. But to do
+that, it first has to try and parse @code{sum}. This will continue
+until the stack gets blown off.
-So how does one parse left-associative binary operators with PEGs? Honestly, this is one of their major shortcomings. There's no general-purpose way of doing this, but here the repetition operators are a good choice:
+So how does one parse left-associative binary operators with PEGs?
+Honestly, this is one of their major shortcomings. There's no
+general-purpose way of doing this, but here the repetition operators are
+a good choice:
@lisp
(use-modules (srfi srfi-1))
@@ -647,11 +858,17 @@ Then:
(+ (+ 1 (* (/ 1 2) 3)) (/ (+ 1 1) 2))
@end lisp
-As you can see, this is much uglier (it could be made prettier by using @code{context-flatten}, but the way it's written above makes it clear how we deal with the three ways the zero-or-more @code{*} expression can parse). Fortunately, most of the time we can get away with only using right-associativity.
+As you can see, this is much uglier (it could be made prettier by using
+@code{context-flatten}, but the way it's written above makes it clear
+how we deal with the three ways the zero-or-more @code{*} expression can
+parse). Fortunately, most of the time we can get away with only using
+right-associativity.
@subsubheading Simplified Functions
-For a more tantalizing example, consider the following grammar that parses (highly) simplified C functions:
+For a more tantalizing example, consider the following grammar that
+parses (highly) simplified C functions:
+
@lisp
(define-grammar
"cfunc <-- cSP ctype cSP cname cSP cargs cLB cSP cbody cRB
@@ -693,7 +910,14 @@ And:
(cstatement "return a- b*c"))))
@end lisp
-By wrapping all the @code{carg} nonterminals in a @code{cargs} nonterminal, we were able to remove any ambiguity in the parsing structure and avoid having to call @code{context-flatten} on the output of @code{peg-parse}. We used the same trick with the @code{cstatement} nonterminals, wrapping them in a @code{cbody} nonterminal.
-
-The whitespace nonterminal @code{cSP} used here is a (very) useful instantiation of a common pattern for matching syntactically irrelevant information. Since it's tagged with @code{<} and ends with @code{*} it won't clutter up the parse trees (all the empty lists will be discarded during the compression step) and it will never cause parsing to fail.
-
+By wrapping all the @code{carg} nonterminals in a @code{cargs}
+nonterminal, we were able to remove any ambiguity in the parsing
+structure and avoid having to call @code{context-flatten} on the output
+of @code{peg-parse}. We used the same trick with the @code{cstatement}
+nonterminals, wrapping them in a @code{cbody} nonterminal.
+
+The whitespace nonterminal @code{cSP} used here is a (very) useful
+instantiation of a common pattern for matching syntactically irrelevant
+information. Since it's tagged with @code{<} and ends with @code{*} it
+won't clutter up the parse trees (all the empty lists will be discarded
+during the compression step) and it will never cause parsing to fail.