-
Notifications
You must be signed in to change notification settings - Fork 0
/
api_gen.py
298 lines (236 loc) · 9.97 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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
"""
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:
nogil: String indicating if we should release the GIL to call this
function. Any Python callbacks it could trigger must
acquire the GIL (e.g. using 'with gil' in Cython).
mpi: Bool indicating if MPI 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 1.8.12 int foo(char* a, size_t b)
.nogil: ""
.mpi: 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<min_version>([0-9]+\.[0-9]+\.[0-9]+))?
(-(?P<max_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_,* ]*)\)
([ ]+)?
(?P<nogil>(nogil))?
""", 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.nogil = "nogil" if parts['nogil'] else ""
self.mpi = parts['mpi'] is not None
self.min_version = parts['min_version']
if self.min_version is not None:
self.min_version = tuple(int(x) for x in self.min_version.split('.'))
self.max_version = parts['max_version']
if self.max_version is not None:
self.max_version = tuple(int(x) for x in self.max_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)
# Figure out what test and return value to use with error reporting
if '*' in self.code or self.code in ('H5T_conv_t',):
self.err_condition = "==NULL"
self.err_value = f"<{self.code}>NULL"
elif self.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.code):
self.err_condition = "<0"
self.err_value = f"<{self.code}>-1"
elif self.code in ('unsigned int', 'haddr_t', 'hsize_t', 'size_t'):
self.err_condition = "==0"
self.err_value = f"<{self.code}>0"
else:
raise ValueError("Return code <<%s>> unknown" % self.code)
raw_preamble = """\
# cython: language_level=3
#
# Warning: this file is auto-generated from api_gen.py. DO NOT EDIT!
#
include "config.pxi"
from .api_types_hdf5 cimport *
from .api_types_ext cimport *
"""
def_preamble = """\
# cython: language_level=3
#
# Warning: this file is auto-generated from api_gen.py. DO NOT EDIT!
#
include "config.pxi"
from .api_types_hdf5 cimport *
from .api_types_ext cimport *
"""
imp_preamble = """\
# cython: language_level=3
#
# Warning: this file is auto-generated from api_gen.py. DO NOT EDIT!
#
include "config.pxi"
from .api_types_ext cimport *
from .api_types_hdf5 cimport *
from . cimport _hdf5
from ._errors cimport set_exception, set_default_error_handler
"""
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.min_version is not None and self.line.max_version is not None:
block = wrapif('HDF5_VERSION >= {0.min_version} and HDF5_VERSION <= {0.max_version}'.format(self.line), block)
elif self.line.min_version is not None:
block = wrapif('HDF5_VERSION >= {0.min_version}'.format(self.line), block)
elif self.line.max_version is not None:
block = wrapif('HDF5_VERSION <= {0.max_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}) {0.nogil}\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 """
if self.line.fname == 'H5Dget_storage_size':
# Special case: https://github.com/h5py/h5py/issues/1475
cython_sig = "cdef {0.code} {0.fname}({0.sig}) except? {0.err_value}\n".format(self.line)
else:
cython_sig = "cdef {0.code} {0.fname}({0.sig}) except {0.err_value}\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 """
if self.line.nogil:
imp = """\
cdef {0.code} {0.fname}({0.sig}) except {0.err_value}:
cdef {0.code} r
with nogil:
set_default_error_handler()
r = _hdf5.{0.fname}({0.args})
if r{0.err_condition}:
if set_exception():
return {0.err_value}
else:
raise RuntimeError("Unspecified error in {0.fname} (return value {0.err_condition})")
return r
"""
else:
if self.line.fname == 'H5Dget_storage_size':
# Special case: https://github.com/h5py/h5py/issues/1475
imp = """\
cdef {0.code} {0.fname}({0.sig}) except? {0.err_value}:
cdef {0.code} r
set_default_error_handler()
r = _hdf5.{0.fname}({0.args})
if r{0.err_condition}:
if set_exception():
return {0.err_value}
return r
"""
else:
imp = """\
cdef {0.code} {0.fname}({0.sig}) except {0.err_value}:
cdef {0.code} r
set_default_error_handler()
r = _hdf5.{0.fname}({0.args})
if r{0.err_condition}:
if set_exception():
return {0.err_value}
else:
raise RuntimeError("Unspecified error in {0.fname} (return value {0.err_condition})")
return r
"""
imp = imp.format(self.line)
imp = self.add_cython_if(imp)
self.cython_imp.write(imp)
def run():
lp = LineProcessor()
lp.run()
if __name__ == '__main__':
run()