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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
|
const _scanner_actions = Int8[0, 1, 0, 1, 1, 1, 5, 1, 6, 1, 7, 2, 2, 3, 2, 2, 4, 0 , ]
const _scanner_trans_keys = UInt8[0, 2, 0, 1, 0, 2, 0 , ]
const _scanner_char_class = Int8[0, 1, 2, 0 , ]
const _scanner_index_offsets = Int8[0, 3, 5, 0 , ]
const _scanner_indicies = Int8[1, 1, 2, 4, 5, 1, 1, 2, 0 , ]
const _scanner_index_defaults = Int8[0, 3, 0, 0 , ]
const _scanner_trans_cond_spaces = Int8[-1, -1, -1, -1, -1, -1, 0 , ]
const _scanner_cond_targs = Int8[1, 0, 1, 1, 2, 2, 0 , ]
const _scanner_cond_actions = Int8[9, 0, 5, 7, 11, 14, 0 , ]
const _scanner_to_state_actions = Int8[0, 1, 0, 0 , ]
const _scanner_from_state_actions = Int8[0, 3, 0, 0 , ]
const _scanner_eof_trans = Int8[1, 0, 1, 0 , ]
const _scanner_nfa_targs = Int8[0, 0 , ]
const _scanner_nfa_offsets = Int8[0, 0, 0, 0 , ]
const _scanner_nfa_push_actions = Int8[0, 0 , ]
const _scanner_nfa_pop_trans = Int8[0, 0 , ]
const scanner_start = 1
const scanner_first_final = 1
const scanner_error = -1
const scanner_en_main = 1
function m( data::AbstractString )
p = 0
pe = length(data)
eof = length(data)
cs = 0
buffer = ""
ts = 0;
te = 0;
act = 0;
token = 0;
cs = convert(Int, scanner_start )
ts = 0
te = 0
act = 0
_trans = 0;
_have = 0;
_cont = 1;
_acts = 0;
_nacts= 0
;
_keys = 0;
_inds = 0;
while _cont == 1
_have = 0
if p == pe
if p == eof
if _scanner_eof_trans[1+(cs)]> 0
_trans = convert(UInt, _scanner_eof_trans[1+(cs)] )- 1
_have = 1
end
if _have == 0
end
end
if _have == 0
_cont = 0
end
end
if _cont == 1
if _have == 0
_acts = _scanner_from_state_actions[1+(cs)]
_nacts = convert(UInt, _scanner_actions[1+(_acts )] )
_acts += 1
while _nacts > 0
if _scanner_actions[1+(_acts )] == 1
{
ts = p
}
end
_nacts -= 1
_acts += 1
end
_keys = (cs<<1)
_inds = _scanner_index_offsets[1+(cs)]
if (data[1+(p )])<= 99 && (data[1+(p )])>= 97
_ic = convert(Int, _scanner_char_class[1+(convert(Int, (data[1+(p )]) )- 97)] );
if _ic <= convert(Int, _scanner_trans_keys[1+(_keys+1 )] )&& _ic >= convert(Int, _scanner_trans_keys[1+(_keys )] )
_trans = convert(UInt, _scanner_indicies[1+(_inds + convert(Int, (_ic - convert(Int, _scanner_trans_keys[1+(_keys )] )) ))] )
else
_trans = convert(UInt, _scanner_index_defaults[1+(cs)] )
end
else
_trans = convert(UInt, _scanner_index_defaults[1+(cs)] )
end
end
if _cont == 1
cs = convert(Int, _scanner_cond_targs[1+(_trans)] )
if _scanner_cond_actions[1+(_trans)]!= 0
_acts = _scanner_cond_actions[1+(_trans)]
_nacts = convert(UInt, _scanner_actions[1+(_acts )] )
_acts += 1
while _nacts > 0
if _scanner_actions[1+(_acts )] == 2
{
te = p+1
}
elseif _scanner_actions[1+(_acts )] == 3
{
act = 1
}
elseif _scanner_actions[1+(_acts )] == 4
{
act = 3
}
elseif _scanner_actions[1+(_acts )] == 5
{
te = p+1
print( "pat2\n" );
}
elseif _scanner_actions[1+(_acts )] == 6
{
te = p+1
print( "any\n" );
}
elseif _scanner_actions[1+(_acts )] == 7
{
if act == 1
p = ((te))-1
print( "pat1\n" );
elseif act == 3
p = ((te))-1
print( "any\n" );
end
}
end
_nacts -= 1
_acts += 1
end
end
_acts = _scanner_to_state_actions[1+(cs)]
_nacts = convert(UInt, _scanner_actions[1+(_acts )] )
_acts += 1
while _nacts > 0
if _scanner_actions[1+(_acts )] == 0
{
ts = 0
}
end
_nacts -= 1
_acts += 1
end
if _cont == 1
p += 1
end
end
end
end
if ( cs >= scanner_first_final )
println( "ACCEPT" );
else
println( "FAIL" );
end
end
m( "a" );
|