This repository has been archived by the owner on Apr 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
amp_cli.py
290 lines (267 loc) · 10.9 KB
/
amp_cli.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
import docker
import os
import subprocess
import click
def write_log_to_file(file_name, log_generator):
with open(file_name, "w") as f:
for log in log_generator:
try:
f.write(log["stream"])
except:
pass
@click.group()
def cli():
"""This is the official AMP Software Sub-Team CLI Tool that helps you
develop on AMP_ASSv2 using docker containers in your current environment.
In order to run some of the functions, you must be in the root directory
of the AMP_ASSv2 repo. If there are any features you would like to see,
or bugs that need to be fixed, feel free to open an issue or PR!
"""
pass
@cli.command()
@click.option("-b",
"--build",
is_flag=True,
help="Build the frame container, if not up-to-date.")
@click.option(
"--display",
default="mesa",
type=click.Choice(["mesa", "nvidia"], case_sensitive=False),
help="Choose display driver option.",
)
def devel(build: bool, display: str):
"""Develop with current directory mounted on the container."""
# Initialize docker client environment
try:
client = docker.from_env()
except Exception as exception:
raise click.ClickException(
f"Error: {exception}\nRan into an error, look at the help menu.")
cwd = os.getcwd()
tag = "amp-devel:frame-desktop"
# Make sure current directory is AMP_ASSv2
if cwd.split("/")[-1] != "AMP_ASSv2":
raise click.ClickException(
click.style(
"Devel only works when executed from the root directory of the AMP_ASSv2 local repo.",
fg="red",
))
if build:
subprocess.run(["bash", "-c", "mkdir -p logs"])
click.echo("Building containers...")
click.echo("Step 1/2: Building amp-devel:noetic-desktop.")
try:
_, logs = client.images.build(
path=cwd,
tag="amp-devel:noetic-desktop",
dockerfile=(cwd + "/docker/desktop.Dockerfile"),
)
click.secho(" ---> Finished building amp-devel:noetic-desktop.",
fg="yellow")
except Exception as exception:
write_log_to_file("logs/devel-build-desktop.log", logs)
click.secho(" ---> Finished saving logs.", fg="red")
raise click.ClickException(
f"Error: {exception}\nRan into an error, look at the help menu."
)
write_log_to_file("logs/devel-build-desktop.log", logs)
click.secho(" ---> Finished saving logs.", fg="yellow")
click.echo(f"Step 2/2: Building {tag}.")
try:
_, logs = client.images.build(
path=cwd,
tag=tag,
dockerfile=(cwd + "/docker/frame.Dockerfile"))
click.secho(f" ---> Finished building {tag}.", fg="yellow")
except Exception as exception:
write_log_to_file("logs/devel-build-frame.log", logs)
click.secho(" ---> Finished saving logs.", fg="red")
raise click.ClickException(
f"Error: {exception}\nRan into an error, look at the help menu."
)
write_log_to_file("logs/devel-build-frame.log", logs)
click.secho(" ---> Finished saving logs.", fg="yellow")
try:
subprocess.run(["bash", "-c", "mkdir -p amp-devel/build"])
subprocess.run(["bash", "-c", "mkdir -p amp-devel/devel"])
# Run the container
click.echo(f"Running {tag}...")
if display == "mesa":
container = client.containers.run(
tag,
stdin_open=True,
tty=True,
auto_remove=True,
name="amp-assv2-scratch",
environment={
"DISPLAY": os.getenv("DISPLAY"),
"QT_X11_NO_MITSHM": 1,
},
devices=["/dev/dri:/dev/dri"],
volumes={
"/tmp/.X11-unix": {
"bind": "/tmp/.X11-unix",
"mode": "rw",
},
cwd + "/src": {
"bind": "/amp_ws/src",
"mode": "rw",
},
cwd + "/amp-devel/build": {
"bind": "/amp_ws/build",
"mode": "rw",
},
cwd + "/amp-devel/devel": {
"bind": "/amp_ws/devel",
"mode": "rw",
},
},
privileged=True,
detach=True,
)
# TODO: NVidia settings
else:
raise click.ClickException("NVidia config WIP")
# Attach to the container
click.echo("Use [<Ctrl> + D] to stop and exit the container.")
click.secho("Note: Rosdep packages are not installed in devel",
fg="yellow")
click.secho('Run "apt update && rosdep install --from-paths src -iry"',
fg="yellow")
click.secho(
f"Entering container {container.name}:{container.short_id}.",
fg="blue")
subprocess.run(["bash", "-c", "xhost +"])
subprocess.run(["bash", "-c", f"docker attach {container.id}"])
subprocess.run(["bash", "-c", "xhost -"])
click.secho("Successfully exited and stopped container.", fg="green")
except docker.errors.ImageNotFound:
raise click.ClickException(
f'Unable to find {tag}, maybe try running with "--build" flag?')
except Exception as exception:
raise click.ClickException(
f"Error: {exception}\nRan into an error, look at the help menu.")
@cli.command()
@click.option("-b",
"--build",
is_flag=True,
help="Build the corresponding containers.")
@click.option(
"--display",
default="mesa",
show_default=True,
type=click.Choice(["mesa", "nvidia"], case_sensitive=False),
help="Choose display driver option.",
)
def scratch(build: bool, display: str):
"""Develop on a fully isolated container."""
# Initialize docker client environment
try:
client = docker.from_env()
except Exception as exception:
raise click.ClickException(
f"Error: {exception}\nRan into an error, look at the help menu.")
cwd = os.getcwd()
tag = f"amp-devel:{display}-build"
dockerfile = cwd + f"/docker/{display}.Dockerfile"
# Build container
if build:
# Make sure current directory is AMP_ASSv2
if cwd.split("/")[-1] != "AMP_ASSv2":
raise click.ClickException(
click.style(
"Build only works inside root directory of the AMP_ASSv2 local repository.",
fg="red",
))
subprocess.run(["bash", "-c", "mkdir -p logs"])
click.echo("Building containers...")
click.echo("Step 1/3: Building amp-devel:noetic-desktop.")
try:
_, logs = client.images.build(
path=cwd,
tag="amp-devel:noetic-desktop",
dockerfile=(cwd + "/docker/desktop.Dockerfile"),
)
click.secho(" ---> Finished building amp-devel:noetic-desktop.",
fg="yellow")
except Exception as exception:
write_log_to_file("logs/scratch-build-desktop.log", logs)
click.secho(" ---> Finished saving logs.", fg="red")
raise click.ClickException(
f"Error: {exception}\nRan into an error, look at the help menu."
)
write_log_to_file("logs/scratch-build-desktop.log", logs)
click.secho(" ---> Finished saving logs.", fg="yellow")
click.echo("Step 2/3: Building amp-devel:frame-desktop.")
try:
_, logs = client.images.build(
path=cwd,
tag="amp-devel:frame-desktop",
dockerfile=(cwd + "/docker/frame.Dockerfile"),
)
click.secho(" ---> Finished building amp-devel:frame-desktop.",
fg="yellow")
except Exception as exception:
write_log_to_file("logs/scratch-build-frame.log", logs)
click.secho(" ---> Finished saving logs.", fg="red")
raise click.ClickException(
f"Error: {exception}\nRan into an error, look at the help menu."
)
write_log_to_file("logs/scratch-build-frame.log", logs)
click.secho(" ---> Finished saving logs.", fg="yellow")
click.echo(f"Step 3/3: Building {tag}.")
try:
_, logs = client.images.build(path=cwd,
tag=tag,
dockerfile=dockerfile)
click.secho(f" ---> Finished building {tag}.", fg="yellow")
except Exception as exception:
write_log_to_file(f"logs/scratch-build-{display}.log", logs)
click.secho(" ---> Finished saving logs.", fg="red")
raise click.ClickException(
f"Error: {exception}\nRan into an error, look at the help menu."
)
write_log_to_file(f"logs/scratch-build-{display}.log", logs)
click.secho(" ---> Finished saving logs.", fg="yellow")
try:
# Run the container
click.echo(f"Running {tag}...")
if display == "mesa":
container = client.containers.run(
tag,
stdin_open=True,
tty=True,
auto_remove=True,
name="amp-assv2-scratch",
environment={
"DISPLAY": os.getenv("DISPLAY"),
"QT_X11_NO_MITSHM": 1,
},
devices=["/dev/dri:/dev/dri"],
volumes={
"/tmp/.X11-unix": {
"bind": "/tmp/.X11-unix",
"mode": "rw",
},
},
privileged=True,
detach=True,
)
# TODO: NVidia settings
else:
raise click.ClickException("NVidia config WIP")
# Attach to the container
click.echo("Use [<Ctrl> + D] to stop and exit the container.")
click.secho(
f"Entering container {container.name}:{container.short_id}.",
fg="blue")
subprocess.run(["bash", "-c", "xhost +"])
subprocess.run(["bash", "-c", f"docker attach {container.id}"])
subprocess.run(["bash", "-c", "xhost -"])
click.secho("Successfully exited and stopped container.", fg="green")
except docker.errors.ImageNotFound:
raise click.ClickException(
f'Unable to find {tag}, maybe try running with "--build" flag?')
except Exception as exception:
raise click.ClickException(
f"Error: {exception}\nRan into an error, look at the help menu.")