-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathDesignUnit.py
781 lines (584 loc) · 24.1 KB
/
DesignUnit.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
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
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
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
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
# ==================================================================================================================== #
# __ ___ _ ____ _ __ __ _ _ #
# _ __ _ \ \ / / | | | _ \| | | \/ | ___ __| | ___| | #
# | '_ \| | | \ \ / /| |_| | | | | | | |\/| |/ _ \ / _` |/ _ \ | #
# | |_) | |_| |\ V / | _ | |_| | |___| | | | (_) | (_| | __/ | #
# | .__/ \__, | \_/ |_| |_|____/|_____|_| |_|\___/ \__,_|\___|_| #
# |_| |___/ #
# ==================================================================================================================== #
# Authors: #
# Patrick Lehmann #
# #
# License: #
# ==================================================================================================================== #
# Copyright 2017-2025 Patrick Lehmann - Boetzingen, Germany #
# Copyright 2016-2017 Patrick Lehmann - Dresden, Germany #
# #
# Licensed under the Apache License, Version 2.0 (the "License"); #
# you may not use this file except in compliance with the License. #
# You may obtain a copy of the License at #
# #
# http://www.apache.org/licenses/LICENSE-2.0 #
# #
# Unless required by applicable law or agreed to in writing, software #
# distributed under the License is distributed on an "AS IS" BASIS, #
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. #
# See the License for the specific language governing permissions and #
# limitations under the License. #
# #
# SPDX-License-Identifier: Apache-2.0 #
# ==================================================================================================================== #
#
"""
This module contains parts of an abstract document language model for VHDL.
Design units are contexts, entities, architectures, packages and their bodies as well as configurations.
"""
from typing import List, Dict, Union, Iterable, Optional as Nullable
from pyTooling.Decorators import export, readonly
from pyTooling.MetaClasses import ExtendedType
from pyTooling.Graph import Vertex
from pyVHDLModel.Exception import VHDLModelException
from pyVHDLModel.Base import ModelEntity, NamedEntityMixin, DocumentedEntityMixin
from pyVHDLModel.Namespace import Namespace
from pyVHDLModel.Regions import ConcurrentDeclarationRegionMixin
from pyVHDLModel.Symbol import Symbol, PackageSymbol, EntitySymbol, LibraryReferenceSymbol
from pyVHDLModel.Interface import GenericInterfaceItemMixin, PortInterfaceItemMixin
from pyVHDLModel.Object import DeferredConstant
from pyVHDLModel.Concurrent import ConcurrentStatement, ConcurrentStatementsMixin
@export
class Reference(ModelEntity):
"""
A base-class for all references.
.. seealso::
* :class:`~pyVHDLModel.DesignUnit.LibraryClause`
* :class:`~pyVHDLModel.DesignUnit.UseClause`
* :class:`~pyVHDLModel.DesignUnit.ContextReference`
"""
_symbols: List[Symbol]
def __init__(self, symbols: Iterable[Symbol], parent: ModelEntity = None) -> None:
"""
Initializes a reference by taking a list of symbols and a parent reference.
:param symbols: A list of symbols this reference references to.
:param parent: Reference to the logical parent in the model hierarchy.
"""
super().__init__(parent)
self._symbols = [s for s in symbols]
@readonly
def Symbols(self) -> List[Symbol]:
"""
Read-only property to access the symbols this reference references to (:attr:`_symbols`).
:returns: A list of symbols.
"""
return self._symbols
@export
class LibraryClause(Reference):
"""
Represents a library clause.
.. admonition:: Example
.. code-block:: VHDL
library std, ieee;
"""
@readonly
def Symbols(self) -> List[LibraryReferenceSymbol]:
"""
Read-only property to access the symbols this library clause references to (:attr:`_symbols`).
:returns: A list of library reference symbols.
"""
return self._symbols
@export
class UseClause(Reference):
"""
Represents a use clause.
.. admonition:: Example
.. code-block:: VHDL
use std.text_io.all, ieee.numeric_std.all;
"""
@export
class ContextReference(Reference):
"""
Represents a context reference.
.. hint:: It's called *context reference* not *context clause* by the LRM.
.. admonition:: Example
.. code-block:: VHDL
context ieee.ieee_std_context;
"""
ContextUnion = Union[
LibraryClause,
UseClause,
ContextReference
]
@export
class DesignUnitWithContextMixin(metaclass=ExtendedType, mixin=True):
"""
A mixin-class for all design units with a context.
"""
@export
class DesignUnit(ModelEntity, NamedEntityMixin, DocumentedEntityMixin):
"""
A base-class for all design units.
.. seealso::
* :class:`Primary design units <pyVHDLModel.DesignUnit.PrimaryUnit>`
* :class:`~pyVHDLModel.DesignUnit.Context`
* :class:`~pyVHDLModel.DesignUnit.Entity`
* :class:`~pyVHDLModel.DesignUnit.Package`
* :class:`~pyVHDLModel.DesignUnit.Configuration`
* :class:`Secondary design units <pyVHDLModel.DesignUnit.SecondaryUnit>`
* :class:`~pyVHDLModel.DesignUnit.Architecture`
* :class:`~pyVHDLModel.DesignUnit.PackageBody`
"""
_document: 'Document' #: The VHDL library, the design unit was analyzed into.
# Either written as statements before (e.g. entity, architecture, package, ...), or as statements inside (context)
_contextItems: List['ContextUnion'] #: List of all context items (library, use and context clauses).
_libraryReferences: List['LibraryClause'] #: List of library clauses.
_packageReferences: List['UseClause'] #: List of use clauses.
_contextReferences: List['ContextReference'] #: List of context clauses.
_referencedLibraries: Dict[str, 'Library'] #: Referenced libraries based on explicit library clauses or implicit inheritance
_referencedPackages: Dict[str, Dict[str, 'Package']] #: Referenced packages based on explicit use clauses or implicit inheritance
_referencedContexts: Dict[str, 'Context'] #: Referenced contexts based on explicit context references or implicit inheritance
_dependencyVertex: Vertex[None, None, str, 'DesignUnit', None, None, None, None, None, None, None, None, None, None, None, None, None] #: Reference to the vertex in the dependency graph representing the design unit. |br| This reference is set by :meth:`~pyVHDLModel.Design.CreateDependencyGraph`.
_hierarchyVertex: Vertex[None, None, str, 'DesignUnit', None, None, None, None, None, None, None, None, None, None, None, None, None] #: The vertex in the hierarchy graph
_namespace: 'Namespace'
def __init__(self, identifier: str, contextItems: Nullable[Iterable[ContextUnion]] = None, documentation: Nullable[str] = None, parent: ModelEntity = None) -> None:
"""
Initializes a design unit.
:param identifier: Identifier (name) of the design unit.
:param contextItems: A sequence of library, use or context clauses.
:param documentation: Associated documentation of the design unit.
:param parent: Reference to the logical parent in the model hierarchy.
"""
super().__init__(parent)
NamedEntityMixin.__init__(self, identifier)
DocumentedEntityMixin.__init__(self, documentation)
self._document = None
self._contextItems = []
self._libraryReferences = []
self._packageReferences = []
self._contextReferences = []
if contextItems is not None:
for item in contextItems:
self._contextItems.append(item)
if isinstance(item, UseClause):
self._packageReferences.append(item)
elif isinstance(item, LibraryClause):
self._libraryReferences.append(item)
elif isinstance(item, ContextReference):
self._contextReferences.append(item)
self._referencedLibraries = {}
self._referencedPackages = {}
self._referencedContexts = {}
self._dependencyVertex = None
self._hierarchyVertex = None
self._namespace = Namespace(self._normalizedIdentifier)
@readonly
def Document(self) -> 'Document':
return self._document
@Document.setter
def Document(self, document: 'Document') -> None:
self._document = document
@property
def Library(self) -> 'Library':
return self._parent
@Library.setter
def Library(self, library: 'Library') -> None:
self._parent = library
@property
def ContextItems(self) -> List['ContextUnion']:
"""
Read-only property to access the sequence of all context items comprising library, use and context clauses
(:attr:`_contextItems`).
:returns: Sequence of context items.
"""
return self._contextItems
@property
def ContextReferences(self) -> List['ContextReference']:
"""
Read-only property to access the sequence of context clauses (:attr:`_contextReferences`).
:returns: Sequence of context clauses.
"""
return self._contextReferences
@property
def LibraryReferences(self) -> List['LibraryClause']:
"""
Read-only property to access the sequence of library clauses (:attr:`_libraryReferences`).
:returns: Sequence of library clauses.
"""
return self._libraryReferences
@property
def PackageReferences(self) -> List['UseClause']:
"""
Read-only property to access the sequence of use clauses (:attr:`_packageReferences`).
:returns: Sequence of use clauses.
"""
return self._packageReferences
@property
def ReferencedLibraries(self) -> Dict[str, 'Library']:
return self._referencedLibraries
@property
def ReferencedPackages(self) -> Dict[str, 'Package']:
return self._referencedPackages
@property
def ReferencedContexts(self) -> Dict[str, 'Context']:
return self._referencedContexts
@property
def DependencyVertex(self) -> Vertex:
"""
Read-only property to access the corresponding dependency vertex (:attr:`_dependencyVertex`).
The dependency vertex references this design unit by its value field.
:returns: The corresponding dependency vertex.
"""
return self._dependencyVertex
@property
def HierarchyVertex(self) -> Vertex:
"""
Read-only property to access the corresponding hierarchy vertex (:attr:`_hierarchyVertex`).
The hierarchy vertex references this design unit by its value field.
:returns: The corresponding hierarchy vertex.
"""
return self._hierarchyVertex
@export
class PrimaryUnit(DesignUnit):
"""
A base-class for all primary design units.
.. seealso::
* :class:`~pyVHDLModel.DesignUnit.Context`
* :class:`~pyVHDLModel.DesignUnit.Entity`
* :class:`~pyVHDLModel.DesignUnit.Package`
* :class:`~pyVHDLModel.DesignUnit.Configuration`
"""
@export
class SecondaryUnit(DesignUnit):
"""
A base-class for all secondary design units.
.. seealso::
* :class:`~pyVHDLModel.DesignUnit.Architecture`
* :class:`~pyVHDLModel.DesignUnit.PackageBody`
"""
@export
class Context(PrimaryUnit):
"""
Represents a context declaration.
A context contains a generic list of all its items (library clauses, use clauses and context references) in
:data:`_references`.
Furthermore, when a context gets initialized, the item kinds get separated into individual lists:
* :class:`~pyVHDLModel.DesignUnit.LibraryClause` |rarr| :data:`_libraryReferences`
* :class:`~pyVHDLModel.DesignUnit.UseClause` |rarr| :data:`_packageReferences`
* :class:`~pyVHDLModel.DesignUnit.ContextReference` |rarr| :data:`_contextReferences`
When :meth:`pyVHDLModel.Design.LinkContexts` got called, these lists were processed and the fields:
* :data:`_referencedLibraries` (:pycode:`Dict[libName, Library]`)
* :data:`_referencedPackages` (:pycode:`Dict[libName, [pkgName, Package]]`)
* :data:`_referencedContexts` (:pycode:`Dict[libName, [ctxName, Context]]`)
are populated.
.. admonition:: Example
.. code-block:: VHDL
context ctx is
-- ...
end context;
"""
_references: List[ContextUnion]
def __init__(self, identifier: str, references: Nullable[Iterable[ContextUnion]] = None, documentation: Nullable[str] = None, parent: ModelEntity = None) -> None:
super().__init__(identifier, None, documentation, parent)
self._references = []
self._libraryReferences = []
self._packageReferences = []
self._contextReferences = []
if references is not None:
for reference in references:
self._references.append(reference)
reference._parent = self
if isinstance(reference, LibraryClause):
self._libraryReferences.append(reference)
elif isinstance(reference, UseClause):
self._packageReferences.append(reference)
elif isinstance(reference, ContextReference):
self._contextReferences.append(reference)
else:
raise VHDLModelException() # FIXME: needs exception message
@property
def LibraryReferences(self) -> List[LibraryClause]:
return self._libraryReferences
@property
def PackageReferences(self) -> List[UseClause]:
return self._packageReferences
@property
def ContextReferences(self) -> List[ContextReference]:
return self._contextReferences
def __str__(self) -> str:
lib = self._parent._identifier + "?" if self._parent is not None else ""
return f"Context: {lib}.{self._identifier}"
@export
class Package(PrimaryUnit, DesignUnitWithContextMixin, ConcurrentDeclarationRegionMixin):
"""
Represents a package declaration.
.. admonition:: Example
.. code-block:: VHDL
package pkg is
-- ...
end package;
"""
_packageBody: Nullable["PackageBody"]
_genericItems: List[GenericInterfaceItemMixin]
_deferredConstants: Dict[str, DeferredConstant]
_components: Dict[str, 'Component']
def __init__(
self,
identifier: str,
contextItems: Nullable[Iterable[ContextUnion]] = None,
genericItems: Nullable[Iterable[GenericInterfaceItemMixin]] = None,
declaredItems: Nullable[Iterable] = None,
documentation: Nullable[str] = None,
parent: ModelEntity = None
) -> None:
super().__init__(identifier, contextItems, documentation, parent)
DesignUnitWithContextMixin.__init__(self)
ConcurrentDeclarationRegionMixin.__init__(self, declaredItems)
self._packageBody = None
# TODO: extract to mixin
self._genericItems = [] # TODO: convert to dict
if genericItems is not None:
for generic in genericItems:
self._genericItems.append(generic)
generic._parent = self
self._deferredConstants = {}
self._components = {}
@property
def PackageBody(self) -> Nullable["PackageBody"]:
return self._packageBody
@property
def GenericItems(self) -> List[GenericInterfaceItemMixin]:
return self._genericItems
@property
def DeclaredItems(self) -> List:
return self._declaredItems
@property
def DeferredConstants(self):
return self._deferredConstants
@property
def Components(self):
return self._components
def _IndexOtherDeclaredItem(self, item):
if isinstance(item, DeferredConstant):
for normalizedIdentifier in item.NormalizedIdentifiers:
self._deferredConstants[normalizedIdentifier] = item
elif isinstance(item, Component):
self._components[item.NormalizedIdentifier] = item
else:
super()._IndexOtherDeclaredItem(item)
def __str__(self) -> str:
lib = self._parent._identifier if self._parent is not None else "%"
return f"Package: '{lib}.{self._identifier}'"
def __repr__(self) -> str:
lib = self._parent._identifier if self._parent is not None else "%"
return f"{lib}.{self._identifier}"
@export
class PackageBody(SecondaryUnit, DesignUnitWithContextMixin, ConcurrentDeclarationRegionMixin):
"""
Represents a package body declaration.
.. admonition:: Example
.. code-block:: VHDL
package body pkg is
-- ...
end package body;
"""
_package: PackageSymbol
def __init__(
self,
packageSymbol: PackageSymbol,
contextItems: Nullable[Iterable[ContextUnion]] = None,
declaredItems: Nullable[Iterable] = None,
documentation: Nullable[str] = None,
parent: ModelEntity = None
) -> None:
super().__init__(packageSymbol.Name.Identifier, contextItems, documentation, parent)
DesignUnitWithContextMixin.__init__(self)
ConcurrentDeclarationRegionMixin.__init__(self, declaredItems)
self._package = packageSymbol
packageSymbol._parent = self
@property
def Package(self) -> PackageSymbol:
return self._package
@property
def DeclaredItems(self) -> List:
return self._declaredItems
def LinkDeclaredItemsToPackage(self) -> None:
pass
def __str__(self) -> str:
lib = self._parent._identifier + "?" if self._parent is not None else ""
return f"Package Body: {lib}.{self._identifier}(body)"
def __repr__(self) -> str:
lib = self._parent._identifier + "?" if self._parent is not None else ""
return f"{lib}.{self._identifier}(body)"
@export
class Entity(PrimaryUnit, DesignUnitWithContextMixin, ConcurrentDeclarationRegionMixin, ConcurrentStatementsMixin):
"""
Represents an entity declaration.
.. admonition:: Example
.. code-block:: VHDL
entity ent is
-- ...
end entity;
"""
_genericItems: List[GenericInterfaceItemMixin]
_portItems: List[PortInterfaceItemMixin]
_architectures: Dict[str, 'Architecture']
def __init__(
self,
identifier: str,
contextItems: Nullable[Iterable[ContextUnion]] = None,
genericItems: Nullable[Iterable[GenericInterfaceItemMixin]] = None,
portItems: Nullable[Iterable[PortInterfaceItemMixin]] = None,
declaredItems: Nullable[Iterable] = None,
statements: Nullable[Iterable[ConcurrentStatement]] = None,
documentation: Nullable[str] = None,
parent: ModelEntity = None
) -> None:
super().__init__(identifier, contextItems, documentation, parent)
DesignUnitWithContextMixin.__init__(self)
ConcurrentDeclarationRegionMixin.__init__(self, declaredItems)
ConcurrentStatementsMixin.__init__(self, statements)
# TODO: extract to mixin
self._genericItems = []
if genericItems is not None:
for item in genericItems:
self._genericItems.append(item)
item._parent = self
# TODO: extract to mixin
self._portItems = []
if portItems is not None:
for item in portItems:
self._portItems.append(item)
item._parent = self
self._architectures = {}
# TODO: extract to mixin for generics
@property
def GenericItems(self) -> List[GenericInterfaceItemMixin]:
return self._genericItems
# TODO: extract to mixin for ports
@property
def PortItems(self) -> List[PortInterfaceItemMixin]:
return self._portItems
@property
def Architectures(self) -> Dict[str, 'Architecture']:
return self._architectures
def __str__(self) -> str:
lib = self._parent._identifier if self._parent is not None else "%"
archs = ', '.join(self._architectures.keys()) if self._architectures else "%"
return f"Entity: '{lib}.{self._identifier}({archs})'"
def __repr__(self) -> str:
lib = self._parent._identifier if self._parent is not None else "%"
archs = ', '.join(self._architectures.keys()) if self._architectures else "%"
return f"{lib}.{self._identifier}({archs})"
@export
class Architecture(SecondaryUnit, DesignUnitWithContextMixin, ConcurrentDeclarationRegionMixin, ConcurrentStatementsMixin):
"""
Represents an architecture declaration.
.. admonition:: Example
.. code-block:: VHDL
architecture rtl of ent is
-- ...
begin
-- ...
end architecture;
"""
_entity: EntitySymbol
def __init__(
self,
identifier: str,
entity: EntitySymbol,
contextItems: Nullable[Iterable[Context]] = None,
declaredItems: Nullable[Iterable] = None,
statements: Iterable['ConcurrentStatement'] = None,
documentation: Nullable[str] = None,
parent: ModelEntity = None
) -> None:
super().__init__(identifier, contextItems, documentation, parent)
DesignUnitWithContextMixin.__init__(self)
ConcurrentDeclarationRegionMixin.__init__(self, declaredItems)
ConcurrentStatementsMixin.__init__(self, statements)
self._entity = entity
entity._parent = self
@property
def Entity(self) -> EntitySymbol:
return self._entity
def __str__(self) -> str:
lib = self._parent._identifier if self._parent is not None else "%"
ent = self._entity._name._identifier if self._entity is not None else "%"
return f"Architecture: {lib}.{ent}({self._identifier})"
def __repr__(self) -> str:
lib = self._parent._identifier if self._parent is not None else "%"
ent = self._entity._name._identifier if self._entity is not None else "%"
return f"{lib}.{ent}({self._identifier})"
@export
class Component(ModelEntity, NamedEntityMixin, DocumentedEntityMixin):
"""
Represents a configuration declaration.
.. admonition:: Example
.. code-block:: VHDL
component ent is
-- ...
end component;
"""
_genericItems: List[GenericInterfaceItemMixin]
_portItems: List[PortInterfaceItemMixin]
_entity: Nullable[Entity]
def __init__(
self,
identifier: str,
genericItems: Nullable[Iterable[GenericInterfaceItemMixin]] = None,
portItems: Nullable[Iterable[PortInterfaceItemMixin]] = None,
documentation: Nullable[str] = None,
parent: ModelEntity = None
) -> None:
super().__init__(parent)
NamedEntityMixin.__init__(self, identifier)
DocumentedEntityMixin.__init__(self, documentation)
# TODO: extract to mixin
self._genericItems = []
if genericItems is not None:
for item in genericItems:
self._genericItems.append(item)
item._parent = self
# TODO: extract to mixin
self._portItems = []
if portItems is not None:
for item in portItems:
self._portItems.append(item)
item._parent = self
@property
def GenericItems(self) -> List[GenericInterfaceItemMixin]:
return self._genericItems
@property
def PortItems(self) -> List[PortInterfaceItemMixin]:
return self._portItems
@property
def Entity(self) -> Nullable[Entity]:
return self._entity
@Entity.setter
def Entity(self, value: Entity) -> None:
self._entity = value
@export
class Configuration(PrimaryUnit, DesignUnitWithContextMixin):
"""
Represents a configuration declaration.
.. admonition:: Example
.. code-block:: VHDL
configuration cfg of ent is
for rtl
-- ...
end for;
end configuration;
"""
def __init__(
self,
identifier: str,
contextItems: Nullable[Iterable[Context]] = None,
documentation: Nullable[str] = None,
parent: ModelEntity = None
) -> None:
super().__init__(identifier, contextItems, documentation, parent)
DesignUnitWithContextMixin.__init__(self)
def __str__(self) -> str:
lib = self._parent._identifier if self._parent is not None else "%"
return f"Configuration: {lib}.{self._identifier}"
def __repr__(self) -> str:
lib = self._parent._identifier if self._parent is not None else "%"
return f"{lib}.{self._identifier}"