-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathexpressions.py
516 lines (376 loc) · 12.4 KB
/
expressions.py
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
from base import ModelicaBase, IncorrectValue, NonImplemented, hasLiteral
from pyparsing import CharsNotIn, Combine, OneOrMore, ZeroOrMore, Optional, Forward, Suppress
from pyparsing import Literal, delimitedList, Or, ParseExpression, ParserElement, matchPreviousExpr
from tokens import STRING, IDENT
#from equations import ForIndices
### B.2.1 Stored Definition
class StoredDefinition(ModelicaBase):
def __init__(self, within=False, within_name=None, final=False, definition=None):
self.within = within
self.final = final
self.definition = definition
def dump(self):
ret = ''
if self.within:
if isinstance(self.within_name, Name):
ret += 'within %s;\n' % (self.within_name)
else:
ret += 'within;\n'
if self.final:
ret += 'final %s;' % self.definition
else:
ret += '%s;' % self.definition
return ret
### B.2.2 Class Definition
class ClassDefinition(ModelicaBase):
pass
class Class(ModelicaBase):
pass
class Model(ModelicaBase):
pass
class Record(ModelicaBase):
pass
class Block(ModelicaBase):
pass
class Connector(ModelicaBase):
pass
class Type(ModelicaBase):
pass
class Package(ModelicaBase):
pass
class Function(ModelicaBase):
pass
class Operator(ModelicaBase):
pass
class ClassSpecifier(ModelicaBase):
def __init__(self, class_name, comment=None, composition=None, base_prefix=None, base_name=None, base_subscripts=None, base_modification=None):
pass
pass
class BasePrefix(ModelicaBase):
pass
class EnumList(ModelicaBase):
pass
class EnumerationLiteral(ModelicaBase):
pass
class Composition(ModelicaBase):
pass
class LanguageSpecification(ModelicaBase):
pass
class ExternalFunctionCall(ModelicaBase):
pass
class ElementList(ModelicaBase):
pass
class Element(ModelicaBase):
pass
class ImportClause(ModelicaBase):
pass
### B.2.3 Extends
### B.2.4 Component Clause
### B.2.5 Modification
### B.2.6 Equations
# B.2.6 Equations
class ForIndices(ModelicaBase):
def __init__(self, indices = []):
self.indices = indices
def dump(self, indent = 0):
return ", ".join(map(str, self.indices))
class ForIndex(ModelicaBase):
def __init__(self, identifier, expression = None):
self.identifier = identifier
self.expression = expression
def dump(self, indent = 0):
if isinstance(self.expression, Expression):
msg = "%s in %s"%(self.identifier, self.expression)
else:
msg = "%s" % (self.identifier)
return msg
# B.2.7 Expressions
class Expression(ModelicaBase):
def __init__(self, identifier):
self.identifier = identifier
def dump(self, indent = 0):
return str(self.identifier)
class SimpleExpression(ModelicaBase):
pass
class LogicalExpression(ModelicaBase):
pass
class LogicalTerm(ModelicaBase):
pass
class LogicalFactor(ModelicaBase):
pass
class Relation(ModelicaBase):
pass
class RelOp(ModelicaBase):
pass
class ArithmeticExpresion(ModelicaBase):
pass
class AddOp(ModelicaBase):
pass
class Term(ModelicaBase):
pass
class MulOp(ModelicaBase):
pass
class Factor(ModelicaBase):
pass
class Primary(ModelicaBase):
pass
class Name(ModelicaBase):
def __init__(self, names):
self.names = names
def dump(self):
return ".".join(map(str, self.names))
class ComponentReference(ModelicaBase):
def __init__(self, identifier):
self.identifier = identifier
def dump(self, indent = 0):
return str(self.identifier)
class FunctionCallArgs(ModelicaBase):
pass
class FunctionArguments(ModelicaBase):
def __init__(self, expressions=None, for_expression=None, for_indices=None, arguments=[]):
self.expressions = expressions
self.for_expression = for_expression
self.for_indices = for_indices
self.arguments = arguments
def dump(self):
elements = []
if isinstance(self.expressions, ExpressionList):
elements.append('%s' % (self.expressions))
if isinstance(self.for_expression, Expression):
if isinstance(self.for_indices, ForIndices):
elements.append('%s for %s' % (self.for_expression, self.for_indices))
if isinstance(self.arguments, NamedArguments):
elements.append('%s' % (self.arguments))
return ', '.join(elements)
class NamedArguments(ModelicaBase):
def __init__(self, arguments):
self.arguments = arguments
def dump(self, indent = 0):
return ", ".join(map(str, self.arguments))
class NamedArgument(ModelicaBase):
def __init__(self, identifier, expression):
self.identifier = identifier
self.expression = expression
def dump(self):
return "%s = %s" % (self.identifier, self.expression)
class OutputExpressionList(ModelicaBase):
def __init__(self, expressions):
self.expressions = expressions
def dump(self, indent = 0):
return ", ".join(map(str, self.expressions))
class ExpressionList(ModelicaBase):
def __init__(self, expressions):
self.expressions = expressions
def dump(self, indent = 0):
return ", ".join(map(str, self.expressions))
class ArraySubscripts(ModelicaBase):
def __init__(self, subscripts):
self.subscripts = subscripts
def dump(self, indent = 0):
return "[%s]" % (", ".join(map(str, self.subscripts)))
class Subscript(ModelicaBase):
def __init__(self, expression=None):
self.expression = expression
def dump(self):
if self.expression is None:
msg = ":"
else:
msg = "%s" % (self.expression)
return msg
class Comment(ModelicaBase):
# Internal data
def __init__(self, comment, annotation = None):
self.comment = comment
self.annotation = annotation
def dump(self, indent = 0):
s = str(self.comment)
if hasattr(self, 'annotation'):
if isinstance(self.annotation, Annotation):
s += " %s"%(self.annotation)
return s
class StringComment(ModelicaBase):
def __init__(self, comments):
self.comments = comments
def dump(self, indent = 0):
return " + ".join(map(str, self.comments))
class Annotation(ModelicaBase):
def __init__(self, modification):
self.modification = modification
def dump(self):
return "annotation %s" % (self.modification)
class ClassModification(ModelicaBase):
__ebnf__ = Literal("1")
### B.2.1 Stored Definition
StoredDefinition.ebnf(
syntax = (
Optional(hasLiteral('within') + Optional(Name.name('within_name')) + Suppress(';')) +
Optional(hasLiteral('final') + ClassDefinition.name('definition') + Suppress(';'))
),
action = lambda s,l,t: StoredDefinition(**dict(t))
)
### B.2.2 Class Definition
ClassDefinition.ebnf(
syntax = (
Class.name('definition')
)
)
Class.ebnf(
syntax = (
Optional(hasLiteral('encapsulated')) +
Optional(hasLiteral('partial')) +
Suppress('class') + ClassSpecifier.name('specification')
)
)
Model.ebnf(
syntax = (
Optional(hasLiteral('encapsulated')) +
Optional(hasLiteral('partial')) +
Suppress('model') + ClassSpecifier.name('specification')
)
)
Record.ebnf(
syntax = (
Optional(hasLiteral('encapsulated')) +
Optional(hasLiteral('partial')) +
Suppress('record') + ClassSpecifier.name('specification')
)
)
Block.ebnf(
syntax = (
Optional(hasLiteral('encapsulated')) +
Optional(hasLiteral('partial')) +
Suppress('block') + ClassSpecifier.name('specification')
)
)
Connector.ebnf(
syntax = (
Optional(hasLiteral('encapsulated')) +
Optional(hasLiteral('partial')) +
Optional(hasLiteral('expandable')) +
Suppress('connector') + ClassSpecifier.name('specification')
)
)
Type.ebnf(
syntax = (
Optional(hasLiteral('encapsulated')) +
Optional(hasLiteral('partial')) +
Suppress('type') + ClassSpecifier.name('specification')
)
)
Package.ebnf(
syntax = (
Optional(hasLiteral('encapsulated')) +
Optional(hasLiteral('partial')) +
Suppress('package') + ClassSpecifier.name('specification')
)
)
Function.ebnf(
syntax = (
Optional(hasLiteral('encapsulated')) +
Optional(hasLiteral('partial')) +
Suppress('function') + ClassSpecifier.name('specification')
)
)
Operator.ebnf(
syntax = (
Optional(hasLiteral('encapsulated')) +
Optional(hasLiteral('partial')) +
Suppress('operator') + Optional(
hasLiteral('function') ^ hasLiteral('record')
) + ClassSpecifier.name('specification')
)
)
class_name = IDENT.name('class_name')
ClassSpecifier.ebnf(
syntax = Or(
(
class_name + StringComment.name('comment') +
Composition.name('composition') +
Suppress('end') + matchPreviousExpr(class_name)
),
(
IDENT.name('class_name') + Suppress('=') +
BasePrefix.name('base_prefix') + Name.name('base_name') +
Optional(ArraySubscripts.name('base_subscripts')) +
Optional(ClassModification.name('base_modification')) +
Comment.name('comment')
),
)
)
### B.2.3 Extends
### B.2.4 Component Clause
### B.2.5 Modification
### B.2.6 Equations
ForIndices.ebnf(
syntax = delimitedList(ForIndex.names('indices'), delim=','),
)
ForIndex.ebnf(
syntax = IDENT.name("identifier") + Optional(Suppress('in') + Expression.name('expression')),
)
### B.2.7 Expressions
Name.ebnf(
syntax = delimitedList(IDENT.names('names'), delim='.')
)
ComponentReference.ebnf(
syntax = delimitedList(IDENT.names('names') + Optional(ArraySubscripts.names('subscripts')), delim='.')
)
FunctionCallArgs.ebnf(
syntax = Suppress('(') + Optional(FunctionArguments.name('arguments')) + Suppress(')')
)
FunctionArguments.ebnf(
syntax = (
ExpressionList.name('expressions') + Optional(Suppress(',') + (
(Expression.name('expression') + Suppress('for') + ForIndices.name('for_indices')) ^
(NamedArguments.name('arguments'))))
) ^ (
NamedArguments.name('arguments')
) ^ (
Expression.name('for_expression') + Suppress('for') + ForIndices.name('for_indices')
)
# syntax = Optional(ExpressionList.name('expressions')) + Or(
# [
# NamedArguments.name('arguments'),
# Expression.name('for_expression') + Suppress('for') + ForIndices.name('for_indices'),
# Suppress(',') + NamedArguments.name('arguments'),
# Suppress(',') +
# Expression.name('for_expression') + Suppress('for') + ForIndices.name('for_indices')
# ]
# )
# syntax = Or(
# Expression.name('expression') + Optional(Or(Suppress(',') + FunctionArguments.name("arguments"), Suppress('for') + ForIndices.name('for_indices'))),
# NamedArguments.name('arguments')
# )
)
Expression.ebnf(
syntax = IDENT.name("identifier")
)
NamedArguments.ebnf(
syntax = delimitedList(NamedArgument.names('arguments'), delim=","),
)
NamedArgument.ebnf(
syntax = IDENT.name('identifier') + Suppress("=") + Expression.name('expression'),
)
OutputExpressionList.ebnf(
syntax = delimitedList(Expression.names('expressions'), delim=","),
)
ExpressionList.ebnf(
syntax = delimitedList(Expression.names('expressions'), delim=","),
)
ArraySubscripts.ebnf(
syntax = Suppress("[") + delimitedList(Subscript.names('subscripts'), delim=",") + Suppress("]"),
)
Subscript.ebnf(
syntax = Suppress(":") ^ Expression.name("expression"),
)
ComponentReference.ebnf(
syntax = IDENT.name("identifier"),
)
Comment.ebnf(
syntax = StringComment.name("comment") + Optional(Annotation.name("annotation")),
)
StringComment.ebnf(
syntax = delimitedList(STRING.names('comments'), delim="+"),
)
Annotation.ebnf(
syntax = Literal("annotation") + ClassModification.name('modification'),
)