blob: b8e6a134e8afe89c357882e88d3b830a97120cf2 (
plain)
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
|
from pathlib import Path
from pydecor import export
from pyGHDL.dom import Misc
from pyGHDL import GHDLBaseException
__all__ = []
__api__ = __all__
from pyGHDL.dom.formatting.prettyprint import PrettyPrint
@export
class Application:
_design: Misc.Design
def __init__(self):
self._design = Misc.Design()
def addFile(self, filename: Path, library: str):
document = Misc.Document(filename)
self._design.Documents.append(document)
def prettyPrint(self):
buffer = []
PP = PrettyPrint()
for doc in self._design.Documents:
for line in PP.formatDocument(doc):
buffer.append(line)
print("\n".join(buffer))
def main():
try:
app = Application()
app.addFile(Path("testsuite/pyunit/SimpleEntity.vhdl"), "default_lib")
except GHDLBaseException as ex:
print(ex)
app.prettyPrint()
if __name__ == "__main__":
main()
|