Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2012 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
Brian Carlstrom | fc0e321 | 2013-07-17 14:40:12 -0700 | [diff] [blame] | 17 | #ifndef ART_RUNTIME_WELL_KNOWN_CLASSES_H_ |
| 18 | #define ART_RUNTIME_WELL_KNOWN_CLASSES_H_ |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 19 | |
Elliott Hughes | 76b6167 | 2012-12-12 17:47:30 -0800 | [diff] [blame] | 20 | #include "base/mutex.h" |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 21 | #include "jni.h" |
| 22 | |
| 23 | namespace art { |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 24 | namespace mirror { |
Elliott Hughes | af8d15a | 2012-05-29 09:12:18 -0700 | [diff] [blame] | 25 | class Class; |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 26 | } // namespace mirror |
Elliott Hughes | af8d15a | 2012-05-29 09:12:18 -0700 | [diff] [blame] | 27 | |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 28 | // Various classes used in JNI. We cache them so we don't have to keep looking |
| 29 | // them up. Similar to libcore's JniConstants (except there's no overlap, so |
| 30 | // we keep them separate). |
| 31 | |
Mathieu Chartier | 987ccff | 2013-07-08 11:05:21 -0700 | [diff] [blame] | 32 | jmethodID CacheMethod(JNIEnv* env, jclass c, bool is_static, const char* name, const char* signature); |
| 33 | |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 34 | struct WellKnownClasses { |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 35 | public: |
Ian Rogers | ef28b14 | 2012-11-30 14:22:18 -0800 | [diff] [blame] | 36 | static void Init(JNIEnv* env); // Run before native methods are registered. |
| 37 | static void LateInit(JNIEnv* env); // Run after native methods are registered. |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 38 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 39 | static mirror::Class* ToClass(jclass global_jclass) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 40 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); |
Elliott Hughes | af8d15a | 2012-05-29 09:12:18 -0700 | [diff] [blame] | 41 | |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 42 | static jclass com_android_dex_Dex; |
Mathieu Chartier | 6bcae8f | 2014-09-04 18:33:17 -0700 | [diff] [blame] | 43 | static jclass dalvik_system_DexFile; |
| 44 | static jclass dalvik_system_DexPathList; |
Andreas Gampe | c8ccf68 | 2014-09-29 20:07:43 -0700 | [diff] [blame] | 45 | static jclass dalvik_system_DexPathList__Element; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 46 | static jclass dalvik_system_PathClassLoader; |
Mathieu Chartier | 6bcae8f | 2014-09-04 18:33:17 -0700 | [diff] [blame] | 47 | static jclass java_lang_BootClassLoader; |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 48 | static jclass java_lang_ClassLoader; |
| 49 | static jclass java_lang_ClassNotFoundException; |
| 50 | static jclass java_lang_Daemons; |
| 51 | static jclass java_lang_Error; |
Ian Rogers | af6e67a | 2013-01-16 08:38:37 -0800 | [diff] [blame] | 52 | static jclass java_lang_Object; |
Mathieu Chartier | 66f1925 | 2012-09-18 08:57:04 -0700 | [diff] [blame] | 53 | static jclass java_lang_reflect_AbstractMethod; |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 54 | static jclass java_lang_reflect_ArtMethod; |
| 55 | static jclass java_lang_reflect_Constructor; |
| 56 | static jclass java_lang_reflect_Field; |
| 57 | static jclass java_lang_reflect_Method; |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 58 | static jclass java_lang_reflect_Proxy; |
Elliott Hughes | a4f9474 | 2012-05-29 16:28:38 -0700 | [diff] [blame] | 59 | static jclass java_lang_RuntimeException; |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 60 | static jclass java_lang_StackOverflowError; |
Ian Rogers | dd157d7 | 2014-05-15 14:47:50 -0700 | [diff] [blame] | 61 | static jclass java_lang_String; |
Mathieu Chartier | 987ccff | 2013-07-08 11:05:21 -0700 | [diff] [blame] | 62 | static jclass java_lang_System; |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 63 | static jclass java_lang_Thread; |
Elliott Hughes | af8d15a | 2012-05-29 09:12:18 -0700 | [diff] [blame] | 64 | static jclass java_lang_ThreadGroup; |
Andreas Gampe | c8ccf68 | 2014-09-29 20:07:43 -0700 | [diff] [blame] | 65 | static jclass java_lang_Thread__UncaughtExceptionHandler; |
Elliott Hughes | a4f9474 | 2012-05-29 16:28:38 -0700 | [diff] [blame] | 66 | static jclass java_lang_Throwable; |
Sebastien Hertz | e49e195 | 2014-10-13 11:27:13 +0200 | [diff] [blame] | 67 | static jclass java_util_ArrayList; |
Andreas Gampe | 7ea6f79 | 2014-07-14 16:21:44 -0700 | [diff] [blame] | 68 | static jclass java_util_Collections; |
Elliott Hughes | aecb5f3 | 2013-03-28 08:27:38 -0700 | [diff] [blame] | 69 | static jclass java_nio_DirectByteBuffer; |
Andreas Gampe | 7ea6f79 | 2014-07-14 16:21:44 -0700 | [diff] [blame] | 70 | static jclass libcore_util_EmptyArray; |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 71 | static jclass org_apache_harmony_dalvik_ddmc_Chunk; |
| 72 | static jclass org_apache_harmony_dalvik_ddmc_DdmServer; |
| 73 | |
| 74 | static jmethodID com_android_dex_Dex_create; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 75 | static jmethodID java_lang_Boolean_valueOf; |
| 76 | static jmethodID java_lang_Byte_valueOf; |
| 77 | static jmethodID java_lang_Character_valueOf; |
Elliott Hughes | a4f9474 | 2012-05-29 16:28:38 -0700 | [diff] [blame] | 78 | static jmethodID java_lang_ClassLoader_loadClass; |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 79 | static jmethodID java_lang_ClassNotFoundException_init; |
| 80 | static jmethodID java_lang_Daemons_requestHeapTrim; |
| 81 | static jmethodID java_lang_Daemons_start; |
Mathieu Chartier | cef50f0 | 2014-12-09 17:38:52 -0800 | [diff] [blame] | 82 | static jmethodID java_lang_Daemons_stop; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 83 | static jmethodID java_lang_Double_valueOf; |
| 84 | static jmethodID java_lang_Float_valueOf; |
| 85 | static jmethodID java_lang_Integer_valueOf; |
| 86 | static jmethodID java_lang_Long_valueOf; |
Elliott Hughes | a4f9474 | 2012-05-29 16:28:38 -0700 | [diff] [blame] | 87 | static jmethodID java_lang_ref_FinalizerReference_add; |
| 88 | static jmethodID java_lang_ref_ReferenceQueue_add; |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 89 | static jmethodID java_lang_reflect_Proxy_invoke; |
Ian Rogers | ef28b14 | 2012-11-30 14:22:18 -0800 | [diff] [blame] | 90 | static jmethodID java_lang_Runtime_nativeLoad; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 91 | static jmethodID java_lang_Short_valueOf; |
Mathieu Chartier | 987ccff | 2013-07-08 11:05:21 -0700 | [diff] [blame] | 92 | static jmethodID java_lang_System_runFinalization; |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 93 | static jmethodID java_lang_Thread_init; |
Elliott Hughes | af8d15a | 2012-05-29 09:12:18 -0700 | [diff] [blame] | 94 | static jmethodID java_lang_Thread_run; |
Andreas Gampe | c8ccf68 | 2014-09-29 20:07:43 -0700 | [diff] [blame] | 95 | static jmethodID java_lang_Thread__UncaughtExceptionHandler_uncaughtException; |
Elliott Hughes | af8d15a | 2012-05-29 09:12:18 -0700 | [diff] [blame] | 96 | static jmethodID java_lang_ThreadGroup_removeThread; |
Elliott Hughes | aecb5f3 | 2013-03-28 08:27:38 -0700 | [diff] [blame] | 97 | static jmethodID java_nio_DirectByteBuffer_init; |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 98 | static jmethodID org_apache_harmony_dalvik_ddmc_DdmServer_broadcast; |
| 99 | static jmethodID org_apache_harmony_dalvik_ddmc_DdmServer_dispatch; |
| 100 | |
Mathieu Chartier | 6bcae8f | 2014-09-04 18:33:17 -0700 | [diff] [blame] | 101 | static jfieldID dalvik_system_DexFile_cookie; |
| 102 | static jfieldID dalvik_system_DexPathList_dexElements; |
Andreas Gampe | c8ccf68 | 2014-09-29 20:07:43 -0700 | [diff] [blame] | 103 | static jfieldID dalvik_system_DexPathList__Element_dexFile; |
Mathieu Chartier | 6bcae8f | 2014-09-04 18:33:17 -0700 | [diff] [blame] | 104 | static jfieldID dalvik_system_PathClassLoader_pathList; |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 105 | static jfieldID java_lang_reflect_AbstractMethod_artMethod; |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 106 | static jfieldID java_lang_reflect_Proxy_h; |
Elliott Hughes | af8d15a | 2012-05-29 09:12:18 -0700 | [diff] [blame] | 107 | static jfieldID java_lang_Thread_daemon; |
| 108 | static jfieldID java_lang_Thread_group; |
| 109 | static jfieldID java_lang_Thread_lock; |
| 110 | static jfieldID java_lang_Thread_name; |
| 111 | static jfieldID java_lang_Thread_priority; |
| 112 | static jfieldID java_lang_Thread_uncaughtHandler; |
Anwar Ghuloum | 3c50a4b | 2013-06-21 13:05:23 -0700 | [diff] [blame] | 113 | static jfieldID java_lang_Thread_nativePeer; |
Sebastien Hertz | e49e195 | 2014-10-13 11:27:13 +0200 | [diff] [blame] | 114 | static jfieldID java_lang_ThreadGroup_groups; |
Elliott Hughes | af8d15a | 2012-05-29 09:12:18 -0700 | [diff] [blame] | 115 | static jfieldID java_lang_ThreadGroup_mainThreadGroup; |
| 116 | static jfieldID java_lang_ThreadGroup_name; |
Sebastien Hertz | e49e195 | 2014-10-13 11:27:13 +0200 | [diff] [blame] | 117 | static jfieldID java_lang_ThreadGroup_parent; |
Elliott Hughes | af8d15a | 2012-05-29 09:12:18 -0700 | [diff] [blame] | 118 | static jfieldID java_lang_ThreadGroup_systemThreadGroup; |
Brian Carlstrom | 3437531 | 2014-09-10 23:10:47 -0700 | [diff] [blame] | 119 | static jfieldID java_lang_Throwable_cause; |
| 120 | static jfieldID java_lang_Throwable_detailMessage; |
| 121 | static jfieldID java_lang_Throwable_stackTrace; |
| 122 | static jfieldID java_lang_Throwable_stackState; |
| 123 | static jfieldID java_lang_Throwable_suppressedExceptions; |
Elliott Hughes | aecb5f3 | 2013-03-28 08:27:38 -0700 | [diff] [blame] | 124 | static jfieldID java_nio_DirectByteBuffer_capacity; |
| 125 | static jfieldID java_nio_DirectByteBuffer_effectiveDirectAddress; |
Sebastien Hertz | e49e195 | 2014-10-13 11:27:13 +0200 | [diff] [blame] | 126 | static jfieldID java_util_ArrayList_array; |
| 127 | static jfieldID java_util_ArrayList_size; |
Brian Carlstrom | 3437531 | 2014-09-10 23:10:47 -0700 | [diff] [blame] | 128 | static jfieldID java_util_Collections_EMPTY_LIST; |
| 129 | static jfieldID libcore_util_EmptyArray_STACK_TRACE_ELEMENT; |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 130 | static jfieldID org_apache_harmony_dalvik_ddmc_Chunk_data; |
| 131 | static jfieldID org_apache_harmony_dalvik_ddmc_Chunk_length; |
| 132 | static jfieldID org_apache_harmony_dalvik_ddmc_Chunk_offset; |
| 133 | static jfieldID org_apache_harmony_dalvik_ddmc_Chunk_type; |
| 134 | }; |
| 135 | |
| 136 | } // namespace art |
| 137 | |
Brian Carlstrom | fc0e321 | 2013-07-17 14:40:12 -0700 | [diff] [blame] | 138 | #endif // ART_RUNTIME_WELL_KNOWN_CLASSES_H_ |