Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Java > JNI: Calling Java Method with String as Parameter from C

Reply
Thread Tools

JNI: Calling Java Method with String as Parameter from C

 
 
Daniel.Boegelein@gmx.de
Guest
Posts: n/a
 
      04-16-2007
Hi,

In my C Method i try to call a Method, which expects a String as
Parameter. Therefore the String will be created in the c function and
then passed to the java method. Everything works fine, expect of the
fact, that i get in the Java Method a String object with length 0

The strange thing is, that in the c code the jstring object seems to
be correct (getUtfSize() returns the right length). But on Java Side
the length is 0. So what am i doing wrong???? I thought about it the
whole day without finding any solution!

Thanks for your help in advance!!!

Source Code:

Java:

private synchronized boolean internalNotifyCallback(String obj)
{
if(obj != null) {
System.out.println(obj.length());
System.out.println("object is not null : " + obj);
}

if(closeNotify){
System.out.println("CloseNotify is " + closeNotify);
}
return !closeNotify;
}

C:
void listenXYZ(RXPARAMS par)
{
....

jsize count;
jmethodID jmid;
jclass icls;
jboolean continueListening = 1;

char string[50];

RXPARAMS prxParams = par;


JNIEnv *env = par.env;

.....

icls = (*env)->GetObjectClass(env, prxParams.jobj);
//get CallBack Address
jmid = (*env)->GetMethodID(env, icls,
"internalNotifyCallback","(Ljava/lang/StringZ");

writeLog("after getMID\n");
if (jmid == 0){
writeLog("jmid == NULL\n");
}

const char *pWelt = "Hello World";

jstring jStr = NULL;
jStr = (*env)->NewStringUTF(env, pWelt);


if (jStr != NULL){
jsize size = (*env)->GetStringUTFLength(env,jStr);
writeLog("Is Not Null. Size: %d \n", size);
}
else
writeLog("Is Null\n");

continueListening = (*env)->CallBooleanMethod(env, prxParams.jobj,
jmid, eventObj, jStr);
}


P.S. I know that my english isn't very good - but i try to improve it,
so please be lenient toward me

 
Reply With Quote
 
 
 
 
Gordon Beaton
Guest
Posts: n/a
 
      04-16-2007
On 16 Apr 2007 07:51:29 -0700, wrote:
> Everything works fine, expect of the fact, that i get in the Java
> Method a String object with length 0


[...]

> Java:
> private synchronized boolean internalNotifyCallback(String obj)


[...]

> C:
> continueListening = (*env)->CallBooleanMethod(env, prxParams.jobj,
> jmid, eventObj, jStr);


Your method is declared to take one object - a String. You're passing
it two - an eventObj and a String.

It doesn't appear that eventObj was the String that you intended to
use here, but its declaration is missing from your post.

If eventObj really is a String, then its length is 0.

If eventObj isn't a String, the length reported by the receiving
method cannot be trusted here, and the JVM will be left in an unstable
state (and will eventually crash if you make a habit of this).

/gordon

--
 
Reply With Quote
 
 
 
 
Daniel.Boegelein@gmx.de
Guest
Posts: n/a
 
      04-16-2007
On 16 Apr., 18:21, Gordon Beaton <n...@for.email> wrote:
> On 16 Apr 2007 07:51:29 -0700, Daniel.Boegel...@gmx.de wrote:
>
> > Everything works fine, expect of the fact, that i get in the Java
> > Method a String object with length 0

>
> [...]
>
> > Java:
> > private synchronized boolean internalNotifyCallback(String obj)

>
> [...]
>
> > C:
> > continueListening = (*env)->CallBooleanMethod(env, prxParams.jobj,
> > jmid, eventObj, jStr);

>
> Your method is declared to take one object - a String. You're passing
> it two - an eventObj and a String.
>
> It doesn't appear that eventObj was the String that you intended to
> use here, but its declaration is missing from your post.
>
> If eventObj really is a String, then its length is 0.
>
> If eventObj isn't a String, the length reported by the receiving
> method cannot be trusted here, and the JVM will be left in an unstable
> state (and will eventually crash if you make a habit of this).
>
> /gordon
>
> --



Thx for yor repyl gordon. The eventObject was my mistake. In my code
snippet i tried to focus on the important lines in the code,
eleminating everything unnecessary. Unfortunatelly i deleted the wrong
function call. Instead of

continueListening = (*env)->CallBooleanMethod(env, prxParams.jobj,
jmid, eventObj, jStr);

i call

continueListening = (*env)->CallBooleanMethod(env, prxParams.jobj,
jmid, jStr);

Sorry for that mistake!


 
Reply With Quote
 
Gordon Beaton
Guest
Posts: n/a
 
      04-16-2007
On 16 Apr 2007 09:57:06 -0700, wrote:
> continueListening = (*env)->CallBooleanMethod(env, prxParams.jobj,
> jmid, jStr);


So, how can you be certain that the code you've posted actually
contains the error?

Since the actual String creation and method call don't appear to be
wrong, a logical conclusion is that the error is elsewhere. For
example, almost any kind of memory corruption could result in this
call subsequently failing in an erratic or unexplainable manner.

There are important things missing from your post. How are prxParams
(especially the jobj it holds) and the JNIEnv initialized? Since the
native method is presumably called from a separate thread started from
native code, you need to call AttachCurrentThread() somewhere or the
JNIEnv won't be valid here.

You should be cleaning up every object you create in this method.
either with DeleteLocalRef(), or by wrapping the method in calls to
Push/PopLocalFrame().

Try to post a compilable example.

/gordon

--
 
Reply With Quote
 
Daniel.Boegelein@gmx.de
Guest
Posts: n/a
 
      04-17-2007
On 16 Apr., 19:22, Gordon Beaton <n...@for.email> wrote:
> On 16 Apr 2007 09:57:06 -0700, Daniel.Boegel...@gmx.de wrote:
>
> > continueListening = (*env)->CallBooleanMethod(env, prxParams.jobj,
> > jmid, jStr);

>
> So, how can you be certain that the code you've posted actually
> contains the error?
>
> Since the actual String creation and method call don't appear to be
> wrong, a logical conclusion is that the error is elsewhere. For
> example, almost any kind of memory corruption could result in this
> call subsequently failing in an erratic or unexplainable manner.
>
> There are important things missing from your post. How are prxParams
> (especially the jobj it holds) and the JNIEnv initialized? Since the
> native method is presumably called from a separate thread started from
> native code, you need to call AttachCurrentThread() somewhere or the
> JNIEnv won't be valid here.
>
> You should be cleaning up every object you create in this method.
> either with DeleteLocalRef(), or by wrapping the method in calls to
> Push/PopLocalFrame().
>
> Try to post a compilable example.
>
> /gordon
>
> --



Thx gordon. Your totally right with your advise. I added now all
neccessary code parts.. I did some testing this morining and what i
found out is pretty interesting.

C:
struct RxParams
{
XLhandle eventHandle;
long portHandle;
const char *callBackName;
jobject caller;
JNIEnv *env;
}typedef RXPARAMS;


JNIEXPORT jlong JNICALL Java_VectorXLDriverLib_setNotifier(JNIEnv
*env, jclass jcls, jobject portHandle, jint queueLevel , jobject
caller, jstring callBackName)
{
[...]

RXPARAMS prxParams;

prxParams.eventHandle = eventHandle;
prxParams.portHandle = ph;
prxParams.caller = caller;
prxParams.env = env;
prxParams.callBackName = (*env)->GetStringUTFChars(env,callBackName,
0);

listenCan(prxParams);
}
return xlStatus;
}

void listenCan(RXPARAMS par)
{
writeLog("In RxThread\n");
unsigned int msgsrx = RECEIVE_EVENT_SIZE;
jsize count;
jmethodID jmid;
jclass icls;
jboolean continueListening = 1;

char string[50];
JAVAOBJECT eventObj; //object used for callBack to java

RXPARAMS prxParams = par;


JNIEnv *env = par.env;

writeLog("Before get Structure XLCANEvent\n");
// Klasse des aufrufenden Java Objektes ermitteln:
icls = (*env)->GetObjectClass(env, prxParams.caller);

writeLog("before getMID: icls: %02x\n", icls);
jmid = (*env)->GetMethodID(env, icls,
prxParams.callBackName,"(LXLCanEvent;Ljava/lang/StringZ");

writeLog("after getMID\n");
if (jmid == 0){
writeLog("jmid == NULL\n");
}
eventObj = CreatejObject(env, "XLCanEvent");


writeLog("Before Get Field Ids\n");
jfieldID jFldTransId = (*env)->GetFieldID(env, eventObj.jcls,
"transid", "I");
jfieldID jfldPortHandle = (*env)->GetFieldID(env,
eventObj.jcls, "portHandle", "I");
jfieldID jfldFlag = (*env)->GetFieldID(env, eventObj.jcls,
"flags", "I");
jfieldID jfldCanId = (*env)->GetFieldID(env, eventObj.jcls,
"id", "J");


jint test = 5;

writeLog("CallBooleanMethod with Data\n");
// Methode "intern" des aufrufenden Java Objektes aufrufen:
(*env)->SetIntField(env, eventObj.ref, jFldTransId, test);
(*env)->SetIntField(env, eventObj.ref, jfldPortHandle, test );
(*env)->SetIntField(env, eventObj.ref, jfldFlag, test );
(*env)->SetLongField(env, eventObj.ref, jfldCanId, test );


const char *pWelt = "Hallo Welt";
jstring jStr = NULL;
jStr = (*env)->NewStringUTF(env, pWelt);


if (jStr != NULL){
jsize size = (*env)->GetStringUTFLength(env,jStr);
writeLog("Is Not Null. Size: %d \n", size);
}
else
writeLog("Is Null\n");


continueListening = (*env)->CallBooleanMethod(env, prxParams.caller,
jmid, eventObj, jStr);

#ifdef DEBUG
writeLog("Listener has been terminated");
#endif

}

JAVAOBJECT CreatejObject(JNIEnv *env , char * className)
{
jclass jcls;
jfieldID jfid;
jmethodID jmid;
jobject jobj;

JAVAOBJECT javaObj;

javaObj.ref = NULL;
javaObj.jcls = 0;


javaObj.jcls = (*env)->FindClass(env, className);
if (javaObj.jcls == NULL)
{
writeLog("Error FindClass\n");
return javaObj;
}

//Get constructor id
jmid = (*env)->GetMethodID(env, javaObj.jcls, "<init>","()V");
if (jmid == NULL)
{
writeLog("Error GetMethodID\n");
return javaObj;
}

//create new object
javaObj.ref = (*env)->NewObject(env, javaObj.jcls, jmid);
if (jobj == NULL)
{
writeLog("Error NewObject\n");
return javaObj;
}

return javaObj;
}




Java Code:

public class VectorCanLib implements Runnable{

//Returns the Id of the gen
public synchronized long registerListener(VectorXlLibraryNotifier
callBack)
{

closeNotify = false;

if(notifyThread == null){
notifyThread = new Thread(this);
notifyThread.start();
}

listeners.add(callBack);

return 0;
}


public void run() {

VectorXLDriverLib.setNotifier(portHandle, queueLevel, this,
"internalNotifyCallback");

System.out.println("Internal notifier closed");
}


private synchronized boolean internalNotifyCallback(XLCanEvent e,
String obj)
{
//TODO: Alle abgespeicherten callbacks nacheinander benachrichtigen

if(e != null){
System.out.println("Received: TransID: " + e.transid + " PH "+
e.portHandle +" CANID "+ e.id);
}
else{
;//System.out.println("null call received");
}

if(obj != null)
{
System.out.println(obj.length());
System.out.println("object is not null : " + obj.toString());
}

if(closeNotify){
System.out.println("CloseNotify is " + closeNotify);
}
return !closeNotify;

}
}

public abstract class VectorXLDriverLib{

[.....]


public static native long setNotifier(XLPortHandle portHandle, int
queueLevel, Object caller, String callBackName);

static {
try{
System.load(System.getProperty("user.dir") + "\\" + "MyDll.dll");
}
catch(Exception e) {
e.printStackTrace();
}
}

public class XLCanEvent {
public char channelIndex;
public int transid; //internal use only
public int portHandle; //internal use only
public long id;/
public int flags;
}


Now the example should contain everything neccessary. What i found out
is that if i replace in the function listenCan()

continueListening = (*env)->CallBooleanMethod(env, prxParams.caller,
jmid, eventObj, jStr);

with

continueListening = (*env)->CallBooleanMethod(env, prxParams.caller,
jmid, NULL, jStr);

than the string obj will be correctyl given to java! Could it be that
the eventObj overrides the string reference??? I changed nothing else
in the code expect of these line!

Thanks for your help in advance













 
Reply With Quote
 
Daniel.Boegelein@gmx.de
Guest
Posts: n/a
 
      04-17-2007
On 17 Apr., 09:23, Daniel.Boegel...@gmx.de wrote:
> On 16 Apr., 19:22, Gordon Beaton <n...@for.email> wrote:
>
>
>
> > On 16 Apr 2007 09:57:06 -0700, Daniel.Boegel...@gmx.de wrote:

>
> > > continueListening = (*env)->CallBooleanMethod(env, prxParams.jobj,
> > > jmid, jStr);

>
> > So, how can you be certain that the code you've posted actually
> > contains the error?

>
> > Since the actual String creation and method call don't appear to be
> > wrong, a logical conclusion is that the error is elsewhere. For
> > example, almost any kind of memory corruption could result in this
> > call subsequently failing in an erratic or unexplainable manner.

>
> > There are important things missing from your post. How are prxParams
> > (especially the jobj it holds) and the JNIEnv initialized? Since the
> > native method is presumably called from a separate thread started from
> > native code, you need to call AttachCurrentThread() somewhere or the
> > JNIEnv won't be valid here.

>
> > You should be cleaning up every object you create in this method.
> > either with DeleteLocalRef(), or by wrapping the method in calls to
> > Push/PopLocalFrame().

>
> > Try to post a compilable example.

>
> > /gordon

>
> > --

>
> Thx gordon. Your totally right with your advise. I added now all
> neccessary code parts.. I did some testing this morining and what i
> found out is pretty interesting.
>
> C:
> struct RxParams
> {
> XLhandle eventHandle;
> long portHandle;
> const char *callBackName;
> jobject caller;
> JNIEnv *env;
>
> }typedef RXPARAMS;
>
> JNIEXPORT jlong JNICALL Java_VectorXLDriverLib_setNotifier(JNIEnv
> *env, jclass jcls, jobject portHandle, jint queueLevel , jobject
> caller, jstring callBackName)
> {
> [...]
>
> RXPARAMS prxParams;
>
> prxParams.eventHandle = eventHandle;
> prxParams.portHandle = ph;
> prxParams.caller = caller;
> prxParams.env = env;
> prxParams.callBackName = (*env)->GetStringUTFChars(env,callBackName,
> 0);
>
> listenCan(prxParams);
> }
> return xlStatus;
>
> }
>
> void listenCan(RXPARAMS par)
> {
> writeLog("In RxThread\n");
> unsigned int msgsrx = RECEIVE_EVENT_SIZE;
> jsize count;
> jmethodID jmid;
> jclass icls;
> jboolean continueListening = 1;
>
> char string[50];
> JAVAOBJECT eventObj; //object used for callBack to java
>
> RXPARAMS prxParams = par;
>
> JNIEnv *env = par.env;
>
> writeLog("Before get Structure XLCANEvent\n");
> // Klasse des aufrufenden Java Objektes ermitteln:
> icls = (*env)->GetObjectClass(env, prxParams.caller);
>
> writeLog("before getMID: icls: %02x\n", icls);
> jmid = (*env)->GetMethodID(env, icls,
> prxParams.callBackName,"(LXLCanEvent;Ljava/lang/StringZ");
>
> writeLog("after getMID\n");
> if (jmid == 0){
> writeLog("jmid == NULL\n");
> }
> eventObj = CreatejObject(env, "XLCanEvent");
>
> writeLog("Before Get Field Ids\n");
> jfieldID jFldTransId = (*env)->GetFieldID(env, eventObj.jcls,
> "transid", "I");
> jfieldID jfldPortHandle = (*env)->GetFieldID(env,
> eventObj.jcls, "portHandle", "I");
> jfieldID jfldFlag = (*env)->GetFieldID(env, eventObj.jcls,
> "flags", "I");
> jfieldID jfldCanId = (*env)->GetFieldID(env, eventObj.jcls,
> "id", "J");
>
> jint test = 5;
>
> writeLog("CallBooleanMethod with Data\n");
> // Methode "intern" des aufrufenden Java Objektes aufrufen:
> (*env)->SetIntField(env, eventObj.ref, jFldTransId, test);
> (*env)->SetIntField(env, eventObj.ref, jfldPortHandle, test );
> (*env)->SetIntField(env, eventObj.ref, jfldFlag, test );
> (*env)->SetLongField(env, eventObj.ref, jfldCanId, test );
>
> const char *pWelt = "Hallo Welt";
> jstring jStr = NULL;
> jStr = (*env)->NewStringUTF(env, pWelt);
>
> if (jStr != NULL){
> jsize size = (*env)->GetStringUTFLength(env,jStr);
> writeLog("Is Not Null. Size: %d \n", size);
> }
> else
> writeLog("Is Null\n");
>
> continueListening = (*env)->CallBooleanMethod(env, prxParams.caller,
> jmid, eventObj, jStr);
>
> #ifdef DEBUG
> writeLog("Listener has been terminated");
> #endif
>
> }
>
> JAVAOBJECT CreatejObject(JNIEnv *env , char * className)
> {
> jclass jcls;
> jfieldID jfid;
> jmethodID jmid;
> jobject jobj;
>
> JAVAOBJECT javaObj;
>
> javaObj.ref = NULL;
> javaObj.jcls = 0;
>
> javaObj.jcls = (*env)->FindClass(env, className);
> if (javaObj.jcls == NULL)
> {
> writeLog("Error FindClass\n");
> return javaObj;
> }
>
> //Get constructor id
> jmid = (*env)->GetMethodID(env, javaObj.jcls, "<init>","()V");
> if (jmid == NULL)
> {
> writeLog("Error GetMethodID\n");
> return javaObj;
> }
>
> //create new object
> javaObj.ref = (*env)->NewObject(env, javaObj.jcls, jmid);
> if (jobj == NULL)
> {
> writeLog("Error NewObject\n");
> return javaObj;
> }
>
> return javaObj;
>
> }
>
> Java Code:
>
> public class VectorCanLib implements Runnable{
>
> //Returns the Id of the gen
> public synchronized long registerListener(VectorXlLibraryNotifier
> callBack)
> {
>
> closeNotify = false;
>
> if(notifyThread == null){
> notifyThread = new Thread(this);
> notifyThread.start();
> }
>
> listeners.add(callBack);
>
> return 0;
> }
>
> public void run() {
>
> VectorXLDriverLib.setNotifier(portHandle, queueLevel, this,
> "internalNotifyCallback");
>
> System.out.println("Internal notifier closed");
> }
>
> private synchronized boolean internalNotifyCallback(XLCanEvent e,
> String obj)
> {
> //TODO: Alle abgespeicherten callbacks nacheinander benachrichtigen
>
> if(e != null){
> System.out.println("Received: TransID: " + e.transid + " PH "+
> e.portHandle +" CANID "+ e.id);
> }
> else{
> ;//System.out.println("null call received");
> }
>
> if(obj != null)
> {
> System.out.println(obj.length());
> System.out.println("object is not null : " + obj.toString());
> }
>
> if(closeNotify){
> System.out.println("CloseNotify is " + closeNotify);
> }
> return !closeNotify;
>
> }
>
> }
>
> public abstract class VectorXLDriverLib{
>
> [.....]
>
> public static native long setNotifier(XLPortHandle portHandle, int
> queueLevel, Object caller, String callBackName);
>
> static {
> try{
> System.load(System.getProperty("user.dir") + "\\" + "MyDll.dll");
> }
> catch(Exception e) {
> e.printStackTrace();
> }
>
> }
>
> public class XLCanEvent {
> public char channelIndex;
> public int transid; //internal use only
> public int portHandle; //internal use only
> public long id;/
> public int flags;
>
> }
>
> Now the example should contain everything neccessary. What i found out
> is that if i replace in the function listenCan()
>
> continueListening = (*env)->CallBooleanMethod(env, prxParams.caller,
> jmid, eventObj, jStr);
>
> with
>
> continueListening = (*env)->CallBooleanMethod(env, prxParams.caller,
> jmid, NULL, jStr);
>
> than the string obj will be correctyl given to java! Could it be that
> the eventObj overrides the string reference??? I changed nothing else
> in the code expect of these line!
>
> Thanks for your help in advance


AHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH!!!! After i posted i saw my
mistake!!!

Instead of calling

continueListening = (*env)->CallBooleanMethod(env, prxParams.caller,
> jmid, eventObj, jStr);


i had to call

continueListening = (*env)->CallBooleanMethod(env, prxParams.caller,
> jmid, eventObj.ref, jStr);


because eventObj is a structur, which contains the real obj:

struct javaObject
{
jobject ref; //reference to the java object
jclass jcls; //class id of the java obj
}typedef JAVAOBJECT;


OMG. What a stupid mistake....this costs me at least one day!!!
Sometimes stupidity really hurts

Thanks gordon, without your hints i properly would continue searching
the whole week







 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Can a method be a parameter of another method in Java? Shawn Java 20 09-22-2008 11:07 PM
Re: Method as parameter of other method in Java? Harry Colquhoun Java 0 09-01-2004 06:22 PM
Re: Method as parameter of other method in Java? Anupam Sengupta Java 0 09-01-2004 05:53 AM
Urgent: Calling a method of a java object (getting a boolean parameter) from java script Eyal Javascript 2 08-07-2003 11:49 AM
Problems with JNI: calling a Java method from native method. Jabel D. Morales - VMan of Mana Java 1 08-01-2003 12:18 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57