portless
Collection of ELKInputData
on diagrams that don't involve ports or any connectors.
ContextInfo 🔗
collect_exchange_endpoints 🔗
collect_exchange_endpoints(e: m.ModelElement) -> tuple[m.ModelElement, m.ModelElement]
Safely collect exchange endpoints from e
.
Source code in capellambse_context_diagrams/collectors/portless.py
120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 |
|
collector 🔗
collector(diagram: context.ContextDiagram, params: dict[str, t.Any] | None = None) -> _elkjs.ELKInputData
Collect context data from exchanges of centric box.
This is the special context collector for the operational architecture layer diagrams (diagrams where elements don't exchange via ports/connectors).
Source code in capellambse_context_diagrams/collectors/portless.py
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 |
|
get_exchanges 🔗
get_exchanges(obj: m.ModelElement, filter: cabc.Callable[[cabc.Iterable[m.ModelElement]], cabc.Iterable[m.ModelElement]] = lambda i: i) -> t.Iterator[t.Any]
Yield exchanges safely.
Yields exchanges from .related_exchanges
or exclusively by
obj
classtype:
* Capabilities:
* .extends
,
* .includes
,
* .generalizes
and their reverse
* .included_by
,
* .extended_by
,
* .generalized_by
and optionally
* .entity_involvements
(Operational)
* .component_involvements
and .incoming_exploitations
(System)
* Mission:
* .involvements
and
* .exploitations
.
Source code in capellambse_context_diagrams/collectors/portless.py
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 |
|