mirror of
https://github.com/daylinmorgan/viv.git
synced 2024-11-09 19:13:14 -06:00
refactor: splitout script code
This commit is contained in:
parent
7932e13de6
commit
ec123b0d7a
1 changed files with 71 additions and 66 deletions
|
@ -52,7 +52,7 @@ from typing import (
|
||||||
from urllib.error import HTTPError
|
from urllib.error import HTTPError
|
||||||
from urllib.request import urlopen
|
from urllib.request import urlopen
|
||||||
|
|
||||||
__version__ = "23.5a6-4-g4d75feb-dev"
|
__version__ = "23.5a6-5-g7932e13-dev"
|
||||||
|
|
||||||
|
|
||||||
class Spinner:
|
class Spinner:
|
||||||
|
@ -786,8 +786,10 @@ class ViVenv:
|
||||||
path: Path | None = None,
|
path: Path | None = None,
|
||||||
skip_load: bool = False,
|
skip_load: bool = False,
|
||||||
metadata: Meta | None = None,
|
metadata: Meta | None = None,
|
||||||
|
skip_validation: bool = False,
|
||||||
) -> None:
|
) -> None:
|
||||||
self.loaded = False
|
self.loaded = False
|
||||||
|
if not skip_validation:
|
||||||
spec = self._validate_spec(spec)
|
spec = self._validate_spec(spec)
|
||||||
id = id if id else get_hash(spec, track_exe)
|
id = id if id else get_hash(spec, track_exe)
|
||||||
|
|
||||||
|
@ -1025,14 +1027,14 @@ def uses_viv(txt: str) -> bool:
|
||||||
re.search(
|
re.search(
|
||||||
"""
|
"""
|
||||||
^(?!\#)\s*
|
^(?!\#)\s*
|
||||||
__import__\(\s*["']viv["']\s*\).use\(.*
|
(?:__import__\(\s*["']viv["']\s*\))
|
||||||
|
|
|
|
||||||
from\ viv\ import\ use
|
(?:from\ viv\ import\ use)
|
||||||
|
|
|
|
||||||
import\ viv
|
(?:import\ viv)
|
||||||
""",
|
""",
|
||||||
txt,
|
txt,
|
||||||
re.VERBOSE,
|
re.VERBOSE | re.MULTILINE,
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -1370,27 +1372,9 @@ class Viv:
|
||||||
|
|
||||||
make_executable(output)
|
make_executable(output)
|
||||||
|
|
||||||
def run(
|
def _run_script(
|
||||||
self,
|
self, spec: List[str], script: str, keep: bool, rest: List[str]
|
||||||
reqs: List[str],
|
|
||||||
requirements: Path,
|
|
||||||
script: str,
|
|
||||||
keep: bool,
|
|
||||||
rest: List[str],
|
|
||||||
bin: str,
|
|
||||||
) -> None:
|
) -> None:
|
||||||
"""\
|
|
||||||
run an app/script with an on-demand venv
|
|
||||||
|
|
||||||
examples:
|
|
||||||
viv r pycowsay -- "viv isn't venv\!"
|
|
||||||
viv r rich -b python -- -m rich
|
|
||||||
viv r -s <remote python script>
|
|
||||||
"""
|
|
||||||
|
|
||||||
spec = combined_spec(reqs, requirements)
|
|
||||||
|
|
||||||
if script:
|
|
||||||
env = os.environ
|
env = os.environ
|
||||||
name = script.split("/")[-1]
|
name = script.split("/")[-1]
|
||||||
|
|
||||||
|
@ -1435,10 +1419,30 @@ class Viv:
|
||||||
vivenv.touch()
|
vivenv.touch()
|
||||||
vivenv.meta.write()
|
vivenv.meta.write()
|
||||||
|
|
||||||
sys.exit(
|
sys.exit(subprocess.run([vivenv.python, scriptpath, *rest]).returncode)
|
||||||
subprocess.run([vivenv.python, scriptpath, *rest]).returncode
|
|
||||||
)
|
|
||||||
|
|
||||||
|
def run(
|
||||||
|
self,
|
||||||
|
reqs: List[str],
|
||||||
|
requirements: Path,
|
||||||
|
script: str,
|
||||||
|
keep: bool,
|
||||||
|
rest: List[str],
|
||||||
|
bin: str,
|
||||||
|
) -> None:
|
||||||
|
"""\
|
||||||
|
run an app/script with an on-demand venv
|
||||||
|
|
||||||
|
examples:
|
||||||
|
viv r pycowsay -- "viv isn't venv\!"
|
||||||
|
viv r rich -b python -- -m rich
|
||||||
|
viv r -s <remote python script>
|
||||||
|
"""
|
||||||
|
|
||||||
|
spec = combined_spec(reqs, requirements)
|
||||||
|
|
||||||
|
if script:
|
||||||
|
self._run_script(spec, script, keep, rest)
|
||||||
else:
|
else:
|
||||||
_, bin = self._pick_bin(reqs, bin)
|
_, bin = self._pick_bin(reqs, bin)
|
||||||
vivenv = ViVenv(spec)
|
vivenv = ViVenv(spec)
|
||||||
|
@ -1461,11 +1465,11 @@ class Viv:
|
||||||
else:
|
else:
|
||||||
vivenv.create()
|
vivenv.create()
|
||||||
vivenv.install_pkgs()
|
vivenv.install_pkgs()
|
||||||
|
|
||||||
vivenv.touch()
|
vivenv.touch()
|
||||||
vivenv.meta.write()
|
vivenv.meta.write()
|
||||||
|
sys.exit(
|
||||||
sys.exit(subprocess.run([vivenv.path / "bin" / bin, *rest]).returncode)
|
subprocess.run([vivenv.path / "bin" / bin, *rest]).returncode
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
class Arg:
|
class Arg:
|
||||||
|
@ -1661,10 +1665,11 @@ class Cli:
|
||||||
self.parsers[grp].add_argument(*arg.args, **arg.kwargs)
|
self.parsers[grp].add_argument(*arg.args, **arg.kwargs)
|
||||||
|
|
||||||
def _validate_args(self, args: Namespace) -> None:
|
def _validate_args(self, args: Namespace) -> None:
|
||||||
if args.func.__name__ in ("freeze", "shim"):
|
name = args.func.__name__
|
||||||
|
if name in ("freeze", "shim"):
|
||||||
if not args.reqs:
|
if not args.reqs:
|
||||||
error("must specify a requirement")
|
error("must specify a requirement")
|
||||||
if args.func.__name__ in ("freeze", "shim"):
|
|
||||||
if not self.viv.local_source and not (args.standalone or args.path):
|
if not self.viv.local_source and not (args.standalone or args.path):
|
||||||
log.warning(
|
log.warning(
|
||||||
"failed to find local copy of `viv` "
|
"failed to find local copy of `viv` "
|
||||||
|
@ -1679,7 +1684,7 @@ class Cli:
|
||||||
if args.path and args.standalone:
|
if args.path and args.standalone:
|
||||||
error("-p/--path and -s/--standalone are mutually exclusive")
|
error("-p/--path and -s/--standalone are mutually exclusive")
|
||||||
|
|
||||||
if args.func.__name__ == "manage_install" and self.viv.local_source:
|
if name == "manage_install" and self.viv.local_source:
|
||||||
error(
|
error(
|
||||||
f"found existing viv installation at {self.viv.local_source}",
|
f"found existing viv installation at {self.viv.local_source}",
|
||||||
"use "
|
"use "
|
||||||
|
@ -1687,7 +1692,7 @@ class Cli:
|
||||||
+ " to modify current installation.",
|
+ " to modify current installation.",
|
||||||
)
|
)
|
||||||
|
|
||||||
if args.func.__name__ == "manage_update":
|
if name == "manage_update":
|
||||||
if not self.viv.local_source:
|
if not self.viv.local_source:
|
||||||
error(
|
error(
|
||||||
a.style("viv manage update", "bold")
|
a.style("viv manage update", "bold")
|
||||||
|
@ -1699,11 +1704,12 @@ class Cli:
|
||||||
a.style("viv manage update", "bold")
|
a.style("viv manage update", "bold")
|
||||||
+ " shouldn't be used with a git-based installation",
|
+ " shouldn't be used with a git-based installation",
|
||||||
)
|
)
|
||||||
if args.func.__name__ == "run":
|
|
||||||
|
if name == "run":
|
||||||
if not (args.reqs or args.script):
|
if not (args.reqs or args.script):
|
||||||
error("must specify a requirement or --script")
|
error("must specify a requirement or --script")
|
||||||
|
|
||||||
if args.func.__name__ == "info":
|
if name == "info":
|
||||||
if args.use_json and args.path:
|
if args.use_json and args.path:
|
||||||
error("--json and -p/--path are mutually exclusive")
|
error("--json and -p/--path are mutually exclusive")
|
||||||
|
|
||||||
|
@ -1758,7 +1764,6 @@ class Cli:
|
||||||
for k in self.cmd_arg_group_map[f"{cmd}|{subcmd}"]
|
for k in self.cmd_arg_group_map[f"{cmd}|{subcmd}"]
|
||||||
],
|
],
|
||||||
**kwargs,
|
**kwargs,
|
||||||
# ).set_defaults(func=getattr(self.viv, cmd), subcmd=subcmd)
|
|
||||||
).set_defaults(func=getattr(self.viv, f"{cmd}_{subcmd}"))
|
).set_defaults(func=getattr(self.viv, f"{cmd}_{subcmd}"))
|
||||||
|
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in a new issue