forked from The-OpenROAD-Project/OpenLane
-
Notifications
You must be signed in to change notification settings - Fork 0
/
env.py
executable file
·242 lines (201 loc) · 6.82 KB
/
env.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
#!/usr/bin/env python3
# Copyright 2021 Efabless Corporation
#
# 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.
# Note to maintainers/contributors:
#
# Ensure you don't use f strings, non-comment type hints or any other features
# that wouldn't work on Python 3.3
#
# Inevitably, some people won't read the Readme and then complain that the issue
# survey doesn't work on their older Python versions. As long as it's compatible
# with Python 3.3, this script will tell them that their python version is
# below the minimum supported.
import io
import os
import sys
import getpass
import textwrap
import subprocess
from os.path import abspath, dirname
openlane_dir = dirname(abspath(__file__))
is_root = os.geteuid() == 0
# Commands
def tool_list():
from dependencies.tool import Tool
tools = Tool.from_metadata_yaml(open("./dependencies/tool_metadata.yml").read())
for tool in tools.values():
print("%s %s" % (tool.name, tool.version_string))
def docker_config():
from dependencies.env_info import ContainerInfo
cinfo = ContainerInfo.get()
if cinfo is None:
raise Exception("No container engine found.")
if cinfo.engine == "docker":
if cinfo.rootless:
print("-u 0", end="")
else:
uid = (
subprocess.check_output(["id", "-u", getpass.getuser()])
.decode("utf8")
.strip()
)
gid = (
subprocess.check_output(["id", "-g", getpass.getuser()])
.decode("utf8")
.strip()
)
print("--user %s:%s" % (uid, gid), end="")
def issue_survey():
sys.path.append(os.path.dirname(__file__))
from dependencies.env_info import OSInfo
from dependencies.version import parse as vp
alerts = open(os.devnull, "w")
final_report = ""
os_info = OSInfo.get()
final_report += textwrap.dedent(
"""\
Kernel: %s v%s
"""
% (os_info.kernel, os_info.kernel_version)
)
if os_info.distro is not None:
final_report += textwrap.dedent(
"""\
Distribution: %s %s
"""
% (os_info.distro, (os_info.distro_version or ""))
)
python_version = vp(os_info.python_version)
minimum_python_version = vp("3.6")
python_message = "OK"
python_ok = True
if python_version < minimum_python_version:
python_message = "BELOW MINIMUM: UPDATE PYTHON"
python_ok = False
final_report += textwrap.dedent(
"""\
Python: v%s (%s)
"""
% (python_version, python_message)
)
if os_info.container_info is not None:
container_version = vp(os_info.container_info.version)
container_message = "UNSUPPORTED"
if "docker" in os_info.container_info.engine:
container_message = "OK"
minimum_docker_version = vp("19.03.12")
if container_version < minimum_docker_version:
container_message = "BELOW MINIMUM: UPDATE DOCKER"
final_report += textwrap.dedent(
"""\
Container Engine: %s v%s (%s)
"""
% (os_info.container_info.engine, container_version, container_message)
)
elif os.path.exists(
"/git_version"
): # i.e. if running inside the OpenLane container
print("Alert: Running in container.", file=alerts)
final_report = (
textwrap.dedent(
"""\
WARNING: issue-survey appears to be running inside the OpenLane
container.
This makes it difficult to rule out issues with your
environment.
Unless instructed specifically to do so, please run this command
outside the OpenLane container.
---\n
"""
)
+ final_report
)
else:
alert = (
"Critical Alert: No Docker or Docker-compatible container engine was found."
)
final_report += "%s\n" % alert
print(alert, file=alerts)
if python_ok:
from dependencies.get_tag import get_tag
final_report += textwrap.dedent(
"""\
OpenLane Git Version: %s
"""
% get_tag()
)
venv_ok = True
try:
import venv # noqa F401
except ImportError:
venv_ok = False
alert = (
"python-venv: " + "INSTALLED"
if venv_ok
else "NOT FOUND: Install python3-venv using your operating system's package manager."
)
final_report += "%s\n" % alert
print(alert, file=alerts)
if python_ok:
from dependencies.verify_versions import verify_versions
with io.StringIO() as f:
status = "OK"
try:
mismatches = verify_versions(
no_tools=True, report_file=f, pdk=os.getenv("PDK") or "sky130A"
)
if mismatches:
status = "MISMATCH"
except Exception:
status = "FAILED"
f.write("Failed to verify sky130A.")
f.write("\n")
final_report += "---\nPDK Version Verification Status: %s\n%s" % (
status,
f.getvalue(),
)
try:
git_log = subprocess.check_output(
[
"git",
"log",
r"--format=%h %cI %s - %an - %gs (%D)",
"-n",
"3",
]
).decode("utf8")
final_report += "---\nGit Log (Last 3 Commits)\n\n" + git_log
remotes = subprocess.check_output(["git", "remote", "-v", "show"]).decode(
"utf8"
)
final_report += "---\nGit Remotes\n\n" + remotes
except subprocess.CalledProcessError:
pass
print(final_report, end="")
# Entry Point
def main():
args = sys.argv[1:]
commands = {
"tool-list": tool_list,
"docker-config": docker_config,
"issue-survey": issue_survey,
}
if len(args) < 1 or args[0] not in commands.keys():
print(
"Usage: %s (%s)" % (sys.argv[0], "|".join(commands.keys())), file=sys.stderr
)
sys.exit(os.EX_USAGE)
commands[args[0]]()
if __name__ == "__main__":
main()