File: xxd.py

package info (click to toggle)
rumur 2020.12.20-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 3,292 kB
  • sloc: cpp: 17,090; ansic: 2,537; objc: 1,542; python: 1,120; sh: 538; yacc: 536; lex: 229; lisp: 15; makefile: 5
file content (47 lines) | stat: -rwxr-xr-x 1,048 bytes parent folder | download
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
#!/usr/bin/env python3

import argparse
import re
import sys

def main(args: [str]) -> int:

  # 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 = f'{array}_len'

  options.output.write(
     '#include <cstddef>\n'
     '\n'
    f'extern const unsigned char {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(f' 0x{int.from_bytes(c, byteorder="little"):02x},')

    index += 1

  options.output.write(
     '\n'
     '};\n'
    f'extern const size_t {size} = sizeof({array}) / sizeof({array}[0]);\n')

  return 0

if __name__ == '__main__':
  sys.exit(main(sys.argv))