-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcf2toj.py
193 lines (160 loc) · 6.79 KB
/
cf2toj.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
import os
import copy
import json
import asyncio
import logging
import argparse
import subprocess
import xml.etree.ElementTree as ET
import collections
import random
import string
from function import makedirs, copyfile, rmdir, run_and_wait_process
def generate_random_file_name(length=8):
return ''.join(random.choices(string.ascii_lowercase + string.digits, k=length))
def replace_in_file(file_path, search_text, replace_text):
try:
with open(file_path, 'r', encoding='utf-8') as file:
content = file.read()
content = content.replace(search_text, replace_text)
with open(file_path, 'w', encoding='utf-8') as file:
file.write(content)
except FileNotFoundError:
logging.warning(f"File not found: {file_path}")
except Exception as e:
logging.error(f"An error occurred while processing the file {file_path}: {str(e)}")
def check_sed():
try:
subprocess.run(['sed', '--version'], check=True, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
return True
except (subprocess.CalledProcessError, FileNotFoundError):
return False
async def main():
args_parser = argparse.ArgumentParser(description='cf2toj')
args_parser.add_argument('inputpath', type=str, help='輸入資料夾')
args_parser.add_argument('outputpath', type=str, nargs='?', help='輸出資料夾')
args_parser.add_argument('-d', '--debug', action='store_const', dest='loglevel', const=logging.DEBUG)
args_parser.add_argument('-c', '--clear-output-directory', action='store_const', dest='is_clear_output_dir', const=True, help='壓縮完成後刪除輸出資料夾')
args_parser.add_argument('-e', '--enable-dependency', action='store_const', dest='enable_dependency', const=True, help='是否啟用polygon子任務依賴')
args_parser.set_defaults(loglevel=logging.INFO)
args = args_parser.parse_args()
inputpath = args.inputpath
outputpath = args.outputpath
logging.basicConfig(level=args.loglevel, format='%(asctime)s %(levelname)s %(message)s')
if args.is_clear_output_dir:
tmp_outputpath = os.path.join(outputpath, generate_random_file_name())
logging.info("Use random temp directory")
logging.info(f"Output filename is {tmp_outputpath}.tar.xz")
else:
tmp_outputpath = outputpath
with open(os.path.join(inputpath, 'problem.xml'), encoding='utf-8') as xml_f:
xml = ET.parse(xml_f)
root = xml.getroot()
conf = {
'limit': {
'default': {
'timelimit': 0,
'memlimit': 0,
}
},
'is_makefile': False,
'check': 'diff', # two mode : 'diff' or 'diff-strict'
'test': [],
'metadata': {}
}
conf['limit']['default']['timelimit'] = int(root.find('./judging/testset/time-limit').text)
conf['limit']['default']['memlimit'] = int(int(root.find('./judging/testset/memory-limit').text) / 1024)
makedirs(tmp_outputpath, 'res/testdata')
tasks_group = collections.OrderedDict()
groups_enabled = root.find('./judging/testset/groups/') is not None
if groups_enabled:
for group in root.findall('./judging/testset/groups/'):
group_name = group.attrib.get('name')
group_points = int(float(group.attrib.get('points', 0)))
dependencies = []
for depend in group.findall('dependencies/'):
dependencies.append(depend.attrib.get('group'))
tasks_group[group_name] = {
'weight': group_points,
'data': [],
'dependencies': dependencies,
}
else:
tasks_group[0] = {
'weight': 0,
'data': [],
'dependencies': [],
}
format_str = "{:02}"
for idx, test in enumerate(root.findall("./judging/testset/tests/"), start=1):
g = test.attrib.get('group', 0)
tasks_group[g]['data'].append(str(idx))
copyfile(
(inputpath, 'tests', format_str.format(idx)),
(tmp_outputpath, 'res/testdata', "{}.in".format(idx)),
)
copyfile(
(inputpath, 'tests', format_str.format(idx) + ".a"),
(tmp_outputpath, 'res/testdata', "{}.out".format(idx)),
)
if not groups_enabled:
tasks_group[0]['weight'] = 100
for _, g in tasks_group.items():
write_group = copy.deepcopy(g)
if args.enable_dependency:
for depend_group in write_group['dependencies']:
write_group['data'].extend(tasks_group[depend_group]['data'])
write_group.pop('dependencies')
conf['test'].append(write_group)
logging.info('Creating config file')
with open(os.path.join(tmp_outputpath, 'conf.json'), 'w', encoding='utf-8') as conffile:
json.dump(conf, conffile, indent=4, ensure_ascii=False)
makedirs(tmp_outputpath, 'http')
logging.info('Copying statements')
statement_path = ''
for statement in root.findall('./statements/'):
if statement.attrib.get('type', '') == 'text/html':
statement_path = statement.attrib.get('path', '')
if statement_path:
statement_path = statement_path[:-13] # NOTE:REMOVE '/problem.html'
statement_path = os.path.join(inputpath, statement_path)
if os.path.exists(statement_path):
for filepath in os.listdir(statement_path):
if filepath == "problem.html":
copyfile(
(statement_path, 'problem.html'),
(tmp_outputpath, 'http', 'cont.html')
)
else:
copyfile(
(statement_path, filepath),
(tmp_outputpath, 'http', filepath),
)
# check
if check_sed():
subprocess.run(['sed', '-i', 's/background-color: #efefef;//g', f'{tmp_outputpath}/http/problem-statement.css'])
else:
replace_in_file(f'{tmp_outputpath}/http/problem-statement.css', "background-color: #efefef;", "")
else:
logging.warning('No statement found at path: {}'.format(statement_path))
else:
logging.warning('No statement path defined in problem.xml')
logging.info('Compress starting')
returncode = await run_and_wait_process('tar', *[
'-C',
tmp_outputpath,
'-cJf',
os.path.join(os.path.dirname(tmp_outputpath), '{}.tar.xz'.format(os.path.basename(tmp_outputpath))),
'http',
'res',
'conf.json',
])
if returncode != 0:
logging.info('Compress failed')
else:
logging.info('Compress successfully')
if args.is_clear_output_dir:
logging.info('Deleting output directory')
rmdir(tmp_outputpath)
if __name__ == '__main__':
asyncio.run(main())