-
Notifications
You must be signed in to change notification settings - Fork 104
/
zproject_python_cffi.gsl
612 lines (584 loc) · 21.9 KB
/
zproject_python_cffi.gsl
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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
# Generate minimal Python language bindings that use CFFI.
#
# These are not meant to be idiomatic, but to provide a minimal platform
# of FFI function bindings on which to base idiomatic Python classes.
#
# This is a code generator built using the iMatix GSL code generation
# language. See https://github.com/zeromq/gsl for details.
#
# Copyright (c) the Contributors as noted in the AUTHORS file.
# This file is part of zproject.
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
register_target ("python_cffi", "Python CFFI binding")
# Target provides name space isolation for its functions
function target_python_cffi
function register_type (struct, pointer)
if count(project->python_types.type, type.name = my.struct) = 0
new project->python_types.type
type.name = my.struct
type.pointer = my.pointer
endnew
endif
endfunction
# Resolve missing or implicit python cffi details in the given container.
#
# Here, "container" refers to an <argument/> or <return/> in the model XML.
# In other words, a container fully describes any value / variable reference
# that can be passed to or returned from a method.
#
function resolve_container (container)
# Resolve semantic attributes for python cffi binding.
#
# After this function, these should all be fully resolved to a value.
#
# Resolve language-specific attributes for the python language.
#
my.container.python_name ?= "$(my.container.name:c)"
my.py_arg_pass = my.container.python_name
# Resolve the `py_type` for this `type`, finish tweaking semantic attributes.
#
if my.container.variadic
my.py_arg_pass = "*args"
elsif my.container.type = "nothing"
elsif my.container.type = "anything" | my.container.type = "sockish"
my.py_arg_pass = "$(my.container.python_name:)._p"
elsif my.container.type = "boolean"
elsif my.container.type = "byte"
elsif my.container.type = "integer" | my.container.type = "file_size" | my.container.type = "time"
elsif my.container.type = "number"
if my.container.size = 1
elsif my.container.size = 2
elsif my.container.size = 4
elsif my.container.size = 8
endif
elsif my.container.type = "size"
elsif my.container.type = "real"
elsif my.container.type = "buffer"
elsif my.container.type = "FILE"
elsif my.container.type = "string"
my.py_arg_pass = "utils.to_bytes($(my.container.python_name:))"
elsif my.container.type = "format"
elsif my.container.callback
else
register_type ("$(my.container.type:c,no)_t", "$(my.container.type:c,no)_p")
if my.container.by_reference
my.py_arg_pass = "utils.ffi.new(\"$(my.container.type)_t **\", $(my.container.python_name:)._p)"
else
my.py_arg_pass = "$(my.container.python_name:)._p"
endif
endif
my.container.py_arg_pass ?= my.py_arg_pass
endfunction
function resolve_method (method)
my.method.python_name = "$(my.method.name:c)"
# Test if method name violates python 2 syntax
if regexp.match ("^(and|del|from|not|while|as|elif|global|or|with|assert|\
else|if|pass|yield|break|except|import|print|class|\
exec|in|raise|continue|finally|is|return|def|for|\
lambda|try)$", my.method.python_name)
my.method.python_name = "$(my.method.python_name)_py"
endif
# Prepend python self argument to non singleton classes
if (!my.method.singleton & count (my.method.argument, argument.name = 'self') = 0) | my.method.is_constructor
if !(my.method.is_constructor & my.method.name <> "new")
new argument to my.method
argument.python_name = 'self'
argument.type = 'nothing'
argument.py_arg_pass = 'self._p'
argument.variadic = 0
argument.order = 0
endnew
endif
endif
if regexp.match ("^(is|from)$", my.method.python_name) # matches keyword
my.method.python_name += "_"
endif
# Add order to arguments so we can place python self argument first
ORDERNO = 1
for my.method.argument
argument.order ?= ORDERNO
ORDERNO += 1
resolve_container (argument)
endfor
for my.method.return as ret
resolve_container (ret)
endfor
endfunction
function resolve_class (class)
my.class.python_name ?= "$(class.name:Pascal)"
for my.class.callback_type as method
resolve_method (method)
endfor
for my.class.constructor as method
resolve_method (method)
endfor
for my.class.destructor as method
resolve_method (method)
endfor
for my.class.method
resolve_method (method)
endfor
register_type("$(class.c_name)_t", "$(class.c_name)_p")
endfunction
function python_c_method_call (class, method)
my.out = ""
# handle zproto's set strings methods
if (count (my.method.argument)) = 2 \
& !my.method.singleton \
& count (my.method.argument, argument.c_type?="zlist_t **")
my.out += "foo = utils.to_strings (argv_p)\n"
my.out += " if foo is not None:\n"
my.out += " foo_p = utils.ffi.new(\"struct _zlist_t *[1]\")\n"
my.out += " foo_p [0] = foo\n"
my.out += " utils.lib.dproto_set_argv(self._p, foo_p)\n"
my.out += " return\n"
my.out += "\n "
endif
my.out += "utils.lib.$(my.class.c_name)_$(my.method.c_name)("
for my.method.argument by argument.order
if first() & my.method.is_constructor & my.method.name = "new"
next
endif
if !argument.variadic
my.out += (argument.py_arg_pass?"") + (last() ?? '' ? ', ')
elsif argument.type = "nothing" & defined( argument.va_start )
my.out += "*" + (argument.va_start) + "_args" + (last() ?? '' ? ', ')
else
my.out += (argument.py_arg_pass?"") + (last() ?? '' ? ', ')
endif
endfor
my.out += ")"
return my.out
endfunction
function python_method_signature (method)
if my.method.is_constructor & my.method.name = 'new'
my.out = "def __init__("
elsif my.method.is_constructor
my.out = "@staticmethod\n"
my.out += " def $(my.method.python_name)("
elsif my.method.singleton = 1
my.out = "@staticmethod\n"
my.out += " def $(my.method.python_name)("
else
my.out = "def $(my.method.python_name)("
endif
for my.method.argument by argument.order
if !argument.variadic
my.out += (argument.python_name?"") + (last() ?? '' ? ', ')
else
my.out += "*" + (argument.va_start?"")+ "_args" + (last() ?? '' ? ', ')
endif
endfor
my.out += "):"
return my.out
endfunction
function generate_cdefs (project)
for my.project->python_types.type as t
>typedef struct _$(t.name:c) $(t.name:c);
endfor
for c_class where defined (class.api) & class.private = "0" as class
for class.callback_type
>// $(callback_type.description:no,block)
>$(c_callback_typedef (callback_type):)
>
endfor
endfor
for c_class where defined (class.api) & class.private = "0" as class
>// CLASS: $(class.name)
for class. as f
if class(f) = "XML item" & (name(f) = 'constructor' | name(f) = 'destructor')
>// $(f.description:no,block)
>$(c_method_signature (f):);
>
endif
endfor
for class.actor
>// $(actor.description:no,block)
>$(PROJECT.PREFIX)_EXPORT void
> $(actor.name:c) (zsock_t *pipe, void *args);
>
endfor
for class.method
>// $(method.description:no,block)
>$(c_method_signature (method):);
>
endfor
endfor
endfunction
function generate_binding
directory.create ("bindings/python_cffi/$(project.name:c)_cffi")
output "bindings/python_cffi/$(project.name:c)_cffi/__init__.py"
>$(project.GENERATED_WARNING_HEADER:)
>from . import utils
for class where defined (class.api) & class.private = "0"
for constant
>$(NAME:c) = $(value)\
if defined (constant.description)
> # $(constant.description)
else
>
endif
endfor
>from .$(class.python_name:) import *
endfor
output "bindings/python_cffi/$(project.name:c)_cffi/dlopen.py"
>$(project.GENERATED_WARNING_HEADER:)
>from __future__ import print_function
>import os
>import sys
>from ctypes.util import find_library
>
>import cffi
>ffi = cffi.FFI()
>
>try:
> # If LD_LIBRARY_PATH or your OSs equivalent is set, this is the only way to
> # load the library. If we use find_library below, we get the wrong result.
> if os.name == 'posix':
> if sys.platform == 'darwin':
> libpath = '$(project.libname).$(project->version.major).dylib'
> else:
> libpath = '$(project.libname).so.$(project->version.major)'
> elif os.name == 'nt':
> libpath = '$(project.libname).dll'
> lib = ffi.dlopen(libpath)
>except OSError:
> libpath = find_library("$(project.name)")
> if not libpath:
> raise ImportError("Unable to find $(project.libname)")
> lib = ffi.dlopen(libpath)
>
>from $(project.name:c)_cffi.cdefs import $(project.name:c)_cdefs
>
>for cdef in $(project.name:c)_cdefs:
> ffi.cdef (cdef)
output "bindings/python_cffi/$(project.name:c)_cffi/build.py"
>$(project.GENERATED_WARNING_HEADER:)
>
>from __future__ import print_function
>import os
>import re
>import sys
>
>import subprocess
>def pkgconfig_installed ():
> try:
> subprocess.check_output (["pkg-config", "--version"])
> return True
> except subprocess.CalledProcessError:
> return False
>
>def pkgconfig_kwargs (libs):
> """If pkg-config is available, then return kwargs for set_source based on pkg-config output
>
> It setup include_dirs, library_dirs, libraries and define_macros
> """
>
> # make API great again!
> if isinstance (libs, (str, bytes)):
> libs = (libs, )
>
> # drop starting -I -L -l from cflags
> def dropILl (string):
> def _dropILl (string):
> if string.startswith (b"-I") or string.startswith (b"-L") or string.startswith (b"-l"):
> return string [2:]
> return string
> return [_dropILl (x) for x in string.split () if x != b"-isystem"]
>
> # convert -Dfoo=bar to list of tuples [("foo", "bar")] expected by cffi
> def macros (string):
> def _macros (string):
> return tuple (string [2:].split (b'=', 2))
> return [_macros (x) for x in string.split () if x.startswith (b"-D")]
>
> # pkg-config call
> def pc (libname, *args):
> a = ["pkg-config", "--print-errors"]
> a.extend (args)
> a.append (libname)
> return subprocess.check_output (a)
>
> # return kwargs for given libname
> def kwargs (libname):
> return {
> "include_dirs" : dropILl (pc (libname, "--cflags-only-I")),
> "library_dirs" : dropILl (pc (libname, "--libs-only-L")),
> "libraries" : dropILl (pc (libname, "--libs-only-l")),
> "define_macros" : macros (pc (libname, "--cflags")),
> }
>
> # merge all arguments together
> ret = {}
> for libname in libs:
> foo = kwargs (libname)
> for key, value in foo.items ():
> if key not in ret:
> ret [key] = value
> else:
> ret [key].extend (value)
>
> # Python3 and strict unicode
> for key, value in ret.items ():
> if isinstance (value, bytes):
> ret [key] = value.decode ("utf-8")
> elif isinstance (value, list):
> if len (value) == 0:
> continue
> if isinstance (value[0], tuple):
> ret [key] = [(v[0].decode ("utf-8"), v[1].decode ("utf-8")) for v in value]
> else:
> ret [key] = [v.decode ("utf-8") for v in value]
>
> return ret
>
>if not pkgconfig_installed ():
> print ("ERROR: build without pkg-config not supported", file=sys.stderr)
> sys.exit (1)
>
>kwargs = pkgconfig_kwargs ([
for project.use where (use.pkgconfig ?<> "")
> "$(use.pkgconfig)",
endfor
> "$(project.libname)"
>])
>import cffi
># can't import does not work, read and exec manually
>with open (os.path.join (
> os.path.dirname (__file__),
> "cdefs.py"), 'r') as fp:
> cdefs_py = fp.read()
>gl = {}
>exec (cdefs_py, gl)
>$(project.name:c)_cdefs = gl ["$(project.name:c)_cdefs"]
>
>ffibuilder = cffi.FFI ()
>ffibuilder.set_source ("$(project.name:c)_cffi.native", "#include <$(project.header)>", **kwargs)
>
># Custom setup for $(project.name)
>for item in $(project.name:c)_cdefs:
> ffibuilder.cdef(item)
>
>ffidestructorbuilder = cffi.FFI ()
>ffidestructorbuilder.cdef('''
for class where defined (class.api) & class.private = "0" & count (class.destructor) > 0
>void
> $(class.name:c)_destroy_py (void *self);
>
endfor
>''')
>
>ffidestructorbuilder.set_source ("$(project.name:c)_cffi.destructors", '''
>#include <$(project.header)>
for class where defined (class.api) & class.private = "0" & count (class.destructor) > 0
>void
>$(class.name:c)_destroy_py (void *self)
>{
> $(class.name:c)_destroy (($(class.name:c)_t **) &self);
>}
>
endfor
>''', **kwargs)
>
>if __name__ == "__main__":
> ffibuilder.compile (verbose=True)
> ffidestructorbuilder.compile (verbose=True)
directory.create ("api/")
output "api/python_cffi.slurp"
>$(project.GENERATED_WARNING_HEADER:)
># Python cffi compatible file slurp
>
>$(project.name:c)_cdefs = list ()
># Custom setup for $(project.name)
>$(file.slurp('src/python_cffi.inc')?'')
>$(project.name:c)_cdefs.append ('''
generate_cdefs (project)
>''')
output "bindings/python_cffi/$(project.name:c)_cffi/cdefs.py"
>$(project.GENERATED_WARNING_HEADER:)
>import re
>$(project.name:c)_cdefs = list ()
># Custom setup for $(project.name)
>$(file.slurp('src/python_cffi.inc')?'')
>
>#Import definitions from dependent projects
for project.use where defined (use.python_cffi_slurp)
>$(file.slurp(use.python_cffi_slurp))
>$(project.name:c)_cdefs.extend ($(use.project)_cdefs)
endfor
>
>$(project.name:c)_cdefs.append ('''
generate_cdefs (project)
>''')
>for i, item in enumerate ($(project.name:c)_cdefs):
> $(project.name:c)_cdefs [i] = re.sub(r';[^;]*\\bva_list\\b[^;]*;', ';', item, flags=re.S) # we don't support anything with a va_list arg
>
output "bindings/python_cffi/README.md"
>$(project.GENERATED_WARNING_HEADER:)
>#$(project.name) cffi bindings
>
>This package contains low level python bindings for $(project.name) based on cffi library.
>Module is compatible with
> * The “in-line”, “ABI mode”, which simply **dlopen** main library and parse C declaration on runtime
> * The “out-of-line”, “API mode”, which build C **native** Python extension
>
>#Build the native extension
>
> python setup.py build
>
>Note you need to have setuptools and cffi packages installed. As well as a checkout of all dependencies
>at the same level as this project, because all dependant defs.py will be included in project cdefs.py.
>
>#Using more cffi modules together
>While zproject and CLASS encourages you to split your dependencies to smaller libraries, this does
>not work well for cffi. zproject generated backends have own private cffi instance, which can't
>be easily combined with others in one function call.
>
>See ML thread about topic https://groups.google.com/forum/#!topic/python-cffi/JtAKU-g9Exg
>
>This is the reason the Lib and CompiledFFi objects are referenced from utils module and dynamically
>accessed on each call. Calling `lower.utils.rebind (higher.utils.lib, higher.utils.ffi)' you can
>change instance used by lower module and enforce all Python classes will use single instance.
endfunction
function generate_classes ()
for class where defined (class.api) & class.private = "0"
output "bindings/python_cffi/$(project.name:c)_cffi/$(class.python_name:).py"
>$(project.GENERATED_WARNING_HEADER:)
>from . import utils
>from . import destructors
>lib$(project.name:c)_destructors = destructors.lib
>
>class $(class.name:Pascal)(object):
> """
> $(string.trim (class.?""):left)
> """
>
for class.constructor
if constructor.name = 'new'
> $(python_method_signature (constructor):)
> """
> $(constructor.description:no,block)
> """
> p = $(python_c_method_call (class, constructor))
> if p == utils.ffi.NULL:
> raise MemoryError("Could not allocate person")
>
for class.destructor
> # ffi.gc returns a copy of the cdata object which will have the
> # destructor called when the Python object is GC'd:
> # https://cffi.readthedocs.org/en/latest/using.html#ffi-interface
> self._p = utils.ffi.gc(p, lib$(project.name:c)_destructors.$(class.c_name)_destroy_py)
endfor
>
else
> $(python_method_signature (constructor):)
> """
> $(constructor.description:no,block)
> """
> return $(python_c_method_call (class, constructor))
>
# TODO: perhaps return a Python instance instead of cdata
endif
endfor
for class.actor
> """
> $(actor.description:no,block)
> """
>
endfor
for class.method
> $(python_method_signature (method):)
> """
> $(method.description:no,block)
> """
if count (method.return, return.c_type="void")
> $(python_c_method_call (class, method))
else
> return $(python_c_method_call (class, method))
endif
>
endfor
>$(project.GENERATED_WARNING_HEADER:)
close
endfor
output "bindings/python_cffi/$(project.name:c)_cffi/utils.py"
>$(project.GENERATED_WARNING_HEADER:)
>try:
> from . import native
> lib = native.lib
> ffi = native.ffi
>except ImportError:
> from . import dlopen
> lib = dlopen.lib
> ffi = dlopen.ffi
>
>def rebind (_lib, _ffi):
> """Rebind Lib and CompiledFFi objects for given package. Lib object MUST expose all functions
> required by the classes. This is default for zproject based projects"""
> global lib
> global ffi
> lib = _lib
> ffi = _ffi
>
>try:
> text_type = unicode # Python 2
> binary_type = str
>except NameError:
> text_type = str # Python 3
> binary_type = bytes
>
>
>def to_bytes(s):
> return s if isinstance(s, binary_type) else text_type(s).encode("utf-8")
>
>
>def to_unicode(s):
> return s if isinstance(s, text_type) else binary_type(s).decode("utf-8")
>
>
>def to_strings (s):
> """Convert Python native list types to zlist_t of strings"""
> if issubclass (s.__class__, (list, set, frozenset, tuple)):
> foo = lib.zlist_new ()
> lib.zlist_autofree (foo)
> for item in s:
> lib.zlist_append (foo, to_bytes (item))
> return foo
> return None
>$(project.GENERATED_WARNING_HEADER:)
close
endfunction
if count (class, defined (class.api) & class.private = "0")
save_c_class_state ()
# Container for UDTs used by this module
new python_types
endnew
for class where defined (class.api) & class.private = "0"
resolve_class (class)
endfor
generate_binding ()
generate_classes ()
output "bindings/python_cffi/setup.py"
>$(project.GENERATED_WARNING_HEADER:)
>from setuptools import setup
>
>setup(
> name = "$(project.name:c)_cffi",
> version = "$(project->version.major).$(project->version.minor).$(project->version.patch)",
> license = "$(project.license)",
> description = """Python cffi bindings of: $(project.description)""",
> packages = ["$(project.name:c)_cffi", ],
> setup_requires=["cffi"],
> cffi_modules=[
> "$(project.name:c)_cffi/build.py:ffibuilder",
> "$(project.name:c)_cffi/build.py:ffidestructorbuilder"
> ],
> install_requires=["cffi"],
>)
>$(project.GENERATED_WARNING_HEADER:)
restore_c_class_state ()
endif
endfunction