Generate python bindings, what methods/programs to use [closed]

人走茶凉 提交于 2019-12-02 22:52:06

There are only two projects I know to have automatic binding generators for C++. The first one is SWIG. As some other answer has already said, it is a little bit old style, but it works. The second one is Boost.Python - by itself, it does not generate the bindings automatically, but you can use Boost.Pyste to do it for you. It requires GCC-XML to parse your original source code and write the Boost.Python bindings. Both options do support virtual methods in C++ that can be overloaded from Python.

That said, I must complement that, normally, when you are binding, you don't blindly bind everything you have in C++ into Python - if you do it like this you won't get a very pythonic feeling from the python side. Instead, you design how you'd like your library to be used in Python, in the most pythonic possible way, and then you walk back and see how to patch it through to your C++ code using one of the possible binding libraries. For example, instead of dealing with std::vector's, you'd prefer your library calls handle Python lists or iterables. If your C++ library receives a std::map, you'd like that is handled with Python dictionaries. If it is an array, maybe a numpy.ndarray would be more convenient. And so on...

That said, you can still design your bindings so that your maintenance is minimized.

Here is a list of other Python/C++ wrapping, in case you decide to look around a bit further:

  1. SWIG - as you already know
  2. Boost.Python - this is what we normally use around here - pretty well structured
  3. Cython - very neat syntax close to Python - they claim to be much faster than Boost.Python
  4. SIP - not very much spread, but it is there
  5. pybind11 - Syntax similar to Boost.Python, compact implementation thanks to C++11.

These are now inactive:

  1. PyBindGen - claims to be the fastest, but inactive since may 21st, 2017, previous release on 2014 - currently maintained on github (https://github.com/gjcarneiro/pybindgen/releases)
  2. ECS:Python - inactive since december 6th, 2014 (v2.8), moved to github (https://github.com/MarcusTomlinson/ECS-Python)
  3. PyCXX - C++ facilities to make it easier to write Python extensions - inactive? Last release was v7.0.2 on 23rd april 2017
  4. CLIF - CLIF provides a common foundation for creating C++ wrapper generators for various languages - inactive? Not much activity on repo (only 14 commits)

For completeness, it is also possible to load compiled C code directly into Python without creating formal bindings. You can do this using FFI with any of these two Python modules:

  1. ctypes - This native to Python and requires no external module installation.
  2. cffi - This is a new package inspired by the equivalent design on the Lua JIT.
Gauthier Boaglio

If you're looking for speed, I would definitely vote for Cython too. As far as I know about other ways to interface C++ with Python, Cython is not that much heavy to maintain/update compared to other binding tools, regarding to the "fluidity of workflow" gain. (Cythonized code argues to be as fast as pure C, or not far from that, which also make it very interesting).

Anyway, there's several good API's for connecting python code with C++ (Boost.Python, ...), but I think that all of them will result in the need to expose methods directly in your C++ source code (You guys tell me if I'm wrong, or imprecise).

In the other hand, Cython will give you the possibility to keep your C++ API (GUI, or whatever...) strictly separated from the exposure sources (so called .pyx extensions). The final workflow would be :

C++ API => Compilation as shared object => Cython extension(s) (importing and exposing C++ features) => Compilation of the extension(s) => Using the extension (extension to be added to your python path).

The good news is that you'll have to maintain only the changing parts of your pool of .pyx files related to the evolving C++ features (among those which require to be exposed). It is kind of an investment at first, but, to my experience, once this workflow is setup, it is quite straight forward to make the whole stuff grow up in complexity.

Now concerning your need to extend classes that have virtuals and override them from Python (If I get correctly what you meant). It is doable. Once again, not so direct, but you should have a look at this thread.

The bad news : in that particular case you'll have to create some extra C++ adapters/interfaces, to enable the call of the parent method if the extended python one doesn't override the given parent's method. (Note that redefining a C++ exposed method, virtual or not, from python is a replacement of the function, but is absolutely not equivalent to an override).

Hummf, now that I am reading myself back, it looks a bit confusing. Hope this is still helpful.

I can be more specific about the workflow you'll have to deal with if you choose the Cython option, if you ask me to, but I think that the thread linked above is quite a good starting point...

For modern C++ use CLIF (https://github.com/google/clif). It does not discover your API, you need to describe it in Python terms.

CLIF will recompile your header with the latest LLVM/Clang compiler and produce C++ source code for a Python extension module.

It can understand complex data structures: def f() -> dict<str, set<int>>.

For modern C++, use cppyy: http://cppyy.readthedocs.io/en/latest/

It's based on Cling, the C++ interpreter for Clang/LLVM. Bindings are at run-time and no additional intermediate language is necessary. Thanks to Clang, it supports C++17.

Specific to the original question of using Qt: several recent updates were done explicitly to support bindings generation for all of KDE.

For speed: cppyy is natively supported by PyPy.

Note: I'm the main author of cppyy.

AFAICT, there aren't that many options with C++. One of the older projects is SWIG; it's reported to be a little arcane and clunky, but since it's been around a long time it should also cover a lot of stuff not handled by other projects. You might also want to look at Cython.

SWIG is a great tools that can do what you want

http://sourceforge.net/projects/swig/

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!