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; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 43 | static jclass dalvik_system_PathClassLoader; |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 44 | static jclass java_lang_ClassLoader; |
| 45 | static jclass java_lang_ClassNotFoundException; |
| 46 | static jclass java_lang_Daemons; |
| 47 | static jclass java_lang_Error; |
Ian Rogers | af6e67a | 2013-01-16 08:38:37 -0800 | [diff] [blame] | 48 | static jclass java_lang_Object; |
Mathieu Chartier | 66f1925 | 2012-09-18 08:57:04 -0700 | [diff] [blame] | 49 | static jclass java_lang_reflect_AbstractMethod; |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 50 | static jclass java_lang_reflect_ArtMethod; |
| 51 | static jclass java_lang_reflect_Constructor; |
| 52 | static jclass java_lang_reflect_Field; |
| 53 | static jclass java_lang_reflect_Method; |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 54 | static jclass java_lang_reflect_Proxy; |
Elliott Hughes | a4f9474 | 2012-05-29 16:28:38 -0700 | [diff] [blame] | 55 | static jclass java_lang_RuntimeException; |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 56 | static jclass java_lang_StackOverflowError; |
Ian Rogers | dd157d7 | 2014-05-15 14:47:50 -0700 | [diff] [blame] | 57 | static jclass java_lang_String; |
Mathieu Chartier | 987ccff | 2013-07-08 11:05:21 -0700 | [diff] [blame] | 58 | static jclass java_lang_System; |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 59 | static jclass java_lang_Thread; |
Elliott Hughes | af8d15a | 2012-05-29 09:12:18 -0700 | [diff] [blame] | 60 | static jclass java_lang_ThreadGroup; |
Elliott Hughes | af8d15a | 2012-05-29 09:12:18 -0700 | [diff] [blame] | 61 | static jclass java_lang_Thread$UncaughtExceptionHandler; |
Elliott Hughes | a4f9474 | 2012-05-29 16:28:38 -0700 | [diff] [blame] | 62 | static jclass java_lang_Throwable; |
Elliott Hughes | aecb5f3 | 2013-03-28 08:27:38 -0700 | [diff] [blame] | 63 | static jclass java_nio_DirectByteBuffer; |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 64 | static jclass org_apache_harmony_dalvik_ddmc_Chunk; |
| 65 | static jclass org_apache_harmony_dalvik_ddmc_DdmServer; |
| 66 | |
| 67 | static jmethodID com_android_dex_Dex_create; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 68 | static jmethodID java_lang_Boolean_valueOf; |
| 69 | static jmethodID java_lang_Byte_valueOf; |
| 70 | static jmethodID java_lang_Character_valueOf; |
Elliott Hughes | a4f9474 | 2012-05-29 16:28:38 -0700 | [diff] [blame] | 71 | static jmethodID java_lang_ClassLoader_loadClass; |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 72 | static jmethodID java_lang_ClassNotFoundException_init; |
Mathieu Chartier | 7664f5c | 2012-06-08 18:15:32 -0700 | [diff] [blame] | 73 | static jmethodID java_lang_Daemons_requestGC; |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 74 | static jmethodID java_lang_Daemons_requestHeapTrim; |
| 75 | static jmethodID java_lang_Daemons_start; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 76 | static jmethodID java_lang_Double_valueOf; |
| 77 | static jmethodID java_lang_Float_valueOf; |
| 78 | static jmethodID java_lang_Integer_valueOf; |
| 79 | static jmethodID java_lang_Long_valueOf; |
Elliott Hughes | a4f9474 | 2012-05-29 16:28:38 -0700 | [diff] [blame] | 80 | static jmethodID java_lang_ref_FinalizerReference_add; |
| 81 | static jmethodID java_lang_ref_ReferenceQueue_add; |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 82 | static jmethodID java_lang_reflect_Proxy_invoke; |
Ian Rogers | ef28b14 | 2012-11-30 14:22:18 -0800 | [diff] [blame] | 83 | static jmethodID java_lang_Runtime_nativeLoad; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 84 | static jmethodID java_lang_Short_valueOf; |
Mathieu Chartier | 987ccff | 2013-07-08 11:05:21 -0700 | [diff] [blame] | 85 | static jmethodID java_lang_System_runFinalization; |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 86 | static jmethodID java_lang_Thread_init; |
Elliott Hughes | af8d15a | 2012-05-29 09:12:18 -0700 | [diff] [blame] | 87 | static jmethodID java_lang_Thread_run; |
| 88 | static jmethodID java_lang_Thread$UncaughtExceptionHandler_uncaughtException; |
| 89 | static jmethodID java_lang_ThreadGroup_removeThread; |
Elliott Hughes | aecb5f3 | 2013-03-28 08:27:38 -0700 | [diff] [blame] | 90 | static jmethodID java_nio_DirectByteBuffer_init; |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 91 | static jmethodID org_apache_harmony_dalvik_ddmc_DdmServer_broadcast; |
| 92 | static jmethodID org_apache_harmony_dalvik_ddmc_DdmServer_dispatch; |
| 93 | |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 94 | static jfieldID java_lang_reflect_AbstractMethod_artMethod; |
| 95 | static jfieldID java_lang_reflect_Field_artField; |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 96 | static jfieldID java_lang_reflect_Proxy_h; |
Elliott Hughes | af8d15a | 2012-05-29 09:12:18 -0700 | [diff] [blame] | 97 | static jfieldID java_lang_Thread_daemon; |
| 98 | static jfieldID java_lang_Thread_group; |
| 99 | static jfieldID java_lang_Thread_lock; |
| 100 | static jfieldID java_lang_Thread_name; |
| 101 | static jfieldID java_lang_Thread_priority; |
| 102 | static jfieldID java_lang_Thread_uncaughtHandler; |
Anwar Ghuloum | 3c50a4b | 2013-06-21 13:05:23 -0700 | [diff] [blame] | 103 | static jfieldID java_lang_Thread_nativePeer; |
Elliott Hughes | af8d15a | 2012-05-29 09:12:18 -0700 | [diff] [blame] | 104 | static jfieldID java_lang_ThreadGroup_mainThreadGroup; |
| 105 | static jfieldID java_lang_ThreadGroup_name; |
| 106 | static jfieldID java_lang_ThreadGroup_systemThreadGroup; |
Elliott Hughes | aecb5f3 | 2013-03-28 08:27:38 -0700 | [diff] [blame] | 107 | static jfieldID java_nio_DirectByteBuffer_capacity; |
| 108 | static jfieldID java_nio_DirectByteBuffer_effectiveDirectAddress; |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 109 | static jfieldID org_apache_harmony_dalvik_ddmc_Chunk_data; |
| 110 | static jfieldID org_apache_harmony_dalvik_ddmc_Chunk_length; |
| 111 | static jfieldID org_apache_harmony_dalvik_ddmc_Chunk_offset; |
| 112 | static jfieldID org_apache_harmony_dalvik_ddmc_Chunk_type; |
| 113 | }; |
| 114 | |
| 115 | } // namespace art |
| 116 | |
Brian Carlstrom | fc0e321 | 2013-07-17 14:40:12 -0700 | [diff] [blame] | 117 | #endif // ART_RUNTIME_WELL_KNOWN_CLASSES_H_ |