-
Notifications
You must be signed in to change notification settings - Fork 0
/
octoprint-venv-tool
executable file
·330 lines (251 loc) · 11.5 KB
/
octoprint-venv-tool
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
#!/bin/env python3
import argparse
import configparser
import glob
import json
import os
import shutil
import subprocess
import sys
import tempfile
import traceback
import typing
import urllib.request
MIN_PYTHON_VERSION = "3.7"
MAX_PYTHON_VERSION = None
DEFAULT_PACKAGES = ("pip", "wheel", "OctoPrint")
KNOWN_UNAVAILABLE_PLUGINS = ("firmware_check", "file_check", "pi_support")
NO_COLOR = os.environ.get("NO_COLOR") == "1"
#--- Helpers --------------------------------------------------------
BASE = '\033['
class TextColors:
RED = BASE + '31m'
GREEN = BASE + '32m'
YELLOW = BASE + '33m'
WHITE = BASE + '37m'
DEFAULT = BASE + '39m'
class TextStyles:
BRIGHT = BASE + '1m'
NORMAL = BASE + '22m'
def _ansi_support() -> bool:
for handle in (sys.stdout, sys.stderr):
if (hasattr(handle, "isatty") and handle.isatty() and sys.platform != "win32") or os.environ.get("TERM") == "ANSI":
continue
return False
return True
_ansi_supported = _ansi_support()
def _print(*msg, color=TextColors.DEFAULT, style=None, end="\n", stream=sys.stdout):
if NO_COLOR or not _ansi_supported:
print(*msg, end=end, file=stream)
return
if not style:
print(color, " ".join(msg), TextColors.DEFAULT, sep="", end=end, file=stream)
else:
print(color, style, " ".join(msg), TextColors.DEFAULT, TextStyles.NORMAL, sep="", end=end, file=stream)
def _print_cli_result(result):
if result.stdout:
_print(f"stdout: {result.stdout}")
if result.stderr:
_print(f"stderr: {result.stderr}", color=TextColors.RED, stream=sys.stderr)
def _cli(*args, silent: bool = False):
if not silent:
_print(f"Running: {' '.join(args)}", color=TextColors.YELLOW)
result = None
try:
result = subprocess.run(args, capture_output=True, check=True, encoding="utf-8")
except Exception:
if result:
_print_cli_result(result)
raise
if not silent:
_print_cli_result(result)
_print("... done.", color=TextColors.GREEN)
return result
def _pip_install(python: str, package: str, update=False, silent=False) -> None:
_print(f"Installing {package}...", style=TextStyles.BRIGHT if not silent else TextStyles.NORMAL)
if update:
_cli(python, "-m", "pip", "install", "-U", package, silent=silent)
else:
_cli(python, "-m", "pip", "install", package, silent=silent)
#--- Plugin Export --------------------------------------------------
REPO_URL = "https://plugins.octoprint.org/plugins.json"
class CaseSensitiveConfigParser(configparser.ConfigParser):
optionxform = staticmethod(str)
def ids_for_txt(path: str) -> typing.Optional[typing.List[str]]:
parser = CaseSensitiveConfigParser()
try:
parser.read(path)
if "octoprint.plugin" in parser:
return list(parser["octoprint.plugin"].keys())
except configparser.ParsingError as exc:
_print(f"Parsing error while reading {path}: {exc}", color=TextColors.RED, file=sys.stderr)
def ids_for_venv(venv: str) -> None:
ids = set()
entries = glob.glob(venv + "/**/site-packages/*.dist-info/entry_points.txt", recursive=True)
for entry in entries:
plugin_ids = ids_for_txt(entry)
if plugin_ids:
ids.update(plugin_ids)
return ids
def fetch_repo_plugins() -> dict:
plugins = {}
try:
with urllib.request.urlopen(REPO_URL) as f:
repo = json.loads(f.read().decode("utf-8"))
except Exception as exc:
raise RuntimeError("Error fetching plugins from repository") from exc
for entry in repo:
plugins[entry["id"]] = entry
return plugins
def create_export(venv, output = None) -> None:
ids = ids_for_venv(venv)
repo_plugins = fetch_repo_plugins()
export = []
for key in ids:
data = repo_plugins.get(key)
if not data:
if key not in KNOWN_UNAVAILABLE_PLUGINS:
_print(f"Plugin '{key}' is not available on the repository, skipping", color=TextColors.YELLOW, stream=sys.stderr)
continue
export.append({
"key": key,
"name": data["title"],
"url": data["homepage"],
"archive": data["archive"]
})
json_str = json.dumps(export)
if not output:
_print(json_str)
else:
with open(output, "w", encoding="utf-8") as f:
f.write(json_str)
#--- Plugins install from export ------------------------------------
def install_export(venv: str, export: str, silent=True) -> None:
python = None
for option in ("bin", "scripts"):
p = os.path.join(venv, option, "python")
if os.path.exists(p):
python = p
if not python:
raise RuntimeError(f"Could not determine python command for venv {venv}")
with open(export, "r", encoding="utf-8") as f:
plugins = json.load(f)
if not plugins:
return
for plugin in plugins:
try:
_pip_install(python, plugin["archive"], silent=silent)
except RuntimeError as exc:
_print(f"Installing plugin {plugin['key']} from {plugin['archive']} failed: {exc}", color=TextColors.RED, stream=sys.stderr)
#--- Create venv ----------------------------------------------------
def _validate_python(python):
from packaging.version import parse as parse_version
result = _cli(python, "-c", "import sys; v=sys.version_info; print(f'{v.major}.{v.minor}.{v.micro}')", silent=True)
python_version = parse_version(result.stdout.strip())
if (
(MIN_PYTHON_VERSION and python_version < parse_version(MIN_PYTHON_VERSION)) or
(MAX_PYTHON_VERSION and python_version > parse_version(MAX_PYTHON_VERSION))
):
raise RuntimeError(f"Python at {python} has version {str(python_version)} which is unsupported")
_print(f"Python at {python} has version {str(python_version)}")
return python_version
def create_venv(venv, python=None, export=None, silent=True):
if python is None:
python = sys.executable
_validate_python(python)
_print(f"Creating venv from {python}...", style=TextStyles.BRIGHT if not silent else TextStyles.NORMAL)
_cli(python, "-m", "venv", venv, silent=True)
if DEFAULT_PACKAGES:
venv_python = os.path.join(venv, "scripts", "python.exe") if sys.platform == "win32" else os.path.join(venv, "bin", "python")
if not os.path.exists(venv_python):
raise RuntimeError(f"Can't located python executable in venv {venv}")
for package in DEFAULT_PACKAGES:
_pip_install(venv_python, package, update=True, silent=silent)
if export:
install_export(venv, export)
#--- Recreate venv --------------------------------------------------
def backup_venv(venv, backup=None):
if backup is None:
backup = f"{venv}.bck"
shutil.move(venv, backup)
def recreate_venv(venv, python=None, backup=None, silent=True):
if backup is None:
backup = f"{venv}.bck"
with tempfile.NamedTemporaryFile(prefix="plugin-export-", suffix=".json", delete=False) as f:
try:
f.close()
style = TextStyles.BRIGHT if not silent else TextStyles.NORMAL
_print(f"Creating plugin export at {f.name}...", style=style)
create_export(venv, output=f.name)
print("")
_print(f"Backing up existing venv to {backup}...", style=style)
backup_venv(venv, backup=backup)
print("")
_print(f"Creating new venv at {venv} using python at {python}", style=style)
create_venv(venv, python=python, silent=silent)
print("")
_print(f"Installing plugin export {f.name} into recreated venv {venv}...", style=style)
install_export(venv, export=f.name, silent=silent)
print("")
except Exception:
if os.path.exists(backup):
_print("Restoring backed up venv...", color=TextColors.RED, style=style, stream=sys.stderr)
if os.path.exists(venv):
shutil.rmtree(venv)
os.rename(backup, venv)
raise
finally:
if os.path.exists(f.name):
os.remove(f.name)
_print(f"Recreation of {venv} successful, removing backup...", style=style)
shutil.rmtree(backup)
_print("... done!")
print()
_print(f"{venv} has been recreated with {python}!", color=TextColors.GREEN, style=style)
#--- Main -----------------------------------------------------------
def get_parser() -> argparse.ArgumentParser:
parser = argparse.ArgumentParser(description="Various tools for OctoPrint's venvs")
parser.add_argument("--verbose", action="store_true", help="verbose output")
subparsers = parser.add_subparsers(dest="subcommand")
# parser for export-plugins command
export_parser = subparsers.add_parser("export-plugins", help="export a list of all OctoPrint plugins installed into the venv that are available on the repo.")
export_parser.add_argument("venv", type=str, help="path of the venv")
export_parser.add_argument("--output", "-o", type=str, help="optional path for the export, if unset stdout will be used", default=None)
# parser for install-plugins command
install_parser = subparsers.add_parser("install-plugins", help="install plugins from an export into a provided venv.")
install_parser.add_argument("export", type=str, help="path of the export")
install_parser.add_argument("venv", type=str, help="path of the venv")
# parser for create-venv command
create_parser = subparsers.add_parser("create-venv", help="create an OctoPrint venv, installing an optional plugin export")
create_parser.add_argument("--export", type=str, help="path of the export, optional", default=None)
create_parser.add_argument("--python", type=str, help="python binary to use for creating the venv, optional, if not provided the version used to run the script will be used", default=None)
create_parser.add_argument("venv", type=str, help="path of the venv")
# parser for recreate-venv command
recreate_parser = subparsers.add_parser("recreate-venv", help="recreate an OctoPrint venv, attempting to migrate all plugins installed therein")
recreate_parser.add_argument("--python", type=str, help="python binary to use for creating the venv, optional, if not provided the version used to run the script will be used", default=None)
recreate_parser.add_argument("venv", type=str, help="path of the venv")
return parser
if __name__ == "__main__":
parser = get_parser()
params = sys.argv
if params[0].endswith("python"):
params = params[1:]
args = parser.parse_args(params[1:])
subcommand = args.subcommand
try:
if subcommand == "export-plugins":
create_export(args.venv, args.output)
elif subcommand == "install-plugins":
install_export(args.venv, args.export, silent=not args.verbose)
elif subcommand == "create-venv":
create_venv(args.venv, python=args.python, export=args.export, silent=not args.verbose)
elif subcommand == "recreate-venv":
recreate_venv(args.venv, python=args.python, silent=not args.verbose)
else:
parser.print_help()
parser.exit()
except Exception as exc:
_print(f"Error running {subcommand}: {exc}", color=TextColors.RED, style=TextStyles.BRIGHT, stream=sys.stderr)
if args.verbose:
_print(traceback.format_exc(), color=TextColors.RED, stream=sys.stderr)
sys.exit(-2)