-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPeopleCodeParser.g4
439 lines (360 loc) · 9.74 KB
/
PeopleCodeParser.g4
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
//******************************************************************************
//* ANTLR 4 PARSER GRAMMAR FOR PEOPLECODE PROGRAMS AND APPLICATION CLASSES
//* by Leandro Baca
//******************************************************************************
parser grammar PeopleCodeParser;
options {
tokenVocab = PeopleCodeLexer;
}
//******************************************************************************
//* MAIN ENTRY POINTS FOR PARSER
//******************************************************************************
/**
* Entry point for an Application Class.
*/
appClass
: importDeclaration* classDeclaration (SEMI+ classExternalDeclaration)* (SEMI* classBody)? SEMI* EOF #AppClassProgram
| importDeclaration* interfaceDeclaration SEMI* EOF #InterfaceProgram
;
/**
* Entry point for a PeopleCode program.
*/
program
: importDeclaration* programPreambles? SEMI* statements? SEMI* EOF
;
//******************************************************************************
//* ADDITIONAL PARSER RULES
//******************************************************************************
importDeclaration
: IMPORT (appPackageAll | appClassPath) SEMI+
;
appPackageAll
: appPackagePath COLON STAR
;
appPackagePath
: (METADATA | genericID) (COLON genericID (COLON genericID)?)?
;
appClassPath
: appPackagePath COLON genericID
;
classDeclaration
: CLASS genericID EXTENDS superclass SEMI* classHeader END_CLASS #ClassDeclarationExtension
| CLASS genericID IMPLEMENTS appClassPath SEMI* classHeader END_CLASS #ClassDeclarationImplementation
| CLASS genericID SEMI* classHeader END_CLASS #ClassDeclarationPlain
;
interfaceDeclaration
: INTERFACE genericID EXTENDS superclass SEMI* classHeader END_INTERFACE #InterfaceDeclarationExtension
| INTERFACE genericID SEMI* classHeader END_INTERFACE #InterfaceDeclarationPlain
;
superclass
: EXCEPTION #ExceptionSuperClass
| appClassPath #AppClassSuperClass
| simpleType #SimpleTypeSuperclass
;
classHeader
: publicHeader? (PROTECTED SEMI* protectedHeader?)? (PRIVATE SEMI* privateHeader?)?
;
nonPrivateHeader
: nonPrivateMember (SEMI+ nonPrivateMember)* SEMI*
;
publicHeader
: nonPrivateHeader
;
protectedHeader
: nonPrivateHeader
;
privateHeader
: privateMember (SEMI+ privateMember)* SEMI*
;
nonPrivateMember
: methodHeader #NonPrivateMethodHeader
| propertyDeclaration #NonPrivateProperty
;
privateMember
: methodHeader #PrivateMethodHeader
| instanceDeclaration #PrivateProperty
| constantDeclaration #PrivateConstant
;
// In parser listener/visitor, make sure constructor returns nothing
methodHeader
: METHOD genericID LPAREN methodArguments? RPAREN (RETURNS typeT)? ABSTRACT?
;
methodArguments
: methodArgument (COMMA methodArgument)* COMMA? // trailing comma is allowed
;
methodArgument
: USER_VARIABLE AS typeT OUT?
;
simpleType
: builtInType #SimpleBuiltInType
| GENERIC_ID_LIMITED #SimpleGenericID
;
builtInType
: ANY
| BOOLEAN
| DATE
| DATETIME
| FLOAT
| INTEGER
| NUMBER
| STRING
| TIME
;
typeT
: ARRAY (OF ARRAY)* (OF typeT)? #ArrayType // the last "of" is optional if no base type is specified, in which case "any" should be presumed
| EXCEPTION #BaseExceptionType
| appClassPath #AppClassType
| simpleType #SimpleTypeType
;
propertyDeclaration
: PROPERTY typeT genericID GET SET? #PropertyGetSet
| PROPERTY typeT genericID ABSTRACT? READONLY? #PropertyDirect // abstract is sometimes featured before readonly in some delivered classes
;
instanceDeclaration
: INSTANCE typeT USER_VARIABLE (COMMA USER_VARIABLE)* COMMA? #InstanceDecl // trailing comma is allowed
| INSTANCE typeT #EmptyInstanceDecl // compiles yet is meaningless
;
constantDeclaration
: CONSTANT USER_VARIABLE EQ literal
;
literal
: NULL
| DecimalLiteral
| IntegerLiteral
| StringLiteral
| BooleanLiteral
;
classExternalDeclaration
: functionDeclaration
| nonLocalVarDeclaration
;
programPreambles
: programPreamble (SEMI+ programPreamble)*
;
programPreamble
: functionDeclaration
| nonLocalVarDeclaration
| constantDeclaration
| localVariableDefinition
| functionDefinition
;
functionDeclaration
: functionDeclarationPCode #PeopleCodeFunctionDeclaration
| functionDeclarationDLL #LibraryFunctionDeclaration
;
functionDeclarationPCode
: DECLARE FUNCTION genericID PEOPLECODE recordField RecordEvent
;
recordField
: genericID DOT genericID
;
functionDeclarationDLL
: DECLARE FUNCTION genericID LIBRARY StringLiteral (ALIAS StringLiteral)? dllArguments? (RETURNS dllReturnType)?
;
dllArguments
: LPAREN dllArgument (COMMA dllArgument)* RPAREN
;
dllArgument
: genericID (REF | VALUE)? (AS builtInType)?
;
dllReturnType
: genericID AS builtInType
| builtInType
;
nonLocalVarDeclaration
: (COMPONENT | GLOBAL) typeT USER_VARIABLE (COMMA USER_VARIABLE)* COMMA? // trailing comma is allowed
| (COMPONENT | GLOBAL) typeT // compiles yet is meaningless
;
classBody
: classMember (SEMI+ classMember)*
;
classMember
: method #MethodImplementation
| getter #GetterImplementation
| setter #SetterImplementation
;
method
: METHOD genericID SEMI* statements? END_METHOD
;
getter
: GET genericID SEMI* statements END_GET
;
setter
: SET genericID SEMI* statements? END_SET
;
statements
: statement (SEMI+ statement)* SEMI*
;
// statementBlock differs from statements only in that it signals a new scope for program symbols
statementBlock
: statements
;
statement
: SUPER EQ expression #SuperAssignmentStmt
| localVariableDeclaration #LocalVarDeclarationStmt
| ifStatement #IfStmt
| forStatement #ForStmt
| whileStatement #WhileStmt
| repeatStatement #RepeatStmt
| evaluateStatement #EvaluateStmt
| tryCatchBlock #TryCatchBlockStmt
| EXIT expression? #ExitStmt
| BREAK #BreakStmt
| CONTINUE #ContinueStmt
| ERROR expression #ErrorStmt
| WARNING expression #WarningStmt
| RETURN expression? #ReturnStmt
| THROW expression #ThrowStmt
// | expression EQ expression #AssignmentStmt // as it stands, this rule interferes with simpleFunctionCall being recognized as a statement
| expression #ExpressionStmt // for simpleFunctionCall only, but if omitted, assignment statement never gets parsed (always assumed to be equality expression)
;
localVariableDeclaration
: localVariableDefinition
| localVariableDeclAssignment
;
localVariableDefinition
: LOCAL typeT USER_VARIABLE (COMMA USER_VARIABLE)* COMMA? // trailing comma is allowed
;
localVariableDeclAssignment
: LOCAL typeT USER_VARIABLE EQ expression
;
ifStatement
: IF expression THEN SEMI* statementBlock? (ELSE SEMI* statementBlock?)? END_IF
;
forStatement
: FOR USER_VARIABLE EQ expression TO expression (STEP expression)? SEMI* statementBlock? END_FOR
;
whileStatement
: WHILE expression SEMI* statementBlock? END_WHILE
;
repeatStatement
: REPEAT SEMI* statementBlock? UNTIL expression
;
evaluateStatement
: EVALUATE expression SEMI* whenClauses? whenOther? END_EVALUATE
;
whenClauses
: whenClause (SEMI* whenClause)*
;
whenClause
: WHEN comparisonOperator? expression SEMI* statementBlock?
;
whenOther
: WHEN_OTHER SEMI* statementBlock?
;
comparisonOperator
: LE
| GE
| NEQ
| LT
| GT
| EQ
;
tryCatchBlock
: TRY SEMI* statementBlock? catchClauses? SEMI* END_TRY
;
catchClauses
: catchClause (SEMI* catchClause)*
;
catchClause
: CATCH (EXCEPTION | appClassPath) USER_VARIABLE SEMI* statementBlock?
;
expression
: LPAREN expression RPAREN #ParenthesizedExpr
| AT expression #AtExpr
| objectCreate #ObjectCreateExpr
| expression AS (appClassPath | genericID) #ClassCastExpr
| expression LBRACKET expressionList RBRACKET #ArrayIndexExpr
| simpleFunctionCall #FunctionCallExpr
| expression dotAccess+ #DotAccessExpr
| expression DOT StringLiteral #StringObjectReferenceExpr
| expression LPAREN expression RPAREN #ImplicitSubindexExpr
| SUBTR expression #NegationExpr
| <assoc=right> expression EXP expression #ExponentialExpr
| expression op=(STAR | DIV) expression #MultDivExpr
| expression op=(ADD | SUBTR) expression #AddSubtrExpr
| NOT expression #NotExpr
| expression NOT? op=(LE | GE | LT | GT) expression #ComparisonExpr
| expression NOT? op=(NEQ | EQ) expression #EqualityExpr
| expression op=(AND | OR) expression #AndOrExpr
| expression PIPE expression #ConcatenationExpr
| literal #LiteralExpr
| ident #IdentifierExpr
| appClassPath #MetadataExpr
;
simpleFunctionCall
: genericID LPAREN functionCallArguments? RPAREN
;
dotAccess
: DOT genericID (LPAREN functionCallArguments? RPAREN)?
;
allowableFunctionName
: ANY
| ARRAY
| BOOLEAN
| COMPONENT
| CONSTANT
| DATETIME
| DOC
| EXCEPTION
| FLOAT
| NUMBER
| OF
| STEP
| RecordEvent
| GENERIC_ID
| GENERIC_ID_LIMITED
;
genericID
: CATCH
| CLASS
| CONTINUE
| CREATE
| DATE
| EXTENDS
| GET
| IMPORT
| INSTANCE
| INTEGER
| INTERFACE
| METHOD
| OUT
| PRIVATE
| PROPERTY
| READONLY
| SET
| STRING
| THROW
| TIME
| TRY
| VALUE
| allowableFunctionName
;
ident
: SUPER #IdentSuper
| SYSTEM_VARIABLE #IdentSystemVariable
| SYSTEM_CONSTANT #IdentSystemConstant
| USER_VARIABLE #IdentUserVariable
| genericID #IdentGenericID
;
expressionList
: expression (COMMA expression)*
;
objectCreate
: CREATE appClassPath LPAREN functionCallArguments? RPAREN
;
functionCallArguments
: expression (COMMA expression)*
;
functionDefinitions
: functionDefinition (SEMI+ functionDefinition)*
;
functionDefinition
: FUNCTION allowableFunctionName (LPAREN functionArguments? RPAREN)? (RETURNS typeT)? (DOC StringLiteral)? SEMI* statements? END_FUNCTION
;
functionArguments
: functionArgument (COMMA functionArgument)* COMMA? // trailing comma is allowed
;
functionArgument
: USER_VARIABLE (AS typeT)?
;