def _compile_pyx(self, filename, m, src):
"""
Use Cython to compile the schema
"""
import capnpy.ext # the package which we will load the .so in
import imp
#
# the generated file needs a reference to __compiler to be able to
# import other schemas. In pure-python mode, we simply inject
# __compiler in the __dict__ before compiling the source; but in pyx
# mode we cannot, hence we need a way to "pass" an argument from the
# outside. I think the only way is to temporarily stick it in some
# global state, for example sys.modules. Then, as we don't want to
# clutter any global state, we cleanup sys.modules.
#
# So, when compiling foo.capnp, we create a dummy foo_tmp module which
# contains __compiler. Then, in foo.pyx, we import it:
# from foo_tmp import __compiler
#
dll = self._pyx_to_dll(filename, m, src)
tmpmod = types.ModuleType(m.tmpname)
tmpmod.__dict__['__compiler'] = self
tmpmod.__dict__['__schema__'] = str(filename)
sys.modules[m.tmpname] = tmpmod
modname = 'capnpy.ext.%s' % m.modname
mod = imp.load_dynamic(modname, str(dll))
#
# clean-up the cluttered sys.modules
del sys.modules[mod.__name__]
del sys.modules[tmpmod.__name__]
return mod
评论列表
文章目录