serializers
Serialize an ELK diagram into a capellambse diagram.
This submodule provides a serializer that transforms data from an ELK- layouted diagram _elkjs.ELKOutputData according to _elkjs.ELKInputData.
The pre-layouted data was collected with the functions from builders.
ElkChildType
module-attribute
🔗
ElkChildType = str
Elk types can be one of the following types:
* graph
* node
* port
* label
* edge
* junction.
DiagramSerializer 🔗
DiagramSerializer(elk_diagram: ContextDiagram)
Serialize an elk_diagram into a capellambse diagram.
| ATTRIBUTE | DESCRIPTION |
|---|---|
model |
The
|
diagram |
The created
TYPE:
|
Source code in src/capellambse_context_diagrams/serializers.py
65 66 67 68 69 70 71 | |
deserialize_child 🔗
deserialize_child(
child: ELKOutputChild, ref: Vector2D, parent: DiagramElement | None
) -> None
Convert a child into aird elements and adds it to the diagram.
| PARAMETER | DESCRIPTION |
|---|---|
child
|
The child to deserialize.
TYPE:
|
ref
|
The reference point of the child.
TYPE:
|
parent
|
The parent of the child. This is either a box or an edge.
TYPE:
|
See Also
diagram.Box : Box class type.
diagram.Edge : Edge class type.
diagram.Circle : Circle class
type.
diagram.Diagram : Diagram
class type that stores all previously named classes.
Source code in src/capellambse_context_diagrams/serializers.py
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 | |
get_styleclass 🔗
get_styleclass(uuid: str) -> str | None
Return the style-class string from a given uuid.
Source code in src/capellambse_context_diagrams/serializers.py
378 379 380 381 382 383 384 385 386 387 388 389 390 391 | |
get_styleoverrides 🔗
get_styleoverrides(
uuid: str, child: ELKOutputChild, *, derived: bool = False
) -> cdiagram.StyleOverrides
Return css style overrides from a given child.
See Also
styling.CSSStyles :
A dictionary with CSS styles.
_elkjs.ELKOutputChild :
An ELK output child.
Source code in src/capellambse_context_diagrams/serializers.py
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 | |
make_diagram 🔗
make_diagram(data: ELKOutputData, **params: Any) -> cdiagram.Diagram
Transform a layouted diagram into a diagram.Diagram.
| PARAMETER | DESCRIPTION |
|---|---|
data
|
The diagram, including layouting information.
TYPE:
|
params
|
Additional parameters for the diagram.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
diagram
|
A |
Source code in src/capellambse_context_diagrams/serializers.py
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 | |
order_children 🔗
order_children() -> None
Reorder diagram elements such that symbols are drawn last.
Source code in src/capellambse_context_diagrams/serializers.py
423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 | |
bring_labels_closer_to_port 🔗
bring_labels_closer_to_port(child: ELKOutputLabel) -> None
Move labels closer to the port.
Source code in src/capellambse_context_diagrams/serializers.py
484 485 486 487 488 489 490 | |
handle_features 🔗
handle_features(child: ELKOutputNode) -> list[str]
Return all consecutive labels (without first) from the child.
Source code in src/capellambse_context_diagrams/serializers.py
443 444 445 446 447 448 449 450 451 452 453 | |
route_shortest_connection 🔗
route_shortest_connection(source: Box, target: Box) -> list[cdiagram.Vector2D]
Calculate shortest path between boxes with 'Oblique' style.
Calculate the intersection points of the line from source.center to target.center with the bounding boxes of the source and target.
Source code in src/capellambse_context_diagrams/serializers.py
456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 | |