-
Notifications
You must be signed in to change notification settings - Fork 0
/
process.sml
executable file
·557 lines (511 loc) · 22.2 KB
/
process.sml
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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
structure Process
:> PROCESS
=
struct
(* This number is hardcoded to correspond to tableSizeMinor in codegen.sml. *)
val symbolLimitMax = 1024
(* This number is hardcoded to correspond to tableSizeMajor in codegen.sml. *)
val stateCountMax = 65536
structure S = StringSet
structure D = StringDict
structure SS = SymbolSet
open Syntax
exception Error
datatype pattern =
ReCharset of SymbolSet.set
| RePattern of Regexp.regexp
val options : string D.dict ref = ref D.empty
val types : S.set ref = ref S.empty
val actions : string D.dict ref = ref D.empty
val functions : (string * int * (Regexp.regexp * (int * string)) list) D.dict ref = ref D.empty
val patterns : pattern D.dict ref = ref D.empty
val alphabet : (int * SS.set) option ref = ref NONE
fun processSet setname set =
(case set of
Svar name =>
(case D.find (!patterns) name of
NONE =>
(
print "Error: unbound pattern ";
print name;
print " in set ";
print setname;
print ".\n";
raise Error
)
| SOME (ReCharset set) =>
set
| SOME (RePattern _) =>
(
print "Error: regexp pattern ";
print name;
print " in set ";
print setname;
print ".\n";
raise Error
))
| Ssymbol sym =>
if 0 <= sym andalso sym < #1 (valOf (!alphabet)) then
SS.insert SS.empty sym
else
(
print "Error: character out of alphabet range in charset ";
print setname;
print ".\n";
raise Error
)
| Srange l =>
foldl
(fn ((bottom, top), set) =>
if bottom > top then
(
print "Error: ill-formed range in character set ";
print setname;
print ".\n";
raise Error
)
else if 0 <= bottom andalso top < #1 (valOf (!alphabet)) then
let
fun loop curr acc =
if curr > top then
acc
else
loop (curr+1) (SS.insert acc curr)
in
loop bottom set
end
else
(
print "Error: character out of alphabet range in charset ";
print setname;
print ".\n";
raise Error
))
SS.empty
l
| Sempty =>
SS.empty
| Sunion l =>
foldl
(fn (set1, set2) => SS.union (processSet setname set1) set2)
SS.empty
l
| Sintersection [] =>
#2 (valOf (!alphabet))
| Sintersection (set :: l) =>
foldl
(fn (set1, set2) => SS.intersection (processSet setname set1) set2)
(processSet setname set)
l
| Sdifference (set, l) =>
foldl
(fn (set1, set2) => SS.difference set2 (processSet setname set1))
(processSet setname set)
l
| Scomplement l =>
foldl
(fn (set1, set2) => SS.difference set2 (processSet setname set1))
(#2 (valOf (!alphabet)))
l
| Sany =>
#2 (valOf (!alphabet)))
fun processRegexp errfn re =
(case re of
Var name =>
(case D.find (!patterns) name of
NONE =>
(
print "Error: unbound pattern ";
print name;
print " in ";
errfn ();
print ".\n";
raise Error
)
| SOME (ReCharset set) =>
Regexp.Set set
| SOME (RePattern re') =>
re')
| Symbol sym =>
if 0 <= sym andalso sym < #1 (valOf (!alphabet)) then
Regexp.String [sym]
else
(
print "Error: character out of alphabet range in ";
errfn ();
print ".\n";
raise Error
)
| String l =>
(
app
(fn sym =>
if 0 <= sym andalso sym < #1 (valOf (!alphabet)) then
()
else
(
print "Error: character out of alphabet range in ";
errfn ();
print ".\n";
raise Error
))
l;
Regexp.String l
)
| Any =>
(case !alphabet of
NONE =>
(
print "Error: no alphabet specified for universal set in ";
errfn ();
print ".\n";
raise Error
)
| SOME (_, allset) =>
Regexp.Set allset)
| Epsilon =>
Regexp.String []
| Empty =>
Regexp.Empty
| Concat res =>
foldr
(fn (re1, re2) => Regexp.Concat (processRegexp errfn re1, re2))
Regexp.Epsilon res
| Union res =>
foldr
(fn (re1, re2) => Regexp.Union (processRegexp errfn re1, re2))
Regexp.Empty res
| Optional re1 =>
Regexp.Option (processRegexp errfn re1)
| Closure re1 =>
Regexp.Closure (processRegexp errfn re1)
| Plus re1 =>
Regexp.Plus (processRegexp errfn re1)
| Exactly (re1, n) =>
if n < 0 then
(
print "Error: illegal repetition specification in ";
errfn ();
print ".\n";
raise Error
)
else
let
val re1' = processRegexp errfn re1
fun loop m =
if m = 0 then
Regexp.Epsilon
else if m = 1 then
re1'
else
Regexp.Concat (re1', loop (m-1))
in
loop n
end
| AtLeast (re1, n) =>
if n < 0 then
(
print "Error: illegal repetition specification in ";
errfn ();
print ".\n";
raise Error
)
else
let
val re1' = processRegexp errfn re1
fun loop m =
if m = 0 then
Regexp.Closure re1'
else if m = 1 then
Regexp.Plus re1'
else
Regexp.Concat (re1', loop (m-1))
in
loop n
end
| Repeat (re1, first, last) =>
if first < 0 orelse last < first then
(
print "Error: illegal repetition specification in ";
errfn ();
print ".\n";
raise Error
)
else
let
val re1' = processRegexp errfn re1
fun loopOpt m =
if m = 0 then
Regexp.Epsilon
else if m = 1 then
Regexp.Option re1'
else
Regexp.Option (Regexp.Concat (re1',
loopOpt (m-1)))
fun loop m =
if m = 0 then
loopOpt (last-first)
else
Regexp.Concat (re1', loop (m-1))
in
loop first
end
| Eos =>
Regexp.String [~1])
fun processMain l =
(case l of
[] =>
()
| directive :: rest =>
(
(case directive of
Option (name, value) =>
(case D.find (!options) name of
NONE =>
options := D.insert (!options) name value
| SOME _ =>
if value = "" then
(* Nullary option, we'll allow it to be respecified. *)
()
else
(
print "Error: multiple specification of ";
print name;
print ".\n";
raise Error
))
| Alphabet n =>
(case !alphabet of
SOME _ =>
(
print "Error: multiply specified alphabet.\n";
raise Error
)
| NONE =>
if n < 1 then
(
print "Error: alphabet too small.\n";
raise Error
)
else if n > symbolLimitMax then
(
print "Error: alphabet too large.\n";
raise Error
)
else
let
fun loop i acc =
if i >= n then
acc
else
loop (i+1) (SS.insert acc i)
val set = loop 0 SS.empty
in
alphabet := SOME (n, set)
end)
| Function (name, tp, arms) =>
if D.member (!functions) name then
(
print "Error: multiply specified function ";
print name;
print ".\n";
raise Error
)
else if not (isSome (!alphabet)) then
(
print "Error: no alphabet specified for function ";
print name;
print ".\n";
raise Error
)
else
(case arms of
[] =>
(
print "Error: no arms in function ";
print name;
print ".\n";
raise Error
)
| _ =>
let
val () =
if D.member (!actions) tp then
(
print "Error: type identifer ";
print tp;
print " already used for an action.\n";
raise Error
)
else
types := S.insert (!types) tp
val (armcount, arms') =
foldl
(fn ((re, action), (n, acc)) =>
let
val () =
(case D.find (!actions) action of
NONE =>
if S.member (!types) action then
(
print "Error: action identifier ";
print action;
print " already used for a type.\n";
raise Error
)
else
actions := D.insert (!actions) action tp
| SOME tp' =>
if tp = tp' then
()
else
(
print "Error: inconsistent type for action ";
print action;
print " in arm ";
print (Int.toString n);
print " of function ";
print name;
print ".\n";
raise Error
))
fun errfn () =
(
print "arm ";
print (Int.toString n);
print " of function ";
print name
)
val re' = processRegexp errfn re
in
(n+1, (re', (n, action)) :: acc)
end)
(0, [])
arms
in
functions := D.insert (!functions) name (tp, armcount, arms')
end)
| Regexp (name, re) =>
if D.member (!patterns) name then
(
print "Error: multiply specified regexp/charset ";
print name;
print ".\n";
raise Error
)
else if isSome (!alphabet) then
let
fun errfn () =
(
print "regexp ";
print name
)
val re' = processRegexp errfn re
in
patterns := D.insert (!patterns) name (RePattern re')
end
else
(
print "Error: no alphabet specified for regexp ";
print name;
print ".\n";
raise Error
)
| Set (name, set) =>
if D.member (!patterns) name then
(
print "Error: multiply specified regexp/charset ";
print name;
print ".\n";
raise Error
)
else if isSome (!alphabet) then
let
val set' = processSet name set
in
patterns := D.insert (!patterns) name (ReCharset set')
end
else
(
print "Error: no alphabet specified for charset ";
print name;
print ".\n";
raise Error
));
processMain rest
))
fun process l =
let
val () =
(
options := D.empty;
types := S.empty;
actions := D.empty;
functions := D.empty;
patterns := D.empty;
alphabet := NONE
)
val () = processMain l
(* Post-processing *)
val () =
if D.isEmpty (!functions) then
(
print "Error: no functions specified.\n";
raise Error
)
else
()
val symbolLimit =
(* Since functions is non-empty, we have already checked that an alphabet is specified. *)
#1 (valOf (!alphabet))
val functions' =
map
(fn (name, (tp, armcount, arms)) =>
let
val () = print name
val () = print ": "
val (auto as (states, _, _, _, _, _, _), redundancies, inexhaustive) =
MakeAutomaton.makeAutomaton symbolLimit armcount arms
val () = print (Int.toString states)
val () = print " states\n"
val () =
app
(fn armnumber =>
(
print "Warning: arm ";
print (Int.toString armnumber);
print " of function ";
print name;
print " is redundant.\n"
))
redundancies
val () =
if inexhaustive then
(
print "Warning: function ";
print name;
print " is inexhaustive.\n"
)
else
()
val () =
if states > stateCountMax then
(
print "Error: function ";
print name;
print " has too many states.\n";
raise Error
)
else
()
in
(name, tp, auto)
end)
(D.toList (!functions))
val types' =
(* S.toList produces these in sorted order. *)
S.toList (!types)
in
(!options, symbolLimit, types', D.toList (!actions), functions')
end
end