In python, under what circumstances is SWIG a better choice than ctypes for calling entry points in shared libraries? Let's assume you don't already have the SWIG interface file(s).

What are the performance metrics of the two?

link|improve this question

Any particular reason you aren't considering Pyrex/Cython? – Thomas Wouters Sep 25 '08 at 20:48
1  
ummm, yes -- the debate at work is over SWIG vs. ctypes! :) – Kevin Little Sep 26 '08 at 3:23
Well, now you have new ammo and you can consider Pyrex/Cython as well. It's the middle ground between ctypes and SWIG: compile-time but python-like. – Thomas Wouters Sep 26 '08 at 8:37
feedback

9 Answers

up vote 22 down vote accepted

SWIG generates (rather ugly) C or C++ code. It is straightforward to use for simple functions (things that can be translated directly) and reasonably easy to use for more complex functions (such as functions with output parameters that need an extra translation step to represent in Python.) For more powerful interfacing you often need to write bits of C as part of the interface file. For anything but simple use you will need to know about CPython and how it represents objects -- not hard, but something to keep in mind.

ctypes allows you to directly access C functions, structures and other data, and load arbitrary shared libraries. You do not need to write any C for this, but you do need to understand how C works. It is, you could argue, the flip side of SWIG: it doesn't generate code and it doesn't require a compiler at runtime, but for anything but simple use it does require that you understand how things like C datatypes, casting, memory management and alignment work. You also need to manually or automatically translate C structs, unions and arrays into the equivalent ctypes datastructure, including the right memory layout.

It is likely that in pure execution, SWIG is faster than ctypes -- because the management around the actual work is done in C at compiletime rather than in Python at runtime. However, unless you interface a lot of different C functions but each only a few times, it's unlikely the overhead will be really noticeable.

In development time, ctypes has a much lower startup cost: you don't have to learn about interface files, you don't have to generate .c files and compile them, you don't have to check out and silence warnings. You can just jump in and start using a single C function with minimal effort, then expand it to more. And you get to test and try things out directly in the Python interpreter. Wrapping lots of code is somewhat tedious, although there are attempts to make that simpler (like ctypes-configure.)

SWIG, on the other hand, can be used to generate wrappers for multiple languages (barring language-specific details that need filling in, like the custom C code I mentioned above.) When wrapping lots and lots of code that SWIG can handle with little help, the code generation can also be a lot simpler to set up than the ctypes equivalents.

link|improve this answer
2  
Was struggling with SWIG and came across this answer. It convinced me to switch to CTypes. [Why didn't I think to look on stackoverflow first ;-)] A good overview of may be found at: slideshare.net/gnunify/c-types-extending-python – CyberED Aug 25 '09 at 2:20
I much prefer CTypes because it avoids compilation altogether. This is particularly advantageous when writing a module that might be used on multiple platforms, and particularly those that don't have easy access to a compiler (such as 64-bit Windows). CTypes is also python-version-agnostic. That is, you can write a ctypes interface, and it can work under Python 2.4, 2.6, and 3.1 without modification. – Jason R. Coombs Sep 10 '09 at 16:14
feedback

CTypes is very cool and much easier than SWIG, but it has the drawback that poorly or malevolently-written python code can actually crash the python process. You should also consider boost python. IMHO it's actually easier than swig while giving you more control over the final python interface. If you are using C++ anyway, you also don't add any other languages to your mix.

link|improve this answer
Oooooh! Shiny new thing I didn't know about -- thanks for the pointer to Boost.Python!! – Kevin Little Sep 25 '08 at 20:45
feedback

I have a rich experience of using swig. SWIG claims that it is rapid solution for wrapping things. But in the real life...


What the intent of SWIG is:

(If you dont need this general words, scroll down)

Lets say, you have a OOP C++ code and you want to use it in different language. First thing you do is creating flattening C-style wrapping for each of the classes. In general, this wrapping would look like this:
Original C++ class

class Cat{
public:
    Cat();
    ~Cat();
    bool CatchMouse();
    void Purrrr();
}

Wrapping

cat*  Create_Cat(){ return new Cat();}
void  Delete_Cat(cat* cat) {delete cat;}
bool  Cat_CatchMouse(cat* cat) { return cat->CatchMouse(); }
void  Cat_Purrrr(cat* cat) { return cat->Purrrr();}

Then you can interop these functions (Create_Cat, Cat_CatchMouse, etc.) in your target language and recreate the class structure so that Cat_CatchMouse became back cat.catchMouse().
So the full scheme is (tl = target language):

//   tl           tl                         C++ wrapping                C++
cat.catchMouse -> Cat_CatchMouse(ptr) -> Cat_CatchMouse(cat* cat) -> cat->CatchMouse()

Yes, there are tools to do this in different way for different languages and for python in particular (like Py++)... But this is the most general, crossplatform way.

And if you have >140 classes to wrap, first thing you would think about is how to automate this monotonous mechanical task. And that is EXACTLY what the intent of SWIG is.


SWIG drawbacks for python:

(Or what is in the real life)

SWIG is developed to be general, for everyone and for 20+ languages. This leads to
- configuration (SWIG .i templates),
- lack of treatment of some special cases (see python properties further),
- and maybe some lack of the performance (maybe not).

For python it leads to the next drawbacks

1) Code style inconsistancy. C++ and python have very different code styles (that is obvious, certainly), the possibilities of swig of making target code more pythonish is very limited. As example, it is butt-heart to create properties from getters and setters. See this q&a

2) Lack of documentation. Swig have some some good documentation. But if one caught something that is not in the documentation, there is no information at all. No blogs nor googling helps. So one have to heavily dig SWIG code in such cases... That is terrible, I could say...

But !!! If you produced swig interface files once, you can wrap this C++ code to ANY of other 19 languages (!!!).


When to USE SWIG?

So I concluded for myself two cases when the swig is good to use:

2) If one needs to wrap C++ code for several languages. Or if potentially there could be a time when one would need to distribute the code for several languages. Using SWIG is reliable in this case.

1) If one needs to rapidly wrap just several functions from some C++ library for own use. (Not for creating public wrapped library)


Performance

One big concern about using SWIG was a performance. Since version 2.04 SWIG includes '-builtin' flag wich makes SWIG even faster than other automated ways of wrapping. At least some benchmarks shows this.


*Update *: It is a year and half passed as we did a conversion of our library by using SWIG.

First we made a python version.There were several moments when we experienced troubles with SWIG - it is true. But right now we expanded our library to Java and .NET. So we have 3 languages with 1 SWIG. And I could say that SWIG rocks in terms of saving a LOT of time.

link|improve this answer
Especially thanks for the Update part with real project experience after a year and half! – frank28_nfls Mar 7 at 7:28
feedback

You can also use Pyrex, which can act as glue between high-level Python code and low-level C code. lxml is written in Pyrex, for instance.

link|improve this answer
4  
"Cython is a language that makes writing C extensions for the Python language as easy as Python itself. Cython is based on the well-known Pyrex, but supports more cutting edge functionality and optimizations." – mtasic Aug 11 '09 at 17:23
feedback

ctypes is great, but does not handle C++ classes. I've also found ctypes is about 10% slower than a direct C binding, but that will highly depend on what you are calling.

If you are going to go with ctypes, definitely check out the Pyglet and Pyopengl projects, that have massive examples of ctype bindings.

link|improve this answer
feedback

In my experience, ctypes does have a big disadvantage: when something goes wrong (and it invariably will for any complex interfaces), it's a hell to debug.

The problem is that a big part of your stack is obscured by ctypes/ffi magic and there is no easy way to determine how did you get to a particular point and why parameter values are what they are..

link|improve this answer
feedback

I'm going to be contrarian and suggest that, if you can, you should write your extension library using the standard Python API. It's really well-integrated from both a C and Python perspective... if you have any experience with the Perl API, you will find it a very pleasant surprise.

Ctypes is nice too, but as others have said, it doesn't do C++.

How big is the library you're trying to wrap? How quickly does the codebase change? Any other maintenance issues? These will all probably affect the choice of the best way to write the Python bindings.

link|improve this answer
1  
@Dan, the libraries I'm dealing with are third-party -- VMware's VIX API, for example. I have no choice but to use them as best I can. I use the standard Python API whenever possible, believe me! :) – Kevin Little Sep 26 '08 at 14:41
feedback

Just wanted to add a few more considerations that I didn't see mentioned yet. [EDIT: Ooops, didn't see Mike Steder's answer]

If you want to try using a non Cpython implementation (like PyPy, IronPython or Jython), then ctypes is about the only way to go. PyPy doesn't allow writing C-extensions, so that rules out pyrex/cython and Boost.python. For the same reason, ctypes is the only mechanism that will work for IronPython and (eventually, once they get it all working) jython.

As someone else mentioned, no compilation is required. This means that if a new version of the .dll or .so comes out, you can just drop it in, and load that new version. As long as the none of the interfaces changed, it's a drop in replacement.

link|improve this answer
feedback

Something to keep in mind is that SWIG targets only the CPython implementation. Since ctypes is also supported by the PyPy and IronPython implementations it may be worth writing your modules with ctypes for compatibility with the wider Python ecosystem.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.