blob: 15961e28ae9dfcb81dce75c203f998a932925f0f [file] [log] [blame]
Elliott Hugheseac76672012-05-24 21:56:51 -07001/*
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
17#ifndef ART_SRC_WELL_KNOWN_CLASSES_H_
18#define ART_SRC_WELL_KNOWN_CLASSES_H_
19
20#include "jni.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070021#include "mutex.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070022
23namespace art {
24
Elliott Hughesaf8d15a2012-05-29 09:12:18 -070025class Class;
26
Elliott Hugheseac76672012-05-24 21:56:51 -070027// Various classes used in JNI. We cache them so we don't have to keep looking
28// them up. Similar to libcore's JniConstants (except there's no overlap, so
29// we keep them separate).
30
31struct WellKnownClasses {
Ian Rogers00f7d0e2012-07-19 15:28:27 -070032 static void InitClasses(JNIEnv* env);
Elliott Hugheseac76672012-05-24 21:56:51 -070033 static void Init(JNIEnv* env);
34
Ian Rogers00f7d0e2012-07-19 15:28:27 -070035 static Class* ToClass(jclass global_jclass)
36 SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_);
Elliott Hughesaf8d15a2012-05-29 09:12:18 -070037
Elliott Hugheseac76672012-05-24 21:56:51 -070038 static jclass com_android_dex_Dex;
Ian Rogers00f7d0e2012-07-19 15:28:27 -070039 static jclass dalvik_system_PathClassLoader;
Elliott Hugheseac76672012-05-24 21:56:51 -070040 static jclass java_lang_ClassLoader;
41 static jclass java_lang_ClassNotFoundException;
42 static jclass java_lang_Daemons;
43 static jclass java_lang_Error;
Elliott Hugheseac76672012-05-24 21:56:51 -070044 static jclass java_lang_reflect_InvocationHandler;
45 static jclass java_lang_reflect_Method;
46 static jclass java_lang_reflect_Proxy;
Elliott Hughesa4f94742012-05-29 16:28:38 -070047 static jclass java_lang_RuntimeException;
Elliott Hugheseac76672012-05-24 21:56:51 -070048 static jclass java_lang_Thread;
Elliott Hughesaf8d15a2012-05-29 09:12:18 -070049 static jclass java_lang_ThreadGroup;
50 static jclass java_lang_ThreadLock;
51 static jclass java_lang_Thread$UncaughtExceptionHandler;
Elliott Hughesa4f94742012-05-29 16:28:38 -070052 static jclass java_lang_Throwable;
Elliott Hugheseac76672012-05-24 21:56:51 -070053 static jclass java_nio_ReadWriteDirectByteBuffer;
54 static jclass org_apache_harmony_dalvik_ddmc_Chunk;
55 static jclass org_apache_harmony_dalvik_ddmc_DdmServer;
56
57 static jmethodID com_android_dex_Dex_create;
Ian Rogers00f7d0e2012-07-19 15:28:27 -070058 static jmethodID java_lang_Boolean_valueOf;
59 static jmethodID java_lang_Byte_valueOf;
60 static jmethodID java_lang_Character_valueOf;
Elliott Hughesa4f94742012-05-29 16:28:38 -070061 static jmethodID java_lang_ClassLoader_loadClass;
Elliott Hugheseac76672012-05-24 21:56:51 -070062 static jmethodID java_lang_ClassNotFoundException_init;
Mathieu Chartier7664f5c2012-06-08 18:15:32 -070063 static jmethodID java_lang_Daemons_requestGC;
Elliott Hugheseac76672012-05-24 21:56:51 -070064 static jmethodID java_lang_Daemons_requestHeapTrim;
65 static jmethodID java_lang_Daemons_start;
Ian Rogers00f7d0e2012-07-19 15:28:27 -070066 static jmethodID java_lang_Double_valueOf;
67 static jmethodID java_lang_Float_valueOf;
68 static jmethodID java_lang_Integer_valueOf;
69 static jmethodID java_lang_Long_valueOf;
Elliott Hughesa4f94742012-05-29 16:28:38 -070070 static jmethodID java_lang_ref_FinalizerReference_add;
71 static jmethodID java_lang_ref_ReferenceQueue_add;
Elliott Hugheseac76672012-05-24 21:56:51 -070072 static jmethodID java_lang_reflect_InvocationHandler_invoke;
Ian Rogers00f7d0e2012-07-19 15:28:27 -070073 static jmethodID java_lang_Short_valueOf;
Elliott Hugheseac76672012-05-24 21:56:51 -070074 static jmethodID java_lang_Thread_init;
Elliott Hughesaf8d15a2012-05-29 09:12:18 -070075 static jmethodID java_lang_Thread_run;
76 static jmethodID java_lang_Thread$UncaughtExceptionHandler_uncaughtException;
77 static jmethodID java_lang_ThreadGroup_removeThread;
Elliott Hugheseac76672012-05-24 21:56:51 -070078 static jmethodID java_nio_ReadWriteDirectByteBuffer_init;
79 static jmethodID org_apache_harmony_dalvik_ddmc_DdmServer_broadcast;
80 static jmethodID org_apache_harmony_dalvik_ddmc_DdmServer_dispatch;
81
82 static jfieldID java_lang_reflect_Proxy_h;
Elliott Hughesaf8d15a2012-05-29 09:12:18 -070083 static jfieldID java_lang_Thread_daemon;
84 static jfieldID java_lang_Thread_group;
85 static jfieldID java_lang_Thread_lock;
86 static jfieldID java_lang_Thread_name;
87 static jfieldID java_lang_Thread_priority;
88 static jfieldID java_lang_Thread_uncaughtHandler;
89 static jfieldID java_lang_Thread_vmData;
90 static jfieldID java_lang_ThreadGroup_mainThreadGroup;
91 static jfieldID java_lang_ThreadGroup_name;
92 static jfieldID java_lang_ThreadGroup_systemThreadGroup;
93 static jfieldID java_lang_ThreadLock_thread;
Elliott Hugheseac76672012-05-24 21:56:51 -070094 static jfieldID java_nio_ReadWriteDirectByteBuffer_capacity;
95 static jfieldID java_nio_ReadWriteDirectByteBuffer_effectiveDirectAddress;
96 static jfieldID org_apache_harmony_dalvik_ddmc_Chunk_data;
97 static jfieldID org_apache_harmony_dalvik_ddmc_Chunk_length;
98 static jfieldID org_apache_harmony_dalvik_ddmc_Chunk_offset;
99 static jfieldID org_apache_harmony_dalvik_ddmc_Chunk_type;
100};
101
102} // namespace art
103
104#endif // ART_SRC_WELL_KNOWN_CLASSES_H_