forked from h5py/h5py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
api_gen.py
241 lines (182 loc) · 7.93 KB
/
api_gen.py
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
"""
Generate the lowest-level Cython bindings to HDF5.
In order to translate HDF5 errors to exceptions, the raw HDF5 API is
wrapped with Cython "error wrappers". These are cdef functions with
the same names and signatures as their HDF5 equivalents, but implemented
in the h5py.defs extension module.
The h5py.defs files (defs.pyx and defs.pxd), along with the "real" HDF5
function definitions (_hdf5.pxd), are auto-generated by this script from
api_functions.txt. This file also contains annotations which indicate
whether a function requires a certain minimum version of HDF5, an
MPI-aware build of h5py, or special error handling.
This script is called automatically by the h5py build system when the
output files are missing, or api_functions.txt has been updated.
See the Line class in this module for documentation of the format for
api_functions.txt.
h5py/_hdf5.pxd: Cython "extern" definitions for HDF5 functions
h5py/defs.pxd: Cython definitions for error wrappers
h5py/defs.pyx: Cython implementations of error wrappers
"""
import re
import os.path as op
class Line(object):
"""
Represents one line from the api_functions.txt file.
Exists to provide the following attributes:
mpi: Bool indicating if MPI required
error: Bool indicating if special error handling required
version: None or a minimum-version tuple
code: String with function return type
fname: String with function name
sig: String with raw function signature
args: String with sequence of arguments to call function
Example: MPI ERROR 1.8.12 int foo(char* a, size_t b)
.mpi: True
.error: True
.version: (1, 8, 12)
.code: "int"
.fname: "foo"
.sig: "char* a, size_t b"
.args: "a, b"
"""
PATTERN = re.compile("""(?P<mpi>(MPI)[ ]+)?
(?P<error>(ERROR)[ ]+)?
(?P<version>([0-9]+\.[0-9]+\.[0-9]+))?
([ ]+)?
(?P<code>(unsigned[ ]+)?[a-zA-Z_]+[a-zA-Z0-9_]*\**)[ ]+
(?P<fname>[a-zA-Z_]+[a-zA-Z0-9_]*)[ ]*
\((?P<sig>[a-zA-Z0-9_,* ]*)\)
""", re.VERBOSE)
SIG_PATTERN = re.compile("""
(?:unsigned[ ]+)?
(?:[a-zA-Z_]+[a-zA-Z0-9_]*\**)
[ ]+[ *]*
(?P<param>[a-zA-Z_]+[a-zA-Z0-9_]*)
""", re.VERBOSE)
def __init__(self, text):
""" Break the line into pieces and populate object attributes.
text: A valid function line, with leading/trailing whitespace stripped.
"""
m = self.PATTERN.match(text)
if m is None:
raise ValueError("Invalid line encountered: {0}".format(text))
parts = m.groupdict()
self.mpi = parts['mpi'] is not None
self.error = parts['error'] is not None
self.version = parts['version']
if self.version is not None:
self.version = tuple(int(x) for x in self.version.split('.'))
self.code = parts['code']
self.fname = parts['fname']
self.sig = parts['sig']
sig_const_stripped = self.sig.replace('const', '')
self.args = self.SIG_PATTERN.findall(sig_const_stripped)
if self.args is None:
raise ValueError("Invalid function signature: {0}".format(self.sig))
self.args = ", ".join(self.args)
raw_preamble = """\
include "config.pxi"
from api_types_hdf5 cimport *
from api_types_ext cimport *
"""
def_preamble = """\
include "config.pxi"
from api_types_hdf5 cimport *
from api_types_ext cimport *
"""
imp_preamble = """\
include "config.pxi"
from api_types_ext cimport *
from api_types_hdf5 cimport *
cimport _hdf5
from _errors cimport set_exception
"""
class LineProcessor(object):
def run(self):
# Function definitions file
self.functions = open(op.join('h5py', 'api_functions.txt'), 'r')
# Create output files
self.raw_defs = open(op.join('h5py', '_hdf5.pxd'), 'w')
self.cython_defs = open(op.join('h5py', 'defs.pxd'), 'w')
self.cython_imp = open(op.join('h5py', 'defs.pyx'), 'w')
self.raw_defs.write(raw_preamble)
self.cython_defs.write(def_preamble)
self.cython_imp.write(imp_preamble)
for text in self.functions:
# Directive specifying a header file
if not text.startswith(' ') and not text.startswith('#') and \
len(text.strip()) > 0:
inc = text.split(':')[0]
self.raw_defs.write('cdef extern from "%s.h":\n' % inc)
continue
text = text.strip()
# Whitespace or comment line
if len(text) == 0 or text[0] == '#':
continue
# Valid function line
self.line = Line(text)
self.write_raw_sig()
self.write_cython_sig()
self.write_cython_imp()
self.functions.close()
self.cython_imp.close()
self.cython_defs.close()
self.raw_defs.close()
def add_cython_if(self, block):
""" Wrap a block of code in the required "IF" checks """
def wrapif(condition, code):
code = code.replace('\n', '\n ', code.count('\n')-1) # Yes, -1.
code = "IF {0}:\n {1}".format(condition, code)
return code
if self.line.mpi:
block = wrapif('MPI', block)
if self.line.version is not None:
block = wrapif('HDF5_VERSION >= {0.version}'.format(self.line), block)
return block
def write_raw_sig(self):
""" Write out "cdef extern"-style definition for an HDF5 function """
raw_sig = "{0.code} {0.fname}({0.sig}) except *\n".format(self.line)
raw_sig = self.add_cython_if(raw_sig)
raw_sig = "\n".join((" "+x if x.strip() else x) for x in raw_sig.split("\n"))
self.raw_defs.write(raw_sig)
def write_cython_sig(self):
""" Write out Cython signature for wrapper function """
cython_sig = "cdef {0.code} {0.fname}({0.sig}) except *\n".format(self.line)
cython_sig = self.add_cython_if(cython_sig)
self.cython_defs.write(cython_sig)
def write_cython_imp(self):
""" Write out Cython wrapper implementation """
# Figure out what test and return value to use with error reporting
if '*' in self.line.code or self.line.code in ('H5T_conv_t',):
condition = "==NULL"
retval = "NULL"
elif self.line.code in ('int', 'herr_t', 'htri_t', 'hid_t','hssize_t','ssize_t') \
or re.match(r'H5[A-Z]+_[a-zA-Z_]+_t', self.line.code):
condition = "<0"
retval = "-1"
elif self.line.code in ('unsigned int','haddr_t','hsize_t','size_t'):
condition = "==0"
retval = 0
else:
raise ValueError("Return code <<%s>> unknown" % self.line.code)
# Have to use except * because Cython can't handle special types here
imp = """\
cdef {0.code} {0.fname}({0.sig}) except *:
cdef {0.code} r
_hdf5.H5Eset_auto(NULL, NULL)
r = _hdf5.{0.fname}({0.args})
if r{condition}:
if set_exception():
return <{0.code}>{retval}
elif {0.error}:
raise RuntimeError("Unspecified error in {0.fname} (return value {condition})")
return r
"""
imp = imp.format(self.line, condition=condition, retval=retval)
imp = self.add_cython_if(imp)
self.cython_imp.write(imp)
def run():
lp = LineProcessor()
lp.run()
if __name__ == '__main__':
run()