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
19 views
SWIG requirement for source code
Does SWIG require that I have source code for the C/C++ libraries or as long as I can define an interface file and have compiled libraries I'm good to go?
18
votes
2answers
470 views
Dynamically rethrowing self-defined C++ exceptions as Python exceptions using SWIG
Situation
I want to create a Python language binding for a C++ API using SWIG. Some of the API functions may throw exceptions. The C++ application has a hierarchy of self-defined exceptions, like ...
1
vote
1answer
109 views
How does SWIG wrap buffer(char array) and pointer from C to Python?
Swig's manual is kinda confusing to me. I am wrapping my C library to python so that I can test my C code in python. Now I want to know how I can access the C pointer address in Python,
for example, ...
2
votes
1answer
60 views
How do I expose namespaced C++ string constants via SWIG? (C#)
There are various ways of exposing namespaced compile-time constant strings in C++.
I have a bunch of these that I'd like to share between C++ and C# via SWIG, so that I can refer to them like this ...
0
votes
1answer
59 views
Return a char* from C, but empty in PHP
I am new to SWIG.
My problem is as follows:
I have written a function in C which return a char*,
say:
char msg[100];
strcpy(msg,"helloworld");
char* foo(){
return msg;
}
I can see the message ...
0
votes
1answer
77 views
Python & C: Is it possible to mix Ctypes and Swig together?
I am trying to find a way to test my C code using python scripts. So far my findings are
1) with Ctypes, I can easily load the so and call the function directly from python. Plus, everything happens ...
1
vote
1answer
64 views
Python & SWIG: Using StringIO in place of FILE*
I have the following method which I wrap using SWIG to access it in Python:
void some_class::some_method( FILE *fp, int *pT, int **pO ) {
fscanf( fp, "lalala", pT );
How is it possible to pass ...
0
votes
0answers
53 views
Can i use SWIG for my callback interface when I'm embedding python?
I'm trying to embed a python extension framework into my C program using the documentation here:
http://docs.python.org/2/extending/embedding.html
In section 5.4 of that documentation, an array of ...
3
votes
2answers
78 views
Can i #define void for a swig library?
I am trying to use SWIG to generate a python interface module for a library that I do not control the source of. The library, for some reason, has this line:
#define VOID void
This is causing all ...
1
vote
0answers
120 views
How to generate C callback-into-java method with SWIG macro?
I have a header file with "interface" structures that contain solely function pointers. I want SWIG to (automatically?) generate a matching single method Java interface for each of these function ...
1
vote
1answer
122 views
Using a C++ game engine from C# using SWIG
I have recently acquired the C++ source code of a 3D game engine I plan to use. However my C++ coding skills are far from legendary, and I definitely find C# easier to work with. I have seen ...
2
votes
2answers
232 views
“make install” with CMake + SWIG + Python
I am writing a C++ library which can be used from both C++ and Python on Mac and Linux. So I have decided to use CMake and SWIG for my project.
As well described in the SWIG 2.0 documentation, ...
2
votes
1answer
251 views
Compiling C++ with SWIG on Mac OS X [closed]
I am trying to compile a C++ extension using Swig for Mac OS X. I have run into a few linker errors though. The basic tutorial for Python Swig also seems to fail on Mac:
...
1
vote
1answer
79 views
SWIG: No typemaps are defined
I have a c++ class that I am trying to wrap for Python using SWIG. I am having trouble trying to wrap one of the functions which takes an array as input.
Here's the header file,
class ...
-2
votes
1answer
41 views
Google Appengine [closed]
I am using top N recommender library for a web application. I also have a python wrapper pysuggest for it but on my computer. I had to build and install it but the app engine server only gives options ...
2
votes
1answer
110 views
Undefined symbol for architecture i386 on linking SWIG C++ Wrapper Object for Ruby compiled with -m32 option
Greetings StackOverflow Community,
I've got a SWIG project that generates a Ruby C API wrapper for a C++ static archive library. I don't have any problems generating and compiling the code under ...
1
vote
1answer
122 views
How to use Graphviz for graph manipulation in java
I am trying to use the gv_java - graph manipulation using java with Graphviz.
I downloaded the java package which contains the SWIG Type files in java.Installed graphviz as required.
For a cleaner ...
0
votes
1answer
64 views
Line number where SWIG_RuntimeError occurs
I am running Lua with a C++ library via swig. When a swig runtime error occurs I would like to know the line which caused the problem. The error message I receive does not have this information.
How ...
1
vote
1answer
673 views
How do I change the python version in Maya 2013?
I am aiming to write a python script in Maya 2013 that uses a SWIG wrapped pyd library which is compiled using Python 2.7. I cannot rebuild the pyd in Python 2.6.4 which is the version that Maya is ...
0
votes
0answers
65 views
Accessing .so files generated from c++ using swig in eclipse
I have the following c++ file and i have generated a wrapper for it using swig.
#include<iostream>
#include "add.h"
int add(int a,int b)
{
int c=a+b;
return c;
}
the contents of the ...
0
votes
1answer
53 views
Python complaining that a SWIG module doesn't exists
Following the different tutorials on the web, I have tried to make a wrapper of a c++ class in python, using SWIG.
My class looks like this:
/*file libraryInstance.h*/
struct LibraryInstance
{
...
1
vote
0answers
150 views
What is the correct way to use add_jar with Java bindings produced by Swig?
I am using Swig to produce a Java binding for a C library. The build system is written in CMake in order to achieve platform neutrality. I wish to produce a JAR file containing the Java bindings ...
1
vote
1answer
94 views
Java class generation with SWIG from a c++ class with a base class and an interface
I'm porting a c++ application to Java. I used SWIG to generate some Java classes and the JNI wrappers.
In c++ I have a class called Lion which extends Animal and implements Killable. I got a warning ...
1
vote
1answer
48 views
specify wrapper method prefix for C# SWIG
When SWIG (using C#) wraps a method, say
void foo();
it will generate a wrapper method with a CSharp_ prefix like this:
SWIGEXPORT void SWIGSTDCALL CSharp_foo() {
foo();
}
Is it possible to ...
0
votes
2answers
175 views
git svn command; svn binding issue [closed]
While executing "git svn" init/clone, I am getting following error:
$ git svn init .
Can't load '/usr/lib64/perl5/site_perl/5.8.8/x86_64-linux-thread-multi/auto/SVN/_Core/_Core.so' for ...
1
vote
1answer
79 views
Is SharpGen useful for other projects than SharpDX or should I go with SWIG?
Has anyone used SharpGen (from SharpDX) for generating wrappers in other projects than SharpDX itself? I wan't to decide whether to use SharpGen or Swig to generate a wrapper for a C++ library.
The ...
0
votes
1answer
64 views
swig + gmp library + compilation error on ubuntu 12.04
Here is my problem : I have to call an algo written in C with python.
I use swig to do it.
So I have an example.i file which looks like this
%module example
%{
#include "example.h"
%}
%include ...
0
votes
0answers
74 views
Using 3rd party linux lib (so) in C# mono project
I'm developing a C-Sharp project on mono (open-source .Net implementation). I want to handle a piece of HW, I have the vendor's .so and .h files. They are intended to be linked with a C/C++ ...
0
votes
0answers
111 views
Exposed C++ functions with SWIG to Go: Shared library not found
I am using SWIG to expose some C++ functions to Go with following commands:
gcc -std=c++0x -Wall -Wextra -pedantic -fPIC -shared -L./lib -lsomething -o example.so
swig -go -intgosize 32 example.i
go ...
1
vote
2answers
161 views
SIGSEGV error using SWIG to make a java shared library
So, I'm trying to port a C library (libnfc) to Java using SWIG.
I've got to the point of having a compiled shared library, and a basic "nfc_version()" method call will work. However, calling ...
3
votes
1answer
68 views
How do I access a third party DLL from a Tcl script?
I am trying to learn how to access a third party DLL from a Tcl script. There are a lot of tidbits of information on this topic in numerous places, but nothing that provides a nice, concise ...
-1
votes
1answer
59 views
Cross-platform compatibility of SWIG
I know SWIG is cross-platform compatible, but does anything specific need to be done to generate code compilable on each platform, or can I generate on Windows and expect it to work on other ...
1
vote
1answer
116 views
Swig java c ++ passing a vector of vectors containing a c++ structure
I have been looking around at the relevant questions and i cannot get rid of the swig pointer.
Basically i have a simple structure
typedef struct mbuf{
int date
int time
}
and within my class i ...
1
vote
1answer
243 views
JTable not populating data from MySQL
I am trying to populate data stored in my database into JTable. I have a println statement "records added to db" and it prints it out 18 times so the number of rows in the db matches the number of ...
2
votes
1answer
142 views
Compiling C++ for Python using Swig
I have successfully generated the .py and .cpp files needed using:
swig -c++ -python sf_c_api.i
but now I'm trying to make the shared object (.so) and I'm getting swamped with errors.
g++ -Wall -g ...
1
vote
0answers
64 views
Deployment of Python to support embedded and extended ways
I'm currently trying to deploy a site-package using Python 2.7 in a project written in C++ and using SWIG. Everything works very well. Our application is distributed to many clients, and we have one ...
0
votes
2answers
137 views
SWIG typemap with C++ overloaded function
I have a function definition like so:
void Foo(int szData,int Data[]);
and I have a SWIG typemap like so:
%typemap(in) (int szData,int Data[])
{
int i;
if (!PyTuple_Check($input))
{
...
0
votes
0answers
65 views
Swig compilation error: Bad register name
I'm trying to install swig 1.3.40 onto Centos 5.8. (all recent updates installed). I succeeded to do so days ago. But after integrating the installation into my buildout even for a clean sources ...
2
votes
1answer
168 views
Memory leak with SWIG, Python and Visual Studio 2012
This is my first experience with Python, so bear with me: I'm getting a memory leak of 28 bytes when I reference a SWIG module with a c++ class in it. All of this is being built and run in Visual ...
0
votes
0answers
74 views
Converting SWIGTYPE_p_p_char to a java 2D array
I'm generating a SWIG interface for a C++ file which contains this large(3000*3000) 2D unsigned char array
extern unsigned char h_map[H_MAP_WIDTH][H_MAP_HEIGHT];
The generated java file looks like ...
2
votes
1answer
106 views
Module level numpy array using SWIG
I am creating a python wrapper for a scientific C library that I have written. The library contains a constant array of doubles that are defined globally at compile-time, i.e
const double arr[NARR] ...
1
vote
0answers
155 views
How to pass double[] from c# to c++ using SWIG
I have a c++ class and a member function uses two double array as input like:
class model{
//define some varible..
void Trainmodel(double *x,double *y);
//...
};
I wanted to use this class in c# ...
0
votes
1answer
124 views
Resolving struct properties for SWIG interface file
this is a continuation of question I asked a while back. Create a typemap for a function that returns through arguments
In the previous question the interface file is as follows:
%module test
%{
...
1
vote
2answers
198 views
return double * from swig as python list
I have a C++ class, one of whose methods returns a double * array-like that is one of its member variables. I'm trying to make this accessible as a list in Python. I wrap it in a ...
1
vote
1answer
64 views
Handling arrays of structures in SWIG
I am trying to wrap a C function that requires an array of structures to be passed to it.
The function definition in my .i file is:
extern HRESULT WINAPI ScriptItemize(
const WCHAR ...
1
vote
1answer
195 views
Calling a Go callback function from C++ through SWIG
I'm trying to call the C++ function:
void TestFunc(void(*f)(void)) { f(); }
From Go Code.
I would really want it to be that I just pass a Go function to that function. I know that I can wrap it ...
2
votes
0answers
365 views
Wrap a C++ Function Pointer Callback with SWIG
I'm working on porting a C++ library used in desktop and iOS applications to Android. I'm using SWIG to create the JNI code and I'm about 90% of the way to where I need to be. The only issue I have ...
2
votes
1answer
144 views
Handling C++ exceptions in Java via SWIG
I'm attempting to use SWIG to wrap a C++ class into a Java class. This C++ class has a method that throws an exception.
I have three goals, none of which are currently happening although I have ...
1
vote
1answer
106 views
Generate documentation for 2 languages with same code
Can I somehow generate documentation for 2 different languages with same code? Problem is that I have a C API that is also exposed trough a proprietary language that resembles VB.
So the exposed ...
2
votes
2answers
177 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?




