-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpatterns.py
216 lines (159 loc) · 5.3 KB
/
patterns.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
from __future__ import annotations
from datetime import (
datetime,
date
)
from decimal import Decimal
from enum import Enum
import re
import sys
from typing import (
Any,
List,
Literal,
Dict,
Optional,
Union
)
from pydantic.version import VERSION as PYDANTIC_VERSION
if int(PYDANTIC_VERSION[0])>=2:
from pydantic import (
BaseModel,
ConfigDict,
Field,
field_validator
)
else:
from pydantic import (
BaseModel,
Field,
validator
)
metamodel_version = "None"
version = "None"
class WeakRefShimBaseModel(BaseModel):
__slots__ = '__weakref__'
class ConfiguredBaseModel(WeakRefShimBaseModel,
validate_assignment = True,
validate_all = True,
underscore_attrs_are_private = True,
extra = "forbid",
arbitrary_types_allowed = True,
use_enum_values = True):
pass
class ModelingAbstraction(ConfiguredBaseModel):
pass
class GraphElementMixin(ModelingAbstraction):
pass
class GraphMixin(GraphElementMixin):
pass
class GraphNodeMixin(GraphElementMixin):
pass
class GraphEdgeMixin(GraphElementMixin):
pass
class TreeElementMixin(ModelingAbstraction):
pass
class TreeMixin(TreeElementMixin):
pass
class SubTreeMixin(TreeMixin):
pass
class TreeNodeMixin(TreeElementMixin):
pass
class DiscreteEntity(ModelingAbstraction):
pass
class Composite(TreeMixin, ModelingAbstraction):
"""
A thing that can be composed of other things
"""
components: Optional[List[Union[AtomicDiscreteEntity, Composite]]] = Field(default_factory=list)
class SimpleComposite(Composite, SubTreeMixin):
"""
A thing that can be composed of only AtomicDiscreteEntities
"""
components: Optional[List[AtomicDiscreteEntity]] = Field(default_factory=list)
class AtomicDiscreteEntity(DiscreteEntity, TreeNodeMixin):
"""
A thing that cannot be decomposed into smaller parts, within a given system of components
"""
pass
class System(Composite, GraphMixin):
"""
A system is a composite entity that has connected components
"""
connections: Optional[List[SystemConnection]] = Field(default_factory=list)
components: Optional[List[Union[AtomicSystemComponent, SubSystem]]] = Field(default_factory=list)
class SubSystem(System):
"""
A system that is part of a larger system
"""
connections: Optional[List[SystemConnection]] = Field(default_factory=list)
components: Optional[List[Union[AtomicSystemComponent, SubSystem]]] = Field(default_factory=list)
class AtomicSystemComponent(AtomicDiscreteEntity):
"""
A system component that cannot be decomposed into smaller parts
"""
pass
class Relationship(GraphEdgeMixin, ModelingAbstraction):
"""
A relationship between two or more entities
"""
pass
class BinaryRelationship(Relationship):
pass
class MultiNAryRelationship(Relationship):
pass
class BinaryDirectedRelationship(BinaryRelationship):
subject: Optional[DiscreteEntity] = Field(None, description="""The subject of a relationship""")
object: Optional[DiscreteEntity] = Field(None, description="""The object of a relationship""")
class SystemConnection(BinaryDirectedRelationship):
"""
A connection between two system components
"""
subject: Optional[Union[AtomicSystemComponent, SubSystem]] = Field(None, description="""The subject of a relationship""")
object: Optional[Union[AtomicSystemComponent, SubSystem]] = Field(None, description="""The object of a relationship""")
class StateTransitionNetworkElement(ModelingAbstraction):
"""
An element in a state transition network
"""
pass
class StateTransitionNetwork(StateTransitionNetworkElement, GraphMixin):
"""
A network of state transitions
"""
pass
class StateTransition(StateTransitionNetworkElement):
before: Optional[State] = Field(None, description="""The previous state""")
after: Optional[State] = Field(None, description="""The next state""")
conditions: Optional[Any] = Field(None, description="""Conditions under which the transition occurs""")
class State(StateTransitionNetworkElement):
"""
A state in a state transition network
"""
pass
# Update forward refs
# see https://pydantic-docs.helpmanual.io/usage/postponed_annotations/
ModelingAbstraction.update_forward_refs()
GraphElementMixin.update_forward_refs()
GraphMixin.update_forward_refs()
GraphNodeMixin.update_forward_refs()
GraphEdgeMixin.update_forward_refs()
TreeElementMixin.update_forward_refs()
TreeMixin.update_forward_refs()
SubTreeMixin.update_forward_refs()
TreeNodeMixin.update_forward_refs()
DiscreteEntity.update_forward_refs()
Composite.update_forward_refs()
SimpleComposite.update_forward_refs()
AtomicDiscreteEntity.update_forward_refs()
System.update_forward_refs()
SubSystem.update_forward_refs()
AtomicSystemComponent.update_forward_refs()
Relationship.update_forward_refs()
BinaryRelationship.update_forward_refs()
MultiNAryRelationship.update_forward_refs()
BinaryDirectedRelationship.update_forward_refs()
SystemConnection.update_forward_refs()
StateTransitionNetworkElement.update_forward_refs()
StateTransitionNetwork.update_forward_refs()
StateTransition.update_forward_refs()
State.update_forward_refs()