blob: 0da117a8cad9865ea33227cd653cc99553c17204 (
plain)
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
|
#!/usr/bin/env python3
#
# Copyright 2018 WebAssembly Community Group participants
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
import argparse
import io
import os
import sys
def EscapeCString(s):
out = ''
for b in bytearray(s.encode('utf-8')):
if b in (34, 92):
# " or \
out += '\\' + chr(b)
elif b == 10:
# newline
out += '\\n'
elif 32 <= b <= 127:
# printable char
out += chr(b)
else:
# non-printable; write as \xab
out += '\\x%02x' % b
return out
def main(args):
arg_parser = argparse.ArgumentParser()
arg_parser.add_argument('-o', '--output', metavar='PATH',
help='output file.')
arg_parser.add_argument('file', help='input file.')
options = arg_parser.parse_args(args)
section_name = None
output = io.StringIO()
output.write('/* Generated from \'%s\' by wasm2c_tmpl.py, do not edit! */\n' %
os.path.basename(options.file))
with open(options.file) as f:
for line in f.readlines():
if line.startswith('%%'):
if section_name is not None:
output.write(';\n\n')
section_name = line[2:-1]
output.write('const char SECTION_NAME(%s)[] =\n' % section_name)
else:
output.write('"%s"\n' % EscapeCString(line))
output.write(';\n')
if options.output:
with open(options.output, 'w') as outf:
outf.write(output.getvalue())
else:
sys.stdout.write(output.getvalue())
return 0
if __name__ == '__main__':
sys.exit(main(sys.argv[1:]))
|