File: makeexamples.py

package info (click to toggle)
contextfree 3.4.2%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,448 kB
  • sloc: cpp: 37,995; lex: 414; makefile: 123; sh: 43; python: 34
file content (44 lines) | stat: -rw-r--r-- 1,262 bytes parent folder | download | duplicates (2)
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
import os
import sys

def print_cfdg(cfdg_name):
    cfdg_file = os.path.join('input', cfdg_name)
    if not os.path.exists(cfdg_file):
        sys.stderr.write('Cannot find file: %s\n' % cfdg_file)
        sys.exit(2)

    transtable = str.maketrans({'"': r'\"', "…": r'\u2026'})
    with open(cfdg_file, 'r') as fp:
        for line in fp:
            sys.stdout.write('u8"')
            sys.stdout.write(line.rstrip().translate(transtable))
            print('\\n"')


def print_examples(cfdg_files):
    print('const std::map<std::string, std::pair<const char*, const char*>>')
    print('AbstractSystem::ExamplesMap{')

    for cfdg in cfdg_files:
        if cfdg.endswith('_v2.cfdg'):
            pass
        else:
            print('    { "%s", {' % cfdg)
            print_cfdg(cfdg)
            print(' ,')
            print_cfdg(cfdg.replace('.cfdg', '_v2.cfdg'))
            print('    } },')


    print('};')


if __name__ == '__main__':
    if len(sys.argv) < 2:
        print('Usage: %s file ...' % sys.argv[0])
        print('Takes the named files in the input directory and writes to standard output a ')
        print('std::map that maps the name to the file contents.')
        sys.exit(1)

    print_examples(sys.argv[1:])
    sys.exit(0)