Register.cpp 3.14 KB
Newer Older
1 2
/*
 * Copyright (C) 2010 The Android Open Source Project
3
 *
4 5 6
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
7
 *
8
 *      http://www.apache.org/licenses/LICENSE-2.0
9
 *
10 11 12 13 14 15 16
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

17 18
#define LOG_TAG "libcore" // We'll be next to "dalvikvm" in the log; make the distinction clear.

19
#include "JniConstants.h"
20 21
#include "ScopedLocalFrame.h"

22 23
#include <stdlib.h>

24
// DalvikVM calls this on startup, so we can statically register all our native methods.
25 26 27 28 29 30 31
int JNI_OnLoad(JavaVM* vm, void*) {
    JNIEnv* env;
    if (vm->GetEnv(reinterpret_cast<void**>(&env), JNI_VERSION_1_6) != JNI_OK) {
        ALOGE("JavaVM::GetEnv() failed");
        abort();
    }

32 33
    ScopedLocalFrame localFrame(env);

34 35 36 37 38
#define REGISTER(FN) extern void FN(JNIEnv*); FN(env)
    REGISTER(register_java_io_Console);
    REGISTER(register_java_io_File);
    REGISTER(register_java_io_ObjectStreamClass);
    REGISTER(register_java_lang_Character);
39 40
    REGISTER(register_java_lang_Double);
    REGISTER(register_java_lang_Float);
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
    REGISTER(register_java_lang_Math);
    REGISTER(register_java_lang_ProcessManager);
    REGISTER(register_java_lang_RealToString);
    REGISTER(register_java_lang_StrictMath);
    REGISTER(register_java_lang_StringToReal);
    REGISTER(register_java_lang_System);
    REGISTER(register_java_math_NativeBN);
    REGISTER(register_java_nio_ByteOrder);
    REGISTER(register_java_nio_charset_Charsets);
    REGISTER(register_java_text_Bidi);
    REGISTER(register_java_util_regex_Matcher);
    REGISTER(register_java_util_regex_Pattern);
    REGISTER(register_java_util_zip_Adler32);
    REGISTER(register_java_util_zip_CRC32);
    REGISTER(register_java_util_zip_Deflater);
    REGISTER(register_java_util_zip_Inflater);
57
    REGISTER(register_libcore_icu_AlphabeticIndex);
58
    REGISTER(register_libcore_icu_DateIntervalFormat);
59 60 61 62 63 64 65 66
    REGISTER(register_libcore_icu_ICU);
    REGISTER(register_libcore_icu_NativeBreakIterator);
    REGISTER(register_libcore_icu_NativeCollation);
    REGISTER(register_libcore_icu_NativeConverter);
    REGISTER(register_libcore_icu_NativeDecimalFormat);
    REGISTER(register_libcore_icu_NativeIDN);
    REGISTER(register_libcore_icu_NativeNormalizer);
    REGISTER(register_libcore_icu_NativePluralRules);
67
    REGISTER(register_libcore_icu_TimeZoneNames);
68
    REGISTER(register_libcore_icu_Transliterator);
69 70 71 72 73 74 75
    REGISTER(register_libcore_io_AsynchronousCloseMonitor);
    REGISTER(register_libcore_io_Memory);
    REGISTER(register_libcore_io_OsConstants);
    REGISTER(register_libcore_io_Posix);
    REGISTER(register_libcore_net_RawSocket);
    REGISTER(register_org_apache_harmony_dalvik_NativeTestTarget);
    REGISTER(register_org_apache_harmony_xml_ExpatParser);
Elliott Hughes's avatar
Elliott Hughes committed
76
    REGISTER(register_sun_misc_Unsafe);
77 78
#undef REGISTER
    return JNI_VERSION_1_6;
79
}