Tagged Questions

SWIG is an interface compiler that connects programs written in C and C++ with scripting languages such as Perl, Python, Ruby, and Tcl.

learn more… | top users | synonyms

27
votes
0answers
803 views

Why can't I get swig wrap std::vector to Ruby class?

I have an application with an embedded Ruby interpreter, and interfaces to STL classes generated by swig. Pretty much everything worked out fine thanks to swig, except for one thing: %module Stuff ...
25
votes
9answers
6k views

Extending python - to swig, not to swig or Cython

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 ...
23
votes
6answers
3k 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 ...
19
votes
9answers
8k 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 ...
17
votes
4answers
2k views

Access C++ shared library from Java: JNI, JNA, CNI, or SWIG?

Which of the following (or other) method would you recommend for accessing a C++ shared library from Java and why? JNI: I hear this has a number of pitfalls and is quite the undertaking? SWIG: ...
15
votes
1answer
663 views

creating PHP C/C++ extension modules using SWIG

I have written some C/C++ extension modules for PHP, using the 'old fashioned way' - i.e. by using the manual way (as described by Sarah Golemon in her book). This is too fiddly for me, and since I ...
12
votes
9answers
390 views

Looking for a convenient way to call Java from C++

It seems most documentation or helper libraries relating to JNI (Java Native Interface) are concerned with calling native code from Java. This seems to be the main use of it, even though it is capable ...
12
votes
7answers
2k views

Prototyping with Python code before compiling

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 ...
10
votes
3answers
2k views

python class inherits object

Is there any reason for a class declaration to inherit object? I just found some code that does this and I can't find a good reason why. class MyClass(object): # class code follows... The code ...
10
votes
8answers
1k 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 ...
9
votes
1answer
379 views

Resource garbage collected too early

I've created a PHP extension with SWIG and everything works fine, but I'm observing some strange garbage collection behavior when chaining method calls. For example, this works: $results = ...
9
votes
13answers
713 views

Is it a good idea for me to learn Python before C or some other Compiler language?

Right now I am going through MIT's introduction to Computer Science course via OpenCourseWare. As a part of this course I am learning the Python Language. I've read a lot of things about the benefits ...
8
votes
2answers
111 views

How to use std::vector in PHP using SWIG

I am working on wrapping a C++ API in PHP using SWIG. I am most of the way there but I am having problems with a function that returns a vector. The header looks something like this: #include ...
8
votes
2answers
338 views

SWIG (v1.3.29) generated C++ to Java Vector class not acting properly

I have some native C++ code that I'm converting to Java using SWIG so that my Java application can use it. In particular there are some functions that return std::vector. Here's a snippet of my ...
8
votes
3answers
289 views

Marshaling a Python PIL Image using SWIG

I've got a library that takes in a very simple C image structure: // Represents a one-channel 8-bit image typedef struct simple_image_t { uint32 rows; uint32 cols; uint8 *imgdata; } ...
8
votes
2answers
487 views

SWIG C++ bindings with callback

I am writing some SWIG/Python bindings for some C++ code. This is for what is called the Kinect Accidental API, I have the motor and led functions working. The callbacks to the Listener class which ...
8
votes
2answers
6k views

Python SVN bindings for Windows

Where can I find precompiled Python SWIG SVN bindings for Windows?
7
votes
1answer
184 views

SWIG: 'module' object has no attribute 'Decklist'

I'm having one hell of a time with SWIG, due in part to the lack of good C++ examples to learn from. I finally got my first program to compile with SWIG, but am having troubles running it. Let me ...
6
votes
3answers
190 views

using swig to bind google protocol buffers

I'm writing python program that needs to process a lot of small but complex protobuf-encoded messages. I tried to use the Python implementation of protocol buffers, which is written in pure python, ...
6
votes
3answers
433 views

In Python, how to use a C++ function which returns an allocated array of structs via a ** parameter?

I'd like to use some existing C++ code, NvTriStrip, in a Python tool. SWIG easily handles the functions with simple parameters, but the main function, GenerateStrips, is much more complicated. What ...
6
votes
2answers
974 views

Easiest way of unit testing C code with Python

I've got a pile of C code that I'd like to unit test using Python's unittest library (in Windows), but I'm trying to work out the best way of interfacing the C code so that Python can execute it (and ...
6
votes
3answers
458 views

Disassembling with python - no easy solution?

I'm trying to create a python script that will disassemble a binary (a Windows exe to be precise) and analyze its code. I need the ability to take a certain buffer, and extract some sort of struct ...
6
votes
2answers
998 views

Calling functions in a Lua table from C++

I have for example, a Lua table/object: bannana And this Lua table has a function inside it called chew, that takes a parameter bannana.chew(5) I have also used SWIG, and have for example a ...
6
votes
1answer
949 views

Lua bindings to C++ and garbage collection

Ok, here's a problem I'm having. I have Lua bindings to a rendering engine that has an internal render manager that keeps its own track of pointers for the render scene and manages them. The problem ...
6
votes
1answer
1k views

How to use swig to generate php interface for c++ so

I have tried a hundred 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 ...
6
votes
2answers
4k 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. ...
5
votes
2answers
338 views

Array allocation of SWIG C++ type from Python

I'm writing a python script for a program that has exposed its C++ API using SWIG. A SWIG exposed function has an interface like this: void writePixelsRect(JoxColor* colors, int left, int top, int ...
5
votes
4answers
541 views

Fast conversion of C/C++ vector to Numpy array

I'm using SWIG to glue together some C++ code to Python (2.6), and part of that glue includes a piece of code that converts large fields of data (millions of values) from the C++ side to a Numpy ...
5
votes
1answer
232 views

SWIG: Reporting Python exceptions from C++ code

I am using a library, which specifies in its API docs to define a class inherited from some particular class of of the library. The library itself is written in C++ and the bindings to Python is ...
5
votes
1answer
182 views

Speed of swig wrappers

If I were to write several classes in c++ then use swig to do the conversion so I could later use them in python, would they run faster or slower than if I completely rewrote them in python? Or is ...
5
votes
4answers
555 views

Calling C++ library from PHP web app: system() vs SWIG PHP extension?

I have a PHP web application that needs to call a function in a C++ library. This library is provided by a vendor (libfoo.a on a linux machine). My first instinct is to create a C++ executable ...
5
votes
2answers
373 views

swig no module named _example

I cannot reproduce the basic SWIG example on windows. My error is stated in the SWIG docs and I am sure that I do the 2 fixes they mention. For this error: >>> import example Traceback (most ...
5
votes
2answers
713 views

How can I make Swig correctly wrap a char* buffer that is modified in C as a Java Something-or-other?

I am trying to wrap some legacy code for use in Java and I was quite happy to see that Swig was able to handle the header file and it generate a great wrapper that almost works. Now I am looking for ...
5
votes
1answer
794 views

SWIG generated code fails to run on PHP 5.3.2 undefined symbol: zend_error_noreturn

I have a library that I have been using successfully with PHP 5.1.6 with the help of some wrapper code generated by SWIG (v1.3.40). I have just upgraded to PHP 5.3.2 and I am seeing the following ...
5
votes
1answer
685 views

Python ctypes callback function to SWIG

I have a SWIG C++ function that expects a function pointer (WNDPROC), and want to give it a Python function that has been wrapped by ctypes.WINFUNCTYPE. It seems to me that this should be compatible, ...
5
votes
3answers
1k 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 ...
4
votes
1answer
67 views

avoiding duplicate SWIG boilerplate when using many SWIG-generated modules

When generating an interface module with SWIG, the generated C/C++ file contains a ton of static boilerplate functions. So if one wants to modularize the use of SWIG-generated interfaces by using ...
4
votes
2answers
61 views

SWIG C++ to Python: Warning(362): operator= ignored

I am exporting a C++ class to Python and I noticed that during compilation, SWIG issued the following warning: Warning(362): operator= ignored I am not sure why the operator is being overloaded, ...
4
votes
1answer
77 views

Perl: IPC::Shareable and SWIG'ed C++ object don't agree

For a certain Perl project of mine I need several Perl processes to share some resources, located in a C++ library. (Don't ask, it's not the core of this question, just the context.) Thus I am trying ...
4
votes
1answer
294 views

Calling Java from MATLAB

I have been using Swig to create a Java wrapper for a a library written in C++. The wrappers get generated into a package and then jar'ed. The files are compiled correctly and work perfectly with java ...
4
votes
1answer
255 views

Wrap python list to unsigned char*

Edit : Hi all !! I'm currently trying to access to C++ functions from Python and I'm facing to a problem when I try to pass Python list as argument to a function. here is the C++ function ...
4
votes
2answers
110 views

debugging a shared library wrapped by SWIG in perl

I have wrapped my C/C++ code using SWIG in Perl. I have few segmentation fault because of the wrapped code. I am trying to use ddd with the Perl script but unfortunately even if I set a breakpoint on ...
4
votes
2answers
248 views

Difference between “%include” and “#include”

In SWIG, what is the difference between the "%include" directive, and the standard C "#include"? For instance, in all the tutorials, why do they typically look something like this: %module my_module ...
4
votes
1answer
433 views

How do I prevent AccessViolationException when returning a string from C++ to C# on 64-bit Windows?

I am using a third-party, proprietary DLL for which the source code is not available to me. Wrapper code that appears to have been auto-generated using SWIG 1.3.39 is, however, available to me. The ...
4
votes
2answers
692 views

SWIG, boost shared pointers and inheritance

I'm having trouble with SWIG, shared pointers, and inheritance. I am creating various c++ classes which inherit from one another, using Boost shared pointers to refer to them, and then wrapping these ...
4
votes
2answers
332 views

How to handle exceptions from C++ via SWIG to Java

We are implementing a wrapper on C++ code for exposure to Java clients. I have seen the SWIG documents about exception handling but what does this translate to in coding terms in the three layers ...
4
votes
1answer
2k views

SWIG: How to wrap std::string& (std::string passed by reference)

I am using SWIG to access C++ code from Java. What is the easiest way to expose a std::string parameter passed by non-const reference? I have primitives passed by reference exposed as Java arrays, ...
4
votes
3answers
363 views

How do I conditionally compile C code snippets to my Perl module?

I have a module that will target several different operating systems and configurations. Sometimes, some C code can make this module's task a little easier, so I have some C functions that I would ...
4
votes
1answer
217 views

interpreting Java-native communication performance

Right now I'm using JNA for Java-native communication and am pleased with its simplicity. However I do need to optimize performance and am considering using other bindings. My question is this: what ...
4
votes
2answers
3k views

java - JNI/JNA - Get Window Title

Looking to get back into the development space; primarily using Java to call some native win32 functions (I don't desire to build in .NET).... Can someone point me to a place where I can read the ...

1 2 3 4 5 11