huangcm
2025-07-17 5e909b7bed41a27a688a9734cda9187a164260f5
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
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
 
/*================================================================*/
/*
  JavaCup Specification for the JavaCup Specification Language
  by Scott Hudson, GVU Center, Georgia Tech, August 1995
 
  This JavaCup specification is used to implement JavaCup itself.
  It specifies the parser for the JavaCup specification language.
  (It also serves as a reasonable example of what a typical JavaCup
  spec looks like).
 
  The specification has the following parts:
    Package and import declarations
      These serve the same purpose as in a normal Java source file
      (and will appear in the generated code for the parser). In this
      case we are part of the java_cup package and we import both the
      java_cup runtime system and Hashtable from the standard Java
      utilities package.
 
    Action code
      This section provides code that is included with the class encapsulating
      the various pieces of user code embedded in the grammar (i.e., the
      semantic actions).  This provides a series of helper routines and
      data structures that the semantic actions use.
 
    Parser code
      This section provides code included in the parser class itself.  In
      this case we override the default error reporting routines.
 
    Init with and scan with
      These sections provide small bits of code that initialize, then
      indicate how to invoke the scanner.
 
    Symbols and grammar
      These sections declare all the terminal and non terminal symbols
      and the types of objects that they will be represented by at runtime,
      then indicate the start symbol of the grammar (), and finally provide
      the grammar itself (with embedded actions).
 
    Operation of the parser
      The parser acts primarily by accumulating data structures representing
      various parts of the specification.  Various small parts (e.g., single
      code strings) are stored as static variables of the emit class and
      in a few cases as variables declared in the action code section.
      Terminals, non terminals, and productions, are maintained as collection
      accessible via static methods of those classes.  In addition, two
      symbol tables are kept:
    symbols   maintains the name to object mapping for all symbols
    non_terms maintains a separate mapping containing only the non terms
 
      Several intermediate working structures are also declared in the action
      code section.  These include: rhs_parts, rhs_pos, and lhs_nt which
      build up parts of the current production while it is being parsed.
 
  Author(s)
    Scott Hudson, GVU Center, Georgia Tech.
 
  Revisions
    v0.9a   First released version                     [SEH] 8/29/95
    v0.9b   Updated for beta language (throws clauses) [SEH] 11/25/95
*/
/*================================================================*/
 
package java_cup;
import java_cup.runtime.*;
import java.util.Hashtable;
 
/*----------------------------------------------------------------*/
 
action code {:
  /** helper routine to clone a new production part adding a given label */
  protected production_part add_lab(production_part part, String lab)
    throws internal_error
    {
      /* if there is no label, or this is an action, just return the original */
      if (lab == null || part.is_action()) return part;
 
      /* otherwise build a new one with the given label attached */
      return new symbol_part(((symbol_part)part).the_symbol(),lab);
    }
 
  /** max size of right hand side we will support */
  protected final int MAX_RHS = 200;
 
  /** array for accumulating right hand side parts */
  protected production_part[] rhs_parts = new production_part[MAX_RHS];
 
  /** where we are currently in building a right hand side */
  protected int rhs_pos = 0;
 
  /** start a new right hand side */
  protected void new_rhs() {rhs_pos = 0; }
 
  /** add a new right hand side part */
  protected void add_rhs_part(production_part part) throws java.lang.Exception
    {
      if (rhs_pos >= MAX_RHS)
    throw new Exception("Internal Error: Productions limited to " +
                 MAX_RHS + " symbols and actions");
 
      rhs_parts[rhs_pos] = part;
      rhs_pos++;
    }
 
  /** string to build up multiple part names */
  protected String multipart_name = new String();
 
  /** append a new name segment to the accumulated multipart name */
  protected void append_multipart(String name)
    {
      String dot = "";
 
      /* if we aren't just starting out, put on a dot */
      if (multipart_name.length() != 0)  dot = ".";
 
      multipart_name = multipart_name.concat(dot + name);
    }
 
  /** table of declared symbols -- contains production parts indexed by name */
  protected Hashtable symbols = new Hashtable();
 
  /** table of just non terminals -- contains non_terminals indexed by name */
  protected Hashtable non_terms = new Hashtable();
 
  /** declared start non_terminal */
  protected non_terminal start_nt = null;
 
  /** left hand side non terminal of the current production */
  protected non_terminal lhs_nt;
 
:};
 
/*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . */
 
parser code {:
 
  /* override error routines */
 
  public void report_fatal_error(
    String   message,
    Object   info)
    {
      done_parsing();
      lexer.emit_error(message);
      System.err.println("Can't recover from previous error(s), giving up.");
      System.exit(1);
    }
 
    public void report_error(String message, Object info)
    {
      lexer.emit_error(message);
    }
:};
 
/*----------------------------------------------------------------*/
 
init with {: lexer.init(); :};
scan with {: return lexer.next_token(); :};
 
/*----------------------------------------------------------------*/
 
terminal java_cup.runtime.token
  PACKAGE, IMPORT, CODE, ACTION, PARSER, TERMINAL, NON, INIT, SCAN, WITH,
  START, SEMI, COMMA, STAR, DOT, COLON, COLON_COLON_EQUALS, BAR,
  DEBUG;
 
terminal java_cup.runtime.str_token  ID, CODE_STRING;
 
non terminal java_cup.runtime.symbol
  spec, package_spec, import_list, code_part, action_code_part,
  parser_code_part, symbol_list, start_spec, production_list,
  multipart_id, import_spec, import_id, init_code, scan_code, symbol,
  debug_grammar,
  type_id, term_name_list, non_term_name_list, production, prod_part_list,
  prod_part, new_term_id, new_non_term_id, rhs_list, rhs, empty;
 
non terminal java_cup.runtime.str_token  nt_id, symbol_id, label_id, opt_label;
 
/*----------------------------------------------------------------*/
 
start with spec;
 
/*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . */
 
spec ::=
    {:
          /* declare "error" as a terminal */
          symbols.put("error", new symbol_part(terminal.error));
 
          /* declare start non terminal */
          non_terms.put("$START", non_terminal.START_nt);
    :}
    package_spec
    import_list
    code_part
        debug_grammar
        init_code
    scan_code
    symbol_list
    start_spec
    production_list
    |
    /* error recovery assuming something went wrong before symbols
       and we have TERMINAL or NON TERMINAL to sync on.  if we get
       an error after that, we recover inside symbol_list or
       production_list
    */
    error
    symbol_list
    start_spec
    production_list
    ;
 
/*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . */
 
package_spec ::=
    PACKAGE
    multipart_id
    {:
      /* save the package name */
      emit.package_name = multipart_name;
 
      /* reset the accumulated multipart name */
      multipart_name = new String();
    :}
    SEMI
    |
    empty
    ;
 
/*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . */
 
import_list ::=
    import_list
    import_spec
    |
    empty
    ;
 
/*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . */
 
import_spec ::=
    IMPORT
    import_id
    {:
      /* save this import on the imports list */
      emit.import_list.push(multipart_name);
 
      /* reset the accumulated multipart name */
      multipart_name = new String();
    :}
    SEMI
    ;
 
/*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . */
 
code_part ::= action_code_part parser_code_part ;
 
/*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . */
 
action_code_part ::=
    ACTION CODE CODE_STRING:user_code SEMI
    {:
      /* save the user included code string */
      emit.action_code = user_code.str_val;
    :}
    |
    empty
    ;
 
/*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . */
 
parser_code_part ::=
    PARSER CODE CODE_STRING:user_code SEMI
    {:
      /* save the user included code string */
      emit.parser_code = user_code.str_val;
    :}
    |
    empty
    ;
 
/*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . */
 
init_code ::=
    INIT WITH CODE_STRING:user_code SEMI
    {:
      /* save the user code */
      emit.init_code = user_code.str_val;
    :}
    |
    empty
    ;
 
/*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . */
 
scan_code ::=
    SCAN WITH CODE_STRING:user_code SEMI
    {:
      /* save the user code */
      emit.scan_code = user_code.str_val;
    :}
    |
    empty
    ;
 
/*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . */
 
debug_grammar ::=
        DEBUG WITH multipart_id SEMI
    {:
      /* save the procedure name */
          emit.debug_grammar = multipart_name;
          /* reset the accumulated multipart name */
          multipart_name = new String();
    :}
    |
    empty
    ;
 
/*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . */
 
symbol_list ::= symbol_list symbol | symbol;
 
/*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . */
 
symbol ::=
    TERMINAL
    type_id
    term_name_list
    {:
      /* reset the accumulated multipart name */
      multipart_name = new String();
    :}
    SEMI
    |
    NON
    TERMINAL
    type_id
    non_term_name_list
    {:
      /* reset the accumulated multipart name */
      multipart_name = new String();
    :}
    SEMI
    |
 
    /* error recovery productions -- sync on semicolon */
 
    TERMINAL
    error
    {:
      /* reset the accumulated multipart name */
      multipart_name = new String();
    :}
    SEMI
    |
    NON
    TERMINAL
    error
    {:
      /* reset the accumulated multipart name */
      multipart_name = new String();
    :}
    SEMI
    ;
 
/*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . */
 
term_name_list ::= term_name_list COMMA new_term_id | new_term_id;
 
/*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . */
 
non_term_name_list ::=
    non_term_name_list
    COMMA
    new_non_term_id
    |
    new_non_term_id
    ;
 
/*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . */
 
start_spec ::=
    START WITH nt_id:start_name
    {:
      /* verify that the name has been declared as a non terminal */
      non_terminal nt = (non_terminal)non_terms.get(start_name.str_val);
      if (nt == null)
        {
          lexer.emit_error( "Start non terminal \"" + start_name.str_val +
                       "\" has not been declared");
        }
          else
        {
          /* remember the non-terminal for later */
          start_nt = nt;
 
          /* build a special start production */
          new_rhs();
          add_rhs_part(new symbol_part(start_nt));
          add_rhs_part(new symbol_part(terminal.EOF));
          emit.start_production =
             new production(non_terminal.START_nt, rhs_parts, rhs_pos);
          new_rhs();
        }
    :}
    SEMI
    |
    empty
    ;
 
/*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . */
 
production_list ::= production_list production | production;
 
/*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . */
 
production ::=
    nt_id:lhs_id
    {:
      /* lookup the lhs nt */
      lhs_nt = (non_terminal)non_terms.get(lhs_id.str_val);
 
          /* if it wasn't declared, emit a message */
      if (lhs_nt == null)
        {
          if (lexer.error_count == 0)
            lexer.emit_error("LHS non terminal \"" + lhs_id.str_val +
                   "\" has not been declared");
        }
 
      /* reset the rhs accumulation */
      new_rhs();
    :}
    COLON_COLON_EQUALS
    rhs_list
    SEMI
    |
    error
    {: lexer.emit_error("Syntax Error"); :}
    SEMI
    ;
 
/*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . */
 
rhs_list ::= rhs_list BAR rhs | rhs;
 
/*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . */
 
rhs ::=
    prod_part_list
    {:
      if (lhs_nt != null)
        {
          /* build the production */
          production p = new production(lhs_nt, rhs_parts, rhs_pos);
 
          /* if we have no start non-terminal declared and this is
         the first production, make its lhs nt the start_nt
         and build a special start production for it. */
              if (start_nt == null)
        {
          start_nt = lhs_nt;
 
              /* build a special start production */
              new_rhs();
              add_rhs_part(new symbol_part(start_nt));
              add_rhs_part(new symbol_part(terminal.EOF));
              emit.start_production =
             new production(non_terminal.START_nt, rhs_parts, rhs_pos);
              new_rhs();
        }
        }
 
      /* reset the rhs accumulation in any case */
      new_rhs();
    :}
    ;
 
/*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . */
 
prod_part_list ::= prod_part_list prod_part | empty;
 
/*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . */
 
prod_part ::=
    symbol_id:symid opt_label:labid
    {:
      /* try to look up the id */
      production_part symb = (production_part)symbols.get(symid.str_val);
 
      /* if that fails, symbol is undeclared */
      if (symb == null)
        {
          if (lexer.error_count == 0)
            lexer.emit_error("Symbol \"" + symid.str_val +
                   "\" has not been declared");
        }
      else
        {
          /* add a labeled production part */
          add_rhs_part(add_lab(symb, labid.str_val));
        }
    :}
    |
    CODE_STRING:code_str
    {:
      /* add a new production part */
      add_rhs_part(new action_part(code_str.str_val));
    :}
    ;
 
/*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . */
 
opt_label ::=
    COLON label_id:labid
    {: RESULT.str_val = labid.str_val; :}
    |
    empty
    {: RESULT.str_val = null; :}
    ;
 
/*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . */
 
multipart_id ::=
    multipart_id DOT ID:another_id
    {: append_multipart(another_id.str_val); :}
    |
    ID:an_id
    {: append_multipart(an_id.str_val); :}
    ;
 
/*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . */
 
import_id ::=
    multipart_id DOT STAR
    {: append_multipart("*"); :}
    |
    multipart_id
    ;
 
/*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . */
 
type_id ::= multipart_id;
 
/*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . */
 
new_term_id ::=
    ID:term_id
    {:
      /* see if this terminal has been declared before */
      if (symbols.get(term_id.str_val) != null)
        {
          /* issue a message */
          lexer.emit_error("Symbol \"" + term_id.str_val +
               "\" has already been declared");
        }
      else
        {
          /* build a production_part and put it in the table */
          symbols.put(term_id.str_val,
            new symbol_part(new terminal(term_id.str_val, multipart_name)));
        }
    :}
    ;
 
/*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . */
 
new_non_term_id ::=
    ID:non_term_id
    {:
      /* see if this non terminal has been declared before */
      if (symbols.get(non_term_id.str_val) != null)
        {
          /* issue a message */
          lexer.emit_error( "Symbol \"" + non_term_id.str_val +
                                  "\" has already been declared");
        }
      else
        {
          /* build the non terminal object */
              non_terminal this_nt =
        new non_terminal(non_term_id.str_val, multipart_name);
 
          /* put it in the non_terms table */
          non_terms.put(non_term_id.str_val, this_nt);
 
          /* build a production_part and put it in the symbols table */
          symbols.put(non_term_id.str_val, new symbol_part(this_nt));
        }
    :}
    ;
 
/*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . */
 
nt_id ::=
    ID:the_id
    {: RESULT.str_val = the_id.str_val; :}
    ;
 
/*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . */
 
symbol_id ::=
    ID:the_id
    {: RESULT.str_val = the_id.str_val; :}
    ;
 
/*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . */
 
label_id ::=
    ID:the_id
    {: RESULT.str_val = the_id.str_val; :}
    ;
 
/*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . */
 
empty ::= /* nothing */;
 
/*----------------------------------------------------------------*/