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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
#!/usr/bin/env python
# Scan glib sources.
# e.g.:
# ./update-glib-annotations.py ../../glib ../../glib/_build
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
import os
import sys
import subprocess
path=os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
for k in ['UNINSTALLED_INTROSPECTION_SRCDIR',
'UNINSTALLED_INTROSPECTION_BUILDDIR']:
if k not in os.environ:
os.environ[k] = path
possible_builddirs = ['../_build/', '..', '../../build/']
builddir = None
for d in possible_builddirs:
if os.path.isfile(os.path.join(d, 'g-ir-annotation-tool')):
builddir = d
break
assert builddir is not None
annotation_tool_base_args = [os.path.join(builddir, 'g-ir-annotation-tool'),
'--extract']
def directory_includes(dirs, srcdir, builddir):
result = []
result.append('-I' + srcdir)
if srcdir != builddir:
result.append('-I' + builddir)
for name in dirs:
result.append('-I' + os.path.join(srcdir, name))
if srcdir != builddir:
result.append('-I' + os.path.join(builddir, name))
return result
def extract_annotations(module, srcdir, builddir, outfile):
sources = []
subdir = os.path.join(srcdir, module['name'])
includes = directory_includes(module['includes'],
srcdir, builddir)
for sourcename in os.listdir(subdir):
if sourcename.endswith('.c'):
sources.append(os.path.join(subdir, sourcename))
return subprocess.check_call(annotation_tool_base_args +
module['defines'] +
includes +
sources,
stdout=outfile)
if __name__ == '__main__':
srcdir = sys.argv[1]
if len(sys.argv) == 3:
builddir = sys.argv[2]
else:
builddir = srcdir
print("Using source directory: %r build directory: %r" % (srcdir, builddir))
modules = [{'name': 'glib',
'srcname': '../gir/glib-2.0.c',
'includes': ['glib', 'gmodule'],
'defines': ['-DGLIB_COMPILATION']},
{'name': 'gmodule',
'srcname': '../gir/gmodule-2.0.c',
'includes': ['glib', 'gmodule'],
'defines': ['-DGLIB_COMPILATION']},
{'name': 'gobject',
'srcname': '../gir/gobject-2.0.c',
'includes': ['glib', 'gobject', 'gmodule'],
'defines': ['-DGOBJECT_COMPILATION']},
{'name': 'gio',
'srcname': '../gir/gio-2.0.c',
'includes': ['glib', 'gmodule', 'gobject', 'gio'],
'defines': ['-DGOBJECT_COMPILATION', '-DGIO_COMPILATION']}]
for module in modules:
srcname = module['srcname']
tmpname = module['srcname'] + '.tmp'
if os.path.isfile(tmpname):
os.unlink(tmpname)
if os.path.isfile(srcname):
os.unlink(srcname)
srcfile = open(tmpname, 'w')
extract_annotations(module, srcdir, builddir, srcfile)
srcfile.close()
os.rename(tmpname, srcname)
print("Updated %r" % (srcname, ))
print("Done; run \"git diff\" to see any changes.")
|