forked from atcoder/ac-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
expander.py
executable file
·114 lines (93 loc) · 3.56 KB
/
expander.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
#!/usr/bin/env python3
import re
import sys
import argparse
from logging import Logger, basicConfig, getLogger
from os import getenv, environ, pathsep
from pathlib import Path
from typing import List, Set, Optional
logger = getLogger(__name__) # type: Logger
class Expander:
atcoder_include = re.compile(
r'#include\s*["<](atcoder/[a-z_]*(|.hpp))[">]\s*')
include_guard = re.compile(r'#.*ATCODER_[A-Z_]*_HPP')
def is_ignored_line(self, line) -> bool:
if self.include_guard.match(line):
return True
if line.strip() == "#pragma once":
return True
if line.strip().startswith('//'):
return True
return False
def __init__(self, lib_paths: List[Path]):
self.lib_paths = lib_paths
included = set() # type: Set[Path]
def find_acl(self, acl_name: str) -> Path:
for lib_path in self.lib_paths:
path = lib_path / acl_name
if path.exists():
return path
logger.error('cannot find: {}'.format(acl_name))
raise FileNotFoundError()
def expand_acl(self, acl_file_path: Path) -> List[str]:
if acl_file_path in self.included:
logger.info('already included: {}'.format(acl_file_path.name))
return []
self.included.add(acl_file_path)
logger.info('include: {}'.format(acl_file_path.name))
acl_source = open(str(acl_file_path)).read()
result = [] # type: List[str]
for line in acl_source.splitlines():
if self.is_ignored_line(line):
continue
m = self.atcoder_include.match(line)
if m:
name = m.group(1)
result.extend(self.expand_acl(self.find_acl(name)))
continue
result.append(line)
return result
def expand(self, source: str, origname) -> str:
self.included = set()
result = [] # type: List[str]
linenum = 0
for line in source.splitlines():
linenum += 1
m = self.atcoder_include.match(line)
if m:
acl_path = self.find_acl(m.group(1))
result.extend(self.expand_acl(acl_path))
if origname:
result.append('#line ' + str(linenum + 1) + ' "' + origname + '"')
continue
result.append(line)
return '\n'.join(result)
if __name__ == "__main__":
basicConfig(
format="%(asctime)s [%(levelname)s] %(message)s",
datefmt="%H:%M:%S",
level=getenv('LOG_LEVEL', 'INFO'),
)
parser = argparse.ArgumentParser(description='Expander')
parser.add_argument('source', help='Source File')
parser.add_argument('-c', '--console',
action='store_true', help='Print to Console')
parser.add_argument('--lib', help='Path to Atcoder Library')
parser.add_argument('--origname', help='report line numbers from the original ' +
'source file in GCC/Clang error messages')
opts = parser.parse_args()
lib_paths = []
if opts.lib:
lib_paths.append(Path(opts.lib))
if 'CPLUS_INCLUDE_PATH' in environ:
lib_paths.extend(
map(Path, filter(None, environ['CPLUS_INCLUDE_PATH'].split(pathsep))))
lib_paths.append(Path.cwd())
expander = Expander(lib_paths)
source = open(opts.source).read()
output = expander.expand(source, opts.origname)
if opts.console:
print(output)
else:
with open('combined.cpp', 'w') as f:
f.write(output)