17
votes
6answers
950 views
Exposing a C++ API to Python
I'm currently working on a project were I had to wrap the C++ classes with Python to be able to script the program. So my specific experience also involved embedding the Python interpreter in our …
13
votes
7answers
1k views
Extending python - to swig or not to swig
I found the bottleneck in my python code, played around with psycho etc. Then decided to write a c/c++ extension for performance.
With the help of swig you almost don't need to care about arguments …
8
votes
7answers
690 views
Prototyping hybrid Python code
I have been mulling over writing a peak fitting library for a while. I know Python fairly well and plan on implementing everything in Python to begin with but envisage that I may have to re-implement …
5
votes
6answers
1k views
Python: SWIG vs ctypes
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 …
4
votes
2answers
441 views
C to Python via SWIG: can’t get void** parameters to hold their value
I have a C interface that looks like this (simplified):
extern bool Operation(void ** ppData);
extern float GetFieldValue(void* pData);
extern void Cleanup(p);
which is used as follows:
void * p = …
4
votes
3answers
1k views
How to expose std::vector<int> as a Python list using SWIG?
I'm trying to expose this function to Python using SWIG:
std::vector<int> get_match_stats();
And I want SWIG to generate wrapping code for Python so I can see it as a list of integers.
…
4
votes
2answers
637 views
Crash when calling into C++ library from Perl using SWIG (AIX 5.1)
I'm trying to call into a C++ library from Perl on an AIX 5.1 machine. I've created a very simple test project to try to exercise this.
My C++ shared library (test.cpp):
#include <stdio.h>
…
4
votes
6answers
456 views
How should I unit test a code-generator?
This is a difficult and open-ended question I know, but I thought I'd throw it to the floor and see if anyone had any interesting suggestions.
I have developed a code-generator that takes our python …
3
votes
1answer
122 views
Python Hangs When Importing Swig Generated Wrapper
Hi,
Python is 'hanging' when I try to import a c++ shared library into the windows version of python 2.5 and I have no clue why.
On Linux, everything works fine. We can compile all of our C++ code, …
3
votes
2answers
119 views
How do I build a Perl hash in C, using SWIG?
I'm trying to create a Perl hash from within a C library. Here's what I've got so far:
static void add_string_to_perl_hash ( HV *hv, char * key, char *value ) {
SV *obj = sv_2mortal(newSVpv(value, …
3
votes
1answer
376 views
How to use swig to generate php interface for c++ so
Ok,
I have tried a 100 things and i can not get my so file to interface with php using swig. I can generate the files, then i had to compile zend and link with that to make the so but it keeps seg …
2
votes
2answers
54 views
wxlua bindings does not work with my shaderobjects made using SWIG
Hi,
I made a class using wxwdigets
//wrapper over wxIPV4address
class IPV4addressLua : public wxIPV4address
{
public:
IPV4addressLua();
~IPV4addressLua();
…
2
votes
2answers
102 views
Using SWIG with pointer to function in C struct
I'm trying to write a SWIG wrapper for a C library that uses pointers to functions in its structs. I can't figure out how to handle structs that contain function pointers. A simplified example …
2
votes
3answers
165 views
How do I propagate C++ exceptions to Python in a SWIG wrapper library?
I'm writing a SWIG wrapper around a custom C++ library which defines its own C++ exception types. The library's exception types are richer and more specific than standard exceptions. (For example, one …
2
votes
2answers
242 views
Python Properties & Swig
I am attempting to create python bindings for some C++ code using swig. I seem have run into a problem trying to create python properties from some accessor functions I have for methods like the …
