-
-
Notifications
You must be signed in to change notification settings - Fork 12.4k
Expand file tree
/
Copy pathtempita.py
More file actions
68 lines (53 loc) · 1.75 KB
/
tempita.py
File metadata and controls
68 lines (53 loc) · 1.75 KB
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
#!/usr/bin/env python3
import argparse
import importlib.util
import os
import sys
def import_tempita():
init_py = os.path.join(os.path.dirname(__file__), 'tempita/__init__.py')
spec = importlib.util.spec_from_file_location('tempita', init_py)
tempita = importlib.util.module_from_spec(spec)
sys.modules['tempita'] = tempita
spec.loader.exec_module(tempita)
return tempita
def process_tempita(fromfile, outfile=None):
"""Process tempita templated file and write out the result.
The template file is expected to end in `.c.in` or `.pyx.in`:
E.g. processing `template.c.in` generates `template.c`.
"""
if outfile is None:
# We're dealing with a distutils build here, write in-place
outfile = os.path.splitext(fromfile)[0]
tempita = import_tempita()
from_filename = tempita.Template.from_filename
template = from_filename(fromfile, encoding=sys.getdefaultencoding())
content = template.substitute()
with open(outfile, 'w') as f:
f.write(content)
def main():
parser = argparse.ArgumentParser()
parser.add_argument(
"infile",
type=str,
help="Path to the input file"
)
parser.add_argument(
"-o",
"--outfile",
type=str,
help="Path to the output file"
)
parser.add_argument(
"-i",
"--ignore",
type=str,
help="An ignored input - may be useful to add a "
"dependency between custom targets",
)
args = parser.parse_args()
if not args.infile.endswith('.in'):
raise ValueError(f"Unexpected extension: {args.infile}")
outfile_abs = os.path.join(os.getcwd(), args.outfile)
process_tempita(args.infile, outfile_abs)
if __name__ == "__main__":
main()