-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTailspinParser.g4
359 lines (237 loc) · 11.3 KB
/
TailspinParser.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
parser grammar TailspinParser;
options { tokenVocab = TailspinLexer; }
program: useModule* inclusion* statement (statement)* EOF;
inclusion: Include stringLiteral;
statement: definition
| valueChainToSink
| templatesDefinition
| processorDefinition
| composerDefinition
| testDefinition
| operatorDefinition
| dataDeclaration
;
definition: Def localIdentifier Colon valueProduction SemiColon;
valueChainToSink: valueChain To sink;
templatesDefinition: (StartTemplatesDefinition|StartSinkDefinition|StartSourceDefinition) localIdentifier parameterDefinitions? localDataDeclaration? templatesBody EndDefinition localIdentifier;
processorDefinition: StartProcessorDefinition localIdentifier parameterDefinitions? localDataDeclaration? block typestateDefinition* EndDefinition localIdentifier;
typestateDefinition: StartStateDefinition localIdentifier messageDefinition* EndDefinition localIdentifier;
messageDefinition: templatesDefinition | processorDefinition | composerDefinition | operatorDefinition;
composerDefinition: StartComposerDefinition localIdentifier parameterDefinitions? localDataDeclaration? composerBody EndDefinition localIdentifier;
testDefinition: StartTestDefinition stringLiteral useModule* programModification? testBody EndDefinition stringLiteral;
operatorDefinition: StartOperatorDefinition LeftParen localIdentifier localIdentifier parameterDefinitions? localIdentifier RightParen localDataDeclaration? templatesBody EndDefinition localIdentifier;
dataDeclaration: DataDefinition dataDefinition (Comma dataDefinition)*;
dataDefinition: localIdentifier (symbolSet | matcher);
symbolSet: TemplateMatch LeftBrace localIdentifier (Comma localIdentifier)* RightBrace;
localDataDeclaration: DataDefinition localDataDefinition (Comma localDataDefinition)* LocalDefinition;
localDataDefinition: localIdentifier matcher?;
key: (externalIdentifier|localIdentifier) TemplateMatch? Colon;
parameterDefinitions: And LeftBrace (key Comma?)+ RightBrace;
source: rangeLiteral
| sourceReference
| stringLiteral
| arrayLiteral
| relationLiteral
| structureLiteral
| bytesLiteral
| LeftParen keyValue RightParen
| arithmeticValue
| operatorExpression
| taggedValue
| symbolicValue
| stringTemplate
;
stringTemplate: TemplateMarker stringLiteral;
sourceReference: (SourceMarker anyIdentifier? | Reflexive) reference Message? parameterValues?
| DeleteMarker stateIdentifier reference;
reference: lens? structureReference*;
structureReference: FieldReference (Slash localIdentifier)? TemplateMatch? lens?;
lens: LeftParen dimensionReference? (SemiColon dimensionReference)* RightParen;
dimensionReference: simpleDimension|multiValueDimension|projection|key|localIdentifier|grouping;
simpleDimension: sourceReference|arithmeticValue|rangeLiteral|taggedValue;
multiValueDimension: LeftBracket simpleDimension (Comma simpleDimension)* RightBracket;
projection: LeftBrace ((key|keyValue) (Comma (key|keyValue))*)? RightBrace;
grouping: Collect LeftBrace collectedValue (Comma collectedValue)* RightBrace By source;
collectedValue: key templatesReference;
arrayLiteral: arrayOffset? (LeftBracket RightBracket | LeftBracket arrayExpansion (Comma arrayExpansion)* RightBracket);
arrayOffset: ((integerLiteral|sourceReference|term) | tag (integerLiteral|sourceReference|term) | (integerLiteral|sourceReference|term) unit) Colon;
valueProduction: sendToTemplates | valueChain;
structureLiteral: LeftBrace (structureExpansion (Comma structureExpansion)*)? RightBrace;
relationLiteral: LeftBrace Else (structures (Comma structures)*)? Else RightBrace;
bytesLiteral: StartBytes byteValue (byteValue)* EndBytes;
byteValue: Bytes | LeftParen valueProduction RightParen | operatorExpression;
structures: structureLiteral
| valueProduction
;
arrayExpansion: By? valueProduction;
structureExpansion: keyValue
| By? valueProduction
;
keyValue: key valueProduction;
symbolSetName: (externalIdentifier|localIdentifier) TemplateMatch;
symbolicValue: symbolSetName localIdentifier;
templates: templatesReference # callDefinedTransform
| source # literalTemplates
| Lambda localIdentifier? LeftParen localDataDeclaration? templatesBody Lambda localIdentifier? RightParen # lambdaTemplates
| StartArrayTemplates arrayIndexDecomposition LeftParen localDataDeclaration? templatesBody Lambda localIdentifier? RightParen # lambdaArrayTemplates
;
arrayIndexDecomposition: localIdentifier (SemiColon localIdentifier)* RightBracket;
sink: ResultMarker ((anyIdentifier reference Message? parameterValues?) | Void);
templatesReference: anyIdentifier reference Message? parameterValues?;
parameterValues: And LeftBrace (parameterValue Comma?)+ RightBrace;
parameterValue: key (valueChain|templatesReference|(Colon lens));
templatesBody: block matchTemplate*
| matchTemplate+
;
matchTemplate: matcher block | When? matcher Do? block | Otherwise block;
block: (blockExpression+ | (ResultMarker Void));
blockExpression: blockStatement
| stateAssignment
| sendToTemplates
| resultValue
;
resultValue: valueChain ResultMarker;
blockStatement: statement;
sendToTemplates: valueChain To TemplateMatch;
stateAssignment: (valueChain To)? stateSink;
stateSink: (append|prepend)? stateIdentifier reference Colon valueProduction SemiColon;
append: Range Else;
prepend: Else Range;
valueChain: source transform?;
collectorChain: To Range Equal templatesReference;
transform: To templates transform?
| Deconstructor transform?
| collectorChain transform?
;
matcher: StartMatcher (Invert? typeBound? membrane (Else membrane)*)? EndMatcher;
typeBound: Tick typeMatch? Tick;
membrane: (literalMatch | typeMatch) condition* | condition+;
typeMatch: START_STRING END_STRING # stringTypeMatch
| rangeBounds # rangeMatch
| tag? stringLiteral # regexpMatch
| LeftBrace (key structureContentMatcher Comma?)* (Comma? Void)? RightBrace # structureMatch
| (arrayOffset|tag Colon|unit Colon)? LeftBracket arrayContentMatcher? (Comma arrayContentMatcher)* (Comma? Void)? RightBracket (LeftParen (rangeBounds|arithmeticValue) RightParen)? # arrayMatch
| (localIdentifier|externalIdentifier) TemplateMatch? # stereotypeMatch
| (unit | Quote Quote) # unitMatch
| LeftParen key structureContentMatcher RightParen # keyValueMatch
;
structureContentMatcher: matcher | Void;
arrayContentMatcher: (matcher|sequenceMatch) multiplier?;
sequenceMatch: LeftParen arrayContentMatcher (Colon arrayContentMatcher)+ RightParen;
literalMatch: Equal source;
rangeBounds: lowerBound? Range upperBound?;
condition: BeginCondition valueChain matcher RightParen;
lowerBound: tag? (sourceReference|arithmeticValue|stringLiteral|term) Invert?;
upperBound: Invert? tag? (sourceReference|arithmeticValue|stringLiteral|term);
rangeLiteral: lowerBound? Range upperBound? (Colon arithmeticValue)?;
integerLiteral: (Zero | nonZeroInteger) unit?;
unit: Scalar | Quote measureProduct measureDenominator? Quote;
measureProduct: localIdentifier+;
measureDenominator: Slash measureProduct;
nonZeroInteger: additiveOperator? PositiveInteger;
tag: localIdentifier Tick;
taggedValue: tag (integerLiteral|stringLiteral|sourceReference|term);
stringLiteral: START_STRING stringContent* END_STRING;
stringContent: stringInterpolate | STRING_TEXT;
stringInterpolate: interpolateEvaluate|characterCode;
characterCode: StartCharacterCode arithmeticValue EndStringInterpolate;
interpolateEvaluate: StartStringInterpolate (anyIdentifier? reference Message? parameterValues? | Colon source)
transform? (To TemplateMatch)? EndStringInterpolate;
arithmeticValue: arithmeticExpression;
arithmeticExpression: integerLiteral
| LeftParen arithmeticExpression RightParen unit?
| term unit
| additiveOperator? sourceReference
| arithmeticExpression multiplicativeOperator arithmeticExpression
| arithmeticExpression additiveOperator arithmeticExpression
| arithmeticContextKeyword
| arithmeticExpression multiplicativeOperator term
| arithmeticExpression additiveOperator term
| termArithmeticOperation
;
termArithmeticOperation: term multiplicativeOperator (term|arithmeticExpression)
| term additiveOperator (term|arithmeticExpression)
;
additiveOperator: Plus | Minus;
multiplicativeOperator: Star | TruncateDivide | Mod;
// term must only be used in a position that checks a numeric result
term: LeftParen valueProduction RightParen|operatorExpression;
operatorExpression: LeftParen operand templatesReference operand RightParen;
operand: source | term;
composerBody: stateAssignment? compositionSequence definedCompositionSequence*
;
definedCompositionSequence: Rule key compositionSequence
;
compositionSequence: compositionComponents
| compositionSkipRule+
;
compositionComponents: compositionSkipRule* compositionComponent (Comma? compositionComponents)?;
compositionComponent: compositionMatcher transform? compositionSkipRule*;
compositionMatcher: tokenMatcher
| arrayOffset? LeftBracket (compositionSequence|compositionSkipRule)? RightBracket
| LeftBrace (structureMemberMatchers|compositionSkipRule)? RightBrace
| source
| compositionKeyValue
;
structureMemberMatchers: compositionSkipRule* structureMemberMatcher (Comma? structureMemberMatchers)?;
structureMemberMatcher: (tokenMatcher|compositionKeyValue) compositionSkipRule*;
tokenMatcher: StartMatcher Invert? compositionToken (Else compositionToken)* EndMatcher multiplier?;
compositionToken: (Equal tag? (sourceReference|stringLiteral)|tag? localIdentifier|tag? stringLiteral) unit?;
multiplier: Plus | Star | Question
| Equal (PositiveInteger|sourceReference)
;
compositionSkipRule: LeftParen compositionCapture+ RightParen;
compositionCapture: (Def localIdentifier Colon compositionMatcher transform? SemiColon)|(compositionMatcher (transform? To stateSink)?)|stateAssignment;
compositionKeyValue: (key|compositionKey) compositionSkipRule* compositionComponent;
compositionKey: tokenMatcher Colon;
localIdentifier: IDENTIFIER | keyword;
stateIdentifier: STATE_IDENTIFIER;
externalIdentifier: localIdentifier Slash localIdentifier;
anyIdentifier: stateIdentifier | localIdentifier | externalIdentifier;
arithmeticContextKeyword: First
| Last
;
keyword: Include
| Def
| StartTemplatesDefinition
| StartSourceDefinition
| StartSinkDefinition
| StartComposerDefinition
| StartProcessorDefinition
| StartOperatorDefinition
| StartStateDefinition
| EndDefinition
| DataDefinition
| LocalDefinition
| Mod
| Rule
| When
| Do
| Otherwise
| arithmeticContextKeyword
| StartTestDefinition
| Assert
| With
| Provided
| Modified
| Shadowed
| From
| Use
| Program
| Modify
| By
| Collect
;
testBody: testBlock+;
testBlock: statement* assertion+;
assertion: Assert valueChain matcher stringLiteral;
dependencyProvision: With moduleConfiguration+ Provided;
moduleConfiguration:
(moduleIdentifier From)? Shadowed moduleIdentifier dependencyProvision? statement+ EndDefinition moduleIdentifier #moduleShadowing
| moduleIdentifier Inherited (From moduleIdentifier)? #inheritModule
| (moduleIdentifier From)? Modified stringLiteral dependencyProvision? statement+ EndDefinition stringLiteral #moduleModification
| (moduleIdentifier From)? stringLiteral (StandAlone|dependencyProvision) #moduleImport
;
moduleIdentifier: CoreSystem | localIdentifier;
useModule: Use moduleConfiguration;
programModification: Modify Program statement+ EndDefinition Program;