File: demo_embedding.pl

package info (click to toggle)
libparse-recdescent-perl 1.967015%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 764 kB
  • sloc: perl: 6,797; makefile: 13; ansic: 9
file content (61 lines) | stat: -rwxr-xr-x 984 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#! /usr/local/bin/perl -w

use Parse::RecDescent;

#$RD_TRACE=1;

my $parser = Parse::RecDescent->new(<<'EOGRAMMAR');

	file: 		<skip:''> item(s)

	item: 		directive
	    | 		text

	directive: 	'<%' <skip:'\\s*'> command arg(s?) m|/?%>|
				{ $return = bless \%item, 'directive' }

	command: 	m|/?[a-z]\w*|i

	arg:		argname '=' string
				{ $return = \%item }
	   |		string
				{ $return = \%item }
	   |		data
				{ $return = \%item }

	argname:	/[a-z]\w*/i

	string:		'"' /[^\\"]*(\\.[^\\"]*)*/ '"'
				{ $return = $item[2] }

	data:		m|((?!/?%>)\S)+|


	text: 		/((?!<%).)+/s
				{ $return = bless \$item[1], 'text' }

EOGRAMMAR

my $data = join '', <DATA>;

my $info = $parser->file($data);

use Data::Dumper;

print Data::Dumper->Dump($info);

__DATA__

<% If expr %>
the if worked
<% Else %>
it didn't work
<% /If %>
   >
<% Include file="foo.txt" /%>
   >
<% Run Function="myFunc" Attr="x" ...%>
<% Arg Name="row" %>
<TR><TD>Name</TD><TD>{name}</TD></TR>
<% /Arg %>
<% /Run %>