forked from kokkos/stdBLAS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
make_single_header.py
executable file
·47 lines (38 loc) · 1.68 KB
/
make_single_header.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
#!/usr/bin/env python3
import re
import sys
import os
from os.path import dirname, join as path_join, abspath, exists
extra_paths = [path_join(dirname(abspath(__file__)), "include")]
def find_file(included_name, current_file):
current_dir = dirname(abspath(current_file))
for idir in [current_dir] + extra_paths:
try_path = path_join(idir, included_name)
if exists(try_path):
return try_path
return None
def process_file(file_path, out_lines=[], front_matter_lines=[], processed_files=[]):
with open(file_path, "r") as f:
for line in f:
m_inc = re.match(r'#include\s*[<"](.+)[>"]\s*', line)
if m_inc:
inc_name = m_inc.group(1)
inc_path = find_file(inc_name, file_path)
if inc_path not in processed_files:
if inc_path is not None:
processed_files += [inc_path]
process_file(inc_path, out_lines, front_matter_lines, processed_files)
else:
# assume it's a system header; add it to the front matter just to be clean
front_matter_lines += [line]
continue
m_once = re.match(r"#pragma once\s*", line)
# ignore pragma once; we're handling it here
if m_once:
continue
# otherwise, just add the line to the output
if line[-1] != "\n": line = line + "\n"
out_lines += [line]
return "".join(front_matter_lines) + "\n" + "".join(out_lines)
if __name__ == "__main__":
print(process_file(abspath(sys.argv[1]), [], ["#pragma once\n"], [abspath(sys.argv[1])]))