SWIG is an interface compiler that connects programs written in C and C++ with scripting languages such as Perl, Python, Ruby, and Tcl.
3
votes
1answer
354 views
Pass an array to a wrapped function as pointer+size or range
Given a header like:
#include <iostream>
#include <algorithm>
#include <iterator>
inline void foo(const signed char *arr, size_t sz) {
std::copy_n(arr, sz, ...
36
votes
9answers
10k 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 ...
29
votes
5answers
7k 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: ...
2
votes
1answer
1k views
How to create a DLL with SWIG from Visual Studio 2010
I've been trying for weeks to get Microsoft Visual Studio 2010 to create a DLL for me with SWIG. If you have already gone through this process, would you be so kind as to give a thoughtful ...
5
votes
2answers
2k views
Compiling Quantlib via SWIG for C#
Anyone have any experience using SWIG? I am currently researching QuantLib and saw that C# code can be generated using SWIG. We are exploring options to create a combined library of financial ...
0
votes
1answer
145 views
SWIG : Unable to access constructor with double pointer
I am new to SWIG. I have created a python module to use c++ classes.
My cpp header code is
GradedComplex.h :
class GradedComplex
{
public:
typedef std::complex<double> dcomplex;
typedef ...
5
votes
2answers
2k views
How to SWIG in VS2010?
Hey Everybody,
I'm trying to SWIG a multi file project that I made in VS2010 (c++) to python. I've managed to link the Python26.lib file, and have SWIG generating a wrapper .cpp file for my main ...
11
votes
2answers
6k 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
6k views
How can I read the window title with JNI or JNA?
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 ...
0
votes
2answers
449 views
How should I write the .i file to wrap callbacks in java or C#
My C program uses callback functions which are periodically called. I want to be able to handle the callback functions in a Java or C# program. How should I write the .i file to achieve this?
The C ...
31
votes
9answers
12k 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 ...
19
votes
6answers
2k views
How can I implement a C++ class in Python, to be called by C++?
I have a class interface written in C++. I have a few classes that implement this interface also written in C++. These are called in the context of a larger C++ program, which essentially implements ...
6
votes
1answer
389 views
SWIG Java Retaining Class information of the objects bouncing from C++
Ok, there's a keyword that I've intentionally kept away from the tags and the title. That's "Android", but that's because even though the project is in Android, I don't think my question has anything ...
3
votes
2answers
689 views
SWIG/python array inside structure
I've got a structure defined inside header.h that looks like :
typedef struct {
....
int icntl[40];
double cntl[15];
int *irn, *jcn;
....
When I init an object with this ...
2
votes
3answers
593 views
How Python can get binary data(char*) from C++ by SWIG?
I am using C++ functions in Python by SWIG,and I met a problem now.
When I pass a char * from C++ to Python, the char * is truncted by Python.
For example:
example.h:
char * fun()
{
return ...
1
vote
4answers
1k views
swig + mono : C# example errors of not finding the library
I use swig 2.0.1 + mono 2.6/2.8 on Mac OS X 10.6.4.
The overall build is OK, and the build of the C# examples is also OK. The problem is that when I run the example (mono runme.exe), I always get ...
0
votes
1answer
99 views
call c++ function in Java with input and output arguments
I have a c++ code which has been connected to a visual basic user interface by someone else. Here is one of the functions code that connects c++ to visual basic:
extern "C" void PASCAL EXPORT RCS( ...
26
votes
6answers
6k 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 ...
7
votes
4answers
2k 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
4answers
4k views
What are the best practices when using SWIG with C#?
Has anybody out there used the SWIG library with C#? If you have, what pitfalls did you find and what is the best way to use the library? I am thinking about using it as a wrapper for a program that ...
3
votes
2answers
1k views
Problems trying to build PocketSphinxAndroidDemo using NDK
I am trying to compile PocketSphinxAndroidDemo, which provides an example implementation of the CMU pocketsphinx speech recognizer on Android. I first received an error similar to the discussion here. ...
8
votes
2answers
1k 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 ...
5
votes
3answers
2k 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 ...
3
votes
1answer
2k views
registering java function as a callback in C function
I am trying to implement some C code in Java by using SWIG 1.3. Now I
have to rebuild some existing C into Java code and to provide a function
pointer to a Java function to the C method.
The C code:
...
13
votes
8answers
2k 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 ...
4
votes
1answer
355 views
How to pass array(array of long in java) from Java to C++ using Swig
I have sample .h file like below:
class Test
{
public:
void SelectValues(long long values[])
};
I used SWIG and created JNI interface from below .i file
%module MyLib
%include "carrays.i"
...
3
votes
4answers
2k views
How do I pass arrays from Java to C++ using Swig?
I have a method in C++ that takes an array of doubles as an argument. I'm calling this method from Java and need to pass an array of doubles. The C++ routine reads and modifies the values of the ...
2
votes
1answer
500 views
Swig a DLL into Java
Does anybody know whether it's possible to use Swig to generate a Java interface for a DLL with bundled C headers? There're many tutorials describing what to do if you have the source ...
0
votes
1answer
1k views
Compiling a SWIG Python wrapper for a static library?
This is a noob question. I'm trying to learn how to use SWIG to make a python interface for a C++ library. The library is a proprietary 3rd party library; it comes to me in the form of a header file ...
1
vote
3answers
1k views
Creating a DLL from a wrapped cpp file with SWIG
I am in the process of learning how to use SWIG on Windows.
The following is my c++ code:
/* File : example.cxx */
#include "example.h"
#define M_PI 3.14159265358979323846
/* Move the shape to ...
1
vote
1answer
194 views
extending 'incomplete' types (SWIG)
I'm looking for a way to extend (i.e. add new members to a type using the %extend directive) a type that is defined in the library file itself while the header files of the library provide only a ...
1
vote
2answers
2k views
SWIG wrapping C++ for Python: translating a list of strings to an STL vector of STL strings
I would like to wrap a C++ function with SWIG which accepts a vector of STL strings as an input argument:
#include <iostream>
#include <string>
#include <vector>
using namespace ...
1
vote
3answers
441 views
How to map sockaddr_in C Structure to Java using SWIG
I have a C function that I want to call using Java via SWIG but I'm unsure how to handle the sockaddr_in C structure. Anyone have any examples on how I can handle the sockaddr_in?
1
vote
3answers
2k views
SWIG: C++ to C#, pointer to pointer marshalling
I have some legacy code I want to port to C#. I cannot modify the C++ code, I just have to make do with what I'm given.
So, the situation. I'm using SwIG, and I came across this function:
void ...
1
vote
3answers
798 views
How to properly downcast in C# with a SWIG generated interface?
I've got a very large and mature C++ code base that I'm trying to use SWIG on to generate a C# interface for. I cannot change the actual C++ code itself but we can use whatever SWIG offers in the way ...
-1
votes
1answer
215 views
Getting AccessViolation Exception when returning a bool from C++ to C#
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 ...
16
votes
7answers
3k 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 ...
8
votes
8answers
2k 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 ...
16
votes
2answers
10k views
11
votes
4answers
533 views
Is there a C++, NET, Java - Plugin Framework?
EDIT: Seems like there is no solution, at least not cross-platform. COM would be an option on Windows though, for others who can live with that. I also didn't further investigate my own solution since ...
8
votes
1answer
186 views
Iterating over std::map in PHP with SWIG
I am using SWIG to wrap a function that returns an std::map in PHP.
In the PHP code, I need to iterate over the elements of the map.
Thw SWIG library provides support for std::map with the std_map.i ...
8
votes
3answers
566 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;
} ...
5
votes
2answers
2k 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
1answer
1k views
SWIG wrapped vector of vectors (C++ to python) - how to recognise the inner vector as a proxy object?
I'm facing a similar issue to Wrap std::vector of std::vectors, C++ SWIG Python - but it's not just simple C++ parsing. I have the following in my C++ code
namespace ns {
typedef unsigned long ...
8
votes
1answer
3k views
Generating Java interface with SWIG
I'm using SWIG to make a Java wrapper of a C++ library (about Json (de)serialization) to use it on Android. I defined an abstract class in C++, representing an object which can be (de)serialized :
...
7
votes
1answer
140 views
javascript extension to use C based APIs(clutter) in a webapp
My goal is to use the C libraries to form web apps.
I have choosen the way to do that via using "SWIG" tool.
The Swig tool requires three things
1) .c file which defines all the functions.
2) .i ...
5
votes
1answer
468 views
No iterator for Java when using SWIG with C++'s std::map
I have implemented a class with std::map in C++ and created interface using SWIG to be call from Java. However there is no iterator object that allows me to iterate through the entries in the SWIG ...
3
votes
2answers
7k views
How to diagnose Java JNI EXCEPTION_ACCESS_VIOLATION errors in Windows Vista
We have a Java application that uses some C++ libraries through JNI. The application used to work just fine in Windows XP, but it does not work in Windows Vista, it just crashes the JVM right away.
...
2
votes
3answers
769 views
Not able to run SWIG C# examples in VS 2010
I am trying to get SWIG to work with Visual Studio and C#.
I downloaded swigwin-2.0.4.zip and converted the project to a VS 2010 project.
I am able to build the 'class' example. When I then try to ...
2
votes
3answers
1k views
Wrapping std::vector of boost::shared_ptr in SWIG for Python
EDIT: Solved, my mistake; explained in my answer.
I have this:
std::vector < boost::shared_ptr < Entity > > entities;
and I try to expose it through SWIG like this:
%include ...