-
Notifications
You must be signed in to change notification settings - Fork 10
/
constraints.py
154 lines (120 loc) · 4.94 KB
/
constraints.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
#!/usr/bin/env python3
from sys import argv as sys_argv
from pathlib import Path
from typing import Dict, List, Optional, Union
from dataclasses import dataclass
from yaml import load as yaml_load, Loader as yaml_loader, dump as yaml_dump
from re import findall as re_findall, M as re_M
rootDir = Path(__file__).resolve().parent
boardInfoDir = rootDir / "board"
def generatePerBoardMarkdownFileWithFrontmatter(contentDir: Path) -> None:
boardFileDir = contentDir / "boards"
boardFileDir.mkdir(exist_ok=True)
# FIXME
# Currently, files use key 'Documentation', which is polymorphic, but Hugo expects a list of strings.
# When this function is converted to use dataclasses, that should be fixed (transformed).
for item in boardInfoDir.glob("**/info.yml"):
name = item.parent.name
prefix = ""
suffix = ""
print("-", name)
with (boardFileDir / f"{name}.md").open("w") as wfptr:
wfptr.write("---\n")
wfptr.write(item.read_text())
wfptr.write(f"ref: https://github.com/hdl/constraints/tree/main/board/{prefix}{name}{suffix}\n")
wfptr.write("---\n")
for item in boardInfoDir.glob("**/info.md"):
name = item.parent.name
prefix = ""
suffix = ""
print("-", name)
with item.open("r") as rfptr:
with (boardFileDir / f"{name}.md").open("w") as wfptr:
for line in [
"---",
f"ref: https://github.com/hdl/constraints/tree/main/board/{prefix}{name}{suffix}",
] + rfptr.read().splitlines()[1:]:
wfptr.writelines("{}\n".format(line))
@dataclass
class ProgItem:
ID: str = None
Description: str = None
Tools: Union[str, List[str]] = None
@dataclass
class BoardInfo:
Label: str
Description: str = None
PartNumber: str = None
Device: str = None
Package: str = None
Documentation: Union[str, List[str], Dict[str, str]] = None
Prog: Union[ProgItem, str, List[str]] = None
Content: str = None
@dataclass
class LogicResources:
LUT: int = None
FF: int = None
BRAM: int = None
DSP: int = None
IO: int = None
@dataclass
class DeviceInfo:
Label: str
Device: str
Packages: List[str] = None
Documentation: Union[str, List[str], Dict[str, str]] = None
Resources: LogicResources = None
def getBoardsInfo(verbose : bool = True) -> Dict[str, BoardInfo]:
boards = {}
for item in boardInfoDir.glob("**/info.yml"):
if verbose:
print(" >", item.parent.name)
with item.open() as fptr:
boards[item.parent.name] = BoardInfo(**yaml_load(fptr, yaml_loader))
if isinstance(boards[item.parent.name].Prog, dict):
boards[item.parent.name].Prog = ProgItem(**boards[item.parent.name].Prog)
for item in boardInfoDir.glob("**/info.md"):
if verbose:
print(" >", item.parent.name)
with item.open() as fptr:
# TODO:
# Currently, we are extracting the frontmatter with a regular expression, and ignoring the markdown body.
# We should keep the markdown content as well.
# - https://python-markdown.github.io/extensions/
# - https://pypi.org/project/python-frontmatter/
frontmatter = re_findall(r"^---$\r?\n((?:.*?\r?\n)*)^---$", fptr.read(), re_M)[0]
boards[item.parent.name] = BoardInfo(**yaml_load(frontmatter, yaml_loader))
return boards
class Constraints:
LPF: Union[str, List[str]] = None
PCF: Union[str, List[str]] = None
SDC: Union[str, List[str]] = None
UCF: Union[str, List[str]] = None
XDC: Union[str, List[str]] = None
def getConstraintFiles(
boards: Union[List[str], Dict[str, BoardInfo]],
verbose: bool = True
) -> Dict[str, Optional[Constraints]]:
constraints = {}
for name in boards:
files = [item for item in (boardInfoDir / name).iterdir() if item.stem != 'info']
if len(files) == 0:
constraints[name] = None
continue
boardConstraints = Constraints()
boardConstraints.LPF = [item.stem for item in files if item.suffix == '.lpf']
boardConstraints.PCF = [item.stem for item in files if item.suffix == '.pcf']
boardConstraints.SDC = [item.stem for item in files if item.suffix == '.sdc']
boardConstraints.UCF = [item.stem for item in files if item.suffix == '.ucf']
boardConstraints.XDC = [item.stem for item in files if item.suffix == '.xdc']
constraints[name] = boardConstraints
if verbose:
print(f'{name}:')
print(' LPF:', boardConstraints.LPF)
print(' PCF:', boardConstraints.PCF)
print(' SDC:', boardConstraints.SDC)
print(' UCF:', boardConstraints.UCF)
print(' XDC:', boardConstraints.XDC)
return constraints
if __name__ == "__main__":
generatePerBoardMarkdownFileWithFrontmatter(Path(sys_argv[1]))