forked from SynthstromAudible/DelugeFirmware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dbt.py
140 lines (109 loc) · 3.93 KB
/
dbt.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
#!/usr/bin/env python
import argparse
import importlib
import ntpath
import os
import subprocess
import sys
import textwrap
from distutils.dir_util import copy_tree
from pathlib import Path
PROG_NAME = sys.argv[0].split(".")[0]
SCRIPTS_DIR = Path("./scripts")
TASKS_DIR = SCRIPTS_DIR / "tasks"
DBT_DEBUG_DIR = SCRIPTS_DIR / "debug"
os.environ["DBT_DEBUG_DIR"] = str(DBT_DEBUG_DIR)
os.environ["DELUGE_FW_ROOT"] = str(Path(".").resolve())
if not "DBT_TOOLCHAIN_PATH" in os.environ:
os.environ["DBT_TOOLCHAIN_PATH"] = os.environ["DELUGE_FW_ROOT"]
sys.path.append(str(TASKS_DIR))
sys.path.insert(0, str(SCRIPTS_DIR))
import util
def setup():
if sys.platform == "win32" or (sys.platform == "cosmo" and cosmo.kernel == "nt"):
dbtenvcmd = str(SCRIPTS_DIR / "toolchain" / "dbtenv.cmd").replace(
os.sep, ntpath.sep
)
dbtenv = util.get_environment_from_batch_command([dbtenvcmd, "env"])
# print("Setup Windows DBT Env")
else:
dbtenvcmd = str(SCRIPTS_DIR / "toolchain" / "dbtenv.sh").encode()
subprocess.run([b"bash", dbtenvcmd])
def setup_ide_configs():
if not os.path.exists(".vscode"):
copy_tree("IDE_Configs/vscode", ".vscode")
if not os.path.exists(".idea"):
copy_tree("IDE_Configs/clion", ".idea")
def print_tasks_usage(tasks):
grouped = {}
for name, stem in tasks.items():
try:
module = importlib.import_module(stem)
argparser = module.argparser()
except:
argparser = argparse.ArgumentParser(
prog=name, description="FAILED TO LOAD MODULE"
)
try:
group = argparser.group
except AttributeError:
group = "Ungrouped"
grouped[group] = grouped.get(group, []) + [argparser]
for group, argparsers in sorted(grouped.items()):
print(textwrap.indent(group + ":", " " * 2))
for argparser in argparsers:
# get our argparsers (lazy import)
usage: str = argparser.format_usage().strip().removeprefix("usage: ")
# usage = f"{PROG_NAME} " + usage
print(textwrap.indent(usage, " " * 4))
if argparser.description:
print(textwrap.indent(argparser.description, " " * 6))
def print_help(argparser: argparse.ArgumentParser, tasks: dict):
argparser.print_help()
print("")
print("subcommands: ")
print_tasks_usage(tasks)
def main() -> int:
# Create the main parser
parser = argparse.ArgumentParser(
prog=f"{PROG_NAME}" or "task",
add_help=False,
)
parser.add_argument(
"-h", "--help", help="print this help message", action="store_true"
)
parser.add_argument("subcommand", nargs="?", metavar="<subcommand>")
# Specify the folder containing the task files
task_files = TASKS_DIR.glob("task-*.py")
# copy vscode config to .vscode if it doesn't exist
setup_ide_configs()
tasks = {}
for task_file in task_files:
task = task_file.stem
task_name = task.replace("task-", "")
tasks[task_name] = task
# is the subcommand in our list of tasks?
if len(sys.argv) > 1 and sys.argv[1] in tasks:
task_name = sys.argv[1]
# Remove our own program name/path from the arguments
if sys.argv[1:]:
sys.argv = sys.argv[1:]
# Call out to our task. (lazy import)
retcode = importlib.import_module(tasks[task_name]).main()
sys.exit(retcode)
args = parser.parse_args()
# nothing on the command line
if args.help or len(sys.argv) == 1:
print_help(parser, tasks)
exit()
if args.subcommand not in tasks:
print(f"{PROG_NAME}: '{args.subcommand}' is not a valid subcommand.")
print("")
print("Valid subcommands:")
print_tasks_usage(tasks)
if __name__ == "__main__":
try:
retcode = main()
sys.exit(retcode)
except KeyboardInterrupt:
sys.exit(130)