-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathsystem.py
37 lines (31 loc) · 1.12 KB
/
system.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
"""
The `model.py` module is used to instantiate a central namespace for a SysML
model by subsuming elements into mode elements or model relations.
"""
from sysml.elements import Package
from yaml import dump as _dump
from yaml import load as _load
class Model(Package):
"""This class defines a SysML system model. A system model serves as the
root namespace for subsuming all model elements (and relationships between
elements) of a system.
"""
def to_yaml(self, filename: str) -> None:
""" Write this Project to a yaml file """
if type(filename) is str:
with open(filename, "w") as f:
f.write(_dump(self))
else:
raise TypeError
def isValid(self):
"""Checks whether all requirements contained within model are satisfied
by a «block» and verified by a «testCase»"""
pass
def read_yaml(filename: str) -> "Model":
""" Load a project from a yaml file """
with open(filename, "r") as f:
rv = _load(f.read())
if type(rv) is Model:
return rv
else:
raise TypeError(type(rv))