Merge git://double.co.nz/git/factor
commit
ea7301062d
|
@ -1,7 +1,7 @@
|
||||||
! Copyright (C) 2007 Chris Double.
|
! Copyright (C) 2007 Chris Double.
|
||||||
! See http://factorcode.org/license.txt for BSD license.
|
! See http://factorcode.org/license.txt for BSD license.
|
||||||
!
|
!
|
||||||
USING: kernel tools.test peg peg.ebnf ;
|
USING: kernel tools.test peg peg.ebnf compiler.units ;
|
||||||
IN: peg.ebnf.tests
|
IN: peg.ebnf.tests
|
||||||
|
|
||||||
{ T{ ebnf-non-terminal f "abc" } } [
|
{ T{ ebnf-non-terminal f "abc" } } [
|
||||||
|
@ -15,12 +15,9 @@ IN: peg.ebnf.tests
|
||||||
{
|
{
|
||||||
T{ ebnf-rule f
|
T{ ebnf-rule f
|
||||||
"digit"
|
"digit"
|
||||||
V{
|
|
||||||
T{ ebnf-choice f
|
T{ ebnf-choice f
|
||||||
V{ T{ ebnf-terminal f "1" } T{ ebnf-terminal f "2" } }
|
V{ T{ ebnf-terminal f "1" } T{ ebnf-terminal f "2" } }
|
||||||
}
|
}
|
||||||
f
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
} [
|
} [
|
||||||
"digit = '1' | '2'" 'rule' parse parse-result-ast
|
"digit = '1' | '2'" 'rule' parse parse-result-ast
|
||||||
|
@ -29,12 +26,9 @@ IN: peg.ebnf.tests
|
||||||
{
|
{
|
||||||
T{ ebnf-rule f
|
T{ ebnf-rule f
|
||||||
"digit"
|
"digit"
|
||||||
V{
|
|
||||||
T{ ebnf-sequence f
|
T{ ebnf-sequence f
|
||||||
V{ T{ ebnf-terminal f "1" } T{ ebnf-terminal f "2" } }
|
V{ T{ ebnf-terminal f "1" } T{ ebnf-terminal f "2" } }
|
||||||
}
|
}
|
||||||
f
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
} [
|
} [
|
||||||
"digit = '1' '2'" 'rule' parse parse-result-ast
|
"digit = '1' '2'" 'rule' parse parse-result-ast
|
||||||
|
@ -83,7 +77,7 @@ IN: peg.ebnf.tests
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} [
|
} [
|
||||||
"one {(two | three) four}" 'choice' parse parse-result-ast
|
"one ((two | three) four)*" 'choice' parse parse-result-ast
|
||||||
] unit-test
|
] unit-test
|
||||||
|
|
||||||
{
|
{
|
||||||
|
@ -95,5 +89,33 @@ IN: peg.ebnf.tests
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} [
|
} [
|
||||||
"one [ two ] three" 'choice' parse parse-result-ast
|
"one ( two )? three" 'choice' parse parse-result-ast
|
||||||
|
] unit-test
|
||||||
|
|
||||||
|
{ "foo" } [
|
||||||
|
"\"foo\"" 'identifier' parse parse-result-ast
|
||||||
|
] unit-test
|
||||||
|
|
||||||
|
{ "foo" } [
|
||||||
|
"'foo'" 'identifier' parse parse-result-ast
|
||||||
|
] unit-test
|
||||||
|
|
||||||
|
{ "foo" } [
|
||||||
|
"foo" 'non-terminal' parse parse-result-ast ebnf-non-terminal-symbol
|
||||||
|
] unit-test
|
||||||
|
|
||||||
|
{ "foo" } [
|
||||||
|
"foo]" 'non-terminal' parse parse-result-ast ebnf-non-terminal-symbol
|
||||||
|
] unit-test
|
||||||
|
|
||||||
|
{ V{ "a" "b" } } [
|
||||||
|
"foo='a' 'b'" ebnf>quot with-compilation-unit "ab" foo parse parse-result-ast
|
||||||
|
] unit-test
|
||||||
|
|
||||||
|
{ V{ 1 "b" } } [
|
||||||
|
"foo=('a')[[ drop 1 ]] 'b'" ebnf>quot with-compilation-unit "ab" foo parse parse-result-ast
|
||||||
|
] unit-test
|
||||||
|
|
||||||
|
{ V{ 1 2 } } [
|
||||||
|
"foo=('a') [[ drop 1 ]] ('b') [[ drop 2 ]]" ebnf>quot with-compilation-unit "ab" foo parse parse-result-ast
|
||||||
] unit-test
|
] unit-test
|
|
@ -2,24 +2,31 @@
|
||||||
! See http://factorcode.org/license.txt for BSD license.
|
! See http://factorcode.org/license.txt for BSD license.
|
||||||
USING: kernel parser words arrays strings math.parser sequences
|
USING: kernel parser words arrays strings math.parser sequences
|
||||||
quotations vectors namespaces math assocs continuations peg
|
quotations vectors namespaces math assocs continuations peg
|
||||||
peg.parsers unicode.categories ;
|
peg.parsers unicode.categories multiline combinators.lib
|
||||||
|
splitting ;
|
||||||
IN: peg.ebnf
|
IN: peg.ebnf
|
||||||
|
|
||||||
TUPLE: ebnf-non-terminal symbol ;
|
TUPLE: ebnf-non-terminal symbol ;
|
||||||
TUPLE: ebnf-terminal symbol ;
|
TUPLE: ebnf-terminal symbol ;
|
||||||
|
TUPLE: ebnf-any-character ;
|
||||||
|
TUPLE: ebnf-ensure-not group ;
|
||||||
TUPLE: ebnf-choice options ;
|
TUPLE: ebnf-choice options ;
|
||||||
TUPLE: ebnf-sequence elements ;
|
TUPLE: ebnf-sequence elements ;
|
||||||
TUPLE: ebnf-repeat0 group ;
|
TUPLE: ebnf-repeat0 group ;
|
||||||
|
TUPLE: ebnf-repeat1 group ;
|
||||||
TUPLE: ebnf-optional elements ;
|
TUPLE: ebnf-optional elements ;
|
||||||
TUPLE: ebnf-rule symbol elements ;
|
TUPLE: ebnf-rule symbol elements ;
|
||||||
TUPLE: ebnf-action word ;
|
TUPLE: ebnf-action parser code ;
|
||||||
TUPLE: ebnf rules ;
|
TUPLE: ebnf rules ;
|
||||||
|
|
||||||
C: <ebnf-non-terminal> ebnf-non-terminal
|
C: <ebnf-non-terminal> ebnf-non-terminal
|
||||||
C: <ebnf-terminal> ebnf-terminal
|
C: <ebnf-terminal> ebnf-terminal
|
||||||
|
C: <ebnf-any-character> ebnf-any-character
|
||||||
|
C: <ebnf-ensure-not> ebnf-ensure-not
|
||||||
C: <ebnf-choice> ebnf-choice
|
C: <ebnf-choice> ebnf-choice
|
||||||
C: <ebnf-sequence> ebnf-sequence
|
C: <ebnf-sequence> ebnf-sequence
|
||||||
C: <ebnf-repeat0> ebnf-repeat0
|
C: <ebnf-repeat0> ebnf-repeat0
|
||||||
|
C: <ebnf-repeat1> ebnf-repeat1
|
||||||
C: <ebnf-optional> ebnf-optional
|
C: <ebnf-optional> ebnf-optional
|
||||||
C: <ebnf-rule> ebnf-rule
|
C: <ebnf-rule> ebnf-rule
|
||||||
C: <ebnf-action> ebnf-action
|
C: <ebnf-action> ebnf-action
|
||||||
|
@ -27,12 +34,10 @@ C: <ebnf> ebnf
|
||||||
|
|
||||||
SYMBOL: parsers
|
SYMBOL: parsers
|
||||||
SYMBOL: non-terminals
|
SYMBOL: non-terminals
|
||||||
SYMBOL: last-parser
|
|
||||||
|
|
||||||
: reset-parser-generation ( -- )
|
: reset-parser-generation ( -- )
|
||||||
V{ } clone parsers set
|
V{ } clone parsers set
|
||||||
H{ } clone non-terminals set
|
H{ } clone non-terminals set ;
|
||||||
f last-parser set ;
|
|
||||||
|
|
||||||
: store-parser ( parser -- number )
|
: store-parser ( parser -- number )
|
||||||
parsers get [ push ] keep length 1- ;
|
parsers get [ push ] keep length 1- ;
|
||||||
|
@ -50,7 +55,7 @@ SYMBOL: last-parser
|
||||||
GENERIC: (generate-parser) ( ast -- id )
|
GENERIC: (generate-parser) ( ast -- id )
|
||||||
|
|
||||||
: generate-parser ( ast -- id )
|
: generate-parser ( ast -- id )
|
||||||
(generate-parser) dup last-parser set ;
|
(generate-parser) ;
|
||||||
|
|
||||||
M: ebnf-terminal (generate-parser) ( ast -- id )
|
M: ebnf-terminal (generate-parser) ( ast -- id )
|
||||||
ebnf-terminal-symbol token sp store-parser ;
|
ebnf-terminal-symbol token sp store-parser ;
|
||||||
|
@ -61,6 +66,9 @@ M: ebnf-non-terminal (generate-parser) ( ast -- id )
|
||||||
parsers get , \ nth , [ search ] [ 2drop f ] recover , \ or ,
|
parsers get , \ nth , [ search ] [ 2drop f ] recover , \ or ,
|
||||||
] [ ] make delay sp store-parser ;
|
] [ ] make delay sp store-parser ;
|
||||||
|
|
||||||
|
M: ebnf-any-character (generate-parser) ( ast -- id )
|
||||||
|
drop [ drop t ] satisfy store-parser ;
|
||||||
|
|
||||||
M: ebnf-choice (generate-parser) ( ast -- id )
|
M: ebnf-choice (generate-parser) ( ast -- id )
|
||||||
ebnf-choice-options [
|
ebnf-choice-options [
|
||||||
generate-parser get-parser
|
generate-parser get-parser
|
||||||
|
@ -71,9 +79,15 @@ M: ebnf-sequence (generate-parser) ( ast -- id )
|
||||||
generate-parser get-parser
|
generate-parser get-parser
|
||||||
] map seq store-parser ;
|
] map seq store-parser ;
|
||||||
|
|
||||||
|
M: ebnf-ensure-not (generate-parser) ( ast -- id )
|
||||||
|
ebnf-ensure-not-group generate-parser get-parser ensure-not store-parser ;
|
||||||
|
|
||||||
M: ebnf-repeat0 (generate-parser) ( ast -- id )
|
M: ebnf-repeat0 (generate-parser) ( ast -- id )
|
||||||
ebnf-repeat0-group generate-parser get-parser repeat0 store-parser ;
|
ebnf-repeat0-group generate-parser get-parser repeat0 store-parser ;
|
||||||
|
|
||||||
|
M: ebnf-repeat1 (generate-parser) ( ast -- id )
|
||||||
|
ebnf-repeat1-group generate-parser get-parser repeat1 store-parser ;
|
||||||
|
|
||||||
M: ebnf-optional (generate-parser) ( ast -- id )
|
M: ebnf-optional (generate-parser) ( ast -- id )
|
||||||
ebnf-optional-elements generate-parser get-parser optional store-parser ;
|
ebnf-optional-elements generate-parser get-parser optional store-parser ;
|
||||||
|
|
||||||
|
@ -83,15 +97,12 @@ M: ebnf-rule (generate-parser) ( ast -- id )
|
||||||
swap [ parsers get set-nth ] keep ;
|
swap [ parsers get set-nth ] keep ;
|
||||||
|
|
||||||
M: ebnf-action (generate-parser) ( ast -- id )
|
M: ebnf-action (generate-parser) ( ast -- id )
|
||||||
ebnf-action-word search 1quotation
|
[ ebnf-action-parser generate-parser get-parser ] keep
|
||||||
last-parser get get-parser swap action store-parser ;
|
ebnf-action-code string-lines parse-lines action store-parser ;
|
||||||
|
|
||||||
M: vector (generate-parser) ( ast -- id )
|
M: vector (generate-parser) ( ast -- id )
|
||||||
[ generate-parser ] map peek ;
|
[ generate-parser ] map peek ;
|
||||||
|
|
||||||
M: f (generate-parser) ( ast -- id )
|
|
||||||
drop last-parser get ;
|
|
||||||
|
|
||||||
M: ebnf (generate-parser) ( ast -- id )
|
M: ebnf (generate-parser) ( ast -- id )
|
||||||
ebnf-rules [
|
ebnf-rules [
|
||||||
generate-parser
|
generate-parser
|
||||||
|
@ -99,43 +110,136 @@ M: ebnf (generate-parser) ( ast -- id )
|
||||||
|
|
||||||
DEFER: 'rhs'
|
DEFER: 'rhs'
|
||||||
|
|
||||||
|
: syntax ( string -- parser )
|
||||||
|
#! Parses the string, ignoring white space, and
|
||||||
|
#! does not put the result in the AST.
|
||||||
|
token sp hide ;
|
||||||
|
|
||||||
|
: syntax-pack ( begin parser end -- parser )
|
||||||
|
#! Parse 'parser' surrounded by syntax elements
|
||||||
|
#! begin and end.
|
||||||
|
[ syntax ] dipd syntax pack ;
|
||||||
|
|
||||||
|
: 'identifier' ( -- parser )
|
||||||
|
#! Return a parser that parses an identifer delimited by
|
||||||
|
#! a quotation character. The quotation can be single
|
||||||
|
#! or double quotes. The AST produced is the identifier
|
||||||
|
#! between the quotes.
|
||||||
|
[
|
||||||
|
[ CHAR: " = not ] satisfy repeat1 "\"" "\"" surrounded-by ,
|
||||||
|
[ CHAR: ' = not ] satisfy repeat1 "'" "'" surrounded-by ,
|
||||||
|
] choice* [ >string ] action ;
|
||||||
|
|
||||||
: 'non-terminal' ( -- parser )
|
: 'non-terminal' ( -- parser )
|
||||||
CHAR: a CHAR: z range "-" token [ first ] action 2array choice repeat1 [ >string <ebnf-non-terminal> ] action ;
|
#! A non-terminal is the name of another rule. It can
|
||||||
|
#! be any non-blank character except for characters used
|
||||||
|
#! in the EBNF syntax itself.
|
||||||
|
[
|
||||||
|
{
|
||||||
|
[ dup blank? ]
|
||||||
|
[ dup CHAR: " = ]
|
||||||
|
[ dup CHAR: ' = ]
|
||||||
|
[ dup CHAR: | = ]
|
||||||
|
[ dup CHAR: { = ]
|
||||||
|
[ dup CHAR: } = ]
|
||||||
|
[ dup CHAR: = = ]
|
||||||
|
[ dup CHAR: ) = ]
|
||||||
|
[ dup CHAR: ( = ]
|
||||||
|
[ dup CHAR: ] = ]
|
||||||
|
[ dup CHAR: [ = ]
|
||||||
|
[ dup CHAR: . = ]
|
||||||
|
[ dup CHAR: ! = ]
|
||||||
|
[ dup CHAR: * = ]
|
||||||
|
[ dup CHAR: + = ]
|
||||||
|
[ dup CHAR: ? = ]
|
||||||
|
} || not nip
|
||||||
|
] satisfy repeat1 [ >string <ebnf-non-terminal> ] action ;
|
||||||
|
|
||||||
: 'terminal' ( -- parser )
|
: 'terminal' ( -- parser )
|
||||||
"'" token hide [ CHAR: ' = not ] satisfy repeat1 "'" token hide 3array seq [ first >string <ebnf-terminal> ] action ;
|
#! A terminal is an identifier enclosed in quotations
|
||||||
|
#! and it represents the literal value of the identifier.
|
||||||
|
'identifier' [ <ebnf-terminal> ] action ;
|
||||||
|
|
||||||
|
: 'any-character' ( -- parser )
|
||||||
|
#! A parser to match the symbol for any character match.
|
||||||
|
[ CHAR: . = ] satisfy [ drop <ebnf-any-character> ] action ;
|
||||||
|
|
||||||
: 'element' ( -- parser )
|
: 'element' ( -- parser )
|
||||||
'non-terminal' 'terminal' 2array choice ;
|
#! An element of a rule. It can be a terminal or a
|
||||||
|
#! non-terminal but must not be followed by a "=".
|
||||||
|
#! The latter indicates that it is the beginning of a
|
||||||
|
#! new rule.
|
||||||
|
[
|
||||||
|
[
|
||||||
|
'non-terminal' ,
|
||||||
|
'terminal' ,
|
||||||
|
'any-character' ,
|
||||||
|
] choice* ,
|
||||||
|
"=" syntax ensure-not ,
|
||||||
|
] seq* [ first ] action ;
|
||||||
|
|
||||||
DEFER: 'choice'
|
DEFER: 'choice'
|
||||||
|
|
||||||
|
: grouped ( quot suffix -- parser )
|
||||||
|
#! Parse a group of choices, with a suffix indicating
|
||||||
|
#! the type of group (repeat0, repeat1, etc) and
|
||||||
|
#! an quot that is the action that produces the AST.
|
||||||
|
"(" [ 'choice' sp ] delay ")" syntax-pack
|
||||||
|
swap 2seq
|
||||||
|
[ first ] rot compose action ;
|
||||||
|
|
||||||
: 'group' ( -- parser )
|
: 'group' ( -- parser )
|
||||||
"(" token sp hide
|
#! A grouping with no suffix. Used for precedence.
|
||||||
[ 'choice' sp ] delay
|
[ ] [
|
||||||
")" token sp hide
|
"*" token sp ensure-not ,
|
||||||
3array seq [ first ] action ;
|
"+" token sp ensure-not ,
|
||||||
|
"?" token sp ensure-not ,
|
||||||
|
"[[" token sp ensure-not ,
|
||||||
|
] seq* hide grouped ;
|
||||||
|
|
||||||
: 'repeat0' ( -- parser )
|
: 'repeat0' ( -- parser )
|
||||||
"{" token sp hide
|
[ <ebnf-repeat0> ] "*" syntax grouped ;
|
||||||
[ 'choice' sp ] delay
|
|
||||||
"}" token sp hide
|
: 'repeat1' ( -- parser )
|
||||||
3array seq [ first <ebnf-repeat0> ] action ;
|
[ <ebnf-repeat1> ] "+" syntax grouped ;
|
||||||
|
|
||||||
: 'optional' ( -- parser )
|
: 'optional' ( -- parser )
|
||||||
"[" token sp hide
|
[ <ebnf-optional> ] "?" syntax grouped ;
|
||||||
[ 'choice' sp ] delay
|
|
||||||
"]" token sp hide
|
: 'factor-code' ( -- parser )
|
||||||
3array seq [ first <ebnf-optional> ] action ;
|
[
|
||||||
|
"]]" token ensure-not ,
|
||||||
|
[ drop t ] satisfy ,
|
||||||
|
] seq* [ first ] action repeat0 [ >string ] action ;
|
||||||
|
|
||||||
|
: 'action' ( -- parser )
|
||||||
|
[
|
||||||
|
"(" [ 'choice' sp ] delay ")" syntax-pack ,
|
||||||
|
"[[" 'factor-code' "]]" syntax-pack ,
|
||||||
|
] seq* [ first2 <ebnf-action> ] action ;
|
||||||
|
|
||||||
|
|
||||||
|
: 'ensure-not' ( -- parser )
|
||||||
|
#! Parses the '!' syntax to ensure that
|
||||||
|
#! something that matches the following elements do
|
||||||
|
#! not exist in the parse stream.
|
||||||
|
[
|
||||||
|
"!" syntax ,
|
||||||
|
'group' sp ,
|
||||||
|
] seq* [ first <ebnf-ensure-not> ] action ;
|
||||||
|
|
||||||
: 'sequence' ( -- parser )
|
: 'sequence' ( -- parser )
|
||||||
|
#! A sequence of terminals and non-terminals, including
|
||||||
|
#! groupings of those.
|
||||||
[
|
[
|
||||||
|
'ensure-not' sp ,
|
||||||
'element' sp ,
|
'element' sp ,
|
||||||
'group' sp ,
|
'group' sp ,
|
||||||
'repeat0' sp ,
|
'repeat0' sp ,
|
||||||
|
'repeat1' sp ,
|
||||||
'optional' sp ,
|
'optional' sp ,
|
||||||
] { } make choice
|
'action' sp ,
|
||||||
repeat1 [
|
] choice* repeat1 [
|
||||||
dup length 1 = [ first ] [ <ebnf-sequence> ] if
|
dup length 1 = [ first ] [ <ebnf-sequence> ] if
|
||||||
] action ;
|
] action ;
|
||||||
|
|
||||||
|
@ -144,22 +248,15 @@ DEFER: 'choice'
|
||||||
dup length 1 = [ first ] [ <ebnf-choice> ] if
|
dup length 1 = [ first ] [ <ebnf-choice> ] if
|
||||||
] action ;
|
] action ;
|
||||||
|
|
||||||
: 'action' ( -- parser )
|
|
||||||
"=>" token hide
|
|
||||||
[ blank? ] satisfy ensure-not [ drop t ] satisfy 2array seq [ first ] action repeat1 [ >string ] action sp
|
|
||||||
2array seq [ first <ebnf-action> ] action ;
|
|
||||||
|
|
||||||
: 'rhs' ( -- parser )
|
|
||||||
'choice' 'action' sp optional 2array seq ;
|
|
||||||
|
|
||||||
: 'rule' ( -- parser )
|
: 'rule' ( -- parser )
|
||||||
'non-terminal' [ ebnf-non-terminal-symbol ] action
|
[
|
||||||
"=" token sp hide
|
'non-terminal' [ ebnf-non-terminal-symbol ] action ,
|
||||||
'rhs'
|
"=" syntax ,
|
||||||
3array seq [ first2 <ebnf-rule> ] action ;
|
'choice' ,
|
||||||
|
] seq* [ first2 <ebnf-rule> ] action ;
|
||||||
|
|
||||||
: 'ebnf' ( -- parser )
|
: 'ebnf' ( -- parser )
|
||||||
'rule' sp "." token sp hide list-of [ <ebnf> ] action ;
|
'rule' sp repeat1 [ <ebnf> ] action ;
|
||||||
|
|
||||||
: ebnf>quot ( string -- quot )
|
: ebnf>quot ( string -- quot )
|
||||||
'ebnf' parse [
|
'ebnf' parse [
|
||||||
|
@ -182,4 +279,4 @@ DEFER: 'choice'
|
||||||
f
|
f
|
||||||
] if* ;
|
] if* ;
|
||||||
|
|
||||||
: <EBNF "EBNF>" parse-tokens " " join ebnf>quot call ; parsing
|
: <EBNF "EBNF>" parse-multiline-string ebnf>quot call ; parsing
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
Chris Double
|
|
@ -0,0 +1,30 @@
|
||||||
|
! Copyright (C) 2008 Chris Double.
|
||||||
|
! See http://factorcode.org/license.txt for BSD license.
|
||||||
|
USING: kernel arrays strings math.parser sequences
|
||||||
|
peg peg.ebnf peg.parsers memoize math ;
|
||||||
|
IN: peg.expr
|
||||||
|
|
||||||
|
: operator-fold ( lhs seq -- value )
|
||||||
|
#! Perform a fold of a lhs, followed by a sequence of pairs being
|
||||||
|
#! { operator rhs } in to a tree structure of the correct precedence.
|
||||||
|
swap [ first2 swap call ] reduce ;
|
||||||
|
|
||||||
|
<EBNF
|
||||||
|
|
||||||
|
times = ("*") [[ drop [ * ] ]]
|
||||||
|
divide = ("/") [[ drop [ / ] ]]
|
||||||
|
add = ("+") [[ drop [ + ] ]]
|
||||||
|
subtract = ("-") [[ drop [ - ] ]]
|
||||||
|
|
||||||
|
digit = "0" | "1" | "2" | "3" | "4" |
|
||||||
|
"5" | "6" | "7" | "8" | "9"
|
||||||
|
number = ((digit)+) [[ concat string>number ]]
|
||||||
|
|
||||||
|
value = number | ("(" expr ")") [[ second ]]
|
||||||
|
product = (value ((times | divide) value)*) [[ first2 operator-fold ]]
|
||||||
|
sum = (product ((add | subtract) product)*) [[ first2 operator-fold ]]
|
||||||
|
expr = sum
|
||||||
|
EBNF>
|
||||||
|
|
||||||
|
: eval-expr ( string -- number )
|
||||||
|
expr parse parse-result-ast ;
|
|
@ -0,0 +1 @@
|
||||||
|
Simple expression evaluator using EBNF
|
|
@ -0,0 +1 @@
|
||||||
|
parsing
|
|
@ -1,7 +1,7 @@
|
||||||
! Copyright (C) 2007 Chris Double.
|
! Copyright (C) 2007 Chris Double.
|
||||||
! See http://factorcode.org/license.txt for BSD license.
|
! See http://factorcode.org/license.txt for BSD license.
|
||||||
!
|
!
|
||||||
USING: kernel tools.test peg peg.pl0 ;
|
USING: kernel tools.test peg peg.pl0 multiline sequences ;
|
||||||
IN: peg.pl0.tests
|
IN: peg.pl0.tests
|
||||||
|
|
||||||
{ "abc" } [
|
{ "abc" } [
|
||||||
|
@ -11,3 +11,89 @@ IN: peg.pl0.tests
|
||||||
{ 55 } [
|
{ 55 } [
|
||||||
"55abc" number parse parse-result-ast
|
"55abc" number parse parse-result-ast
|
||||||
] unit-test
|
] unit-test
|
||||||
|
|
||||||
|
{ t } [
|
||||||
|
<"
|
||||||
|
VAR x, squ;
|
||||||
|
|
||||||
|
PROCEDURE square;
|
||||||
|
BEGIN
|
||||||
|
squ := x * x
|
||||||
|
END;
|
||||||
|
|
||||||
|
BEGIN
|
||||||
|
x := 1;
|
||||||
|
WHILE x <= 10 DO
|
||||||
|
BEGIN
|
||||||
|
CALL square;
|
||||||
|
x := x + 1;
|
||||||
|
END
|
||||||
|
END.
|
||||||
|
"> program parse parse-result-remaining empty?
|
||||||
|
] unit-test
|
||||||
|
|
||||||
|
{ f } [
|
||||||
|
<"
|
||||||
|
CONST
|
||||||
|
m = 7,
|
||||||
|
n = 85;
|
||||||
|
|
||||||
|
VAR
|
||||||
|
x, y, z, q, r;
|
||||||
|
|
||||||
|
PROCEDURE multiply;
|
||||||
|
VAR a, b;
|
||||||
|
|
||||||
|
BEGIN
|
||||||
|
a := x;
|
||||||
|
b := y;
|
||||||
|
z := 0;
|
||||||
|
WHILE b > 0 DO BEGIN
|
||||||
|
IF ODD b THEN z := z + a;
|
||||||
|
a := 2 * a;
|
||||||
|
b := b / 2;
|
||||||
|
END
|
||||||
|
END;
|
||||||
|
|
||||||
|
PROCEDURE divide;
|
||||||
|
VAR w;
|
||||||
|
BEGIN
|
||||||
|
r := x;
|
||||||
|
q := 0;
|
||||||
|
w := y;
|
||||||
|
WHILE w <= r DO w := 2 * w;
|
||||||
|
WHILE w > y DO BEGIN
|
||||||
|
q := 2 * q;
|
||||||
|
w := w / 2;
|
||||||
|
IF w <= r THEN BEGIN
|
||||||
|
r := r - w;
|
||||||
|
q := q + 1
|
||||||
|
END
|
||||||
|
END
|
||||||
|
END;
|
||||||
|
|
||||||
|
PROCEDURE gcd;
|
||||||
|
VAR f, g;
|
||||||
|
BEGIN
|
||||||
|
f := x;
|
||||||
|
g := y;
|
||||||
|
WHILE f # g DO BEGIN
|
||||||
|
IF f < g THEN g := g - f;
|
||||||
|
IF g < f THEN f := f - g;
|
||||||
|
END;
|
||||||
|
z := f
|
||||||
|
END;
|
||||||
|
|
||||||
|
BEGIN
|
||||||
|
x := m;
|
||||||
|
y := n;
|
||||||
|
CALL multiply;
|
||||||
|
x := 25;
|
||||||
|
y := 3;
|
||||||
|
CALL divide;
|
||||||
|
x := 84;
|
||||||
|
y := 36;
|
||||||
|
CALL gcd;
|
||||||
|
END.
|
||||||
|
"> program parse parse-result-remaining empty?
|
||||||
|
] unit-test
|
|
@ -1,30 +1,31 @@
|
||||||
! Copyright (C) 2007 Chris Double.
|
! Copyright (C) 2007 Chris Double.
|
||||||
! See http://factorcode.org/license.txt for BSD license.
|
! See http://factorcode.org/license.txt for BSD license.
|
||||||
USING: kernel arrays strings math.parser sequences
|
USING: kernel arrays strings math.parser sequences
|
||||||
peg peg.ebnf peg.parsers memoize ;
|
peg peg.ebnf peg.parsers memoize namespaces ;
|
||||||
IN: peg.pl0
|
IN: peg.pl0
|
||||||
|
|
||||||
#! Grammar for PL/0 based on http://en.wikipedia.org/wiki/PL/0
|
#! Grammar for PL/0 based on http://en.wikipedia.org/wiki/PL/0
|
||||||
MEMO: ident ( -- parser )
|
MEMO: ident ( -- parser )
|
||||||
CHAR: a CHAR: z range
|
[
|
||||||
CHAR: A CHAR: Z range 2array choice repeat1
|
CHAR: a CHAR: z range ,
|
||||||
[ >string ] action ;
|
CHAR: A CHAR: Z range ,
|
||||||
|
] choice* repeat1 [ >string ] action ;
|
||||||
|
|
||||||
MEMO: number ( -- parser )
|
MEMO: number ( -- parser )
|
||||||
CHAR: 0 CHAR: 9 range repeat1 [ string>number ] action ;
|
CHAR: 0 CHAR: 9 range repeat1 [ string>number ] action ;
|
||||||
|
|
||||||
<EBNF
|
<EBNF
|
||||||
program = block '.' .
|
program = block "."
|
||||||
block = [ 'const' ident '=' number { ',' ident '=' number } ';' ]
|
block = [ "CONST" ident "=" number { "," ident "=" number } ";" ]
|
||||||
[ 'var' ident { ',' ident } ';' ]
|
[ "VAR" ident { "," ident } ";" ]
|
||||||
{ 'procedure' ident ';' [ block ';' ] } statement .
|
{ "PROCEDURE" ident ";" [ block ";" ] } statement
|
||||||
statement = [ ident ':=' expression | 'call' ident |
|
statement = [ ident ":=" expression | "CALL" ident |
|
||||||
'begin' statement {';' statement } 'end' |
|
"BEGIN" statement {";" statement } "END" |
|
||||||
'if' condition 'then' statement |
|
"IF" condition "THEN" statement |
|
||||||
'while' condition 'do' statement ] .
|
"WHILE" condition "DO" statement ]
|
||||||
condition = 'odd' expression |
|
condition = "ODD" expression |
|
||||||
expression ('=' | '#' | '<=' | '<' | '>=' | '>') expression .
|
expression ("=" | "#" | "<=" | "<" | ">=" | ">") expression
|
||||||
expression = ['+' | '-'] term {('+' | '-') term } .
|
expression = ["+" | "-"] term {("+" | "-") term }
|
||||||
term = factor {('*' | '/') factor } .
|
term = factor {("*" | "/") factor }
|
||||||
factor = ident | number | '(' expression ')'
|
factor = ident | number | "(" expression ")"
|
||||||
EBNF>
|
EBNF>
|
||||||
|
|
Loading…
Reference in New Issue