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
2answers
62 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, ...
0
votes
1answer
14 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 ...
1
vote
1answer
55 views
OSGi service: java.lang.UnsatisfiedLinkError calling DLL — NO error when DLL called as unit test
A Java class made for video coding loads a DLL including C++ code
Unpacking debugging symbols for VideoSource.dll to \path
Checking for VideoSource.pdb...
Checking for videosource.pdb...
and then ...
0
votes
1answer
21 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
2answers
570 views
Issue getting Node.js Express 3.x template inheritance working with Swig via consolidate.js
I can get 'standalone' templates to render just fine with this code, but I can't get template inheritance to work. Is there something I am overlooking or any other caveats anyone knows of?
Error: ...
0
votes
0answers
25 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
6 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 ...
2
votes
0answers
46 views
+50
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 ...
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 ...
4
votes
2answers
757 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 ...
0
votes
0answers
12 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
16 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 ...
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();
...
5
votes
4answers
2k 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 ...
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 ...
1
vote
1answer
29 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 ...
2
votes
2answers
25 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
40 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
19 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
54 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 ...
0
votes
0answers
11 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 ...
0
votes
1answer
15 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
27 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
13 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++ ...
2
votes
2answers
175 views
How to call a JavaScript function from C using JavaScriptCore?
I've written a function in JavaScript. For example:
function myName(a)
{
var k=10;
print(k);
}
Is it possible to call myName from C using JavaScriptCore? If so, how?
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 ...
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 ...
1
vote
0answers
31 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 ...
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>
...
2
votes
1answer
69 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
30 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
15 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
22 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 ...
0
votes
1answer
22 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 ...
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
13 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
1answer
66 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
...
9
votes
4answers
3k views
M2Crypto doesn't install in venv, or swig doesn't define __x86_64__ which breaks compiling against OpenSSL
I'm trying to install the Python M2Crypto package into a virtualenv on an x86_64 RHEL 6.1 machine. This process invokes swig, which fails with the following error:
$ virtualenv -q --no-site-packages ...
1
vote
3answers
228 views
problems installing M2Crypto on Mint
I am trying to install M2Crypto for python on Mint 12. I have executed `python setup.py build, but the build fails, stating
error: command 'gcc' failed with exit status 1
the preceding 2 lines ...
0
votes
1answer
41 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
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 ...
6
votes
2answers
529 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, ...
0
votes
1answer
41 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 ...
0
votes
2answers
65 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
33 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 ...
1
vote
1answer
41 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.
...
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 ...
0
votes
2answers
50 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, ...
2
votes
0answers
36 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 ...





