mal-toolbox 1.2.0__py3-none-any.whl → 2.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {mal_toolbox-1.2.0.dist-info → mal_toolbox-2.0.0.dist-info}/METADATA +8 -75
- {mal_toolbox-1.2.0.dist-info → mal_toolbox-2.0.0.dist-info}/RECORD +17 -14
- maltoolbox/__init__.py +2 -2
- maltoolbox/attackgraph/node.py +1 -0
- maltoolbox/language/compiler/__init__.py +4 -499
- maltoolbox/language/compiler/distributions.py +158 -0
- maltoolbox/language/compiler/exceptions.py +37 -0
- maltoolbox/language/compiler/lang.py +5 -0
- maltoolbox/language/compiler/mal_analyzer.py +920 -0
- maltoolbox/language/compiler/mal_compiler.py +1070 -0
- maltoolbox/language/languagegraph.py +6 -5
- maltoolbox/visualization/graphviz_utils.py +2 -2
- maltoolbox/language/compiler/mal_lexer.py +0 -232
- maltoolbox/language/compiler/mal_parser.py +0 -3159
- {mal_toolbox-1.2.0.dist-info → mal_toolbox-2.0.0.dist-info}/WHEEL +0 -0
- {mal_toolbox-1.2.0.dist-info → mal_toolbox-2.0.0.dist-info}/entry_points.txt +0 -0
- {mal_toolbox-1.2.0.dist-info → mal_toolbox-2.0.0.dist-info}/licenses/AUTHORS +0 -0
- {mal_toolbox-1.2.0.dist-info → mal_toolbox-2.0.0.dist-info}/licenses/LICENSE +0 -0
- {mal_toolbox-1.2.0.dist-info → mal_toolbox-2.0.0.dist-info}/top_level.txt +0 -0
|
@@ -1,500 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
import sys
|
|
3
|
-
from collections.abc import MutableMapping, MutableSequence
|
|
4
|
-
from pathlib import Path
|
|
1
|
+
from .mal_compiler import MalCompiler
|
|
5
2
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
from .mal_lexer import malLexer
|
|
10
|
-
from .mal_parser import malParser
|
|
11
|
-
|
|
12
|
-
# In a rule like `rule: one? two* three`:
|
|
13
|
-
# - ctx.one() would be None if the token was not found on a matching line
|
|
14
|
-
# - ctx.two() would be []
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
def patched_antrl_syntax_error(self, recognizer, offendingSymbol, line, column, msg, e):
|
|
18
|
-
file = patched_antrl_syntax_error.file
|
|
19
|
-
print(f"{file}:{line!s}:{column!s}: {msg}", file=sys.stderr)
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
ConsoleErrorListener.syntaxError = patched_antrl_syntax_error
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
class MalCompiler(ParseTreeVisitor):
|
|
26
|
-
def __init__(self, *args, **kwargs):
|
|
27
|
-
self.current_file: Path = None
|
|
28
|
-
self.visited_files: set[Path] = set()
|
|
29
|
-
self.path_stack: list[Path] = []
|
|
30
|
-
|
|
31
|
-
super().__init__(*args, **kwargs)
|
|
32
|
-
|
|
33
|
-
def compile(self, malfile: Path | str):
|
|
34
|
-
current_file = Path(malfile)
|
|
35
|
-
|
|
36
|
-
if not current_file.is_absolute() and self.path_stack:
|
|
37
|
-
# Only for the first file self.path_stack will be empty.
|
|
38
|
-
current_file = self.path_stack[-1] / current_file
|
|
39
|
-
|
|
40
|
-
if current_file in self.visited_files:
|
|
41
|
-
# Avoid infinite loops due to recursive includes
|
|
42
|
-
return {}
|
|
43
|
-
|
|
44
|
-
self.visited_files.add(current_file)
|
|
45
|
-
self.path_stack.append(current_file.parent)
|
|
46
|
-
|
|
47
|
-
patched_antrl_syntax_error.file = current_file.relative_to(self.path_stack[0])
|
|
48
|
-
|
|
49
|
-
input_stream = FileStream(current_file, encoding="utf-8")
|
|
50
|
-
lexer = malLexer(input_stream)
|
|
51
|
-
stream = CommonTokenStream(lexer)
|
|
52
|
-
parser = malParser(stream)
|
|
53
|
-
tree = parser.mal()
|
|
54
|
-
|
|
55
|
-
result = self.visit(tree)
|
|
56
|
-
|
|
57
|
-
self.path_stack.pop()
|
|
58
|
-
|
|
59
|
-
return result
|
|
60
|
-
|
|
61
|
-
def visitMal(self, ctx):
|
|
62
|
-
langspec = {
|
|
63
|
-
"formatVersion": "1.0.0",
|
|
64
|
-
"defines": {},
|
|
65
|
-
"categories": [],
|
|
66
|
-
"assets": [],
|
|
67
|
-
"associations": [],
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
# no visitDeclaration method needed, `declaration` is a thin rule
|
|
71
|
-
for declaration in (d.getChild(0) for d in ctx.declaration()):
|
|
72
|
-
if result := self.visit(declaration) or True:
|
|
73
|
-
key, value = result
|
|
74
|
-
|
|
75
|
-
if key == "categories":
|
|
76
|
-
category, assets = value
|
|
77
|
-
langspec["categories"].extend(category)
|
|
78
|
-
langspec["assets"].extend(assets)
|
|
79
|
-
continue
|
|
80
|
-
|
|
81
|
-
if key == "defines":
|
|
82
|
-
langspec[key].update(value)
|
|
83
|
-
|
|
84
|
-
if key == "associations":
|
|
85
|
-
langspec[key].extend(value)
|
|
86
|
-
|
|
87
|
-
if key == "include":
|
|
88
|
-
included_file = self.compile(value)
|
|
89
|
-
for k, v in langspec.items():
|
|
90
|
-
if isinstance(v, MutableMapping):
|
|
91
|
-
v.update(included_file.get(k, {}))
|
|
92
|
-
if isinstance(v, MutableSequence) and k in included_file:
|
|
93
|
-
v.extend(included_file[k])
|
|
94
|
-
|
|
95
|
-
for key in ("categories", "assets", "associations"):
|
|
96
|
-
unique = []
|
|
97
|
-
for item in langspec[key]:
|
|
98
|
-
if item not in unique:
|
|
99
|
-
unique.append(item)
|
|
100
|
-
langspec[key] = unique
|
|
101
|
-
|
|
102
|
-
return langspec
|
|
103
|
-
|
|
104
|
-
def visitInclude(self, ctx):
|
|
105
|
-
return ("include", ctx.STRING().getText().strip('"'))
|
|
106
|
-
|
|
107
|
-
def visitDefine(self, ctx):
|
|
108
|
-
return ("defines", {ctx.ID().getText(): ctx.STRING().getText().strip('"')})
|
|
109
|
-
|
|
110
|
-
def visitDetector(self, ctx):
|
|
111
|
-
detector = {}
|
|
112
|
-
detector["name"] = (
|
|
113
|
-
self.visit(ctx.detectorname()) if ctx.detectorname() else None
|
|
114
|
-
)
|
|
115
|
-
detector["context"] = self.visit(ctx.context()) if ctx.context() else None
|
|
116
|
-
detector["type"] = (
|
|
117
|
-
self.visit(ctx.detectortype()) if ctx.detectortype() else None
|
|
118
|
-
)
|
|
119
|
-
detector["tprate"] = self.visit(ctx.tprate()) if ctx.tprate() else None
|
|
120
|
-
|
|
121
|
-
return detector
|
|
122
|
-
|
|
123
|
-
def visitDetectorname(self, ctx):
|
|
124
|
-
return ctx.getText()
|
|
125
|
-
|
|
126
|
-
def visitContext(self, ctx):
|
|
127
|
-
return {
|
|
128
|
-
# Using labels as the dict keys since multiple contextparts can
|
|
129
|
-
# share the same asset type.
|
|
130
|
-
# TODO: add analyzer check if two labels are same in a context
|
|
131
|
-
cpart.contextlabel().getText(): cpart.contextasset().getText()
|
|
132
|
-
for cpart in ctx.contextpart()
|
|
133
|
-
}
|
|
134
|
-
|
|
135
|
-
def visitDetectortype(self, ctx):
|
|
136
|
-
return ctx.getText()
|
|
137
|
-
|
|
138
|
-
def visitCategory(self, ctx):
|
|
139
|
-
category = {}
|
|
140
|
-
category["name"] = ctx.ID().getText()
|
|
141
|
-
category["meta"] = {
|
|
142
|
-
(info := self.visit(meta))[0]: info[1] for meta in ctx.meta()
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
assets = [self.visit(asset) for asset in ctx.asset()]
|
|
146
|
-
|
|
147
|
-
return ("categories", ([category], assets))
|
|
148
|
-
|
|
149
|
-
def visitMeta(self, ctx):
|
|
150
|
-
return (ctx.ID().getText(), ctx.text().getText().strip("\"'"))
|
|
151
|
-
|
|
152
|
-
def visitAsset(self, ctx):
|
|
153
|
-
asset = {}
|
|
154
|
-
asset["name"] = ctx.ID()[0].getText()
|
|
155
|
-
asset["meta"] = {(info := self.visit(meta))[0]: info[1] for meta in ctx.meta()}
|
|
156
|
-
asset["category"] = ctx.parentCtx.ID().getText()
|
|
157
|
-
asset["isAbstract"] = ctx.ABSTRACT() is not None
|
|
158
|
-
|
|
159
|
-
asset["superAsset"] = None
|
|
160
|
-
if len(ctx.ID()) > 1 and ctx.ID()[1]:
|
|
161
|
-
asset["superAsset"] = ctx.ID()[1].getText()
|
|
162
|
-
|
|
163
|
-
asset["variables"] = [self.visit(variable) for variable in ctx.variable()]
|
|
164
|
-
asset["attackSteps"] = [self.visit(step) for step in ctx.step()]
|
|
165
|
-
|
|
166
|
-
return asset
|
|
167
|
-
|
|
168
|
-
def visitStep(self, ctx):
|
|
169
|
-
step = {}
|
|
170
|
-
step["name"] = ctx.ID().getText()
|
|
171
|
-
step["meta"] = {(info := self.visit(meta))[0]: info[1] for meta in ctx.meta()}
|
|
172
|
-
|
|
173
|
-
# TODO: add analyzer check for conflicting detector names
|
|
174
|
-
step["detectors"] = {
|
|
175
|
-
(d := self.visit(detector))["name"]: d for detector in ctx.detector()
|
|
176
|
-
}
|
|
177
|
-
step["type"] = self.visit(ctx.steptype())
|
|
178
|
-
step["tags"] = [self.visit(tag) for tag in ctx.tag()]
|
|
179
|
-
step["risk"] = self.visit(ctx.cias()) if ctx.cias() else None
|
|
180
|
-
|
|
181
|
-
# TODO: left as "ttc" for compatibility reasons
|
|
182
|
-
step["ttc"] = self.visit(ctx.pdist()) if ctx.pdist() else None
|
|
183
|
-
|
|
184
|
-
step["requires"] = (
|
|
185
|
-
self.visit(ctx.precondition()) if ctx.precondition() else None
|
|
186
|
-
)
|
|
187
|
-
step["reaches"] = self.visit(ctx.reaches()) if ctx.reaches() else None
|
|
188
|
-
|
|
189
|
-
return step
|
|
190
|
-
|
|
191
|
-
def visitSteptype(self, ctx):
|
|
192
|
-
return (
|
|
193
|
-
"or"
|
|
194
|
-
if ctx.OR()
|
|
195
|
-
else "and"
|
|
196
|
-
if ctx.AND()
|
|
197
|
-
else "defense"
|
|
198
|
-
if ctx.HASH()
|
|
199
|
-
else "exist"
|
|
200
|
-
if ctx.EXISTS()
|
|
201
|
-
else "notExist"
|
|
202
|
-
if ctx.NOTEXISTS()
|
|
203
|
-
else None # should never happen, the grammar limits it
|
|
204
|
-
)
|
|
205
|
-
|
|
206
|
-
def visitTag(self, ctx):
|
|
207
|
-
return ctx.ID().getText()
|
|
208
|
-
|
|
209
|
-
def visitCias(self, ctx):
|
|
210
|
-
risk = {
|
|
211
|
-
"isConfidentiality": False,
|
|
212
|
-
"isIntegrity": False,
|
|
213
|
-
"isAvailability": False,
|
|
214
|
-
}
|
|
215
|
-
|
|
216
|
-
for cia in ctx.cia():
|
|
217
|
-
risk.update(self.visit(cia))
|
|
218
|
-
|
|
219
|
-
return risk
|
|
220
|
-
|
|
221
|
-
def visitCia(self, ctx):
|
|
222
|
-
key = (
|
|
223
|
-
"isConfidentiality"
|
|
224
|
-
if ctx.C()
|
|
225
|
-
else "isIntegrity"
|
|
226
|
-
if ctx.I()
|
|
227
|
-
else "isAvailability"
|
|
228
|
-
if ctx.A()
|
|
229
|
-
else None
|
|
230
|
-
)
|
|
231
|
-
|
|
232
|
-
return {key: True}
|
|
233
|
-
|
|
234
|
-
def visitPdist(self, ctx):
|
|
235
|
-
ret = self.visit(ctx.pdistexpr())
|
|
236
|
-
|
|
237
|
-
return ret
|
|
238
|
-
|
|
239
|
-
def visitPdistexpr(self, ctx):
|
|
240
|
-
if len(terms := ctx.pdistterm()) == 1:
|
|
241
|
-
return self.visit(terms[0])
|
|
242
|
-
|
|
243
|
-
ret = {}
|
|
244
|
-
|
|
245
|
-
lhs = self.visit(terms[0])
|
|
246
|
-
for i in range(1, len(terms)):
|
|
247
|
-
ret["type"] = (
|
|
248
|
-
"addition"
|
|
249
|
-
if ctx.children[2 * i - 1].getText() == "+"
|
|
250
|
-
else "subtraction"
|
|
251
|
-
)
|
|
252
|
-
ret["lhs"] = lhs
|
|
253
|
-
ret["rhs"] = self.visit(terms[i])
|
|
254
|
-
|
|
255
|
-
lhs = ret.copy()
|
|
256
|
-
|
|
257
|
-
return ret
|
|
258
|
-
|
|
259
|
-
def visitPdistterm(self, ctx):
|
|
260
|
-
if len(factors := ctx.pdistfact()) == 1:
|
|
261
|
-
ret = self.visit(factors[0])
|
|
262
|
-
else:
|
|
263
|
-
ret = {}
|
|
264
|
-
ret["type"] = "multiplication" if ctx.STAR() else "division"
|
|
265
|
-
ret["lhs"] = self.visit(factors[0])
|
|
266
|
-
ret["rhs"] = self.visit(factors[1])
|
|
267
|
-
|
|
268
|
-
return ret
|
|
269
|
-
|
|
270
|
-
def visitPdistfact(self, ctx):
|
|
271
|
-
if len(atoms := ctx.pdistatom()) == 1:
|
|
272
|
-
ret = self.visit(atoms[0])
|
|
273
|
-
else:
|
|
274
|
-
ret = {}
|
|
275
|
-
ret["type"] = "exponentiation"
|
|
276
|
-
ret["lhs"] = self.visit(atoms[0])
|
|
277
|
-
ret["rhs"] = self.visit(atoms[1])
|
|
278
|
-
|
|
279
|
-
return ret
|
|
280
|
-
|
|
281
|
-
def visitPdistatom(self, ctx):
|
|
282
|
-
if ctx.pdistdist():
|
|
283
|
-
ret = self.visit(ctx.pdistdist())
|
|
284
|
-
elif ctx.pdistexpr():
|
|
285
|
-
ret = self.visit(ctx.pdistexpr())
|
|
286
|
-
elif ctx.number():
|
|
287
|
-
ret = self.visit(ctx.number())
|
|
288
|
-
|
|
289
|
-
return ret
|
|
290
|
-
|
|
291
|
-
def visitPdistdist(self, ctx):
|
|
292
|
-
ret = {"type": "function"}
|
|
293
|
-
ret["name"] = ctx.ID().getText()
|
|
294
|
-
ret["arguments"] = []
|
|
295
|
-
|
|
296
|
-
if ctx.LPAREN():
|
|
297
|
-
ret["arguments"] = [self.visit(number)["value"] for number in ctx.number()]
|
|
298
|
-
|
|
299
|
-
return ret
|
|
300
|
-
|
|
301
|
-
def visitPrecondition(self, ctx):
|
|
302
|
-
ret = {}
|
|
303
|
-
ret["overrides"] = True
|
|
304
|
-
ret["stepExpressions"] = [self.visit(expr) for expr in ctx.expr()]
|
|
305
|
-
return ret
|
|
306
|
-
|
|
307
|
-
def visitReaches(self, ctx):
|
|
308
|
-
ret = {}
|
|
309
|
-
ret["overrides"] = ctx.INHERITS() is None
|
|
310
|
-
ret["stepExpressions"] = [self.visit(expr) for expr in ctx.expr()]
|
|
311
|
-
|
|
312
|
-
return ret
|
|
313
|
-
|
|
314
|
-
def visitNumber(self, ctx):
|
|
315
|
-
ret = {"type": "number"}
|
|
316
|
-
ret["value"] = float(ctx.getText())
|
|
317
|
-
|
|
318
|
-
return ret
|
|
319
|
-
|
|
320
|
-
def visitVariable(self, ctx):
|
|
321
|
-
ret = {}
|
|
322
|
-
ret["name"] = ctx.ID().getText()
|
|
323
|
-
ret["stepExpression"] = self.visit(ctx.expr())
|
|
324
|
-
|
|
325
|
-
return ret
|
|
326
|
-
|
|
327
|
-
def visitExpr(self, ctx):
|
|
328
|
-
if len(ctx.parts()) == 1:
|
|
329
|
-
return self.visit(ctx.parts()[0])
|
|
330
|
-
|
|
331
|
-
ret = {}
|
|
332
|
-
lhs = self.visit(ctx.parts()[0])
|
|
333
|
-
for i in range(1, len(ctx.parts())):
|
|
334
|
-
ret["type"] = self.visit(ctx.children[2 * i - 1])
|
|
335
|
-
ret["lhs"] = lhs
|
|
336
|
-
ret["rhs"] = self.visit(ctx.parts()[i])
|
|
337
|
-
lhs = ret.copy()
|
|
338
|
-
|
|
339
|
-
return ret
|
|
340
|
-
|
|
341
|
-
def visitParts(self, ctx):
|
|
342
|
-
if len(ctx.part()) == 1:
|
|
343
|
-
return self.visit(ctx.part()[0])
|
|
344
|
-
|
|
345
|
-
ret = {}
|
|
346
|
-
|
|
347
|
-
lhs = self.visit(ctx.part()[0])
|
|
348
|
-
|
|
349
|
-
for i in range(1, len(ctx.part())):
|
|
350
|
-
ret["type"] = "collect"
|
|
351
|
-
ret["lhs"] = lhs
|
|
352
|
-
ret["rhs"] = self.visit(ctx.part()[i])
|
|
353
|
-
|
|
354
|
-
lhs = ret.copy()
|
|
355
|
-
|
|
356
|
-
return ret
|
|
357
|
-
|
|
358
|
-
def visitPart(self, ctx):
|
|
359
|
-
ret = {}
|
|
360
|
-
if ctx.varsubst():
|
|
361
|
-
ret["type"] = "variable"
|
|
362
|
-
ret["name"] = self.visit(ctx.varsubst())
|
|
363
|
-
elif ctx.LPAREN():
|
|
364
|
-
ret = self.visit(ctx.expr())
|
|
365
|
-
else: # ctx.ID()
|
|
366
|
-
# Resolve type: field or attackStep?
|
|
367
|
-
ret["type"] = self._resolve_part_ID_type(ctx)
|
|
368
|
-
|
|
369
|
-
ret["name"] = ctx.ID().getText()
|
|
370
|
-
|
|
371
|
-
if ctx.STAR():
|
|
372
|
-
ret = {"type": "transitive", "stepExpression": ret}
|
|
373
|
-
|
|
374
|
-
for type_ in ctx.type_(): # mind the trailing underscore
|
|
375
|
-
ret = {
|
|
376
|
-
"type": "subType",
|
|
377
|
-
"subType": self.visit(type_),
|
|
378
|
-
"stepExpression": ret,
|
|
379
|
-
}
|
|
380
|
-
|
|
381
|
-
return ret
|
|
382
|
-
|
|
383
|
-
def _resolve_part_ID_type(self, ctx):
|
|
384
|
-
pctx = ctx.parentCtx
|
|
385
|
-
|
|
386
|
-
# Traverse up the tree until we find the parent of the topmost expr
|
|
387
|
-
# (saying "topmost" as expr can be nested) or the root of the tree.
|
|
388
|
-
while pctx and not isinstance(
|
|
389
|
-
pctx,
|
|
390
|
-
malParser.ReachesContext,
|
|
391
|
-
# Expressions are also valid in `let` variable assignments, but
|
|
392
|
-
# there every lexical component of expr is considered a "field",
|
|
393
|
-
# no need to resolve the type in that case. Similarly, preconditions
|
|
394
|
-
# (`<-`) only accept fields.
|
|
395
|
-
):
|
|
396
|
-
pctx = pctx.parentCtx
|
|
397
|
-
|
|
398
|
-
if pctx is None:
|
|
399
|
-
# ctx (the `part`) belongs to a "let" assignment or a precondition.
|
|
400
|
-
return "field"
|
|
401
|
-
|
|
402
|
-
# scan for a dot to the right of `ctx`
|
|
403
|
-
file_tokens = ctx.parser.getTokenStream().tokens
|
|
404
|
-
for i in range(ctx.start.tokenIndex, pctx.stop.tokenIndex + 1):
|
|
405
|
-
if file_tokens[i].type == malParser.DOT:
|
|
406
|
-
return "field"
|
|
407
|
-
|
|
408
|
-
# We are looping until the end of pctx (which is a `reaches` or
|
|
409
|
-
# `precondition` context). This could include multiple comma
|
|
410
|
-
# separated `expr`s, we only care for the current one.
|
|
411
|
-
if file_tokens[i].type == malParser.COMMA: # end of current `expr`
|
|
412
|
-
return "attackStep"
|
|
413
|
-
|
|
414
|
-
return "attackStep"
|
|
415
|
-
|
|
416
|
-
def visitVarsubst(self, ctx):
|
|
417
|
-
return ctx.ID().getText()
|
|
418
|
-
|
|
419
|
-
def visitType(self, ctx):
|
|
420
|
-
return ctx.ID().getText()
|
|
421
|
-
|
|
422
|
-
def visitSetop(self, ctx):
|
|
423
|
-
return (
|
|
424
|
-
"union"
|
|
425
|
-
if ctx.UNION()
|
|
426
|
-
else "intersection"
|
|
427
|
-
if ctx.INTERSECT()
|
|
428
|
-
else "difference"
|
|
429
|
-
if ctx.INTERSECT
|
|
430
|
-
else None
|
|
431
|
-
)
|
|
432
|
-
|
|
433
|
-
def visitAssociations(self, ctx):
|
|
434
|
-
associations = []
|
|
435
|
-
for assoc in ctx.association():
|
|
436
|
-
associations.append(self.visit(assoc))
|
|
437
|
-
|
|
438
|
-
return ("associations", associations)
|
|
439
|
-
|
|
440
|
-
def visitAssociation(self, ctx):
|
|
441
|
-
association = {}
|
|
442
|
-
|
|
443
|
-
association["name"] = self.visit(ctx.linkname())
|
|
444
|
-
association["meta"] = {
|
|
445
|
-
(info := self.visit(meta))[0]: info[1] for meta in ctx.meta()
|
|
446
|
-
}
|
|
447
|
-
association["leftAsset"] = ctx.ID()[0].getText()
|
|
448
|
-
association["leftField"] = self.visit(ctx.field()[0])
|
|
449
|
-
|
|
450
|
-
# no self.visitMult or self.visitMultatom methods, reading them here
|
|
451
|
-
# directly
|
|
452
|
-
association["leftMultiplicity"] = {
|
|
453
|
-
"min": (multatoms := ctx.mult()[0].multatom()).pop(0).getText(),
|
|
454
|
-
"max": multatoms.pop().getText() if multatoms else None,
|
|
455
|
-
}
|
|
456
|
-
association["rightAsset"] = ctx.ID()[1].getText()
|
|
457
|
-
association["rightField"] = self.visit(ctx.field()[1])
|
|
458
|
-
association["rightMultiplicity"] = {
|
|
459
|
-
"min": (multatoms := ctx.mult()[1].multatom()).pop(0).getText(),
|
|
460
|
-
"max": multatoms.pop().getText() if multatoms else None,
|
|
461
|
-
}
|
|
462
|
-
|
|
463
|
-
self._post_process_multitudes(association)
|
|
464
|
-
return association
|
|
465
|
-
|
|
466
|
-
def _post_process_multitudes(self, association):
|
|
467
|
-
mult_keys = [
|
|
468
|
-
# start the multatoms from right to left to make sure the rules
|
|
469
|
-
# below get applied cleanly
|
|
470
|
-
"rightMultiplicity.max",
|
|
471
|
-
"rightMultiplicity.min",
|
|
472
|
-
"leftMultiplicity.max",
|
|
473
|
-
"leftMultiplicity.min",
|
|
474
|
-
]
|
|
475
|
-
|
|
476
|
-
for mult_key in mult_keys:
|
|
477
|
-
key, subkey = mult_key.split(".")
|
|
478
|
-
|
|
479
|
-
# upper limit equals lower limit if not given
|
|
480
|
-
if subkey == "max" and association[key][subkey] is None:
|
|
481
|
-
association[key][subkey] = association[key]["min"]
|
|
482
|
-
|
|
483
|
-
if association[key][subkey] == "*":
|
|
484
|
-
# 'any' as lower limit means start from 0
|
|
485
|
-
if subkey == "min":
|
|
486
|
-
association[key][subkey] = 0
|
|
487
|
-
|
|
488
|
-
# 'any' as upper limit means not limit
|
|
489
|
-
else:
|
|
490
|
-
association[key][subkey] = None
|
|
491
|
-
|
|
492
|
-
# cast numerical strings to integers
|
|
493
|
-
if (multatom := association[key][subkey]) and multatom.isdigit():
|
|
494
|
-
association[key][subkey] = int(association[key][subkey])
|
|
495
|
-
|
|
496
|
-
def visitField(self, ctx):
|
|
497
|
-
return ctx.ID().getText()
|
|
498
|
-
|
|
499
|
-
def visitLinkname(self, ctx):
|
|
500
|
-
return ctx.ID().getText()
|
|
3
|
+
__all__ = [
|
|
4
|
+
'MalCompiler',
|
|
5
|
+
]
|
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
class DistributionsException(Exception):
|
|
2
|
+
def __init__(self, error_message):
|
|
3
|
+
self._error_message = error_message
|
|
4
|
+
super().__init__(self._error_message)
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
class Distributions:
|
|
8
|
+
@staticmethod
|
|
9
|
+
def validate(distribution_name: str, params: list) -> None:
|
|
10
|
+
match distribution_name:
|
|
11
|
+
case 'Bernoulli':
|
|
12
|
+
Bernoulli.validate(params)
|
|
13
|
+
case 'Binomial':
|
|
14
|
+
Binomial.validate(params)
|
|
15
|
+
case 'Exponential':
|
|
16
|
+
Exponential.validate(params)
|
|
17
|
+
case 'Gamma':
|
|
18
|
+
Gamma.validate(params)
|
|
19
|
+
case 'LogNormal':
|
|
20
|
+
LogNormal.validate(params)
|
|
21
|
+
case 'Pareto':
|
|
22
|
+
Pareto.validate(params)
|
|
23
|
+
case 'TruncatedNormal':
|
|
24
|
+
TruncatedNormal.validate(params)
|
|
25
|
+
case 'Uniform':
|
|
26
|
+
Uniform.validate(params)
|
|
27
|
+
case (
|
|
28
|
+
'Enabled'
|
|
29
|
+
| 'Disabled'
|
|
30
|
+
| 'Zero'
|
|
31
|
+
| 'Infinity'
|
|
32
|
+
| 'EasyAndCertain'
|
|
33
|
+
| 'EasyAndUncertain'
|
|
34
|
+
| 'HardAndCertain'
|
|
35
|
+
| 'HardAndUncertain'
|
|
36
|
+
| 'VeryHardAndCertain'
|
|
37
|
+
| 'VeryHardAndUncertain'
|
|
38
|
+
):
|
|
39
|
+
Combination.validate(params)
|
|
40
|
+
case _:
|
|
41
|
+
err_msg = f'Distribution {distribution_name} is not supported'
|
|
42
|
+
raise (DistributionsException(err_msg))
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
class Bernoulli:
|
|
46
|
+
@staticmethod
|
|
47
|
+
def validate(params: list) -> None:
|
|
48
|
+
if not params or len(params) != 1:
|
|
49
|
+
err_msg = 'Expected exactly one parameter (probability), for Bernoulli distribution'
|
|
50
|
+
raise (DistributionsException(err_msg))
|
|
51
|
+
if not 0 <= params[0] <= 1:
|
|
52
|
+
err_msg = f"{params[0]} is not in valid range '0 <= probability <= 1', for Bernoulli distribution"
|
|
53
|
+
raise (DistributionsException(err_msg))
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
class Binomial:
|
|
57
|
+
@staticmethod
|
|
58
|
+
def validate(params: list) -> None:
|
|
59
|
+
if not params or len(params) != 2:
|
|
60
|
+
err_msg = 'Expected exactly two parameters (trials, probability), for Binomial distribution'
|
|
61
|
+
raise (DistributionsException(err_msg))
|
|
62
|
+
if not 0 <= params[1] <= 1:
|
|
63
|
+
err_msg = f"{params[1]} is not in valid range '0 <= probability <= 1', for Binomial distribution"
|
|
64
|
+
raise (DistributionsException(err_msg))
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
class Exponential:
|
|
68
|
+
@staticmethod
|
|
69
|
+
def validate(params: list) -> None:
|
|
70
|
+
if not params or len(params) != 1:
|
|
71
|
+
err_msg = (
|
|
72
|
+
'Expected exactly one parameter (lambda), for Exponential distribution'
|
|
73
|
+
)
|
|
74
|
+
raise (DistributionsException(err_msg))
|
|
75
|
+
if params[0] <= 0:
|
|
76
|
+
err_msg = f"{params[0]} is not in valid range 'lambda > 0', for Exponential distribution"
|
|
77
|
+
raise (DistributionsException(err_msg))
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
class Gamma:
|
|
81
|
+
@staticmethod
|
|
82
|
+
def validate(params: list) -> None:
|
|
83
|
+
if not params or len(params) != 2:
|
|
84
|
+
err_msg = (
|
|
85
|
+
'Expected exactly two parameters (shape, scale), for Gamma distribution'
|
|
86
|
+
)
|
|
87
|
+
raise (DistributionsException(err_msg))
|
|
88
|
+
if params[0] <= 0:
|
|
89
|
+
err_msg = (
|
|
90
|
+
f"{params[0]} is not in valid range 'shape > 0', for Gamma distribution"
|
|
91
|
+
)
|
|
92
|
+
raise (DistributionsException(err_msg))
|
|
93
|
+
if params[1] <= 0:
|
|
94
|
+
err_msg = (
|
|
95
|
+
f"{params[1]} is not in valid range 'scale > 0', for Gamma distribution"
|
|
96
|
+
)
|
|
97
|
+
raise (DistributionsException(err_msg))
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
class LogNormal:
|
|
101
|
+
@staticmethod
|
|
102
|
+
def validate(params: list) -> None:
|
|
103
|
+
if not params or len(params) != 2:
|
|
104
|
+
err_msg = 'Expected exactly two parameters (mean, standardDeviation), for LogNormal distribution'
|
|
105
|
+
raise (DistributionsException(err_msg))
|
|
106
|
+
if params[1] <= 0:
|
|
107
|
+
err_msg = f"{params[1]} is not in valid range 'standardDeviation > 0', for LogNormal distribution"
|
|
108
|
+
raise (DistributionsException(err_msg))
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
class Pareto:
|
|
112
|
+
@staticmethod
|
|
113
|
+
def validate(params: list) -> None:
|
|
114
|
+
if not params or len(params) != 2:
|
|
115
|
+
err_msg = (
|
|
116
|
+
'Expected exactly two parameters (min, shape), for Pareto distribution'
|
|
117
|
+
)
|
|
118
|
+
raise (DistributionsException(err_msg))
|
|
119
|
+
if params[0] <= 0:
|
|
120
|
+
err_msg = (
|
|
121
|
+
f"{params[0]} is not in valid range 'min > 0', for Pareto distribution"
|
|
122
|
+
)
|
|
123
|
+
raise (DistributionsException(err_msg))
|
|
124
|
+
if params[1] <= 0:
|
|
125
|
+
err_msg = f"{params[1]} is not in valid range 'shape > 0', for Pareto distribution"
|
|
126
|
+
raise (DistributionsException(err_msg))
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
class TruncatedNormal:
|
|
130
|
+
@staticmethod
|
|
131
|
+
def validate(params: list) -> None:
|
|
132
|
+
if not params or len(params) != 2:
|
|
133
|
+
err_msg = 'Expected exactly two parameters (mean, standardDeviation), for TruncatedNormal distribution'
|
|
134
|
+
raise (DistributionsException(err_msg))
|
|
135
|
+
if params[1] <= 0:
|
|
136
|
+
err_msg = f"{params[1]} is not in valid range 'standardDeviation > 0', for TruncatedNormal distribution"
|
|
137
|
+
raise (DistributionsException(err_msg))
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
class Uniform:
|
|
141
|
+
@staticmethod
|
|
142
|
+
def validate(params: list) -> None:
|
|
143
|
+
if not params or len(params) != 2:
|
|
144
|
+
err_msg = (
|
|
145
|
+
'Expected exactly two parameters (min, max), for Uniform distribution'
|
|
146
|
+
)
|
|
147
|
+
raise (DistributionsException(err_msg))
|
|
148
|
+
if params[0] > params[1]:
|
|
149
|
+
err_msg = f"({params[0]}, {params[1]}) does not meet requirement 'min <= max', for Uniform distribution"
|
|
150
|
+
raise (DistributionsException(err_msg))
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
class Combination:
|
|
154
|
+
@staticmethod
|
|
155
|
+
def validate(params: list) -> None:
|
|
156
|
+
if params and len(params) != 0:
|
|
157
|
+
err_msg = 'Expected exactly zero parameters, for combination distributions'
|
|
158
|
+
raise (DistributionsException(err_msg))
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
class MalCompilerError(Exception):
|
|
2
|
+
"""Base exception for MalCompiler errors."""
|
|
3
|
+
|
|
4
|
+
pass
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
class MalSyntaxError(MalCompilerError):
|
|
8
|
+
"""Raised when syntax error is encountered during compilation."""
|
|
9
|
+
|
|
10
|
+
def __init__(self, message, line=None, column=None):
|
|
11
|
+
self.line = line
|
|
12
|
+
self.column = column
|
|
13
|
+
super().__init__(message)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
class MalParseError(MalCompilerError):
|
|
17
|
+
"""Raised when parsing fails."""
|
|
18
|
+
|
|
19
|
+
pass
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
class MalTypeError(MalCompilerError):
|
|
23
|
+
"""Raised when type checking fails."""
|
|
24
|
+
|
|
25
|
+
pass
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
class MalNameError(MalCompilerError):
|
|
29
|
+
"""Raised when an undefined name is referenced."""
|
|
30
|
+
|
|
31
|
+
pass
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
class MalCompilationError(MalCompilerError):
|
|
35
|
+
"""Raised when code generation fails."""
|
|
36
|
+
|
|
37
|
+
pass
|