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

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
121 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
55 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
62 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 ...
0
votes
1answer
38 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
98 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 ...
1
vote
0answers
47 views

Xamarin: Using Swig to create a C# wrapper to C, to be used in Xamarin.Android project

I'm trying to use SWIG for creating a C# wrapper to C, to be used in Xamarin.Android Project. I have a .so library (built with NDK in Eclipse Android Project as in here) and the header file. Without ...
4
votes
1answer
62 views

Can you SWIG a boost::optional<>?

I've been using SWIG successfully to build a wrapper interface to make my C++ libraries available in C#. Recently I exposed some boost::optional<> objects and SWIG is having problems with them. ...
0
votes
0answers
70 views

Swig template and Node.js

I have a problem with swig template and node.js. My code: path where is nodejs_swig.js file: /node nodejs_swig.js: // __dirname is /node var http = require('http'), swig = require(__dirname + ...
1
vote
0answers
54 views

Using System.Runtime.InteropServices but HandleRef is not found

I'm trying to use Swig to wrap Raknet for use with Unity, but I can't build the generated C# files because I have 2,300+ errors saying: The type or namespace name 'HandleRef' could not be found ...
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 ...
1
vote
1answer
59 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
2answers
84 views

swig namespace error? not a valid base class

I am using SWIG to wrap a C++ library. I am getting an error which I think is related to my use of namespaces but I'm not sure. Unfortunately the documentation for SWIG all seems to focus on in-line ...
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
66 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
0answers
62 views

Maven Project: Multiple Artifacts for JNI Interface (.jar and .so)

Overview I'm using Maven to manage an Android project, and I've run into some trouble trying to handle a native library dependency. This is the general build strategy: Use SWIG to generate both ...
0
votes
0answers
16 views

Call several functions from C++ in Java [duplicate]

I am writing a code in Java to use three functions in C++ as the algorithm. I have to pass arguments and receive outputs from the C++ code. These arguments are user defined types and I am trying to ...
0
votes
1answer
119 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( ...
0
votes
1answer
45 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
65 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 ...
0
votes
0answers
101 views

Correct way to return string from callback in PHP/SWIG

What is the correct way to return a string from a callback function in PHP using the SWIG library? In modifying the Callback example provided with SWIG, I've found I am encountering a memory leak ...
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?
1
vote
2answers
103 views

java wrapper for .c code

I have the following c code: test.c #include <stdio.h> #include <math.h> int add (int a, int b) { a=4; b=4; return a+b; } int add_pointer (int *a, int *b) { ...
0
votes
0answers
83 views

jni vs swig - how to use them [closed]

I am new with both jni and swig. I have a c library and a sample.c (main - test example) that use the some few methods from the c library and displays the results. I want now to create a wrapper ...
3
votes
1answer
109 views

Wrapping the whole C++ application to java?

I currently work for a company which gave me an application implemented by a former student. They completely wrapped (even the main) an existing C++ application with SWIG. The application was first ...
0
votes
1answer
59 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 ...
0
votes
0answers
40 views

Why are the values in my php class being reset?

I have the following code snippet: echo "\n---Program Start---\n"; $bodyList = new BodyList(); $numBodies = 3; for($i = 0; $i < $numBodies; $i++) { $body = new SimulatedBody( new Vec3(($i ...
1
vote
0answers
66 views

SIGSEGV errors using shared objects between c++ and Java

I got a problem for a couple of weeks now and I need to know if my intuition is right. My Android app is using a c++ library and SIGSEGV errors are triggered every once and awhile. I got a ...
0
votes
1answer
84 views

Using Swig sending list of string from C functions to TCL procs

I need guidance on sending a list of string from a C function into a TCL calling function. I am able to send list of integer, float values from C functions back to TCL procedure with the help of swig ...
4
votes
1answer
84 views

CL and SWIG: working example?

Doing a SWIG tutorial, and using the example.c, example.i as they provided there. I generated lisp file with swig -cffi example.i. But when I run test.lisp with SBCL, i get a complaint about ...
0
votes
3answers
75 views

Does Wrapped C++ code with java runnable on all OS?

I have a question about C/C++ codes, If they are wrapped with Java and run it as a Java Applet in this case could it run on any OS or just the OS it made for?
1
vote
1answer
95 views

SWIG: How to add a specified C# code block to all generated C# methods

I'm using SWIG to generate C# bindings to my C APIs. I'd like to add a fixed code block to all my generated C# methods ideally without going through specific typemaps. Is this possible? UPDATE: An ...
2
votes
0answers
60 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
143 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
2answers
74 views

How can I use SWIG to handle a JAVA to C++ call with a pointer-to-pointer argout argument?

The problem involved a JAVA call to a C-function (API) which returned a pointer-to-pointer as an argout argument. I was trying to call the C API from JAVA and I had no way to modify the API.
2
votes
0answers
33 views

SWIG, OpenCOBOL and mixing targets

I'm a fan of OpenCOBOL, and keep the FAQ. OpenCOBOL at SourceForge. OpenCOBOL uses intermediate C source on the way to compiled binary, giving it access to the entire libc universe. It makes it fun ...
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 ...
0
votes
1answer
226 views

Ruby and Swig: TypeError: can't convert nil into String

As a follow up of the question: Ruby with Swig: NameError: uninitialized constant I'm trying to use Qxt library (namely QxtGlobalShortcut) in the ruby. As suggested on: How can I call C++ functions ...
1
vote
0answers
73 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 ...
0
votes
1answer
95 views

Ruby with Swig: NameError: uninitialized constant

I'm trying to use Qxt library (namely QxtGlobalShortcut) in the ruby. As suggested on: How can I call C++ functions from within ruby I created swig wrapper, however when trying to use generated ...
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
1answer
101 views

C# SWIG vector<string> to string[]

Given C++ methods like std::vector< std::string > getFoo(); void setFoo( const std::vector< std::string > &foo); How can I get SWIG to expose it like this to C# string[] getFoo(); ...
1
vote
1answer
113 views

How to include shared object files in maven project

I am using an external c++ library (gdal/ogr) which creates shared object files so that java can utilize its functionality. The problem is that I am not really sure what I am supposed to do with these ...
0
votes
0answers
99 views

use swig -go on windows with Visual Studio

I want to use golang call c++ dll with swig on windows. (gc compiler, on Linux was successful.) But there have some problems. Here is the sample. //sampel.h int compute(int a, int b); //sample.cpp ...
1
vote
2answers
158 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 ...

1 2 3 4 5 20