-
Notifications
You must be signed in to change notification settings - Fork 5
/
xxd.py
executable file
·49 lines (36 loc) · 1.05 KB
/
xxd.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
#!/usr/bin/env python3
import argparse
import re
import sys
def main(args):
# parse command line arguments
parser = argparse.ArgumentParser(
description='convert file contents to a C++ string')
parser.add_argument('input', type=argparse.FileType('rb'), help='input file')
parser.add_argument('output', type=argparse.FileType('wt'),
help='output file')
options = parser.parse_args(args[1:])
array = re.sub(r'[^\w\d]', '_', options.input.name)
size = '{}_len'.format(array)
options.output.write(
'#include <cstddef>\n'
'\n'
'extern const unsigned char {}[] = {{'.format(array))
index = 0
while True:
c = options.input.read(1)
if c == b'':
break
if index % 12 == 0:
options.output.write('\n ')
options.output.write(
' 0x{:02x},'.format(int.from_bytes(c, byteorder='little')))
index += 1
options.output.write(
'\n'
'}};\n'
'extern const size_t {} = sizeof({}) / sizeof({}[0]);\n'
.format(size, array, array))
return 0
if __name__ == '__main__':
sys.exit(main(sys.argv))