哪个方法最终调用JNI_OnLoad
我试图弄清楚内部是如何称呼JNI_OnLoad的。我最终弄清楚了下面的教程,但它并没有说明代码部分实际调用JNI_OnLoad作为内部函数调用。请帮助我找到明确调用JNI_OnLoad的链接函数。我观察到System.loadLibrary调用运行时,Runtime再次调用Classloader。但仍然找不到原生链接。
我对OnLoad.cpp中的那个特别感兴趣(android/platform_frameworks_base/blob/master/services/jni/onload.cpp)
JNI_OnLoad
jint JNI_OnLoad(JavaVM *vm, void *reserved);
The VM calls JNI_OnLoad when the native library is loaded (for example, through
System.loadLibrary). JNI_OnLoad must return the JNI version needed by the native library.
In order to use any of the new JNI functions, a native library must export a JNI_OnLoad function that returns JNI_VERSION_1_2. If the native library does not export a JNI_OnLoad function, the VM assumes that the library only requires JNI version JNI_VERSION_1_1. If the VM does not recognize the version number returned by JNI_OnLoad, the native library cannot be loaded.
编辑:基于@Code Painters的响应,我的文件跟踪如下:
System.loadLibrary("android_servers");
|
|The call System.loadLibrary(name) is effectively equivalent
| to the call
|
V
Runtime.getRuntime().loadLibrary(name)
|
|public static Runtime getRuntime() {
| return currentRuntime;}
|
| // Here, also,Classloader.loadlibrary is called,
| but this is over-ridden (?)
| by the Native function of Runtime.java below
V
/dalvik/vm/native/java_lang_Runtime.cpp (The jni native
implementation of Runtime.java):
/*
* static String nativeLoad(String filename, ClassLoader loader)
*
* Load the specified full path as a dynamic library filled with
* JNI-compatible methods. Returns null on success, or a failure
* message on failure.
*/
static void Dalvik_java_lang_Runtime_nativeLoad{
//
success = dvmLoadNativeCode(fileName, classLoader, &reason);
}
我现在明白了运行时.load库被Dalvik_java_lang_Runtime_nativeLoad本机函数重载,并且Classloader.loadlibrary没有被唤起。如果我错了,请纠正我。