|
|
Java Native Interface Programming |
This section illustrates how to call Java programming language methods from native language methods. Our example program,
Callbacks.java, invokes a native method. The native method then makes a call back to a Java programming language method. To make things a little more interesting, the Java programming language method again (recursively) calls the native method. This process continues until the recursion is five levels deep, at which time the Java programming language method returns without making any more calls to the native method. To help you see this, the Java programming language method and the native method print a sequence of tracing information.Calling a Java Programming Language Method from Native Code
To see how native code calls a Java programming language method, let us focus on the implementation ofCallbacks_nativeMethod, which is implemented inCallbacks.c. This native method contains a call back to the Java programming language methodCallbacks.callback.JNIEXPORT void JNICALL Java_Callbacks_nativeMethod(JNIEnv *env, jobject obj, jint depth) { jclass cls = (*env)->GetObjectClass(env, obj); jmethodID mid = (*env)->GetMethodID(env, cls, "callback", "(I)V"); if (mid == 0) return; printf("In C, depth = %d, about to enter Java\n", depth); (*env)->CallVoidMethod(env, obj, mid, depth); printf("In C, depth = %d, back from Java\n", depth); }You can call an instance (non-static) method by following these three steps:
- Your native method calls the JNI function
GetObjectClass.GetObjectClassreturns the Java programming language class object to which the Java programming language object belongs.- Your native method then calls the JNI function
GetMethodID.GetMethodIDGetMethodID returns zero (0). An immediate return from the native method at that point causes aNoSuchMethodErrorto be thrown in the Java application code.- Lastly, your native method calls the JNI function
CallVoidMethod.CallVoidMethodinvokes an instance method that hasvoidreturn type. You pass the object, method ID, and the actual arguments toCallVoidMethod.Forming the Method Name and Method Signature
The JNI performs a symbolic lookup based on the method's name and type signature. This ensures that the same native method will work even after new methods have been added to the corresponding Java programming language class.
The method name is the Java programming language method name in UTF-8 form. Specify the method name for a constructor of a class by enclosing the word
initwithin angle brackets (this appears as "<init>").Note that the JNI uses the method signature to denote the return type of a Java programming language method. The signature
(I)V, for example, denotes a Java programming language method that takes one argument of typeintand has a return typevoid. The general form of a method signature argument is:"(argument-types)return-type"The following table summarizes the encoding for the Java programming language type signatures:
Java VM Type Signatures
Signature Java Programming Language Type Z boolean B byte C char S short I int J long F float D double L fully-qualified-class ; fully-qualified-class [ type type[] ( arg-types ) ret-type method type For example, the
Prompt.getLinemethod has the signature:(Ljava/lang/String;)Ljava/lang/String;Prompt.getLinetakes one parameter, a Java programming languageStringobject, and the method type is alsoString.The
Callbacks.mainmethod has the signature:The signature indicates that the([Ljava/lang/String;)VCallbacks.mainmethod takes one parameter, a Java programming languageStringobject, and the method type is void.Array types are indicated by a leading square bracket ([) followed by the type of the array elements.
Using
javapto Generate Method SignaturesTo eliminate the mistakes in deriving method signatures by hand, you can use the
javaptool to print out method signatures. For example, by running:you can obtain the following output:javap -s -p PromptCompiled from Prompt.java class Prompt extends java.lang.Object /* ACC_SUPER bit set */ { private native getLine (Ljava/lang/String;)Ljava/lang/String; public static main ([Ljava/lang/String;)V <init> ()V static <clinit> ()V }The "-s" flag informs
javapto output signatures rather than normal Java programming language types. The "-p" flag instructsjavapto include private members.Calling Java Programming Language Methods Using Method IDs
When you invoke a method in the JNI, you pass the method ID to the actual method invocation function. Obtaining a method ID is a relatively expensive operation. Because you obtain the method ID separately from the method invocation, you need only perform this operation once. Thus, it is possible to first obtain the method ID one time and then use the method ID many times at later points to invoke the same method.
It is important to keep in mind that a method ID is valid only for as long as the class from which it is derived is not unloaded. Once the class is unloaded, the method ID becomes invalid. AS a result, if you want to cache the method ID, be sure to keep a live reference to the Java programming language class from which the method ID is derived. As long as the reference to the Java programming language class (the
jclassvalue) exists, the native code keeps a live reference to the class. The section Local and Global References explains how to keep a live reference even after the native method returns and thejclassvalue goes out of scope.Passing Arguments to Java Programming Language Methods
The JNI provides several ways to pass arguments to a Java programming language method. Most often, you pass the arguments following the method ID. There are also two variations of method invocation functions that take arguments in an alternative format. For example, the
CallVoidMethodVfunction receives the arguments in ava_listand theCallVoidMethodAfunction expects the arguments in an array ofjvalueunion types. The array ofjvalueunion types are as follows:typedef union jvalue { jboolean z; jbyte b; jchar c; jshort s; jint i; jlong j; jfloat f; jdouble d; jobject l; } jvalue;In addition to the
CallVoidMethodfunction, the JNI also supports instance method invocation functions with other return types, such asCallBooleanMethod,CallIntMethod, and so on. The return type of the method invocation function must match with the type of the Java programming language method you wish to invoke.Calling Static Methods
You can call a static Java programming language method from your native code in a similar manner to calling an instance method. Call a static method by following these steps:If you compare instance method invocation functions to static method invocation functions, you will notice that instance method invocation functions receive the object, rather than the class, as the second argument following the
- Obtain the method ID using the JNI function
GetStaticMethodIDrather than the functionGetMethodID.- Pass the class, method ID, and arguments to the family of static method invocation functions:
CallStaticVoidMethod,CallStaticBooleanMethod, and so on.JNIEnvargument. For example, suppose we add a static methodintostatic int incDepth(int depth) {return depth + 1};Callback.java. We can call this static methodincDepthfromJava_Callback_nativeMethodby using the following JNI functions:JNIEXPORT void JNICALL Java_Callbacks_nativeMethod(JNIEnv *env, jobject obj, jint depth) { jclass cls = (*env)->GetObjectClass(env, obj); jmethodID mid = (*env)->GetStaticMethodID(env, cls, "incDepth", "(I)I"); if (mid == 0) return; depth = (*env)->CallStaticIntMethod(env, cls, mid, depth);Calling Instance Methods of a Superclass
You can call instance methods defined in a superclass that have been overridden in the class to which the object belongs. The JNI provides a set ofCallNonvirtual<type>Methodfunctions for this purpose. To call instance methods from the superclass that defined them, you do the following:It is rare that you will need to invoke the instance methods of a superclass. This facility is similar to calling a superclass method, say
- Obtain the method ID from the superclass using
GetMethodIDrather thanGetStaticMethodID.- Pass the object, superclass, method Id, and arguments to the family of nonvirtual invocation functions:
CallNonvirtualVoidMethod,CallNonvirtualBooleanMethod, and so on.f, using:in the Java programming language.super.f();
|
|
Java Native Interface Programming |