Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 134f0a3e6cf3182d61d0f4bdeef756b7 > files > 45

perl-Parse-RecDescent-1.967.9-3.mga4.noarch.rpm

#!/usr/bin/perl -sw

# PARSE LOGICAL EXPRESSIONS

$RD::TRACE=1;

use Parse::RecDescent;

$grammar =
q{
	expr	:	disj  no_garbage

	no_garbage: /^\s*$/
		  | <error: Trailing garbage>

	disj	:	conj  ('or' conj)(s?)

	conj	:	unary ('and' unary)(s?)

	unary	:	'not' atom
		|	'(' disj ( ')' | <error> )
		|	atom

	atom	:	/<.+?>/

};

$parse = new Parse::RecDescent ($grammar);

$input = '';

print "> ";
while (<>)
{

	if (/^\.$/) { defined $parse->expr($input) or print "huh?\n"; $input = '' }
	else	    { chomp; $input .= " $_" }
	print "> ";
}