line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
1
|
|
|
1
|
|
7
|
use TestML::Runtime; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
35
|
|
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
package TestML::Compiler; |
4
|
|
|
|
|
|
|
|
5
|
1
|
|
|
1
|
|
6
|
use TestML::Base; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
9
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
has code => (); |
8
|
|
|
|
|
|
|
has data => (); |
9
|
|
|
|
|
|
|
has text => (); |
10
|
|
|
|
|
|
|
has directives => (); |
11
|
|
|
|
|
|
|
has function => (); |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
sub compile { |
14
|
1
|
|
|
1
|
0
|
4
|
my ($self, $input) = @_; |
15
|
|
|
|
|
|
|
|
16
|
1
|
|
|
|
|
8
|
$self->preprocess($input, 'top'); |
17
|
1
|
|
|
|
|
15
|
$self->compile_code; |
18
|
1
|
|
|
|
|
8
|
$self->compile_data; |
19
|
|
|
|
|
|
|
|
20
|
1
|
50
|
|
|
|
6
|
if ($self->directives->{DumpAST}) { |
21
|
0
|
|
|
|
|
0
|
XXX($self->function); |
22
|
|
|
|
|
|
|
} |
23
|
|
|
|
|
|
|
|
24
|
1
|
|
|
|
|
5
|
$self->function->namespace->{TestML} = $self->directives->{TestML}; |
25
|
|
|
|
|
|
|
|
26
|
1
|
|
|
|
|
5
|
$self->function->outer(TestML::Function->new); |
27
|
1
|
|
|
|
|
4
|
return $self->function; |
28
|
|
|
|
|
|
|
} |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
sub preprocess { |
31
|
2
|
|
|
2
|
0
|
6
|
my ($self, $input, $top) = @_; |
32
|
|
|
|
|
|
|
|
33
|
2
|
|
|
|
|
62
|
my @parts = split /^((?:\%\w+.*|\#.*|\ *)\n)/m, $input; |
34
|
2
|
|
|
|
|
5
|
$input = ''; |
35
|
|
|
|
|
|
|
|
36
|
2
|
|
|
|
|
21
|
$self->{directives} = { |
37
|
|
|
|
|
|
|
TestML => '', |
38
|
|
|
|
|
|
|
DataMarker => '', |
39
|
|
|
|
|
|
|
BlockMarker => '===', |
40
|
|
|
|
|
|
|
PointMarker => '---', |
41
|
|
|
|
|
|
|
}; |
42
|
|
|
|
|
|
|
|
43
|
2
|
|
|
|
|
3
|
my $order_error = 0; |
44
|
2
|
|
|
|
|
7
|
for my $part (@parts) { |
45
|
28
|
100
|
|
|
|
56
|
next unless length($part); |
46
|
23
|
100
|
|
|
|
588
|
if ($part =~ /^(\#.*|\ *)\n/) { |
47
|
11
|
|
|
|
|
12
|
$input .= "\n"; |
48
|
11
|
|
|
|
|
22
|
next; |
49
|
|
|
|
|
|
|
} |
50
|
12
|
100
|
|
|
|
41
|
if ($part =~ /^%(\w+)\s*(.*?)\s*\n/) { |
51
|
3
|
|
|
|
|
10
|
my ($directive, $value) = ($1, $2); |
52
|
3
|
|
|
|
|
6
|
$input .= "\n"; |
53
|
3
|
100
|
|
|
|
9
|
if ($directive eq 'TestML') { |
54
|
1
|
50
|
|
|
|
6
|
die "Invalid TestML directive" |
55
|
|
|
|
|
|
|
unless $value =~ /^\d+\.\d+\.\d+$/; |
56
|
1
|
50
|
|
|
|
9
|
die "More than one TestML directive found" |
57
|
|
|
|
|
|
|
if $self->directives->{TestML}; |
58
|
1
|
|
|
|
|
9
|
$self->directives->{TestML} = |
59
|
|
|
|
|
|
|
TestML::Str->new(value => $value); |
60
|
1
|
|
|
|
|
4
|
next; |
61
|
|
|
|
|
|
|
} |
62
|
2
|
100
|
|
|
|
7
|
$order_error = 1 unless $self->directives->{TestML}; |
63
|
2
|
100
|
|
|
|
18
|
if ($directive eq 'Include') { |
|
|
50
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
64
|
1
|
50
|
|
|
|
4
|
my $runtime = $TestML::Runtime::Singleton |
65
|
|
|
|
|
|
|
or die "Can't process Include. No runtime available"; |
66
|
1
|
|
|
|
|
13
|
my $include = ref($self)->new; |
67
|
1
|
|
|
|
|
6
|
$include->preprocess($runtime->read_testml_file($value)); |
68
|
1
|
|
|
|
|
8
|
$input .= $include->text; |
69
|
1
|
|
|
|
|
4
|
$self->directives->{DataMarker} = |
70
|
|
|
|
|
|
|
$include->directives->{DataMarker}; |
71
|
1
|
|
|
|
|
6
|
$self->directives->{BlockMarker} = |
72
|
|
|
|
|
|
|
$include->directives->{BlockMarker}; |
73
|
1
|
|
|
|
|
5
|
$self->directives->{PointMarker} = |
74
|
|
|
|
|
|
|
$include->directives->{PointMarker}; |
75
|
1
|
50
|
|
|
|
4
|
die "Can't define %TestML in an Included file" |
76
|
|
|
|
|
|
|
if $include->directives->{TestML}; |
77
|
|
|
|
|
|
|
} |
78
|
|
|
|
|
|
|
elsif ($directive =~ /^(DataMarker|BlockMarker|PointMarker)$/) { |
79
|
1
|
|
|
|
|
5
|
$self->directives->{$directive} = $value; |
80
|
|
|
|
|
|
|
} |
81
|
|
|
|
|
|
|
elsif ($directive =~ /^(DebugPegex|DumpAST)$/) { |
82
|
0
|
0
|
|
|
|
0
|
$value = 1 unless length($value); |
83
|
0
|
|
|
|
|
0
|
$self->directives->{$directive} = $value; |
84
|
|
|
|
|
|
|
} |
85
|
|
|
|
|
|
|
else { |
86
|
0
|
|
|
|
|
0
|
die "Unknown TestML directive '$directive'"; |
87
|
|
|
|
|
|
|
} |
88
|
|
|
|
|
|
|
} |
89
|
|
|
|
|
|
|
else { |
90
|
9
|
100
|
66
|
|
|
35
|
$order_error = 1 if $input and not $self->directives->{TestML}; |
91
|
9
|
|
|
|
|
137
|
$input .= $part; |
92
|
|
|
|
|
|
|
} |
93
|
|
|
|
|
|
|
} |
94
|
|
|
|
|
|
|
|
95
|
2
|
100
|
|
|
|
7
|
if ($top) { |
96
|
1
|
50
|
|
|
|
4
|
die "No TestML directive found" |
97
|
|
|
|
|
|
|
unless $self->directives->{TestML}; |
98
|
1
|
50
|
|
|
|
4
|
die "%TestML directive must be the first (non-comment) statement" |
99
|
|
|
|
|
|
|
if $order_error; |
100
|
|
|
|
|
|
|
|
101
|
1
|
|
33
|
|
|
4
|
my $DataMarker = |
102
|
|
|
|
|
|
|
$self->directives->{DataMarker} ||= |
103
|
|
|
|
|
|
|
$self->directives->{BlockMarker}; |
104
|
1
|
50
|
|
|
|
6
|
if ((my $split = index($input, "\n$DataMarker")) >= 0) { |
105
|
1
|
|
|
|
|
6
|
$self->{code} = substr($input, 0, $split + 1); |
106
|
1
|
|
|
|
|
18
|
$self->{data} = substr($input, $split + 1); |
107
|
|
|
|
|
|
|
} |
108
|
|
|
|
|
|
|
else { |
109
|
0
|
|
|
|
|
0
|
$self->{code} = $input; |
110
|
0
|
|
|
|
|
0
|
$self->{data} = ''; |
111
|
|
|
|
|
|
|
} |
112
|
|
|
|
|
|
|
} |
113
|
|
|
|
|
|
|
else { |
114
|
1
|
|
|
|
|
6
|
$self->{text} = $input; |
115
|
|
|
|
|
|
|
} |
116
|
|
|
|
|
|
|
} |
117
|
|
|
|
|
|
|
|
118
|
|
|
|
|
|
|
1; |