75d328febbf85af36c92f0fc63b26ce9303834fc
5 def __init__(self
, title
, filenames
):
7 self
.filenames
= filenames
10 def _get_sections(file):
16 m
= re
.match(r
'^# (.+API.*)$', line
)
20 sections
.append(_Section(cur_title
, cur_filenames
))
24 cur_title
= m
.group(1)
27 m
= re
.match(r
'^\s+(babeltrace2/.+\.h).*$', line
)
30 if m
.group(1) != 'babeltrace2/babeltrace.h':
31 cur_filenames
.append(m
.group(1))
35 if re
.match(r
'^noinst_HEADERS.*', line
):
39 sections
.append(_Section(cur_title
, cur_filenames
))
44 def _c_includes_from_sections(sections
):
47 for section
in sections
:
48 # CTF writer is not part of the Babeltrace library
49 if 'ctf' in section
.title
.lower():
52 src
+= '/* {} */\n'.format(section
.title
)
55 for filename
in sorted(section
.filenames
):
57 if 'func-status' in filename
:
60 lines
.append('#include <{}>\n'.format(filename
))
70 with
open('include/Makefile.am') as f
:
71 sections
= _get_sections(f
)
73 print('''#ifndef BABELTRACE_BABELTRACE_H
74 #define BABELTRACE_BABELTRACE_H
79 * Copyright 2010-2018 EfficiOS Inc. <http://www.efficios.com/>
81 * Permission is hereby granted, free of charge, to any person obtaining a copy
82 * of this software and associated documentation files (the "Software"), to deal
83 * in the Software without restriction, including without limitation the rights
84 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
85 * copies of the Software, and to permit persons to whom the Software is
86 * furnished to do so, subject to the following conditions:
88 * The above copyright notice and this permission notice shall be included in
89 * all copies or substantial portions of the Software.
91 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
92 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
93 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
94 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
95 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
96 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
100 print(_c_includes_from_sections(sections
))
101 print('#endif /* BABELTRACE_BABELTRACE_H */')
104 if __name__
== '__main__':
This page took 0.031927 seconds and 3 git commands to generate.