Tagged Questions
0
votes
2answers
36 views
Calling a C function from Python generated by SWIG, with char * output
I'm new to SWIG and if my question is documented, feel free to just post the link and I'll read through it.
I have a C function that takes the form:
int myFunc(char *output, const char *input)
I ...
0
votes
1answer
24 views
wrapping a custom hash table using swig
I have a custom implementation of a hash table written in C for an application that I am developing. Now I want to create a wrapper for it in swig so that I can map them into native types like "dict" ...
1
vote
1answer
29 views
%typemapping of a C++ Library for Python Interface
I want to create a python wrapper for my C++ library. It would be cool, if there is a automatic conversion of std::vector to python lists and the other way round.
Unfortunatly if I add this code to ...
0
votes
2answers
33 views
Where do I find my -I/usr/local directory?
I am trying to run this code sample to test swig on Ubuntu 12.04. I have python 2.7.3 installed on my system. This code seems to be for networked machines. How can I find where my python is installed ...
0
votes
1answer
44 views
SWIG c++ python constructor wrong type (possible namespace issue)
I have a class that is implemented entirely in a header file (HKnotVector.h). I also have a SWIG interface file (HKnotVector.i) that defines some std_vector.i typemaps. There are definitions ...
2
votes
2answers
28 views
Wrapping C-enum in a Python module with Swig
I have a simple enum in C in myenum.h:
enum MyEnum {
ONE,
TWO,
THREE
};
The problem is that when I map this to Python, I can only access the enum through the module name, not through ...
0
votes
1answer
17 views
How to use SWIG to wrap a C++ operator[] in a template class inside a namespace?
I'm using SWIG to wrap an existing C++ library using just its header files. This library uses a namespace and a template class to create Arrays of custom objects. I'm running into problems trying to ...
0
votes
1answer
24 views
Python SWIG bindings with SomeType ** as function argument
I couldn't find any working Python bindings for ffmpeg, so I decided to generate one with SWIG. Generation was quick and easy (no customization, just default SWIG interface), but these a problem using ...
0
votes
1answer
23 views
how to disable the automatic mapping of std::vector<std::vector<double> > to tuple of tuples in swig python?
Apparently, swig transform automatically std::vector<std::vector<double> > to a tuple of tuples. I want to prevent this, and I want the type to be kept as is. How can I achieve it? I tried ...
4
votes
1answer
142 views
How to instantiate a template method of a template class with swig?
I have a class in C++ which is a template class, and one method on this class is templated on another placeholder
template <class T>
class Whatever {
public:
template <class V>
...
0
votes
1answer
80 views
FANN Python Bindings Failing
I just built and installed libfann and the associated python bindings. The python setup seemed to run ok:
$ sudo python setup.py install
Running SWIG before: swig -c++ -python pyfann/pyfann.i
...
1
vote
1answer
44 views
Installing an old version of swig-python in Mac Ports?
A tool I use needs an older version of swig than the version currently in MacPorts.
I was able to install swig 2.0.8_2 using this guide:
How to install an older version of a port
and it works fine.
...
0
votes
0answers
19 views
How to see log4cxx messages from python module (via swig)?
I'm using a c++ module in python and would like to see the messages produced by log4cxx.
I have a module that uses log4cxx internally for logging. I've wrapped it using swig so that I can use it ...
3
votes
1answer
119 views
Convert a std::vector to a NumPy array without copying data
I have a C++ library which currently has some methods inside which return a std::vector defined like
public:
const std::vector<uint32_t>& getValues() const;
I'm currently working on ...
1
vote
1answer
54 views
cmake, swig and python: How to override conflicting symbols
I am using cmake to create a python wrapper with swig. The problem is, that there are conflicting symbols in lapack and python. I have a simple script to undefine the conflicting symbols before ...
0
votes
1answer
36 views
Dynamic Library for Python compilation - no directory
Hopefully this will be a simple one. I'm reading book called Beginning Python and learning how you can make extensions using c or c++ and then use swig to make it available to several languages. I've ...
2
votes
1answer
91 views
C++ to Python with SWIG - Program stop working after import pyd library
Good morning, can somebody please help me.. I am desperate.
I created a basic example to migrate a C++ class to python. I have successfully converted from C++ -> JAVA but now I need it in Python. I ...
0
votes
1answer
70 views
Prevent nested C++ struct from being deleted when parent is GC'd
Here is a pretty trivial example of the problem I'm having. struct Foo contains struct Bar which contains one int. If a Foo is garbage collected, then its inner Bar is also removed, even if there are ...
2
votes
1answer
44 views
python module compiled by SWIG returns wrong result
I'm just playing around SWIG to make python' module for specific C library. I got the trouble with double and float variables. Here an example:
/***** simple.c *****/
#include <stdio.h>
double ...
0
votes
1answer
33 views
M2crypto compilation on aix
When compiling M2Crypto module on AIX5.1 with following scrambled command:
/opt/local/python/2.7.3/bin/python setup.py build_ext --swig /opt/local/swig/1.3.4/bin/swig -I ...
0
votes
0answers
65 views
Passing a numpy bool array to a C++ class template via SWIG
I'm trying to use SWIG to pass a numpy bool array to a C++ class template whose constructor has the standard %apply statement.
In python:
x = numpy.array( [True,False,True], dtype='bool' )
In *.i ...
0
votes
1answer
44 views
Expose an opaque type to python using swig
I'm trying to wrap an opaque type in C using SWIG but I cant understand how to. I have three files listed below:
simplelib.c:
#include <assert.h>
#include <stdlib.h>
#include ...
0
votes
1answer
64 views
SWIG wrapped C++ object created from python prematurely deleted
I wrapped a C++ class and a C++ function in python with SWIG.
class Module { ... };
void register_module(Module *m);
Function register_module() puts the given module in a global list so that from ...
2
votes
0answers
65 views
Export C# DLL to python (like swig)
I know swig to export a wrapper for a C/C++ to python.
Is there any such a tool to export a wrapper for a C# DLL?
0
votes
1answer
58 views
Swig and g++ linking error in Mac 10.6.8
I had some code working under linux and I'm now trying to compile the code under Max 10.6.8. I'm using EPD 32 bit python, g++ version 4.2.1, swig version 2.0.9. Here are the commands I'm using
swig ...
2
votes
0answers
59 views
Obtaining pointer to the base class of SWIG object
I am using a library written in C++ and exposed to Python through SWIG. The class hierarchy looks like this:
PublicLib:
MyBaseClass
PrivateLib:
MyAbstractClass
SomePrivateSubclass : ...
1
vote
1answer
71 views
Swig and Python - different object instantation
I Have a question regarding swig wrapped objects generated on the Python side and wrapped objects generated on the C++ side. Suppose I have the following simple C++ class definitions
#include ...
0
votes
2answers
140 views
glibc detected *** free(): invalid pointer: Python c++ and Swig
I have to run some unit tests which are written in Python. We have the code to test in c++, so I compiled it into a shared object and using swig providing an interface for the python scripts to call ...
0
votes
1answer
90 views
swig: how to pass void* into generic function
I have scenario where I need pass around opaque void* pointers through my C++ <-> Python interface implemented based on SWIG (ver 1.3). I am able to return and accept void* in regular functions ...
1
vote
0answers
72 views
SWIG: What's difference between %pointer_class and %pointer_functions?
Here is my C inteface:
typedef uint16_t my_type1;
typedef uint8_t my_type2;
int my_func(my_type1 * arg1, my_type2 * arg2) {
*arg1 = *arge + 1;
}
now it works if I define my interface file like ...
2
votes
1answer
117 views
How to receive reference and pointer arguments in Python + SWIG?
I have a C++ function in which two arguments are given as the following example.
void func(int& n, char** data)
{
*data = other_func1(); // returns a char array
n = other_func2(); // returns ...
0
votes
1answer
65 views
How to delete a heaped object in the Python wrapper generated with SWIG?
I am developing a Python module along with a C++ library. In the C++ code, I have a function which returns a heaped object as follows.
MyClass* func()
{
MyClass* myclass = new MyClass();
return ...
1
vote
1answer
51 views
Swig[C->Python]: How to handle input or output function arguments which are primitive types?
for example, I have
my_types.h
typedef uint16_t my_type_1;
typedef uint8_t my_type_2;
my_types.c
int my_func(my_type_1 * arg1, my_type_2 * arg2, my_type_3 *arg3)
{
*args3 = *arg1 + *arg2;
...
1
vote
2answers
157 views
subversion 1.6.x(1.7.x) python 2.6+ bindings for Trac
I have Trac 0.12rc1(customized by somebody) it needs python subversion bindings to work with svn repos. But all of my attempts to compile the libraries ended with:
Last command in make:
/bin/sh ...
1
vote
0answers
95 views
access to C structs from Python using SWIG
So, i'm trying make the simplest struct access… and i can't.
yoba.h:
typedef struct{
int bar;
} foo;
yoba.i:
%module yoba
%{
#define SWIG_FILE_WITH_INIT
#include "yoba.h"
%}
%include ...
2
votes
0answers
97 views
How to Give a C++ Class a Python __repr__() with SWIG
I've observed that when one types
help
in the Python repl, one gets
Type help() for interactive help, ...
and when one types
help()
one gets kicked into help mode. I'm pretty sure this is ...
18
votes
2answers
466 views
Dynamically rethrowing self-defined C++ exceptions as Python exceptions using SWIG
Situation
I want to create a Python language binding for a C++ API using SWIG. Some of the API functions may throw exceptions. The C++ application has a hierarchy of self-defined exceptions, like ...
1
vote
1answer
109 views
How does SWIG wrap buffer(char array) and pointer from C to Python?
Swig's manual is kinda confusing to me. I am wrapping my C library to python so that I can test my C code in python. Now I want to know how I can access the C pointer address in Python,
for example, ...
0
votes
1answer
77 views
Python & C: Is it possible to mix Ctypes and Swig together?
I am trying to find a way to test my C code using python scripts. So far my findings are
1) with Ctypes, I can easily load the so and call the function directly from python. Plus, everything happens ...
1
vote
1answer
63 views
Python & SWIG: Using StringIO in place of FILE*
I have the following method which I wrap using SWIG to access it in Python:
void some_class::some_method( FILE *fp, int *pT, int **pO ) {
fscanf( fp, "lalala", pT );
How is it possible to pass ...
0
votes
0answers
52 views
Can i use SWIG for my callback interface when I'm embedding python?
I'm trying to embed a python extension framework into my C program using the documentation here:
http://docs.python.org/2/extending/embedding.html
In section 5.4 of that documentation, an array of ...
3
votes
2answers
78 views
Can i #define void for a swig library?
I am trying to use SWIG to generate a python interface module for a library that I do not control the source of. The library, for some reason, has this line:
#define VOID void
This is causing all ...
2
votes
2answers
227 views
“make install” with CMake + SWIG + Python
I am writing a C++ library which can be used from both C++ and Python on Mac and Linux. So I have decided to use CMake and SWIG for my project.
As well described in the SWIG 2.0 documentation, ...
1
vote
1answer
76 views
SWIG: No typemaps are defined
I have a c++ class that I am trying to wrap for Python using SWIG. I am having trouble trying to wrap one of the functions which takes an array as input.
Here's the header file,
class ...
-2
votes
1answer
41 views
Google Appengine [closed]
I am using top N recommender library for a web application. I also have a python wrapper pysuggest for it but on my computer. I had to build and install it but the app engine server only gives options ...
1
vote
1answer
655 views
How do I change the python version in Maya 2013?
I am aiming to write a python script in Maya 2013 that uses a SWIG wrapped pyd library which is compiled using Python 2.7. I cannot rebuild the pyd in Python 2.6.4 which is the version that Maya is ...
0
votes
1answer
52 views
Python complaining that a SWIG module doesn't exists
Following the different tutorials on the web, I have tried to make a wrapper of a c++ class in python, using SWIG.
My class looks like this:
/*file libraryInstance.h*/
struct LibraryInstance
{
...
0
votes
1answer
64 views
swig + gmp library + compilation error on ubuntu 12.04
Here is my problem : I have to call an algo written in C with python.
I use swig to do it.
So I have an example.i file which looks like this
%module example
%{
#include "example.h"
%}
%include ...
2
votes
1answer
141 views
Compiling C++ for Python using Swig
I have successfully generated the .py and .cpp files needed using:
swig -c++ -python sf_c_api.i
but now I'm trying to make the shared object (.so) and I'm getting swamped with errors.
g++ -Wall -g ...
1
vote
0answers
64 views
Deployment of Python to support embedded and extended ways
I'm currently trying to deploy a site-package using Python 2.7 in a project written in C++ and using SWIG. Everything works very well. Our application is distributed to many clients, and we have one ...


