-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcli.py
95 lines (74 loc) · 3.11 KB
/
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
import click
import os
import shutil
import subprocess
import sys
COMPILE_CMD = "/usr/local/bin/g++-13 -x c++ -O2 -std=c++17 -D__USE_MINGW_ANSI_STDIO=0 -Wall" # -DLOCAL"
CPP_TEMPLATE_PATH = "templates/template.cpp"
PYTHON_TEMPLATE_PATH = "templates/template.py"
@click.group()
def cli():
pass
def create(problemset, letter, tests, python):
if not os.path.exists(f"./{problemset}"):
os.mkdir(f"./{problemset}")
click.echo(f"Created dir ./{problemset}")
template_path = PYTHON_TEMPLATE_PATH if python else CPP_TEMPLATE_PATH
problem_path = f"./{problemset}/{letter}.{'py' if python else 'cpp'}"
if not os.path.exists(problem_path):
shutil.copyfile(template_path, problem_path)
click.echo(f"Created template {problem_path}")
for i in range(tests):
test_path = f"./{problemset}/{letter}_input{i}.txt"
if not os.path.exists(test_path):
open(test_path, "a").close()
click.echo(f"Created empty {test_path}")
@click.command("create")
@click.argument("problemset")
@click.argument("letter")
@click.option("--tests", default=1, help="Number of empty test input files to create")
@click.option("--python", is_flag=True, default=False, help="Create a Python template instead of CPP")
def create_cmd(problemset, letter, tests, python):
create(problemset, letter, tests, python)
def build(problemset, letter):
command = f"{COMPILE_CMD} ./{problemset}/{letter}.cpp -o /tmp/{problemset}-{letter}.out"
click.echo(command)
cp = subprocess.run(command, shell=True)
if cp.returncode != 0:
sys.exit(cp.stdout)
click.echo(f"Compiled ./{problemset}/{letter}.cpp.")
click.echo(f"Bin path: /tmp/{problemset}-{letter}.out")
@click.command("build")
@click.argument("problemset")
@click.argument("letter")
def build_cmd(problemset, letter):
build(problemset, letter)
def test(problemset, letter, python):
exec_cmd = f"python3 ./{problemset}/{letter}.py" if python else f"/tmp/{problemset}-{letter}.out"
input_files = subprocess.run(f"ls ./{problemset} | grep '{letter}_input'",
shell=True, capture_output=True, text=True).stdout
test_inputs = [filename for filename in input_files.split('\n') if filename]
for input_file in test_inputs:
cmd = f"cat ./{problemset}/{input_file} | {exec_cmd}"
click.echo(f"{cmd}")
subprocess.run(cmd, shell=True)
print(" ")
@click.command("test")
@click.argument("problemset")
@click.argument("letter")
@click.option("--python", is_flag=True, default=False, help="Look for Python executable instead of CPP")
def test_cmd(problemset, letter, python):
test(problemset, letter, python)
@click.command("retry")
@click.argument("problemset")
@click.argument("letter")
@click.option("--python", is_flag=True, default=False, help="Look for Python executable instead of CPP")
def retry_cmd(problemset, letter, python):
build(problemset, letter)
test(problemset, letter, python)
if __name__ == '__main__':
cli.add_command(build_cmd)
cli.add_command(create_cmd)
cli.add_command(retry_cmd)
cli.add_command(test_cmd)
cli()