Tagged Questions
0
votes
0answers
100 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
58 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 : ...
2
votes
0answers
352 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 ...
0
votes
0answers
74 views
How to define the call back functions in swig interface file?
I just started using swig. Basically i want to generate a python interface to a third party dll.
The dll functions as follows:
#ifndef DLL_H
#define DLL_H
#ifdef DLL_BUILD
#define DLLFUNC ...
0
votes
2answers
378 views
How to pass java function pointer to c++ native code
I want to call a native c++ method from java (android) code, and pass a java function as a parameter, so I will be able to save the function pointer in the c++ code, and activate it from the native ...
1
vote
0answers
215 views
Android callback examples using SWIG
Does anybody have a decent example on how to introduce callback functionality in an Android app that uses native code? Ideally, I would like to use swig to generate the interface. Website links?
0
votes
0answers
230 views
PHP callback with arguments via SWIG generates uninitialised values in valgrind
I'm trying to understand why valgrind complains about 'Conditional jump or move depends on uninitialised value(s)' in the code below. I took the callback example in swig 2.0.4 and added an argument ...
2
votes
1answer
474 views
Memory leak in SWIG polymorphism across C++ and Java using directors
I have a C++ program to receive binary data from network. After data is received, it will callback the data as a byte array from C++ to a Java client. I use the director feature in SWIG to easily ...
0
votes
1answer
306 views
Using SWIG to wrap C++ class with virtual methods and overriding them in python
I'm trying to "pythonize" method arguments when calling python callback:
%module (directors="1") py_test
%feature("director") mgr;
struct hdr_val {
const char *hdr;
...
3
votes
1answer
313 views
C++ callback with python through SWIG when the function takes non-trivial arguments?
I just read the following section of the "SWIG and Python" tutorial:
http://www.swig.org/Doc1.1/HTML/Python.html#n11
I understand what they do in the example, basically you write a C function that ...
1
vote
1answer
587 views
jni callback works for java types, but not c types
I have followed the advice at
registering java function as a callback in C function and can callback with "simple" types such as integer and string, e.g.:
jstring js = (*env)->NewStringUTF(env, ...
3
votes
1answer
2k views
registering java function as a callback in C function
I am trying to implement some C code in Java by using SWIG 1.3. Now I
have to rebuild some existing C into Java code and to provide a function
pointer to a Java function to the C method.
The C code:
...
1
vote
2answers
481 views
implementing callback between Python and C
I have wrapped some C code using SWIG to use it as a python library.
Within this framework, some python code I have written calls a C function, which returns a string. However, for creating the ...
1
vote
2answers
2k views
SWIG passing argument to python callback function
So I'm almost done. Now I have working code which calls python callback function.
Only thing I need now is how to pass argument to the python callback function.
My callback.c is:
#include ...