Я пытался выяснить, как 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);
}
Теперь я понимаю, что Runtime.loadlibrary перегружена с помощью встроенной функции Dalvik_java_lang_Runtime_nativeLoad, а Classloader.loadlibrary не вызвана. Пожалуйста, поправьте меня, если я ошибаюсь.