SWIG is an interface compiler that connects programs written in C and C++ with scripting languages such as Perl, Python, Ruby, and Tcl.
0
votes
0answers
8 views
SWIG unsigned char and byte[]
I've looked all over the place. I have tried some of the techniques on this site. To no avail.
I have a c++ global function
char* squid( char* buff, int len );
I create a .i file
%module ...
0
votes
0answers
12 views
Bidirectional communication between C++ and SWIG generated Java Interface
I want to generate a Java Interface of the C++ header-file Operator.hpp with SWIG. I tried the solution from Generating Java interface with SWIG
My Interface looks like that:
%module(directors="1") ...
0
votes
0answers
27 views
How to create passable from C# into C++ delegate with SWIG?
So I have next C++ code:
#ifdef WIN32
# undef CALLBACK
# define CALLBACK __stdcall
#else
# define CALLBACK
#endif
#include <iostream>
#include <vector>
namespace OdeProxy {
...
0
votes
0answers
15 views
Installing DOLFIN/FENICS Modules on EPD-UFC Error need SWIG 2.0
I've been trying to manually install FEniCS/DOLFIN on EPD. The reference I have been using is: How can I get FEniCS working in Ubuntu 12.04 with EPD python?
When I get to step 3 of this solution, UFC ...
0
votes
2answers
35 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
28 views
OSGI cannot link to native method via JNI at runtime
I am trying to use a method from a DLL in a OSGI-bundle. The DLL gets loaded correctly in OSGI, but I still get an java unsatisfied link error, the native method is not found!
When deployed ...
0
votes
0answers
27 views
Resolve struct property in SWIG interface file - pointer to binary buffer
How do I resolve a SWIGTYPE_p_unsigned_char in my SWIG interface file?
This is wrapping C -> Java
I have the following struct and underlined the culprit
/**
Container for OGC GEOMETRYCOLLECTION ...
0
votes
0answers
7 views
SWIG: Create a typemap for a specified function
It's easy to create a typemap that works on all functions with specified argument types.
However, I'd like to create a special typemap that works on one particular function but nothing else. Would ...
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
27 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
0answers
14 views
How to wrap pjsua-lib with Swig?
I'm trying to find a way to wrap the whole pjsua library into java classes with SWIG to use it on android. Does anyone have an experience in how to proceed?
Regards
0
votes
0answers
17 views
Does SWIG have support for boost::enable_shared_from_this?
I want to wrap a class of the form:
class A: public boost::enable_shared_from_this<A>
{
...
};
using SWIG in combination with Java. In my SWIG interface file, I have declared this is ...
7
votes
0answers
92 views
How to Expose Boost::shared_ptr<T> to Tcl + SWIG interface file?
I want to expose the boost::shared_Ptr to Tcl layer using SWIG. but currently I don't know I could Expose this. I found out that SWIG/Lib folder contains the interface file for shared_ptr.i. But in ...
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
2answers
78 views
How to use SWIG for D from C++ on Windows?
I want to use LEAP Motion in D.
Therefore It doesn't have C library and It has only C++ library.
I tried SWIG 2.0.9 below command.
swig -c++ -d -d2 leap.i
This command output Leap.d, Leap_im.d, ...
1
vote
1answer
30 views
SWIG: difference between %import and %include
The SWIG docs explain these two directives as follows:
%include: "To include another file into a SWIG interface, use the %include directive ... Unlike, #include, %include includes each file once ...
0
votes
0answers
23 views
SWIG Importing generated class from a different module and package into the current class
I'm having difficulty getting the SWIG typemap(javapackage) to work properly. I tried making a simple version of the problem, and even that seems to fail.
foo.h:
#ifndef FOO_H
#define FOO_H
class ...
0
votes
1answer
42 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 ...
0
votes
0answers
12 views
SWIG -Java/c++ smart pointers inclusion
I'm trying to wrap some c++ code using swig.
Problem i'm facing is that network simulator which is written in c++ uses smart pointers.
How will i tell swig to include smart pointers so that it ...
2
votes
2answers
27 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
16 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
0answers
32 views
PocketsphinxAndroidDemo is not building on windows
I am building PocketsphinxAndroidDemo app on windows, I followed all instruction from "http://cmusphinx.sourceforge.net/2011/05/building-pocketsphinx-on-android/"
I am using android :2.3.1
...
0
votes
1answer
14 views
typemapping exceptions to java with SWIG, still not caught
I'm trying to use SWIG to wrap some C++ code into java. The code works generally, now I am working on error handling. The C++ code throws a couple types of exceptions. I've gone through all the C++ ...
0
votes
1answer
56 views
Swig Python/C Pointer in struct to another struct
I'm using Player/Stage SWIG generated code from C and now I'm trying to access a structure where a value points to another structure. I wonder how I can extract the array of structures in python.
The ...
1
vote
0answers
36 views
Render results of Nodejs Mongoose in Swig template
I'm using Express 3.x
This is code in my controller:
Post.find({}, function(error, docs) {
res.render('posts/index', {
title: 'List of Posts',
posts: docs,
})
});
And in my ...
1
vote
0answers
20 views
Returning unknown size array to Java with SWIG wrapper
I have written a small data type that stores data in a char array. Here is a basic definition in the header file:
class SimpleBuffer {
public:
...
const char* getData();
int getSize();
...
2
votes
1answer
73 views
Use SWIG to wrap C++ <vector> as python NumPy array
I have a C++ library that defines the following (and more like them) types:
typedef std::vector< double > DoubleVec;
typedef std::vector< DoubleVec > DoubleVecVec;
typedef ...
0
votes
1answer
10 views
Stopping SWIG from expanding #if expressions
I have a case where I need to put a guard on a definition so that it doesn't get included in the SWIG output more than once under certain circumstances. Unfortunately, SWIG is expanding the #if ...
1
vote
0answers
33 views
SWIG Lua: Extending (%extend) class with %native. Is it possible to add %native method?
%module test
class Foo{
public:
Foo();
}
I want to have something like this:
%extend Foo{
%native(Bar) int Bar(lua_State * L);
}
0
votes
0answers
16 views
SWIG only generating protected constructors
I'm wrapping a few C++ classes with SWIG for use in Java. It seems to build OK but for some reason SWIG only generates protected constructors for the objects with a few random arguments. For example, ...
0
votes
1answer
23 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 ...
1
vote
1answer
37 views
Template on class and method are related. How to prevent combinations?
I have the following situation.
template <class T>
class Foo {
template <class V>
int bar();
};
(I am using swig to port this class to python, to clarify)
The problem I have ...
0
votes
0answers
15 views
Use a Java method in C by overriding a C++ object from SWIG
In C, I have a fonction :
void set_p_callback( void (*)(log_t level, const char *message));
Which set a function pointer for writing log. Another function uses this pointer to write the log with the ...
0
votes
0answers
21 views
Android: display native code progression in java ui
I implemented a native code in C which allows my app to register towards a SIP server, it works very well and I manage to display the connection process in the logcat. Btw I' using SWIG to make the ...
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
79 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
0answers
37 views
SWIG C++ -> Java - typemapping own string class just like std::string
I'm struggling to adapt the SWIG built-in std_string.i to work for my own string class.
What I did:
Assuming my own string class is called my::space::String
Copy-pasted std_string.i into my own .i ...
2
votes
0answers
26 views
How to create a wrapper for a Matrix class to Numpy with SWIG?
I have an old and grown C++ library containing a Matrix class and a whole lot of code using it. It is basically
class Matrix {
double* p; // the actual data
int nd; // number of ...
2
votes
0answers
38 views
Generate a perl module with a seperate namespace using SWIG
I need to generate a perl module Vinod::StatHandler. I have 2 files related to c++ code.(statHandler.h,statHandler.cpp)
Currently I am using the following command to generate the module.
swig -perl ...
0
votes
2answers
52 views
SWIG: python module crashes only when it is deployed to Apache
This issue is quite wired and it is driving me crazy. Any help is appreciated!
We have some underlying C codes, which are going to be called by Python modules (Python version 2.6, Django framework, ...
0
votes
2answers
68 views
Is it possible to call java method from C code with SWIG generated JNI?
I am trying to use SWIG to generate my JNI. I already have JNI code that is working, but it is hand written and it is getting more and more complicated and difficult to maintain.
Some of my ...
1
vote
0answers
27 views
What is the best way to define a class from C code with SWIG?
It's pretty common in C to see the following pattern:
/* struct definition */
typedef struct {int x,y,z} vector_t;
/* Methods that always take defined struct as first argument */
int ...
0
votes
1answer
45 views
Referencing specific classes in an external library with SWIG
Currently, I'm trying to wrap my custom C++ library for use in Java (and ultimately Android). My library uses the OpenCV Mat and Size classes as input. Below, is an example SWIG interface of what I ...
1
vote
1answer
43 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
1answer
43 views
How to rename SWIGTYPE_p… to something more friendly?
I have a c++ function returning an uint8_t* array like:
uint8_t* getData();
Swig maps this to a SWIGTYPE_p_unsigned_char. I would like a more friendly name. In my .i file I have simply included my ...
0
votes
0answers
18 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
118 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 ...
1
vote
0answers
60 views
Passing numpy array to C++ using SWIG [closed]
I'm desperately trying to get this swig code to work so I can interface between python and C++.
I have the following C++ code (.cpp):
#include "roo_Dijkstra.h"
//Compare distances for a pair ...



