0
votes
1answer
31 views

Tcl callback from C/C++ with SWIG

Context I want to call a Tcl callback via SWIG from C/C++. More importantly, I want it to be a closure. Prior knowledge http://computer-programming-forum.com/57-tcl/4481cebe0f09966d.htm (no that ...
0
votes
1answer
25 views

SWIG: Passing binary data fails

I'm using a C-Library with python bindings generated by swig. I want to pass an arbitrary python string to the C-Library. This string contains unprintable characters, e.g: \xff\x0A\82 The C-Library ...
0
votes
1answer
50 views

Using a GList datatype in python function via SWIG

I'm create a python script which calls some C functions via SWIG. I haven't had a problem calling most functions, but one particular function takes a GList datatype as an argument: The C function ...
1
vote
0answers
35 views

Get double pointer in SWIG

I have a C API that passes double pointers to structs in its destructors, in order to also null the pointers after the free. For instance: void freeSomething(Something** foo) { free(*foo) *foo ...
0
votes
2answers
45 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
30 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" ...
0
votes
0answers
31 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 ...
2
votes
2answers
41 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
29 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
2answers
84 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
32 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
43 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 ...
1
vote
0answers
62 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 ...
0
votes
1answer
53 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 ...
1
vote
2answers
123 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
90 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 ...
0
votes
1answer
91 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 ...
0
votes
3answers
78 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
104 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
35 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 ...
1
vote
0answers
78 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 ...
1
vote
1answer
54 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
0answers
102 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
vote
1answer
122 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, ...
0
votes
1answer
61 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
81 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 ...
0
votes
0answers
64 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
82 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 ...
0
votes
1answer
128 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
1answer
107 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
189 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?
1
vote
0answers
45 views

SWIG: converting java:byte[] to C:(void*) [duplicate]

Possible Duplicate: Pass an array to a wrapped function as pointer+size or range I'm currently learning swig and I'm playing with the C api to wrap stdio.h. So, my wig file look like this: ...
1
vote
1answer
52 views

Accessing static C functions in Python

How can I access static function in Python from C using SWIG? For example: static int foo(int a, int b); The C code can't be changed.
1
vote
1answer
120 views

SWIG typemap for python list to double *

How to convert python list using typemap in swig. For example : lst = [1.0,2.0,3.3] (Python list) to pass to void print_arg(double *lst){} (c/c++ function) How can I write swig interface file ...
2
votes
1answer
120 views

Using typedef with SWIG

I have a C header file containing structure definitions with typedef, and an array of char definition with typedef too: /* File: test.h */ typedef struct { char *key; void *value; int ...
0
votes
1answer
108 views

Get a C struct to remember C# changes with SWIG?

So I am trying to use a C library in C# with SWIG on Linux(MonoDevelop). Everything compiles and runs just fine, but when I call the MsgBus_UseString the console-out shows gibberish instead of ...
2
votes
1answer
68 views

Compiling Python project in C++. How do I include linked library

Hi fellow stackoverflowers, I want to compile a SWIG project with g++ using following command: g++ -shared python/swig_wrap.o -IC:/Python27/include/ -lpython2.7 -o python/_lib.so Unfortunately, ...
1
vote
0answers
157 views

SWIG: How to wrap byte[] structure member

I'm using Swig 2.0.7 and trying to wrap a C library with SWIG to access it from C#. This C library communicates with some custom hardware via USB, and so I need to be able to send/receive raw byte[] ...
3
votes
1answer
110 views

Should I be using a SWIG typemap for ruby Fixnum -> matlab mwSize?

I'm trying to update a project which uses SWIG to build an interface from ruby to matlab. The matlab C-API has changed and now I get the following error at runtime. `mxCreateDoubleMatrix_730': ...
0
votes
0answers
75 views

SWIG C-> C# example not working with mono on ubuntu 12.04

Hi i'm following the example from the swig website here I ran the following commands swig -csharp test.i gcc -c -fpic test.c test_wrap.c gcc -shared test.o test_wrap.o -o libexample.so but for ...
0
votes
1answer
282 views

R_PPC_REL24 relocation out of range

I am working on an embedded powerpc (e500v2) platform. I am cross compiling compiling with gcc 4.6.3 and eglibc 2.13. There is a swig library that is compiled and loaded on the target. When its loaded ...
1
vote
1answer
78 views

Create a typemap for a function that returns through arguments

I am converting C api > Java, and I have the following function prototype. /* Retrieves an individual field value from the current Line \param reader pointer to Text Reader object. \param ...
0
votes
1answer
109 views

Wrap a C program in Python that reads custom file into a 2d array

I have a stand-alone c program that takes a char* file name, opens the file, reads and decodes it into a 2d array. We do not know the length of the array until the file is read. The program mallocs ...
0
votes
1answer
235 views

How to create interface file for SWIG

I have the following header files: gaiageo.h which is defined as #ifndef DOXYGEN_SHOULD_SKIP_THIS /* stdio.h included for FILE objects. */ #include <stdio.h> #ifdef DLL_EXPORT #define ...
0
votes
1answer
90 views

How can I call a C function expecting an array of structs from Java using swig?

I have a C function that takes an array of structures as an argument, and I want to call this function from Java by way of SWIG, but the documentation seems quite murky on this subject and I can't ...
2
votes
1answer
590 views

Correct way to interact with arrays using SWIG

I'm a bit lost with typemaps in swig and how to use arrays. I have prepared a working example that uses arrays between java and c using swig, but i don't know if it is the correct way to do it. ...
1
vote
1answer
94 views

swig D bindings using extern(C) clashes with existing extern(C) functions

Currently Swig D bindings uses the following for a symbol libfun: mixin(bindCode("libfun", "D_libfun")); extern(C) int function(void* jarg1) libfun; where D_libfun symbol is defined in a cxx ...
1
vote
2answers
100 views

How do I use C Library with Rails + Swig?

I've programmed 2 rails apps so far that have definitely gotten me pretty comfortable with ruby + rails. I can't say the same about C though. I don't even know what I'm looking at to be honest any ...
0
votes
1answer
102 views

Is it possible to use SWIG to wrap static libraries with .a extension?

I compiled a C project using the NDK and got many .a files which as I understand, they are nothing else than static libraries. I don't know exactly what is the difference between .a and .so files but ...
0
votes
2answers
499 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 ...

1 2 3 4