summaryrefslogtreecommitdiff
path: root/scripts/split_caffe_proto.py
blob: 7e9dc3e7b2204e076e8db5f7ce33a022645d25ea (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
#!/usr/bin/env python
import mmap
import re
import os
import errno

script_path = os.path.dirname(os.path.realpath(__file__))

# a regex to match the parameter definitions in caffe.proto
r = re.compile(r'(?://.*\n)*message ([^ ]*) \{\n(?: .*\n|\n)*\}')

# create directory to put caffe.proto fragments
try:
    os.mkdir(
        os.path.join(script_path,
                     '../docs/_includes/'))
    os.mkdir(
        os.path.join(script_path,
                     '../docs/_includes/proto/'))
except OSError as exception:
    if exception.errno != errno.EEXIST:
        raise

caffe_proto_fn = os.path.join(
    script_path,
    '../src/caffe/proto/caffe.proto')

with open(caffe_proto_fn, 'r') as fin:

    for m in r.finditer(fin.read(), re.MULTILINE):
        fn = os.path.join(
            script_path,
            '../docs/_includes/proto/%s.txt' % m.group(1))
        with open(fn, 'w') as fout:
            fout.write(m.group(0))