Tagged Questions
0
votes
0answers
26 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
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
20 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
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
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++ ...
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();
...
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, ...
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 ...
0
votes
2answers
66 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 ...
0
votes
1answer
42 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
1answer
42 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 ...
1
vote
1answer
56 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
80 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 ...
1
vote
2answers
93 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)
{
...
3
votes
1answer
105 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 ...
1
vote
0answers
65 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
3answers
72 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
110 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 ...
1
vote
0answers
118 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
118 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
0answers
63 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 ...
1
vote
0answers
143 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
91 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
2answers
158 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 ...
1
vote
1answer
114 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
239 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 ...
0
votes
0answers
70 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 ...
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
%{
...
2
votes
1answer
141 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 ...
2
votes
0answers
62 views
SWIG - Rename structure members
I am trying to use the %rename feature of SWIG to rename multiple members of a C++ struct to Java.
This is my SActivityType.h:
struct SActivityType
{
unsigned int m_uActivityType;
unsigned ...
1
vote
0answers
44 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:
...
2
votes
1answer
130 views
Namespace Constants in SWIG
The issue is fairly simple, I have some constants in a C++ namespace that I would like to wrap using SWIG 2.0.8. It looks something like this:
namespace Example {
static const float PI = ...
0
votes
2answers
379 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
1answer
73 views
How to generate two proxy classes using the same interface in swig
I have some code like below:
class SingleValue
{
public:
SingleValue()
{}
~SingleValue()
{}
const std::string& getValue()const
{
return m_nSingleValue;
}
private:
...
1
vote
1answer
122 views
Set a member of a C structure of type char * with Java byte array using SWIG
For example we have the following structure:
typedef struct Foo
{
unsigned char * data;
} Foo;
I want to set the data member with a Java byte array (byte[]). I only want set method not get. ...
2
votes
1answer
88 views
Convert a member of a structure of type char * to java.lang.Object in Java using SWIG
I’m trying to convert a member of a structure of type char * to java.lang.Object in Java generated class. I want to do that because I want to pass to it objects of type Integer and String. Is it ...
0
votes
1answer
113 views
SWIG rename functions
I am using following code in an interface file to rename the global function free
%ignore free;
%rename(my_free) free;
But resultant header file I don't see any of free is renamed to my_free. Am I ...
1
vote
1answer
75 views
customizing code generated by swig
Is it possible to modify code generated by swig?
i want to replace code generated by swig. For example
i have struct
typedef struct Test {
char *buffer;
} Test;
Swig will create following ...
1
vote
0answers
103 views
Add more than one method to Java class
I need to add a method to a class for some classes on c++ side. for example, i have class A B C D on c++ side and class A B C D on java side generated by swig, in class D(java side) i need to add 3 ...
1
vote
1answer
77 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 ...
2
votes
2answers
154 views
SWIG interface to receive an opaque struct reference in Java through function argument
I am trying to use SWIG in order to use the Spotify API (libspotify) for Android: https://developer.spotify.com/technologies/libspotify/
I am having trouble defining the SWIG interface file to be ...
1
vote
1answer
124 views
SWIG Efficiency of carrays.i vs arrays_java.i when you need/have data as native java array anyway
I'm curious about what it says in the swig docs regarding efficiency of the 2 fundamental ways of dealing with arrays in swig/java. In particular, I'm wondering if the carrays.i way is really more ...
0
votes
1answer
87 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
484 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
177 views
Java Crash when Using Swig on HP-UX
I am using swig 2.0.7 on Hp-ux to wrap our C++ libraries. There are no errors until attempting to run when a crash occurs.
Using:
HP-UX bob B.11.23 U ia64 0835920252 unlimited-user license
aCC: HP ...
1
vote
1answer
234 views
Making SWIG understand char** for using it in Java
I have following three files:
sab1.hpp:
class CRectangle
{
int x, y;
public:
void set_values (int,int);
void print(char **db);
int area ();
};
sab1.cpp:
#include ...
1
vote
1answer
318 views
Swig: convert return type std::string(binary) to java byte[]
My situation is that i have a C++ class (MyClass) with a method that has the following signature:
bool getSerialized(const stdString & name, std::string & serialized);
Where name is a in ...
0
votes
2answers
115 views
Swig for java, generating a proxy class from c structure with array member
I'm working with SWIG 2.0 and I'm creating a Java wrapper for an API, as part of this API it has a structure that contains a multidimentional array:
typedef struct mbuf
{
data[2][31]
}
When it ...
0
votes
1answer
102 views
How to add a package declaration to java generated by SWIG
I'm using SWIG to generate a bunch of Java files -- I want the files to be part of a certain package ... right now after I generate them I have to go in and manually add the import declaration ... is ...
3
votes
1answer
224 views
Convert a member of structure of type signed char * to byte array in Java (byte[]) using SWIG
I'm trying to convert a member of structure of type signed char * to byte array in Java. I've the following structure:
typedef struct {
signed char * content;
int contentLength;
} Foo;
...


