blob: bc1de521aa48263d6cbfd69853bc3f2178cc4e34 [file] [log] [blame]
Ian Rogersdf20fe02011-07-20 20:34:16 -07001// Copyright 2011 Google Inc. All Rights Reserved.
2
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07003#include "jni_internal.h"
Carl Shapiro2ed144c2011-07-26 16:52:08 -07004
Elliott Hughes0af55432011-08-17 18:37:28 -07005#include <dlfcn.h>
Carl Shapiro9b9ba282011-08-14 15:30:39 -07006#include <sys/mman.h>
Elliott Hughes79082e32011-08-25 12:07:32 -07007
8#include <cstdarg>
9#include <map>
Elliott Hughes0af55432011-08-17 18:37:28 -070010#include <utility>
11#include <vector>
Carl Shapiro2ed144c2011-07-26 16:52:08 -070012
Elliott Hughes72025e52011-08-23 17:50:30 -070013#include "ScopedLocalRef.h"
Elliott Hughes90a33692011-08-30 13:27:07 -070014#include "UniquePtr.h"
Elliott Hughes18c07532011-08-18 15:50:51 -070015#include "assembler.h"
Elliott Hughes40ef99e2011-08-11 17:44:34 -070016#include "class_linker.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070017#include "class_loader.h"
Carl Shapiroea4dca82011-08-01 13:45:38 -070018#include "jni.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070019#include "logging.h"
Carl Shapiro9b9ba282011-08-14 15:30:39 -070020#include "object.h"
Carl Shapiro2ed144c2011-07-26 16:52:08 -070021#include "runtime.h"
Elliott Hughesc5bfa8f2011-08-30 14:32:49 -070022#include "scoped_jni_thread_state.h"
Elliott Hughesc31664f2011-09-29 15:58:28 -070023#include "stl_util.h"
Carl Shapirofc322c72011-07-27 00:20:01 -070024#include "stringpiece.h"
Carl Shapiro2ed144c2011-07-26 16:52:08 -070025#include "thread.h"
Ian Rogersdf20fe02011-07-20 20:34:16 -070026
27namespace art {
28
Elliott Hughesc5f7c912011-08-18 14:00:42 -070029/*
30 * Add a local reference for an object to the current stack frame. When
31 * the native function returns, the reference will be discarded.
32 *
33 * We need to allow the same reference to be added multiple times.
34 *
35 * This will be called on otherwise unreferenced objects. We cannot do
36 * GC allocations here, and it's best if we don't grab a mutex.
37 *
38 * Returns the local reference (currently just the same pointer that was
39 * passed in), or NULL on failure.
40 */
Elliott Hughes8a26c5c2011-08-15 18:35:43 -070041template<typename T>
Elliott Hughescf4c6c42011-09-01 15:16:42 -070042T AddLocalReference(JNIEnv* public_env, const Object* const_obj) {
43 // The jobject type hierarchy has no notion of const, so it's not worth carrying through.
44 Object* obj = const_cast<Object*>(const_obj);
45
Elliott Hughesc5f7c912011-08-18 14:00:42 -070046 if (obj == NULL) {
47 return NULL;
48 }
49
Elliott Hughesbf86d042011-08-31 17:53:14 -070050 JNIEnvExt* env = reinterpret_cast<JNIEnvExt*>(public_env);
51 IndirectReferenceTable& locals = env->locals;
Elliott Hughesc5f7c912011-08-18 14:00:42 -070052
Ian Rogers5a7a74a2011-09-26 16:32:29 -070053 uint32_t cookie = env->local_ref_cookie;
Elliott Hughesc5f7c912011-08-18 14:00:42 -070054 IndirectRef ref = locals.Add(cookie, obj);
55 if (ref == NULL) {
56 // TODO: just change Add's DCHECK to CHECK and lose this?
57 locals.Dump();
58 LOG(FATAL) << "Failed adding to JNI local reference table "
59 << "(has " << locals.Capacity() << " entries)";
60 // TODO: dvmDumpThread(dvmThreadSelf(), false);
61 }
62
63#if 0 // TODO: fix this to understand PushLocalFrame, so we can turn it on.
Elliott Hughesbf86d042011-08-31 17:53:14 -070064 if (env->check_jni) {
Elliott Hughesc5f7c912011-08-18 14:00:42 -070065 size_t entry_count = locals.Capacity();
66 if (entry_count > 16) {
Elliott Hughesc5f7c912011-08-18 14:00:42 -070067 LOG(WARNING) << "Warning: more than 16 JNI local references: "
Elliott Hughes54e7df12011-09-16 11:47:04 -070068 << entry_count << " (most recent was a " << PrettyTypeOf(obj) << ")";
Elliott Hughesc5f7c912011-08-18 14:00:42 -070069 locals.Dump();
70 // TODO: dvmDumpThread(dvmThreadSelf(), false);
71 // dvmAbort();
72 }
73 }
74#endif
75
Elliott Hughesbf86d042011-08-31 17:53:14 -070076 if (env->work_around_app_jni_bugs) {
Elliott Hughesc5f7c912011-08-18 14:00:42 -070077 // Hand out direct pointers to support broken old apps.
78 return reinterpret_cast<T>(obj);
79 }
80
81 return reinterpret_cast<T>(ref);
82}
83
Elliott Hughesbf86d042011-08-31 17:53:14 -070084// For external use.
85template<typename T>
86T Decode(JNIEnv* public_env, jobject obj) {
87 JNIEnvExt* env = reinterpret_cast<JNIEnvExt*>(public_env);
88 return reinterpret_cast<T>(env->self->DecodeJObject(obj));
89}
90// Explicit instantiations.
Elliott Hughes7ede61e2011-09-14 18:18:06 -070091template Array* Decode<Array*>(JNIEnv*, jobject);
Elliott Hughesbf86d042011-08-31 17:53:14 -070092template Class* Decode<Class*>(JNIEnv*, jobject);
93template ClassLoader* Decode<ClassLoader*>(JNIEnv*, jobject);
94template Object* Decode<Object*>(JNIEnv*, jobject);
95template String* Decode<String*>(JNIEnv*, jobject);
Elliott Hughes418d20f2011-09-22 14:00:39 -070096template ObjectArray<Class>* Decode<ObjectArray<Class>*>(JNIEnv*, jobject);
97template ObjectArray<Object>* Decode<ObjectArray<Object>*>(JNIEnv*, jobject);
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -070098template ObjectArray<StackTraceElement>* Decode<ObjectArray<StackTraceElement>*>(JNIEnv*, jobject);
Elliott Hughesbf86d042011-08-31 17:53:14 -070099
100namespace {
101
Elliott Hughescdf53122011-08-19 15:46:09 -0700102jweak AddWeakGlobalReference(ScopedJniThreadState& ts, Object* obj) {
103 if (obj == NULL) {
104 return NULL;
105 }
Elliott Hughes75770752011-08-24 17:52:38 -0700106 JavaVMExt* vm = ts.Vm();
Elliott Hughescdf53122011-08-19 15:46:09 -0700107 IndirectReferenceTable& weak_globals = vm->weak_globals;
108 MutexLock mu(vm->weak_globals_lock);
109 IndirectRef ref = weak_globals.Add(IRT_FIRST_SEGMENT, obj);
110 return reinterpret_cast<jweak>(ref);
111}
112
Elliott Hughesbf86d042011-08-31 17:53:14 -0700113// For internal use.
Elliott Hughesc5f7c912011-08-18 14:00:42 -0700114template<typename T>
115T Decode(ScopedJniThreadState& ts, jobject obj) {
Ian Rogers408f79a2011-08-23 18:22:33 -0700116 return reinterpret_cast<T>(ts.Self()->DecodeJObject(obj));
Elliott Hughes8a26c5c2011-08-15 18:35:43 -0700117}
118
Elliott Hughes418d20f2011-09-22 14:00:39 -0700119byte* CreateArgArray(JNIEnv* public_env, Method* method, va_list ap) {
120 JNIEnvExt* env = reinterpret_cast<JNIEnvExt*>(public_env);
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700121 size_t num_bytes = method->NumArgArrayBytes();
Elliott Hughes90a33692011-08-30 13:27:07 -0700122 UniquePtr<byte[]> arg_array(new byte[num_bytes]);
Brian Carlstromc74255f2011-09-11 22:47:39 -0700123 const String* shorty = method->GetShorty();
Brian Carlstrom2ed67392011-09-09 14:53:28 -0700124 for (int i = 1, offset = 0; i < shorty->GetLength(); ++i) {
125 switch (shorty->CharAt(i)) {
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700126 case 'Z':
127 case 'B':
128 case 'C':
129 case 'S':
130 case 'I':
131 *reinterpret_cast<int32_t*>(&arg_array[offset]) = va_arg(ap, jint);
132 offset += 4;
133 break;
134 case 'F':
135 *reinterpret_cast<float*>(&arg_array[offset]) = va_arg(ap, jdouble);
136 offset += 4;
137 break;
138 case 'L': {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700139 Object* obj = Decode<Object*>(env, va_arg(ap, jobject));
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700140 *reinterpret_cast<Object**>(&arg_array[offset]) = obj;
141 offset += sizeof(Object*);
142 break;
143 }
144 case 'D':
145 *reinterpret_cast<double*>(&arg_array[offset]) = va_arg(ap, jdouble);
146 offset += 8;
147 break;
148 case 'J':
149 *reinterpret_cast<int64_t*>(&arg_array[offset]) = va_arg(ap, jlong);
150 offset += 8;
151 break;
152 }
153 }
154 return arg_array.release();
155}
156
Elliott Hughes418d20f2011-09-22 14:00:39 -0700157byte* CreateArgArray(JNIEnv* public_env, Method* method, jvalue* args) {
158 JNIEnvExt* env = reinterpret_cast<JNIEnvExt*>(public_env);
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700159 size_t num_bytes = method->NumArgArrayBytes();
Elliott Hughes90a33692011-08-30 13:27:07 -0700160 UniquePtr<byte[]> arg_array(new byte[num_bytes]);
Brian Carlstromc74255f2011-09-11 22:47:39 -0700161 const String* shorty = method->GetShorty();
Brian Carlstrom2ed67392011-09-09 14:53:28 -0700162 for (int i = 1, offset = 0; i < shorty->GetLength(); ++i) {
163 switch (shorty->CharAt(i)) {
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700164 case 'Z':
165 case 'B':
166 case 'C':
167 case 'S':
168 case 'I':
169 *reinterpret_cast<uint32_t*>(&arg_array[offset]) = args[i - 1].i;
170 offset += 4;
171 break;
172 case 'F':
173 *reinterpret_cast<float*>(&arg_array[offset]) = args[i - 1].f;
174 offset += 4;
175 break;
176 case 'L': {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700177 Object* obj = Decode<Object*>(env, args[i - 1].l);
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700178 *reinterpret_cast<Object**>(&arg_array[offset]) = obj;
179 offset += sizeof(Object*);
180 break;
181 }
182 case 'D':
183 *reinterpret_cast<double*>(&arg_array[offset]) = args[i - 1].d;
184 offset += 8;
185 break;
186 case 'J':
187 *reinterpret_cast<uint64_t*>(&arg_array[offset]) = args[i - 1].j;
188 offset += 8;
189 break;
190 }
191 }
192 return arg_array.release();
193}
194
Elliott Hughes418d20f2011-09-22 14:00:39 -0700195JValue InvokeWithArgArray(JNIEnv* public_env, Object* receiver, Method* method, byte* args) {
196 JNIEnvExt* env = reinterpret_cast<JNIEnvExt*>(public_env);
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700197 JValue result;
Elliott Hughes418d20f2011-09-22 14:00:39 -0700198 method->Invoke(env->self, receiver, args, &result);
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700199 return result;
200}
201
Elliott Hughes418d20f2011-09-22 14:00:39 -0700202JValue InvokeWithVarArgs(JNIEnv* public_env, jobject obj, jmethodID mid, va_list args) {
203 JNIEnvExt* env = reinterpret_cast<JNIEnvExt*>(public_env);
204 Object* receiver = Decode<Object*>(env, obj);
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -0700205 Method* method = DecodeMethod(mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700206 UniquePtr<byte[]> arg_array(CreateArgArray(env, method, args));
207 return InvokeWithArgArray(env, receiver, method, arg_array.get());
Elliott Hughes72025e52011-08-23 17:50:30 -0700208}
209
Elliott Hughes75770752011-08-24 17:52:38 -0700210Method* FindVirtualMethod(Object* receiver, Method* method) {
Brian Carlstrom30b94452011-08-25 21:35:26 -0700211 return receiver->GetClass()->FindVirtualMethodForVirtualOrInterface(method);
Elliott Hughes72025e52011-08-23 17:50:30 -0700212}
213
Elliott Hughes418d20f2011-09-22 14:00:39 -0700214JValue InvokeVirtualOrInterfaceWithJValues(JNIEnv* public_env, jobject obj, jmethodID mid, jvalue* args) {
215 JNIEnvExt* env = reinterpret_cast<JNIEnvExt*>(public_env);
216 Object* receiver = Decode<Object*>(env, obj);
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -0700217 Method* method = FindVirtualMethod(receiver, DecodeMethod(mid));
Elliott Hughes418d20f2011-09-22 14:00:39 -0700218 UniquePtr<byte[]> arg_array(CreateArgArray(env, method, args));
219 return InvokeWithArgArray(env, receiver, method, arg_array.get());
Elliott Hughes72025e52011-08-23 17:50:30 -0700220}
221
Elliott Hughes418d20f2011-09-22 14:00:39 -0700222JValue InvokeVirtualOrInterfaceWithVarArgs(JNIEnv* public_env, jobject obj, jmethodID mid, va_list args) {
223 JNIEnvExt* env = reinterpret_cast<JNIEnvExt*>(public_env);
224 Object* receiver = Decode<Object*>(env, obj);
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -0700225 Method* method = FindVirtualMethod(receiver, DecodeMethod(mid));
Elliott Hughes418d20f2011-09-22 14:00:39 -0700226 UniquePtr<byte[]> arg_array(CreateArgArray(env, method, args));
227 return InvokeWithArgArray(env, receiver, method, arg_array.get());
Carl Shapiroea4dca82011-08-01 13:45:38 -0700228}
229
Elliott Hughes6b436852011-08-12 10:16:44 -0700230// Section 12.3.2 of the JNI spec describes JNI class descriptors. They're
231// separated with slashes but aren't wrapped with "L;" like regular descriptors
232// (i.e. "a/b/C" rather than "La/b/C;"). Arrays of reference types are an
233// exception; there the "L;" must be present ("[La/b/C;"). Historically we've
234// supported names with dots too (such as "a.b.C").
235std::string NormalizeJniClassDescriptor(const char* name) {
236 std::string result;
237 // Add the missing "L;" if necessary.
238 if (name[0] == '[') {
239 result = name;
240 } else {
241 result += 'L';
242 result += name;
243 result += ';';
244 }
245 // Rewrite '.' as '/' for backwards compatibility.
Elliott Hughesa5b897e2011-08-16 11:33:06 -0700246 if (result.find('.') != std::string::npos) {
247 LOG(WARNING) << "Call to JNI FindClass with dots in name: "
248 << "\"" << name << "\"";
249 std::replace(result.begin(), result.end(), '.', '/');
Elliott Hughes6b436852011-08-12 10:16:44 -0700250 }
251 return result;
252}
253
Elliott Hughes14134a12011-09-30 16:55:51 -0700254void ThrowNoSuchMethodError(ScopedJniThreadState& ts, Class* c, const char* name, const char* sig, const char* kind) {
255 std::string class_descriptor(c->GetDescriptor()->ToModifiedUtf8());
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700256 ts.Self()->ThrowNewExceptionF("Ljava/lang/NoSuchMethodError;",
Elliott Hughes14134a12011-09-30 16:55:51 -0700257 "no %s method \"%s.%s%s\"", kind, class_descriptor.c_str(), name, sig);
258}
259
Elliott Hughescdf53122011-08-19 15:46:09 -0700260jmethodID FindMethodID(ScopedJniThreadState& ts, jclass jni_class, const char* name, const char* sig, bool is_static) {
261 Class* c = Decode<Class*>(ts, jni_class);
Brian Carlstrom25c33252011-09-18 15:58:35 -0700262 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(c, true)) {
Elliott Hughesf4c21c92011-08-19 17:31:31 -0700263 return NULL;
Carl Shapiro83ab4f32011-08-15 20:21:39 -0700264 }
Elliott Hughescdf53122011-08-19 15:46:09 -0700265
266 Method* method = NULL;
267 if (is_static) {
268 method = c->FindDirectMethod(name, sig);
Ian Rogers4dd71f12011-08-16 14:16:02 -0700269 } else {
Elliott Hughescdf53122011-08-19 15:46:09 -0700270 method = c->FindVirtualMethod(name, sig);
271 if (method == NULL) {
272 // No virtual method matching the signature. Search declared
273 // private methods and constructors.
274 method = c->FindDeclaredDirectMethod(name, sig);
Ian Rogers4dd71f12011-08-16 14:16:02 -0700275 }
Carl Shapiro83ab4f32011-08-15 20:21:39 -0700276 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700277
Elliott Hughescdf53122011-08-19 15:46:09 -0700278 if (method == NULL || method->IsStatic() != is_static) {
Elliott Hughes14134a12011-09-30 16:55:51 -0700279 ThrowNoSuchMethodError(ts, c, name, sig, is_static ? "static" : "non-static");
Elliott Hughescdf53122011-08-19 15:46:09 -0700280 return NULL;
281 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700282
Elliott Hughes418d20f2011-09-22 14:00:39 -0700283 method->InitJavaFields();
284
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700285 return EncodeMethod(method);
Carl Shapiroea4dca82011-08-01 13:45:38 -0700286}
287
Elliott Hughescdf53122011-08-19 15:46:09 -0700288jfieldID FindFieldID(ScopedJniThreadState& ts, jclass jni_class, const char* name, const char* sig, bool is_static) {
289 Class* c = Decode<Class*>(ts, jni_class);
Brian Carlstrom25c33252011-09-18 15:58:35 -0700290 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(c, true)) {
Elliott Hughesf4c21c92011-08-19 17:31:31 -0700291 return NULL;
Carl Shapiro83ab4f32011-08-15 20:21:39 -0700292 }
Elliott Hughescdf53122011-08-19 15:46:09 -0700293
294 Field* field = NULL;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700295 Class* field_type;
296 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
297 if (sig[1] != '\0') {
298 // TODO: need to get the appropriate ClassLoader.
299 const ClassLoader* cl = ts.Self()->GetClassLoaderOverride();
300 field_type = class_linker->FindClass(sig, cl);
Ian Rogers4dd71f12011-08-16 14:16:02 -0700301 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700302 field_type = class_linker->FindPrimitiveClass(*sig);
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700303 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700304 if (field_type == NULL) {
305 // Failed to find type from the signature of the field.
Ian Rogersb17d08b2011-09-02 16:16:49 -0700306 DCHECK(ts.Self()->IsExceptionPending());
307 ts.Self()->ClearException();
308 std::string class_descriptor(c->GetDescriptor()->ToModifiedUtf8());
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700309 ts.Self()->ThrowNewExceptionF("Ljava/lang/NoSuchFieldError;",
Ian Rogersb17d08b2011-09-02 16:16:49 -0700310 "no type \"%s\" found and so no field \"%s\" could be found in class "
311 "\"%s\" or its superclasses", sig, name, class_descriptor.c_str());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700312 return NULL;
313 }
314 if (is_static) {
315 field = c->FindStaticField(name, field_type);
316 } else {
317 field = c->FindInstanceField(name, field_type);
318 }
Elliott Hughescdf53122011-08-19 15:46:09 -0700319 if (field == NULL) {
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700320 std::string class_descriptor(c->GetDescriptor()->ToModifiedUtf8());
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700321 ts.Self()->ThrowNewExceptionF("Ljava/lang/NoSuchFieldError;",
Elliott Hughescdf53122011-08-19 15:46:09 -0700322 "no \"%s\" field \"%s\" in class \"%s\" or its superclasses", sig,
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700323 name, class_descriptor.c_str());
Elliott Hughes8a26c5c2011-08-15 18:35:43 -0700324 return NULL;
325 }
Elliott Hughes80609252011-09-23 17:24:51 -0700326 field->InitJavaFields();
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700327 return EncodeField(field);
Carl Shapiroea4dca82011-08-01 13:45:38 -0700328}
329
Elliott Hughes75770752011-08-24 17:52:38 -0700330void PinPrimitiveArray(ScopedJniThreadState& ts, const Array* array) {
331 JavaVMExt* vm = ts.Vm();
332 MutexLock mu(vm->pins_lock);
333 vm->pin_table.Add(array);
334}
335
336void UnpinPrimitiveArray(ScopedJniThreadState& ts, const Array* array) {
337 JavaVMExt* vm = ts.Vm();
338 MutexLock mu(vm->pins_lock);
339 vm->pin_table.Remove(array);
340}
341
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700342template<typename JniT, typename ArtT>
343JniT NewPrimitiveArray(ScopedJniThreadState& ts, jsize length) {
344 CHECK_GE(length, 0); // TODO: ReportJniError
345 ArtT* result = ArtT::Alloc(length);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700346 return AddLocalReference<JniT>(ts.Env(), result);
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700347}
348
Elliott Hughes75770752011-08-24 17:52:38 -0700349template <typename ArrayT, typename CArrayT, typename ArtArrayT>
350CArrayT GetPrimitiveArray(ScopedJniThreadState& ts, ArrayT java_array, jboolean* is_copy) {
351 ArtArrayT* array = Decode<ArtArrayT*>(ts, java_array);
352 PinPrimitiveArray(ts, array);
353 if (is_copy != NULL) {
354 *is_copy = JNI_FALSE;
355 }
356 return array->GetData();
357}
358
359template <typename ArrayT>
360void ReleasePrimitiveArray(ScopedJniThreadState& ts, ArrayT java_array, jint mode) {
361 if (mode != JNI_COMMIT) {
362 Array* array = Decode<Array*>(ts, java_array);
363 UnpinPrimitiveArray(ts, array);
364 }
365}
366
Elliott Hughes814e4032011-08-23 12:07:56 -0700367void ThrowAIOOBE(ScopedJniThreadState& ts, Array* array, jsize start, jsize length, const char* identifier) {
Elliott Hughes54e7df12011-09-16 11:47:04 -0700368 std::string type(PrettyTypeOf(array));
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700369 ts.Self()->ThrowNewExceptionF("Ljava/lang/ArrayIndexOutOfBoundsException;",
Elliott Hughes814e4032011-08-23 12:07:56 -0700370 "%s offset=%d length=%d %s.length=%d",
371 type.c_str(), start, length, identifier, array->GetLength());
372}
Elliott Hughesb465ab02011-08-24 11:21:21 -0700373void ThrowSIOOBE(ScopedJniThreadState& ts, jsize start, jsize length, jsize array_length) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700374 ts.Self()->ThrowNewExceptionF("Ljava/lang/StringIndexOutOfBoundsException;",
Elliott Hughesb465ab02011-08-24 11:21:21 -0700375 "offset=%d length=%d string.length()=%d", start, length, array_length);
376}
Elliott Hughes814e4032011-08-23 12:07:56 -0700377
378template <typename JavaArrayT, typename JavaT, typename ArrayT>
Elliott Hughes75770752011-08-24 17:52:38 -0700379void GetPrimitiveArrayRegion(ScopedJniThreadState& ts, JavaArrayT java_array, jsize start, jsize length, JavaT* buf) {
Elliott Hughes814e4032011-08-23 12:07:56 -0700380 ArrayT* array = Decode<ArrayT*>(ts, java_array);
381 if (start < 0 || length < 0 || start + length > array->GetLength()) {
382 ThrowAIOOBE(ts, array, start, length, "src");
383 } else {
384 JavaT* data = array->GetData();
385 memcpy(buf, data + start, length * sizeof(JavaT));
386 }
387}
388
389template <typename JavaArrayT, typename JavaT, typename ArrayT>
Elliott Hughes75770752011-08-24 17:52:38 -0700390void SetPrimitiveArrayRegion(ScopedJniThreadState& ts, JavaArrayT java_array, jsize start, jsize length, const JavaT* buf) {
Elliott Hughes814e4032011-08-23 12:07:56 -0700391 ArrayT* array = Decode<ArrayT*>(ts, java_array);
392 if (start < 0 || length < 0 || start + length > array->GetLength()) {
393 ThrowAIOOBE(ts, array, start, length, "dst");
394 } else {
395 JavaT* data = array->GetData();
396 memcpy(data + start, buf, length * sizeof(JavaT));
397 }
398}
399
Elliott Hughes75770752011-08-24 17:52:38 -0700400jclass InitDirectByteBufferClass(JNIEnv* env) {
Elliott Hughesb465ab02011-08-24 11:21:21 -0700401 ScopedLocalRef<jclass> buffer_class(env, env->FindClass("java/nio/ReadWriteDirectByteBuffer"));
402 CHECK(buffer_class.get() != NULL);
403 return reinterpret_cast<jclass>(env->NewGlobalRef(buffer_class.get()));
404}
405
Elliott Hughes75770752011-08-24 17:52:38 -0700406jclass GetDirectByteBufferClass(JNIEnv* env) {
Elliott Hughesb465ab02011-08-24 11:21:21 -0700407 static jclass buffer_class = InitDirectByteBufferClass(env);
408 return buffer_class;
409}
410
Elliott Hughes75770752011-08-24 17:52:38 -0700411jint JII_AttachCurrentThread(JavaVM* vm, JNIEnv** p_env, void* thr_args, bool as_daemon) {
412 if (vm == NULL || p_env == NULL) {
413 return JNI_ERR;
414 }
415
416 JavaVMAttachArgs* in_args = static_cast<JavaVMAttachArgs*>(thr_args);
417 JavaVMAttachArgs args;
418 if (thr_args == NULL) {
419 // Allow the v1.1 calling convention.
420 args.version = JNI_VERSION_1_2;
421 args.name = NULL;
422 args.group = NULL; // TODO: get "main" thread group
423 } else {
424 args.version = in_args->version;
425 args.name = in_args->name;
426 if (in_args->group != NULL) {
427 UNIMPLEMENTED(WARNING) << "thr_args->group != NULL";
428 args.group = NULL; // TODO: decode in_args->group
429 } else {
430 args.group = NULL; // TODO: get "main" thread group
431 }
432 }
433 CHECK_GE(args.version, JNI_VERSION_1_2);
434
435 Runtime* runtime = reinterpret_cast<JavaVMExt*>(vm)->runtime;
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700436 runtime->AttachCurrentThread(args.name, as_daemon);
437 *p_env = Thread::Current()->GetJniEnv();
Elliott Hughesd92bec42011-09-02 17:04:36 -0700438 return JNI_OK;
Elliott Hughes75770752011-08-24 17:52:38 -0700439}
440
Elliott Hughes79082e32011-08-25 12:07:32 -0700441class SharedLibrary {
442 public:
443 SharedLibrary(const std::string& path, void* handle, Object* class_loader)
444 : path_(path),
445 handle_(handle),
Shih-wei Liao31384c52011-09-06 15:27:45 -0700446 class_loader_(class_loader),
Elliott Hughes8daa0922011-09-11 13:46:25 -0700447 jni_on_load_lock_("JNI_OnLoad lock"),
Elliott Hughes5f791332011-09-15 17:45:30 -0700448 jni_on_load_cond_("JNI_OnLoad"),
Elliott Hughesdcc24742011-09-07 14:02:44 -0700449 jni_on_load_thread_id_(Thread::Current()->GetThinLockId()),
Elliott Hughes79082e32011-08-25 12:07:32 -0700450 jni_on_load_result_(kPending) {
Elliott Hughes79082e32011-08-25 12:07:32 -0700451 }
452
Elliott Hughes79082e32011-08-25 12:07:32 -0700453 Object* GetClassLoader() {
454 return class_loader_;
455 }
456
457 std::string GetPath() {
458 return path_;
459 }
460
461 /*
462 * Check the result of an earlier call to JNI_OnLoad on this library. If
463 * the call has not yet finished in another thread, wait for it.
464 */
465 bool CheckOnLoadResult(JavaVMExt* vm) {
466 Thread* self = Thread::Current();
Elliott Hughesdcc24742011-09-07 14:02:44 -0700467 if (jni_on_load_thread_id_ == self->GetThinLockId()) {
Elliott Hughes79082e32011-08-25 12:07:32 -0700468 // Check this so we don't end up waiting for ourselves. We need
469 // to return "true" so the caller can continue.
470 LOG(INFO) << *self << " recursive attempt to load library "
471 << "\"" << path_ << "\"";
472 return true;
473 }
474
475 MutexLock mu(jni_on_load_lock_);
476 while (jni_on_load_result_ == kPending) {
477 if (vm->verbose_jni) {
478 LOG(INFO) << "[" << *self << " waiting for \"" << path_ << "\" "
479 << "JNI_OnLoad...]";
480 }
Elliott Hughes93e74e82011-09-13 11:07:03 -0700481 ScopedThreadStateChange tsc(self, Thread::kVmWait);
Elliott Hughes5f791332011-09-15 17:45:30 -0700482 jni_on_load_cond_.Wait(jni_on_load_lock_);
Elliott Hughes79082e32011-08-25 12:07:32 -0700483 }
484
485 bool okay = (jni_on_load_result_ == kOkay);
486 if (vm->verbose_jni) {
487 LOG(INFO) << "[Earlier JNI_OnLoad for \"" << path_ << "\" "
488 << (okay ? "succeeded" : "failed") << "]";
489 }
490 return okay;
491 }
492
493 void SetResult(bool result) {
494 jni_on_load_result_ = result ? kOkay : kFailed;
Elliott Hughesdcc24742011-09-07 14:02:44 -0700495 jni_on_load_thread_id_ = 0;
Elliott Hughes79082e32011-08-25 12:07:32 -0700496
497 // Broadcast a wakeup to anybody sleeping on the condition variable.
498 MutexLock mu(jni_on_load_lock_);
Elliott Hughes5f791332011-09-15 17:45:30 -0700499 jni_on_load_cond_.Broadcast();
Elliott Hughes79082e32011-08-25 12:07:32 -0700500 }
501
502 void* FindSymbol(const std::string& symbol_name) {
503 return dlsym(handle_, symbol_name.c_str());
504 }
505
506 private:
507 enum JNI_OnLoadState {
508 kPending,
509 kFailed,
510 kOkay,
511 };
512
513 // Path to library "/system/lib/libjni.so".
514 std::string path_;
515
516 // The void* returned by dlopen(3).
517 void* handle_;
518
519 // The ClassLoader this library is associated with.
520 Object* class_loader_;
521
522 // Guards remaining items.
Elliott Hughes8daa0922011-09-11 13:46:25 -0700523 Mutex jni_on_load_lock_;
Elliott Hughes79082e32011-08-25 12:07:32 -0700524 // Wait for JNI_OnLoad in other thread.
Elliott Hughes5f791332011-09-15 17:45:30 -0700525 ConditionVariable jni_on_load_cond_;
Elliott Hughes79082e32011-08-25 12:07:32 -0700526 // Recursive invocation guard.
Elliott Hughesdcc24742011-09-07 14:02:44 -0700527 uint32_t jni_on_load_thread_id_;
Elliott Hughes79082e32011-08-25 12:07:32 -0700528 // Result of earlier JNI_OnLoad call.
529 JNI_OnLoadState jni_on_load_result_;
530};
531
Elliott Hughescdf53122011-08-19 15:46:09 -0700532} // namespace
Carl Shapiroea4dca82011-08-01 13:45:38 -0700533
Elliott Hughes79082e32011-08-25 12:07:32 -0700534// This exists mainly to keep implementation details out of the header file.
535class Libraries {
536 public:
537 Libraries() {
538 }
539
540 ~Libraries() {
Elliott Hughesc31664f2011-09-29 15:58:28 -0700541 STLDeleteValues(&libraries_);
Elliott Hughes79082e32011-08-25 12:07:32 -0700542 }
543
544 SharedLibrary* Get(const std::string& path) {
545 return libraries_[path];
546 }
547
548 void Put(const std::string& path, SharedLibrary* library) {
549 libraries_[path] = library;
550 }
551
552 // See section 11.3 "Linking Native Methods" of the JNI spec.
Brian Carlstrom16192862011-09-12 17:50:06 -0700553 void* FindNativeMethod(const Method* m, std::string& detail) {
Elliott Hughes79082e32011-08-25 12:07:32 -0700554 std::string jni_short_name(JniShortName(m));
555 std::string jni_long_name(JniLongName(m));
Elliott Hughes4b093bf2011-08-25 13:34:29 -0700556 const ClassLoader* declaring_class_loader = m->GetDeclaringClass()->GetClassLoader();
Elliott Hughes79082e32011-08-25 12:07:32 -0700557 for (It it = libraries_.begin(); it != libraries_.end(); ++it) {
558 SharedLibrary* library = it->second;
559 if (library->GetClassLoader() != declaring_class_loader) {
560 // We only search libraries loaded by the appropriate ClassLoader.
561 continue;
562 }
563 // Try the short name then the long name...
564 void* fn = library->FindSymbol(jni_short_name);
565 if (fn == NULL) {
566 fn = library->FindSymbol(jni_long_name);
567 }
568 if (fn != NULL) {
569 if (Runtime::Current()->GetJavaVM()->verbose_jni) {
Elliott Hughesa2501992011-08-26 19:39:54 -0700570 LOG(INFO) << "[Found native code for " << PrettyMethod(m)
Elliott Hughes79082e32011-08-25 12:07:32 -0700571 << " in \"" << library->GetPath() << "\"]";
572 }
573 return fn;
574 }
575 }
Elliott Hughes79082e32011-08-25 12:07:32 -0700576 detail += "No implementation found for ";
Elliott Hughesa2501992011-08-26 19:39:54 -0700577 detail += PrettyMethod(m);
Elliott Hughes79082e32011-08-25 12:07:32 -0700578 LOG(ERROR) << detail;
Elliott Hughes79082e32011-08-25 12:07:32 -0700579 return NULL;
580 }
581
582 private:
583 typedef std::map<std::string, SharedLibrary*>::iterator It; // TODO: C++0x auto
584
585 std::map<std::string, SharedLibrary*> libraries_;
586};
587
Elliott Hughes418d20f2011-09-22 14:00:39 -0700588JValue InvokeWithJValues(JNIEnv* public_env, jobject obj, jmethodID mid, jvalue* args) {
589 JNIEnvExt* env = reinterpret_cast<JNIEnvExt*>(public_env);
590 Object* receiver = Decode<Object*>(env, obj);
591 Method* method = DecodeMethod(mid);
592 UniquePtr<byte[]> arg_array(CreateArgArray(env, method, args));
593 return InvokeWithArgArray(env, receiver, method, arg_array.get());
594}
595
Elliott Hughescdf53122011-08-19 15:46:09 -0700596class JNI {
597 public:
Carl Shapiroea4dca82011-08-01 13:45:38 -0700598
Elliott Hughescdf53122011-08-19 15:46:09 -0700599 static jint GetVersion(JNIEnv* env) {
600 ScopedJniThreadState ts(env);
601 return JNI_VERSION_1_6;
602 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700603
Elliott Hughescdf53122011-08-19 15:46:09 -0700604 static jclass DefineClass(JNIEnv* env, const char*, jobject, const jbyte*, jsize) {
605 ScopedJniThreadState ts(env);
606 LOG(WARNING) << "JNI DefineClass is not supported";
Elliott Hughesf2682d52011-08-15 16:37:04 -0700607 return NULL;
608 }
609
Elliott Hughescdf53122011-08-19 15:46:09 -0700610 static jclass FindClass(JNIEnv* env, const char* name) {
611 ScopedJniThreadState ts(env);
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700612 Runtime* runtime = Runtime::Current();
613 ClassLinker* class_linker = runtime->GetClassLinker();
Elliott Hughescdf53122011-08-19 15:46:09 -0700614 std::string descriptor(NormalizeJniClassDescriptor(name));
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700615 Class* c = NULL;
616 if (runtime->IsStarted()) {
617 // TODO: need to get the appropriate ClassLoader.
618 const ClassLoader* cl = ts.Self()->GetClassLoaderOverride();
619 c = class_linker->FindClass(descriptor, cl);
620 } else {
621 c = class_linker->FindSystemClass(descriptor);
622 }
Elliott Hughesbf86d042011-08-31 17:53:14 -0700623 return AddLocalReference<jclass>(env, c);
Ian Rogers4dd71f12011-08-16 14:16:02 -0700624 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700625
Elliott Hughescdf53122011-08-19 15:46:09 -0700626 static jmethodID FromReflectedMethod(JNIEnv* env, jobject java_method) {
627 ScopedJniThreadState ts(env);
628 Method* method = Decode<Method*>(ts, java_method);
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700629 return EncodeMethod(method);
Elliott Hughesf2682d52011-08-15 16:37:04 -0700630 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700631
Elliott Hughescdf53122011-08-19 15:46:09 -0700632 static jfieldID FromReflectedField(JNIEnv* env, jobject java_field) {
633 ScopedJniThreadState ts(env);
634 Field* field = Decode<Field*>(ts, java_field);
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700635 return EncodeField(field);
Elliott Hughescdf53122011-08-19 15:46:09 -0700636 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700637
Elliott Hughescdf53122011-08-19 15:46:09 -0700638 static jobject ToReflectedMethod(JNIEnv* env, jclass, jmethodID mid, jboolean) {
639 ScopedJniThreadState ts(env);
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -0700640 Method* method = DecodeMethod(mid);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700641 return AddLocalReference<jobject>(env, method);
Elliott Hughescdf53122011-08-19 15:46:09 -0700642 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700643
Elliott Hughescdf53122011-08-19 15:46:09 -0700644 static jobject ToReflectedField(JNIEnv* env, jclass, jfieldID fid, jboolean) {
645 ScopedJniThreadState ts(env);
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -0700646 Field* field = DecodeField(fid);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700647 return AddLocalReference<jobject>(env, field);
Elliott Hughescdf53122011-08-19 15:46:09 -0700648 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700649
Elliott Hughes37f7a402011-08-22 18:56:01 -0700650 static jclass GetObjectClass(JNIEnv* env, jobject java_object) {
651 ScopedJniThreadState ts(env);
652 Object* o = Decode<Object*>(ts, java_object);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700653 return AddLocalReference<jclass>(env, o->GetClass());
Elliott Hughes37f7a402011-08-22 18:56:01 -0700654 }
655
Elliott Hughes885c3bd2011-08-22 16:59:20 -0700656 static jclass GetSuperclass(JNIEnv* env, jclass java_class) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700657 ScopedJniThreadState ts(env);
Elliott Hughes885c3bd2011-08-22 16:59:20 -0700658 Class* c = Decode<Class*>(ts, java_class);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700659 return AddLocalReference<jclass>(env, c->GetSuperClass());
Elliott Hughescdf53122011-08-19 15:46:09 -0700660 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700661
Elliott Hughes37f7a402011-08-22 18:56:01 -0700662 static jboolean IsAssignableFrom(JNIEnv* env, jclass java_class1, jclass java_class2) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700663 ScopedJniThreadState ts(env);
Elliott Hughes37f7a402011-08-22 18:56:01 -0700664 Class* c1 = Decode<Class*>(ts, java_class1);
665 Class* c2 = Decode<Class*>(ts, java_class2);
666 return c1->IsAssignableFrom(c2) ? JNI_TRUE : JNI_FALSE;
Elliott Hughescdf53122011-08-19 15:46:09 -0700667 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700668
Elliott Hughes37f7a402011-08-22 18:56:01 -0700669 static jboolean IsInstanceOf(JNIEnv* env, jobject jobj, jclass clazz) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700670 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -0700671 CHECK_NE(static_cast<jclass>(NULL), clazz); // TODO: ReportJniError
Elliott Hughes37f7a402011-08-22 18:56:01 -0700672 if (jobj == NULL) {
Brian Carlstrom5d40f182011-09-26 22:29:18 -0700673 // Note: JNI is different from regular Java instanceof in this respect
Elliott Hughes37f7a402011-08-22 18:56:01 -0700674 return JNI_TRUE;
675 } else {
676 Object* obj = Decode<Object*>(ts, jobj);
677 Class* klass = Decode<Class*>(ts, clazz);
Brian Carlstrom5d40f182011-09-26 22:29:18 -0700678 return obj->InstanceOf(klass) ? JNI_TRUE : JNI_FALSE;
Elliott Hughes37f7a402011-08-22 18:56:01 -0700679 }
Elliott Hughescdf53122011-08-19 15:46:09 -0700680 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700681
Elliott Hughes37f7a402011-08-22 18:56:01 -0700682 static jint Throw(JNIEnv* env, jthrowable java_exception) {
683 ScopedJniThreadState ts(env);
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700684 Throwable* exception = Decode<Throwable*>(ts, java_exception);
Elliott Hughes37f7a402011-08-22 18:56:01 -0700685 if (exception == NULL) {
686 return JNI_ERR;
687 }
688 ts.Self()->SetException(exception);
689 return JNI_OK;
690 }
691
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700692 static jint ThrowNew(JNIEnv* env, jclass c, const char* msg) {
Elliott Hughes37f7a402011-08-22 18:56:01 -0700693 ScopedJniThreadState ts(env);
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700694 // TODO: check for a pending exception to decide what constructor to call.
695 jmethodID mid = env->GetMethodID(c, "<init>", "(Ljava/lang/String;)V");
696 if (mid == NULL) {
697 return JNI_ERR;
698 }
Elliott Hughes72025e52011-08-23 17:50:30 -0700699 ScopedLocalRef<jstring> s(env, env->NewStringUTF(msg));
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700700 if (msg != NULL && s.get() == NULL) {
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700701 return JNI_ERR;
702 }
703
704 jvalue args[1];
Elliott Hughes72025e52011-08-23 17:50:30 -0700705 args[0].l = s.get();
706 ScopedLocalRef<jthrowable> exception(env, reinterpret_cast<jthrowable>(env->NewObjectA(c, mid, args)));
707 if (exception.get() == NULL) {
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700708 return JNI_ERR;
709 }
710
Elliott Hughes72025e52011-08-23 17:50:30 -0700711 ts.Self()->SetException(Decode<Throwable*>(ts, exception.get()));
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700712
Elliott Hughes37f7a402011-08-22 18:56:01 -0700713 return JNI_OK;
714 }
715
716 static jboolean ExceptionCheck(JNIEnv* env) {
717 ScopedJniThreadState ts(env);
718 return ts.Self()->IsExceptionPending() ? JNI_TRUE : JNI_FALSE;
719 }
720
721 static void ExceptionClear(JNIEnv* env) {
722 ScopedJniThreadState ts(env);
723 ts.Self()->ClearException();
724 }
725
726 static void ExceptionDescribe(JNIEnv* env) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700727 ScopedJniThreadState ts(env);
Elliott Hughes72025e52011-08-23 17:50:30 -0700728
729 Thread* self = ts.Self();
730 Throwable* original_exception = self->GetException();
731 self->ClearException();
732
Elliott Hughesbf86d042011-08-31 17:53:14 -0700733 ScopedLocalRef<jthrowable> exception(env, AddLocalReference<jthrowable>(env, original_exception));
Elliott Hughes72025e52011-08-23 17:50:30 -0700734 ScopedLocalRef<jclass> exception_class(env, env->GetObjectClass(exception.get()));
735 jmethodID mid = env->GetMethodID(exception_class.get(), "printStackTrace", "()V");
736 if (mid == NULL) {
737 LOG(WARNING) << "JNI WARNING: no printStackTrace()V in "
Elliott Hughes54e7df12011-09-16 11:47:04 -0700738 << PrettyTypeOf(original_exception);
Elliott Hughes72025e52011-08-23 17:50:30 -0700739 } else {
740 env->CallVoidMethod(exception.get(), mid);
741 if (self->IsExceptionPending()) {
Elliott Hughes54e7df12011-09-16 11:47:04 -0700742 LOG(WARNING) << "JNI WARNING: " << PrettyTypeOf(self->GetException())
Elliott Hughes72025e52011-08-23 17:50:30 -0700743 << " thrown while calling printStackTrace";
744 self->ClearException();
745 }
746 }
747
748 self->SetException(original_exception);
Elliott Hughescdf53122011-08-19 15:46:09 -0700749 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700750
Elliott Hughescdf53122011-08-19 15:46:09 -0700751 static jthrowable ExceptionOccurred(JNIEnv* env) {
752 ScopedJniThreadState ts(env);
753 Object* exception = ts.Self()->GetException();
754 if (exception == NULL) {
755 return NULL;
756 } else {
757 // TODO: if adding a local reference failing causes the VM to abort
758 // then the following check will never occur.
Elliott Hughesbf86d042011-08-31 17:53:14 -0700759 jthrowable localException = AddLocalReference<jthrowable>(env, exception);
Elliott Hughescdf53122011-08-19 15:46:09 -0700760 if (localException == NULL) {
761 // We were unable to add a new local reference, and threw a new
762 // exception. We can't return "exception", because it's not a
763 // local reference. So we have to return NULL, indicating that
764 // there was no exception, even though it's pretty much raining
765 // exceptions in here.
766 LOG(WARNING) << "JNI WARNING: addLocal/exception combo";
767 }
768 return localException;
769 }
770 }
771
Elliott Hughescdf53122011-08-19 15:46:09 -0700772 static void FatalError(JNIEnv* env, const char* msg) {
773 ScopedJniThreadState ts(env);
774 LOG(FATAL) << "JNI FatalError called: " << msg;
775 }
776
777 static jint PushLocalFrame(JNIEnv* env, jint cap) {
778 ScopedJniThreadState ts(env);
779 UNIMPLEMENTED(WARNING) << "ignoring PushLocalFrame(" << cap << ")";
780 return JNI_OK;
781 }
782
783 static jobject PopLocalFrame(JNIEnv* env, jobject res) {
784 ScopedJniThreadState ts(env);
785 UNIMPLEMENTED(WARNING) << "ignoring PopLocalFrame " << res;
786 return res;
787 }
788
Elliott Hughes72025e52011-08-23 17:50:30 -0700789 static jint EnsureLocalCapacity(JNIEnv* env, jint cap) {
790 ScopedJniThreadState ts(env);
791 UNIMPLEMENTED(WARNING) << "ignoring EnsureLocalCapacity(" << cap << ")";
792 return 0;
793 }
794
Elliott Hughescdf53122011-08-19 15:46:09 -0700795 static jobject NewGlobalRef(JNIEnv* env, jobject obj) {
796 ScopedJniThreadState ts(env);
797 if (obj == NULL) {
798 return NULL;
799 }
800
Elliott Hughes75770752011-08-24 17:52:38 -0700801 JavaVMExt* vm = ts.Vm();
Elliott Hughescdf53122011-08-19 15:46:09 -0700802 IndirectReferenceTable& globals = vm->globals;
803 MutexLock mu(vm->globals_lock);
804 IndirectRef ref = globals.Add(IRT_FIRST_SEGMENT, Decode<Object*>(ts, obj));
805 return reinterpret_cast<jobject>(ref);
806 }
807
808 static void DeleteGlobalRef(JNIEnv* env, jobject obj) {
809 ScopedJniThreadState ts(env);
810 if (obj == NULL) {
811 return;
812 }
813
Elliott Hughes75770752011-08-24 17:52:38 -0700814 JavaVMExt* vm = ts.Vm();
Elliott Hughescdf53122011-08-19 15:46:09 -0700815 IndirectReferenceTable& globals = vm->globals;
816 MutexLock mu(vm->globals_lock);
817
818 if (!globals.Remove(IRT_FIRST_SEGMENT, obj)) {
819 LOG(WARNING) << "JNI WARNING: DeleteGlobalRef(" << obj << ") "
820 << "failed to find entry";
821 }
822 }
823
824 static jweak NewWeakGlobalRef(JNIEnv* env, jobject obj) {
825 ScopedJniThreadState ts(env);
826 return AddWeakGlobalReference(ts, Decode<Object*>(ts, obj));
827 }
828
829 static void DeleteWeakGlobalRef(JNIEnv* env, jweak obj) {
830 ScopedJniThreadState ts(env);
831 if (obj == NULL) {
832 return;
833 }
834
Elliott Hughes75770752011-08-24 17:52:38 -0700835 JavaVMExt* vm = ts.Vm();
Elliott Hughescdf53122011-08-19 15:46:09 -0700836 IndirectReferenceTable& weak_globals = vm->weak_globals;
837 MutexLock mu(vm->weak_globals_lock);
838
839 if (!weak_globals.Remove(IRT_FIRST_SEGMENT, obj)) {
840 LOG(WARNING) << "JNI WARNING: DeleteWeakGlobalRef(" << obj << ") "
841 << "failed to find entry";
842 }
843 }
844
845 static jobject NewLocalRef(JNIEnv* env, jobject obj) {
846 ScopedJniThreadState ts(env);
847 if (obj == NULL) {
848 return NULL;
849 }
850
851 IndirectReferenceTable& locals = ts.Env()->locals;
852
Ian Rogers5a7a74a2011-09-26 16:32:29 -0700853 uint32_t cookie = ts.Env()->local_ref_cookie;
Elliott Hughescdf53122011-08-19 15:46:09 -0700854 IndirectRef ref = locals.Add(cookie, Decode<Object*>(ts, obj));
855 return reinterpret_cast<jobject>(ref);
856 }
857
858 static void DeleteLocalRef(JNIEnv* env, jobject obj) {
859 ScopedJniThreadState ts(env);
860 if (obj == NULL) {
861 return;
862 }
863
864 IndirectReferenceTable& locals = ts.Env()->locals;
865
Ian Rogers5a7a74a2011-09-26 16:32:29 -0700866 uint32_t cookie = ts.Env()->local_ref_cookie;
Elliott Hughescdf53122011-08-19 15:46:09 -0700867 if (!locals.Remove(cookie, obj)) {
868 // Attempting to delete a local reference that is not in the
869 // topmost local reference frame is a no-op. DeleteLocalRef returns
870 // void and doesn't throw any exceptions, but we should probably
871 // complain about it so the user will notice that things aren't
872 // going quite the way they expect.
873 LOG(WARNING) << "JNI WARNING: DeleteLocalRef(" << obj << ") "
874 << "failed to find entry";
875 }
876 }
877
878 static jboolean IsSameObject(JNIEnv* env, jobject obj1, jobject obj2) {
879 ScopedJniThreadState ts(env);
880 return (Decode<Object*>(ts, obj1) == Decode<Object*>(ts, obj2))
881 ? JNI_TRUE : JNI_FALSE;
882 }
883
Elliott Hughes885c3bd2011-08-22 16:59:20 -0700884 static jobject AllocObject(JNIEnv* env, jclass java_class) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700885 ScopedJniThreadState ts(env);
Elliott Hughes885c3bd2011-08-22 16:59:20 -0700886 Class* c = Decode<Class*>(ts, java_class);
Brian Carlstrom25c33252011-09-18 15:58:35 -0700887 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(c, true)) {
Elliott Hughes885c3bd2011-08-22 16:59:20 -0700888 return NULL;
889 }
Elliott Hughesbf86d042011-08-31 17:53:14 -0700890 return AddLocalReference<jobject>(env, c->AllocObject());
Elliott Hughescdf53122011-08-19 15:46:09 -0700891 }
892
Elliott Hughes72025e52011-08-23 17:50:30 -0700893 static jobject NewObject(JNIEnv* env, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700894 ScopedJniThreadState ts(env);
895 va_list args;
Elliott Hughes72025e52011-08-23 17:50:30 -0700896 va_start(args, mid);
897 jobject result = NewObjectV(env, clazz, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -0700898 va_end(args);
899 return result;
900 }
901
Elliott Hughes72025e52011-08-23 17:50:30 -0700902 static jobject NewObjectV(JNIEnv* env, jclass java_class, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700903 ScopedJniThreadState ts(env);
Elliott Hughes885c3bd2011-08-22 16:59:20 -0700904 Class* c = Decode<Class*>(ts, java_class);
Brian Carlstrom25c33252011-09-18 15:58:35 -0700905 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(c, true)) {
Elliott Hughes885c3bd2011-08-22 16:59:20 -0700906 return NULL;
907 }
Brian Carlstrom1f870082011-08-23 16:02:11 -0700908 Object* result = c->AllocObject();
Elliott Hughesbf86d042011-08-31 17:53:14 -0700909 jobject local_result = AddLocalReference<jobject>(env, result);
Elliott Hughes72025e52011-08-23 17:50:30 -0700910 CallNonvirtualVoidMethodV(env, local_result, java_class, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -0700911 return local_result;
912 }
913
Elliott Hughes72025e52011-08-23 17:50:30 -0700914 static jobject NewObjectA(JNIEnv* env, jclass java_class, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700915 ScopedJniThreadState ts(env);
Elliott Hughes885c3bd2011-08-22 16:59:20 -0700916 Class* c = Decode<Class*>(ts, java_class);
Brian Carlstrom25c33252011-09-18 15:58:35 -0700917 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(c, true)) {
Elliott Hughes885c3bd2011-08-22 16:59:20 -0700918 return NULL;
919 }
Brian Carlstrom1f870082011-08-23 16:02:11 -0700920 Object* result = c->AllocObject();
Elliott Hughesbf86d042011-08-31 17:53:14 -0700921 jobject local_result = AddLocalReference<jobjectArray>(env, result);
Elliott Hughes72025e52011-08-23 17:50:30 -0700922 CallNonvirtualVoidMethodA(env, local_result, java_class, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -0700923 return local_result;
924 }
925
Elliott Hughescdf53122011-08-19 15:46:09 -0700926 static jmethodID GetMethodID(JNIEnv* env, jclass c, const char* name, const char* sig) {
927 ScopedJniThreadState ts(env);
928 return FindMethodID(ts, c, name, sig, false);
929 }
930
931 static jmethodID GetStaticMethodID(JNIEnv* env, jclass c, const char* name, const char* sig) {
932 ScopedJniThreadState ts(env);
933 return FindMethodID(ts, c, name, sig, true);
934 }
935
Elliott Hughes72025e52011-08-23 17:50:30 -0700936 static jobject CallObjectMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700937 ScopedJniThreadState ts(env);
Elliott Hughes72025e52011-08-23 17:50:30 -0700938 va_list ap;
939 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700940 JValue result = InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, ap);
Elliott Hughes72025e52011-08-23 17:50:30 -0700941 va_end(ap);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700942 return AddLocalReference<jobject>(env, result.l);
Elliott Hughescdf53122011-08-19 15:46:09 -0700943 }
944
Elliott Hughes72025e52011-08-23 17:50:30 -0700945 static jobject CallObjectMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700946 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700947 JValue result = InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, args);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700948 return AddLocalReference<jobject>(env, result.l);
Elliott Hughescdf53122011-08-19 15:46:09 -0700949 }
950
Elliott Hughes72025e52011-08-23 17:50:30 -0700951 static jobject CallObjectMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700952 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700953 JValue result = InvokeVirtualOrInterfaceWithJValues(env, obj, mid, args);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700954 return AddLocalReference<jobject>(env, result.l);
Elliott Hughescdf53122011-08-19 15:46:09 -0700955 }
956
Elliott Hughes72025e52011-08-23 17:50:30 -0700957 static jboolean CallBooleanMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700958 ScopedJniThreadState ts(env);
Elliott Hughes72025e52011-08-23 17:50:30 -0700959 va_list ap;
960 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700961 JValue result = InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, ap);
Elliott Hughes72025e52011-08-23 17:50:30 -0700962 va_end(ap);
963 return result.z;
Elliott Hughescdf53122011-08-19 15:46:09 -0700964 }
965
Elliott Hughes72025e52011-08-23 17:50:30 -0700966 static jboolean CallBooleanMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700967 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700968 return InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, args).z;
Elliott Hughescdf53122011-08-19 15:46:09 -0700969 }
970
Elliott Hughes72025e52011-08-23 17:50:30 -0700971 static jboolean CallBooleanMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700972 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700973 return InvokeVirtualOrInterfaceWithJValues(env, obj, mid, args).z;
Elliott Hughescdf53122011-08-19 15:46:09 -0700974 }
975
Elliott Hughes72025e52011-08-23 17:50:30 -0700976 static jbyte CallByteMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700977 ScopedJniThreadState ts(env);
Elliott Hughes72025e52011-08-23 17:50:30 -0700978 va_list ap;
979 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700980 JValue result = InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, ap);
Elliott Hughes72025e52011-08-23 17:50:30 -0700981 va_end(ap);
982 return result.b;
Elliott Hughescdf53122011-08-19 15:46:09 -0700983 }
984
Elliott Hughes72025e52011-08-23 17:50:30 -0700985 static jbyte CallByteMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700986 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700987 return InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, args).b;
Elliott Hughescdf53122011-08-19 15:46:09 -0700988 }
989
Elliott Hughes72025e52011-08-23 17:50:30 -0700990 static jbyte CallByteMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700991 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700992 return InvokeVirtualOrInterfaceWithJValues(env, obj, mid, args).b;
Elliott Hughescdf53122011-08-19 15:46:09 -0700993 }
994
Elliott Hughes72025e52011-08-23 17:50:30 -0700995 static jchar CallCharMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700996 ScopedJniThreadState ts(env);
Elliott Hughes72025e52011-08-23 17:50:30 -0700997 va_list ap;
998 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700999 JValue result = InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, ap);
Elliott Hughes72025e52011-08-23 17:50:30 -07001000 va_end(ap);
1001 return result.c;
Elliott Hughescdf53122011-08-19 15:46:09 -07001002 }
1003
Elliott Hughes72025e52011-08-23 17:50:30 -07001004 static jchar CallCharMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001005 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001006 return InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, args).c;
Elliott Hughescdf53122011-08-19 15:46:09 -07001007 }
1008
Elliott Hughes72025e52011-08-23 17:50:30 -07001009 static jchar CallCharMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001010 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001011 return InvokeVirtualOrInterfaceWithJValues(env, obj, mid, args).c;
Elliott Hughescdf53122011-08-19 15:46:09 -07001012 }
1013
Elliott Hughes72025e52011-08-23 17:50:30 -07001014 static jdouble CallDoubleMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001015 ScopedJniThreadState ts(env);
Elliott Hughes72025e52011-08-23 17:50:30 -07001016 va_list ap;
1017 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001018 JValue result = InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, ap);
Elliott Hughes72025e52011-08-23 17:50:30 -07001019 va_end(ap);
1020 return result.d;
Elliott Hughescdf53122011-08-19 15:46:09 -07001021 }
1022
Elliott Hughes72025e52011-08-23 17:50:30 -07001023 static jdouble CallDoubleMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001024 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001025 return InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, args).d;
Elliott Hughescdf53122011-08-19 15:46:09 -07001026 }
1027
Elliott Hughes72025e52011-08-23 17:50:30 -07001028 static jdouble CallDoubleMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001029 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001030 return InvokeVirtualOrInterfaceWithJValues(env, obj, mid, args).d;
Elliott Hughescdf53122011-08-19 15:46:09 -07001031 }
1032
Elliott Hughes72025e52011-08-23 17:50:30 -07001033 static jfloat CallFloatMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001034 ScopedJniThreadState ts(env);
Elliott Hughes72025e52011-08-23 17:50:30 -07001035 va_list ap;
1036 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001037 JValue result = InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, ap);
Elliott Hughes72025e52011-08-23 17:50:30 -07001038 va_end(ap);
1039 return result.f;
Elliott Hughescdf53122011-08-19 15:46:09 -07001040 }
1041
Elliott Hughes72025e52011-08-23 17:50:30 -07001042 static jfloat CallFloatMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001043 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001044 return InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, args).f;
Elliott Hughescdf53122011-08-19 15:46:09 -07001045 }
1046
Elliott Hughes72025e52011-08-23 17:50:30 -07001047 static jfloat CallFloatMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001048 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001049 return InvokeVirtualOrInterfaceWithJValues(env, obj, mid, args).f;
Elliott Hughescdf53122011-08-19 15:46:09 -07001050 }
1051
Elliott Hughes72025e52011-08-23 17:50:30 -07001052 static jint CallIntMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001053 ScopedJniThreadState ts(env);
Elliott Hughes72025e52011-08-23 17:50:30 -07001054 va_list ap;
1055 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001056 JValue result = InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, ap);
Elliott Hughes72025e52011-08-23 17:50:30 -07001057 va_end(ap);
1058 return result.i;
Elliott Hughescdf53122011-08-19 15:46:09 -07001059 }
1060
Elliott Hughes72025e52011-08-23 17:50:30 -07001061 static jint CallIntMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001062 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001063 return InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, args).i;
Elliott Hughescdf53122011-08-19 15:46:09 -07001064 }
1065
Elliott Hughes72025e52011-08-23 17:50:30 -07001066 static jint CallIntMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001067 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001068 return InvokeVirtualOrInterfaceWithJValues(env, obj, mid, args).i;
Elliott Hughescdf53122011-08-19 15:46:09 -07001069 }
1070
Elliott Hughes72025e52011-08-23 17:50:30 -07001071 static jlong CallLongMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001072 ScopedJniThreadState ts(env);
Elliott Hughes72025e52011-08-23 17:50:30 -07001073 va_list ap;
1074 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001075 JValue result = InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, ap);
Elliott Hughes72025e52011-08-23 17:50:30 -07001076 va_end(ap);
1077 return result.j;
Elliott Hughescdf53122011-08-19 15:46:09 -07001078 }
1079
Elliott Hughes72025e52011-08-23 17:50:30 -07001080 static jlong CallLongMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001081 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001082 return InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, args).j;
Elliott Hughescdf53122011-08-19 15:46:09 -07001083 }
1084
Elliott Hughes72025e52011-08-23 17:50:30 -07001085 static jlong CallLongMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001086 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001087 return InvokeVirtualOrInterfaceWithJValues(env, obj, mid, args).j;
Elliott Hughescdf53122011-08-19 15:46:09 -07001088 }
1089
Elliott Hughes72025e52011-08-23 17:50:30 -07001090 static jshort CallShortMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001091 ScopedJniThreadState ts(env);
Elliott Hughes72025e52011-08-23 17:50:30 -07001092 va_list ap;
1093 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001094 JValue result = InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, ap);
Elliott Hughes72025e52011-08-23 17:50:30 -07001095 va_end(ap);
1096 return result.s;
Elliott Hughescdf53122011-08-19 15:46:09 -07001097 }
1098
Elliott Hughes72025e52011-08-23 17:50:30 -07001099 static jshort CallShortMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001100 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001101 return InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, args).s;
Elliott Hughescdf53122011-08-19 15:46:09 -07001102 }
1103
Elliott Hughes72025e52011-08-23 17:50:30 -07001104 static jshort CallShortMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001105 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001106 return InvokeVirtualOrInterfaceWithJValues(env, obj, mid, args).s;
Elliott Hughescdf53122011-08-19 15:46:09 -07001107 }
1108
Elliott Hughes72025e52011-08-23 17:50:30 -07001109 static void CallVoidMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001110 ScopedJniThreadState ts(env);
Elliott Hughes72025e52011-08-23 17:50:30 -07001111 va_list ap;
1112 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001113 JValue result = InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, ap);
Elliott Hughes72025e52011-08-23 17:50:30 -07001114 va_end(ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001115 }
1116
Elliott Hughes72025e52011-08-23 17:50:30 -07001117 static void CallVoidMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001118 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001119 InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -07001120 }
1121
Elliott Hughes72025e52011-08-23 17:50:30 -07001122 static void CallVoidMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001123 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001124 InvokeVirtualOrInterfaceWithJValues(env, obj, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -07001125 }
1126
1127 static jobject CallNonvirtualObjectMethod(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001128 jobject obj, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001129 ScopedJniThreadState ts(env);
1130 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001131 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001132 JValue result = InvokeWithVarArgs(env, obj, mid, ap);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001133 jobject local_result = AddLocalReference<jobject>(env, result.l);
Elliott Hughescdf53122011-08-19 15:46:09 -07001134 va_end(ap);
1135 return local_result;
1136 }
1137
1138 static jobject CallNonvirtualObjectMethodV(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001139 jobject obj, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001140 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001141 JValue result = InvokeWithVarArgs(env, obj, mid, args);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001142 return AddLocalReference<jobject>(env, result.l);
Elliott Hughescdf53122011-08-19 15:46:09 -07001143 }
1144
1145 static jobject CallNonvirtualObjectMethodA(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001146 jobject obj, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001147 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001148 JValue result = InvokeWithJValues(env, obj, mid, args);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001149 return AddLocalReference<jobject>(env, result.l);
Elliott Hughescdf53122011-08-19 15:46:09 -07001150 }
1151
1152 static jboolean CallNonvirtualBooleanMethod(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001153 jobject obj, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001154 ScopedJniThreadState ts(env);
1155 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001156 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001157 JValue result = InvokeWithVarArgs(env, obj, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001158 va_end(ap);
1159 return result.z;
1160 }
1161
1162 static jboolean CallNonvirtualBooleanMethodV(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001163 jobject obj, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001164 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001165 return InvokeWithVarArgs(env, obj, mid, args).z;
Elliott Hughescdf53122011-08-19 15:46:09 -07001166 }
1167
1168 static jboolean CallNonvirtualBooleanMethodA(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001169 jobject obj, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001170 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001171 return InvokeWithJValues(env, obj, mid, args).z;
Elliott Hughescdf53122011-08-19 15:46:09 -07001172 }
1173
1174 static jbyte CallNonvirtualByteMethod(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001175 jobject obj, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001176 ScopedJniThreadState ts(env);
1177 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001178 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001179 JValue result = InvokeWithVarArgs(env, obj, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001180 va_end(ap);
1181 return result.b;
1182 }
1183
1184 static jbyte CallNonvirtualByteMethodV(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001185 jobject obj, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001186 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001187 return InvokeWithVarArgs(env, obj, mid, args).b;
Elliott Hughescdf53122011-08-19 15:46:09 -07001188 }
1189
1190 static jbyte CallNonvirtualByteMethodA(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001191 jobject obj, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001192 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001193 return InvokeWithJValues(env, obj, mid, args).b;
Elliott Hughescdf53122011-08-19 15:46:09 -07001194 }
1195
1196 static jchar CallNonvirtualCharMethod(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001197 jobject obj, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001198 ScopedJniThreadState ts(env);
1199 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001200 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001201 JValue result = InvokeWithVarArgs(env, obj, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001202 va_end(ap);
1203 return result.c;
1204 }
1205
1206 static jchar CallNonvirtualCharMethodV(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001207 jobject obj, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001208 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001209 return InvokeWithVarArgs(env, obj, mid, args).c;
Elliott Hughescdf53122011-08-19 15:46:09 -07001210 }
1211
1212 static jchar CallNonvirtualCharMethodA(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001213 jobject obj, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001214 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001215 return InvokeWithJValues(env, obj, mid, args).c;
Elliott Hughescdf53122011-08-19 15:46:09 -07001216 }
1217
1218 static jshort CallNonvirtualShortMethod(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001219 jobject obj, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001220 ScopedJniThreadState ts(env);
1221 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001222 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001223 JValue result = InvokeWithVarArgs(env, obj, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001224 va_end(ap);
1225 return result.s;
1226 }
1227
1228 static jshort CallNonvirtualShortMethodV(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001229 jobject obj, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001230 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001231 return InvokeWithVarArgs(env, obj, mid, args).s;
Elliott Hughescdf53122011-08-19 15:46:09 -07001232 }
1233
1234 static jshort CallNonvirtualShortMethodA(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001235 jobject obj, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001236 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001237 return InvokeWithJValues(env, obj, mid, args).s;
Elliott Hughescdf53122011-08-19 15:46:09 -07001238 }
1239
Elliott Hughes418d20f2011-09-22 14:00:39 -07001240 static jint CallNonvirtualIntMethod(JNIEnv* env, jobject obj, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001241 ScopedJniThreadState ts(env);
1242 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001243 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001244 JValue result = InvokeWithVarArgs(env, obj, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001245 va_end(ap);
1246 return result.i;
1247 }
1248
1249 static jint CallNonvirtualIntMethodV(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001250 jobject obj, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001251 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001252 return InvokeWithVarArgs(env, obj, mid, args).i;
Elliott Hughescdf53122011-08-19 15:46:09 -07001253 }
1254
1255 static jint CallNonvirtualIntMethodA(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001256 jobject obj, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001257 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001258 return InvokeWithJValues(env, obj, mid, args).i;
Elliott Hughescdf53122011-08-19 15:46:09 -07001259 }
1260
1261 static jlong CallNonvirtualLongMethod(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001262 jobject obj, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001263 ScopedJniThreadState ts(env);
1264 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001265 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001266 JValue result = InvokeWithVarArgs(env, obj, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001267 va_end(ap);
1268 return result.j;
1269 }
1270
1271 static jlong CallNonvirtualLongMethodV(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001272 jobject obj, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001273 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001274 return InvokeWithVarArgs(env, obj, mid, args).j;
Elliott Hughescdf53122011-08-19 15:46:09 -07001275 }
1276
1277 static jlong CallNonvirtualLongMethodA(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001278 jobject obj, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001279 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001280 return InvokeWithJValues(env, obj, mid, args).j;
Elliott Hughescdf53122011-08-19 15:46:09 -07001281 }
1282
1283 static jfloat CallNonvirtualFloatMethod(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001284 jobject obj, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001285 ScopedJniThreadState ts(env);
1286 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001287 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001288 JValue result = InvokeWithVarArgs(env, obj, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001289 va_end(ap);
1290 return result.f;
1291 }
1292
1293 static jfloat CallNonvirtualFloatMethodV(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001294 jobject obj, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001295 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001296 return InvokeWithVarArgs(env, obj, mid, args).f;
Elliott Hughescdf53122011-08-19 15:46:09 -07001297 }
1298
1299 static jfloat CallNonvirtualFloatMethodA(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001300 jobject obj, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001301 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001302 return InvokeWithJValues(env, obj, mid, args).f;
Elliott Hughescdf53122011-08-19 15:46:09 -07001303 }
1304
1305 static jdouble CallNonvirtualDoubleMethod(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001306 jobject obj, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001307 ScopedJniThreadState ts(env);
1308 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001309 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001310 JValue result = InvokeWithVarArgs(env, obj, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001311 va_end(ap);
1312 return result.d;
1313 }
1314
1315 static jdouble CallNonvirtualDoubleMethodV(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001316 jobject obj, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001317 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001318 return InvokeWithVarArgs(env, obj, mid, args).d;
Elliott Hughescdf53122011-08-19 15:46:09 -07001319 }
1320
1321 static jdouble CallNonvirtualDoubleMethodA(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001322 jobject obj, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001323 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001324 return InvokeWithJValues(env, obj, mid, args).d;
Elliott Hughescdf53122011-08-19 15:46:09 -07001325 }
1326
1327 static void CallNonvirtualVoidMethod(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001328 jobject obj, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001329 ScopedJniThreadState ts(env);
1330 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001331 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001332 InvokeWithVarArgs(env, obj, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001333 va_end(ap);
1334 }
1335
1336 static void CallNonvirtualVoidMethodV(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001337 jobject obj, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001338 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001339 InvokeWithVarArgs(env, obj, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -07001340 }
1341
1342 static void CallNonvirtualVoidMethodA(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001343 jobject obj, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001344 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001345 InvokeWithJValues(env, obj, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -07001346 }
1347
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -07001348 static jfieldID GetFieldID(JNIEnv* env, jclass c, const char* name, const char* sig) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001349 ScopedJniThreadState ts(env);
1350 return FindFieldID(ts, c, name, sig, false);
1351 }
Carl Shapiroea4dca82011-08-01 13:45:38 -07001352
1353
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -07001354 static jfieldID GetStaticFieldID(JNIEnv* env, jclass c, const char* name, const char* sig) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001355 ScopedJniThreadState ts(env);
1356 return FindFieldID(ts, c, name, sig, true);
1357 }
Carl Shapiroea4dca82011-08-01 13:45:38 -07001358
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001359 static jobject GetObjectField(JNIEnv* env, jobject obj, jfieldID fid) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001360 ScopedJniThreadState ts(env);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001361 Object* o = Decode<Object*>(ts, obj);
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -07001362 Field* f = DecodeField(fid);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001363 return AddLocalReference<jobject>(env, f->GetObject(o));
Elliott Hughescdf53122011-08-19 15:46:09 -07001364 }
Carl Shapiroea4dca82011-08-01 13:45:38 -07001365
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001366 static jobject GetStaticObjectField(JNIEnv* env, jclass, jfieldID fid) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001367 ScopedJniThreadState ts(env);
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -07001368 Field* f = DecodeField(fid);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001369 return AddLocalReference<jobject>(env, f->GetObject(NULL));
Elliott Hughescdf53122011-08-19 15:46:09 -07001370 }
1371
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001372 static void SetObjectField(JNIEnv* env, jobject java_object, jfieldID fid, jobject java_value) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001373 ScopedJniThreadState ts(env);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001374 Object* o = Decode<Object*>(ts, java_object);
1375 Object* v = Decode<Object*>(ts, java_value);
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -07001376 Field* f = DecodeField(fid);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001377 f->SetObject(o, v);
Elliott Hughescdf53122011-08-19 15:46:09 -07001378 }
1379
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001380 static void SetStaticObjectField(JNIEnv* env, jclass, jfieldID fid, jobject java_value) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001381 ScopedJniThreadState ts(env);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001382 Object* v = Decode<Object*>(ts, java_value);
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -07001383 Field* f = DecodeField(fid);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001384 f->SetObject(NULL, v);
Elliott Hughescdf53122011-08-19 15:46:09 -07001385 }
1386
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001387#define GET_PRIMITIVE_FIELD(fn, instance) \
1388 ScopedJniThreadState ts(env); \
1389 Object* o = Decode<Object*>(ts, instance); \
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -07001390 Field* f = DecodeField(fid); \
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001391 return f->fn(o)
1392
1393#define SET_PRIMITIVE_FIELD(fn, instance, value) \
1394 ScopedJniThreadState ts(env); \
1395 Object* o = Decode<Object*>(ts, instance); \
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -07001396 Field* f = DecodeField(fid); \
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001397 f->fn(o, value)
1398
1399 static jboolean GetBooleanField(JNIEnv* env, jobject obj, jfieldID fid) {
1400 GET_PRIMITIVE_FIELD(GetBoolean, obj);
Elliott Hughescdf53122011-08-19 15:46:09 -07001401 }
1402
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001403 static jbyte GetByteField(JNIEnv* env, jobject obj, jfieldID fid) {
1404 GET_PRIMITIVE_FIELD(GetByte, obj);
Elliott Hughescdf53122011-08-19 15:46:09 -07001405 }
1406
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001407 static jchar GetCharField(JNIEnv* env, jobject obj, jfieldID fid) {
1408 GET_PRIMITIVE_FIELD(GetChar, obj);
Elliott Hughescdf53122011-08-19 15:46:09 -07001409 }
1410
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001411 static jshort GetShortField(JNIEnv* env, jobject obj, jfieldID fid) {
1412 GET_PRIMITIVE_FIELD(GetShort, obj);
Elliott Hughescdf53122011-08-19 15:46:09 -07001413 }
1414
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001415 static jint GetIntField(JNIEnv* env, jobject obj, jfieldID fid) {
1416 GET_PRIMITIVE_FIELD(GetInt, obj);
Elliott Hughescdf53122011-08-19 15:46:09 -07001417 }
1418
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001419 static jlong GetLongField(JNIEnv* env, jobject obj, jfieldID fid) {
1420 GET_PRIMITIVE_FIELD(GetLong, obj);
Elliott Hughescdf53122011-08-19 15:46:09 -07001421 }
1422
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001423 static jfloat GetFloatField(JNIEnv* env, jobject obj, jfieldID fid) {
1424 GET_PRIMITIVE_FIELD(GetFloat, obj);
Elliott Hughescdf53122011-08-19 15:46:09 -07001425 }
1426
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001427 static jdouble GetDoubleField(JNIEnv* env, jobject obj, jfieldID fid) {
1428 GET_PRIMITIVE_FIELD(GetDouble, obj);
Elliott Hughescdf53122011-08-19 15:46:09 -07001429 }
1430
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001431 static jboolean GetStaticBooleanField(JNIEnv* env, jclass clazz, jfieldID fid) {
1432 GET_PRIMITIVE_FIELD(GetBoolean, NULL);
Elliott Hughescdf53122011-08-19 15:46:09 -07001433 }
1434
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001435 static jbyte GetStaticByteField(JNIEnv* env, jclass clazz, jfieldID fid) {
1436 GET_PRIMITIVE_FIELD(GetByte, NULL);
Elliott Hughescdf53122011-08-19 15:46:09 -07001437 }
1438
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001439 static jchar GetStaticCharField(JNIEnv* env, jclass clazz, jfieldID fid) {
1440 GET_PRIMITIVE_FIELD(GetChar, NULL);
Elliott Hughescdf53122011-08-19 15:46:09 -07001441 }
1442
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001443 static jshort GetStaticShortField(JNIEnv* env, jclass clazz, jfieldID fid) {
1444 GET_PRIMITIVE_FIELD(GetShort, NULL);
Elliott Hughescdf53122011-08-19 15:46:09 -07001445 }
1446
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001447 static jint GetStaticIntField(JNIEnv* env, jclass clazz, jfieldID fid) {
1448 GET_PRIMITIVE_FIELD(GetInt, NULL);
Elliott Hughescdf53122011-08-19 15:46:09 -07001449 }
1450
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001451 static jlong GetStaticLongField(JNIEnv* env, jclass clazz, jfieldID fid) {
1452 GET_PRIMITIVE_FIELD(GetLong, NULL);
1453 }
1454
1455 static jfloat GetStaticFloatField(JNIEnv* env, jclass clazz, jfieldID fid) {
1456 GET_PRIMITIVE_FIELD(GetFloat, NULL);
1457 }
1458
1459 static jdouble GetStaticDoubleField(JNIEnv* env, jclass clazz, jfieldID fid) {
1460 GET_PRIMITIVE_FIELD(GetDouble, NULL);
1461 }
1462
1463 static void SetBooleanField(JNIEnv* env, jobject obj, jfieldID fid, jboolean v) {
1464 SET_PRIMITIVE_FIELD(SetBoolean, obj, v);
1465 }
1466
1467 static void SetByteField(JNIEnv* env, jobject obj, jfieldID fid, jbyte v) {
1468 SET_PRIMITIVE_FIELD(SetByte, obj, v);
1469 }
1470
1471 static void SetCharField(JNIEnv* env, jobject obj, jfieldID fid, jchar v) {
1472 SET_PRIMITIVE_FIELD(SetChar, obj, v);
1473 }
1474
1475 static void SetFloatField(JNIEnv* env, jobject obj, jfieldID fid, jfloat v) {
1476 SET_PRIMITIVE_FIELD(SetFloat, obj, v);
1477 }
1478
1479 static void SetDoubleField(JNIEnv* env, jobject obj, jfieldID fid, jdouble v) {
1480 SET_PRIMITIVE_FIELD(SetDouble, obj, v);
1481 }
1482
1483 static void SetIntField(JNIEnv* env, jobject obj, jfieldID fid, jint v) {
1484 SET_PRIMITIVE_FIELD(SetInt, obj, v);
1485 }
1486
1487 static void SetLongField(JNIEnv* env, jobject obj, jfieldID fid, jlong v) {
1488 SET_PRIMITIVE_FIELD(SetLong, obj, v);
1489 }
1490
1491 static void SetShortField(JNIEnv* env, jobject obj, jfieldID fid, jshort v) {
1492 SET_PRIMITIVE_FIELD(SetShort, obj, v);
1493 }
1494
1495 static void SetStaticBooleanField(JNIEnv* env, jclass, jfieldID fid, jboolean v) {
1496 SET_PRIMITIVE_FIELD(SetBoolean, NULL, v);
1497 }
1498
1499 static void SetStaticByteField(JNIEnv* env, jclass, jfieldID fid, jbyte v) {
1500 SET_PRIMITIVE_FIELD(SetByte, NULL, v);
1501 }
1502
1503 static void SetStaticCharField(JNIEnv* env, jclass, jfieldID fid, jchar v) {
1504 SET_PRIMITIVE_FIELD(SetChar, NULL, v);
1505 }
1506
1507 static void SetStaticFloatField(JNIEnv* env, jclass, jfieldID fid, jfloat v) {
1508 SET_PRIMITIVE_FIELD(SetFloat, NULL, v);
1509 }
1510
1511 static void SetStaticDoubleField(JNIEnv* env, jclass, jfieldID fid, jdouble v) {
1512 SET_PRIMITIVE_FIELD(SetDouble, NULL, v);
1513 }
1514
1515 static void SetStaticIntField(JNIEnv* env, jclass, jfieldID fid, jint v) {
1516 SET_PRIMITIVE_FIELD(SetInt, NULL, v);
1517 }
1518
1519 static void SetStaticLongField(JNIEnv* env, jclass, jfieldID fid, jlong v) {
1520 SET_PRIMITIVE_FIELD(SetLong, NULL, v);
1521 }
1522
1523 static void SetStaticShortField(JNIEnv* env, jclass, jfieldID fid, jshort v) {
1524 SET_PRIMITIVE_FIELD(SetShort, NULL, v);
Elliott Hughescdf53122011-08-19 15:46:09 -07001525 }
1526
Elliott Hughes418d20f2011-09-22 14:00:39 -07001527 static jobject CallStaticObjectMethod(JNIEnv* env, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001528 ScopedJniThreadState ts(env);
1529 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001530 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001531 JValue result = InvokeWithVarArgs(env, NULL, mid, ap);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001532 jobject local_result = AddLocalReference<jobject>(env, result.l);
Elliott Hughescdf53122011-08-19 15:46:09 -07001533 va_end(ap);
1534 return local_result;
1535 }
1536
Elliott Hughes418d20f2011-09-22 14:00:39 -07001537 static jobject CallStaticObjectMethodV(JNIEnv* env, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001538 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001539 JValue result = InvokeWithVarArgs(env, NULL, mid, args);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001540 return AddLocalReference<jobject>(env, result.l);
Elliott Hughescdf53122011-08-19 15:46:09 -07001541 }
1542
Elliott Hughes418d20f2011-09-22 14:00:39 -07001543 static jobject CallStaticObjectMethodA(JNIEnv* env, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001544 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001545 JValue result = InvokeWithJValues(env, NULL, mid, args);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001546 return AddLocalReference<jobject>(env, result.l);
Elliott Hughescdf53122011-08-19 15:46:09 -07001547 }
1548
Elliott Hughes418d20f2011-09-22 14:00:39 -07001549 static jboolean CallStaticBooleanMethod(JNIEnv* env, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001550 ScopedJniThreadState ts(env);
1551 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001552 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001553 JValue result = InvokeWithVarArgs(env, NULL, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001554 va_end(ap);
1555 return result.z;
1556 }
1557
Elliott Hughes418d20f2011-09-22 14:00:39 -07001558 static jboolean CallStaticBooleanMethodV(JNIEnv* env, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001559 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001560 return InvokeWithVarArgs(env, NULL, mid, args).z;
Elliott Hughescdf53122011-08-19 15:46:09 -07001561 }
1562
Elliott Hughes418d20f2011-09-22 14:00:39 -07001563 static jboolean CallStaticBooleanMethodA(JNIEnv* env, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001564 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001565 return InvokeWithJValues(env, NULL, mid, args).z;
Elliott Hughescdf53122011-08-19 15:46:09 -07001566 }
1567
Elliott Hughes72025e52011-08-23 17:50:30 -07001568 static jbyte CallStaticByteMethod(JNIEnv* env, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001569 ScopedJniThreadState ts(env);
1570 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001571 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001572 JValue result = InvokeWithVarArgs(env, NULL, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001573 va_end(ap);
1574 return result.b;
1575 }
1576
Elliott Hughes418d20f2011-09-22 14:00:39 -07001577 static jbyte CallStaticByteMethodV(JNIEnv* env, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001578 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001579 return InvokeWithVarArgs(env, NULL, mid, args).b;
Elliott Hughescdf53122011-08-19 15:46:09 -07001580 }
1581
Elliott Hughes418d20f2011-09-22 14:00:39 -07001582 static jbyte CallStaticByteMethodA(JNIEnv* env, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001583 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001584 return InvokeWithJValues(env, NULL, mid, args).b;
Elliott Hughescdf53122011-08-19 15:46:09 -07001585 }
1586
Elliott Hughes72025e52011-08-23 17:50:30 -07001587 static jchar CallStaticCharMethod(JNIEnv* env, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001588 ScopedJniThreadState ts(env);
1589 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001590 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001591 JValue result = InvokeWithVarArgs(env, NULL, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001592 va_end(ap);
1593 return result.c;
1594 }
1595
Elliott Hughes418d20f2011-09-22 14:00:39 -07001596 static jchar CallStaticCharMethodV(JNIEnv* env, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001597 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001598 return InvokeWithVarArgs(env, NULL, mid, args).c;
Elliott Hughescdf53122011-08-19 15:46:09 -07001599 }
1600
Elliott Hughes418d20f2011-09-22 14:00:39 -07001601 static jchar CallStaticCharMethodA(JNIEnv* env, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001602 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001603 return InvokeWithJValues(env, NULL, mid, args).c;
Elliott Hughescdf53122011-08-19 15:46:09 -07001604 }
1605
Elliott Hughes72025e52011-08-23 17:50:30 -07001606 static jshort CallStaticShortMethod(JNIEnv* env, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001607 ScopedJniThreadState ts(env);
1608 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001609 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001610 JValue result = InvokeWithVarArgs(env, NULL, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001611 va_end(ap);
1612 return result.s;
1613 }
1614
Elliott Hughes418d20f2011-09-22 14:00:39 -07001615 static jshort CallStaticShortMethodV(JNIEnv* env, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001616 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001617 return InvokeWithVarArgs(env, NULL, mid, args).s;
Elliott Hughescdf53122011-08-19 15:46:09 -07001618 }
1619
Elliott Hughes418d20f2011-09-22 14:00:39 -07001620 static jshort CallStaticShortMethodA(JNIEnv* env, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001621 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001622 return InvokeWithJValues(env, NULL, mid, args).s;
Elliott Hughescdf53122011-08-19 15:46:09 -07001623 }
1624
Elliott Hughes72025e52011-08-23 17:50:30 -07001625 static jint CallStaticIntMethod(JNIEnv* env, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001626 ScopedJniThreadState ts(env);
1627 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001628 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001629 JValue result = InvokeWithVarArgs(env, NULL, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001630 va_end(ap);
1631 return result.i;
1632 }
1633
Elliott Hughes418d20f2011-09-22 14:00:39 -07001634 static jint CallStaticIntMethodV(JNIEnv* env, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001635 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001636 return InvokeWithVarArgs(env, NULL, mid, args).i;
Elliott Hughescdf53122011-08-19 15:46:09 -07001637 }
1638
Elliott Hughes418d20f2011-09-22 14:00:39 -07001639 static jint CallStaticIntMethodA(JNIEnv* env, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001640 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001641 return InvokeWithJValues(env, NULL, mid, args).i;
Elliott Hughescdf53122011-08-19 15:46:09 -07001642 }
1643
Elliott Hughes72025e52011-08-23 17:50:30 -07001644 static jlong CallStaticLongMethod(JNIEnv* env, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001645 ScopedJniThreadState ts(env);
1646 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001647 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001648 JValue result = InvokeWithVarArgs(env, NULL, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001649 va_end(ap);
1650 return result.j;
1651 }
1652
Elliott Hughes418d20f2011-09-22 14:00:39 -07001653 static jlong CallStaticLongMethodV(JNIEnv* env, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001654 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001655 return InvokeWithVarArgs(env, NULL, mid, args).j;
Elliott Hughescdf53122011-08-19 15:46:09 -07001656 }
1657
Elliott Hughes418d20f2011-09-22 14:00:39 -07001658 static jlong CallStaticLongMethodA(JNIEnv* env, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001659 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001660 return InvokeWithJValues(env, NULL, mid, args).j;
Elliott Hughescdf53122011-08-19 15:46:09 -07001661 }
1662
Elliott Hughes72025e52011-08-23 17:50:30 -07001663 static jfloat CallStaticFloatMethod(JNIEnv* env, jclass cls, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001664 ScopedJniThreadState ts(env);
1665 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001666 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001667 JValue result = InvokeWithVarArgs(env, NULL, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001668 va_end(ap);
1669 return result.f;
1670 }
1671
Elliott Hughes418d20f2011-09-22 14:00:39 -07001672 static jfloat CallStaticFloatMethodV(JNIEnv* env, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001673 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001674 return InvokeWithVarArgs(env, NULL, mid, args).f;
Elliott Hughescdf53122011-08-19 15:46:09 -07001675 }
1676
Elliott Hughes418d20f2011-09-22 14:00:39 -07001677 static jfloat CallStaticFloatMethodA(JNIEnv* env, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001678 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001679 return InvokeWithJValues(env, NULL, mid, args).f;
Elliott Hughescdf53122011-08-19 15:46:09 -07001680 }
1681
Elliott Hughes72025e52011-08-23 17:50:30 -07001682 static jdouble CallStaticDoubleMethod(JNIEnv* env, jclass cls, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001683 ScopedJniThreadState ts(env);
1684 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001685 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001686 JValue result = InvokeWithVarArgs(env, NULL, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001687 va_end(ap);
1688 return result.d;
1689 }
1690
Elliott Hughes418d20f2011-09-22 14:00:39 -07001691 static jdouble CallStaticDoubleMethodV(JNIEnv* env, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001692 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001693 return InvokeWithVarArgs(env, NULL, mid, args).d;
Elliott Hughescdf53122011-08-19 15:46:09 -07001694 }
1695
Elliott Hughes418d20f2011-09-22 14:00:39 -07001696 static jdouble CallStaticDoubleMethodA(JNIEnv* env, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001697 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001698 return InvokeWithJValues(env, NULL, mid, args).d;
Elliott Hughescdf53122011-08-19 15:46:09 -07001699 }
1700
Elliott Hughes72025e52011-08-23 17:50:30 -07001701 static void CallStaticVoidMethod(JNIEnv* env, jclass cls, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001702 ScopedJniThreadState ts(env);
1703 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001704 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001705 InvokeWithVarArgs(env, NULL, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001706 va_end(ap);
1707 }
1708
Elliott Hughes418d20f2011-09-22 14:00:39 -07001709 static void CallStaticVoidMethodV(JNIEnv* env, jclass cls, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001710 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001711 InvokeWithVarArgs(env, NULL, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -07001712 }
1713
Elliott Hughes418d20f2011-09-22 14:00:39 -07001714 static void CallStaticVoidMethodA(JNIEnv* env, jclass cls, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001715 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001716 InvokeWithJValues(env, NULL, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -07001717 }
1718
Elliott Hughes814e4032011-08-23 12:07:56 -07001719 static jstring NewString(JNIEnv* env, const jchar* chars, jsize char_count) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001720 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07001721 if (chars == NULL && char_count == 0) {
1722 return NULL;
1723 }
1724 String* result = String::AllocFromUtf16(char_count, chars);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001725 return AddLocalReference<jstring>(env, result);
Elliott Hughescdf53122011-08-19 15:46:09 -07001726 }
1727
1728 static jstring NewStringUTF(JNIEnv* env, const char* utf) {
1729 ScopedJniThreadState ts(env);
1730 if (utf == NULL) {
1731 return NULL;
1732 }
1733 String* result = String::AllocFromModifiedUtf8(utf);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001734 return AddLocalReference<jstring>(env, result);
Elliott Hughescdf53122011-08-19 15:46:09 -07001735 }
1736
Elliott Hughes814e4032011-08-23 12:07:56 -07001737 static jsize GetStringLength(JNIEnv* env, jstring java_string) {
1738 ScopedJniThreadState ts(env);
1739 return Decode<String*>(ts, java_string)->GetLength();
1740 }
1741
1742 static jsize GetStringUTFLength(JNIEnv* env, jstring java_string) {
1743 ScopedJniThreadState ts(env);
1744 return Decode<String*>(ts, java_string)->GetUtfLength();
1745 }
1746
Elliott Hughesb465ab02011-08-24 11:21:21 -07001747 static void GetStringRegion(JNIEnv* env, jstring java_string, jsize start, jsize length, jchar* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001748 ScopedJniThreadState ts(env);
Elliott Hughesb465ab02011-08-24 11:21:21 -07001749 String* s = Decode<String*>(ts, java_string);
1750 if (start < 0 || length < 0 || start + length > s->GetLength()) {
1751 ThrowSIOOBE(ts, start, length, s->GetLength());
1752 } else {
1753 const jchar* chars = s->GetCharArray()->GetData() + s->GetOffset();
1754 memcpy(buf, chars + start, length * sizeof(jchar));
1755 }
Elliott Hughes814e4032011-08-23 12:07:56 -07001756 }
1757
Elliott Hughesb465ab02011-08-24 11:21:21 -07001758 static void GetStringUTFRegion(JNIEnv* env, jstring java_string, jsize start, jsize length, char* buf) {
Elliott Hughes814e4032011-08-23 12:07:56 -07001759 ScopedJniThreadState ts(env);
Elliott Hughesb465ab02011-08-24 11:21:21 -07001760 String* s = Decode<String*>(ts, java_string);
1761 if (start < 0 || length < 0 || start + length > s->GetLength()) {
1762 ThrowSIOOBE(ts, start, length, s->GetLength());
1763 } else {
1764 const jchar* chars = s->GetCharArray()->GetData() + s->GetOffset();
1765 ConvertUtf16ToModifiedUtf8(buf, chars + start, length);
1766 }
Elliott Hughes814e4032011-08-23 12:07:56 -07001767 }
1768
Elliott Hughes75770752011-08-24 17:52:38 -07001769 static const jchar* GetStringChars(JNIEnv* env, jstring java_string, jboolean* is_copy) {
Elliott Hughes814e4032011-08-23 12:07:56 -07001770 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001771 String* s = Decode<String*>(ts, java_string);
1772 const CharArray* chars = s->GetCharArray();
1773 PinPrimitiveArray(ts, chars);
1774 if (is_copy != NULL) {
1775 *is_copy = JNI_FALSE;
1776 }
1777 return chars->GetData() + s->GetOffset();
Elliott Hughes814e4032011-08-23 12:07:56 -07001778 }
1779
Elliott Hughes75770752011-08-24 17:52:38 -07001780 static void ReleaseStringChars(JNIEnv* env, jstring java_string, const jchar* chars) {
Elliott Hughes814e4032011-08-23 12:07:56 -07001781 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001782 UnpinPrimitiveArray(ts, Decode<String*>(ts, java_string)->GetCharArray());
Elliott Hughescdf53122011-08-19 15:46:09 -07001783 }
1784
Elliott Hughes75770752011-08-24 17:52:38 -07001785 static const jchar* GetStringCritical(JNIEnv* env, jstring java_string, jboolean* is_copy) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001786 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001787 return GetStringChars(env, java_string, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07001788 }
1789
Elliott Hughes75770752011-08-24 17:52:38 -07001790 static void ReleaseStringCritical(JNIEnv* env, jstring java_string, const jchar* chars) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001791 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001792 return ReleaseStringChars(env, java_string, chars);
Elliott Hughescdf53122011-08-19 15:46:09 -07001793 }
1794
Elliott Hughes75770752011-08-24 17:52:38 -07001795 static const char* GetStringUTFChars(JNIEnv* env, jstring java_string, jboolean* is_copy) {
Elliott Hughesb465ab02011-08-24 11:21:21 -07001796 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001797 if (java_string == NULL) {
1798 return NULL;
1799 }
1800 if (is_copy != NULL) {
1801 *is_copy = JNI_TRUE;
1802 }
1803 String* s = Decode<String*>(ts, java_string);
1804 size_t byte_count = s->GetUtfLength();
1805 char* bytes = new char[byte_count + 1];
1806 if (bytes == NULL) {
Elliott Hughes79082e32011-08-25 12:07:32 -07001807 ts.Self()->ThrowOutOfMemoryError();
Elliott Hughes75770752011-08-24 17:52:38 -07001808 return NULL;
1809 }
1810 const uint16_t* chars = s->GetCharArray()->GetData() + s->GetOffset();
1811 ConvertUtf16ToModifiedUtf8(bytes, chars, s->GetLength());
1812 bytes[byte_count] = '\0';
1813 return bytes;
Elliott Hughesb465ab02011-08-24 11:21:21 -07001814 }
1815
Elliott Hughes75770752011-08-24 17:52:38 -07001816 static void ReleaseStringUTFChars(JNIEnv* env, jstring, const char* chars) {
Elliott Hughesb465ab02011-08-24 11:21:21 -07001817 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001818 delete[] chars;
Elliott Hughesb465ab02011-08-24 11:21:21 -07001819 }
1820
Elliott Hughesbd935992011-08-22 11:59:34 -07001821 static jsize GetArrayLength(JNIEnv* env, jarray java_array) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001822 ScopedJniThreadState ts(env);
Elliott Hughesbd935992011-08-22 11:59:34 -07001823 Object* obj = Decode<Object*>(ts, java_array);
Brian Carlstromb63ec392011-08-27 17:38:27 -07001824 CHECK(obj->IsArrayInstance()); // TODO: ReportJniError
Elliott Hughesbd935992011-08-22 11:59:34 -07001825 Array* array = obj->AsArray();
1826 return array->GetLength();
Elliott Hughescdf53122011-08-19 15:46:09 -07001827 }
1828
Elliott Hughes814e4032011-08-23 12:07:56 -07001829 static jobject GetObjectArrayElement(JNIEnv* env, jobjectArray java_array, jsize index) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001830 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07001831 ObjectArray<Object>* array = Decode<ObjectArray<Object>*>(ts, java_array);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001832 return AddLocalReference<jobject>(env, array->Get(index));
Elliott Hughescdf53122011-08-19 15:46:09 -07001833 }
1834
1835 static void SetObjectArrayElement(JNIEnv* env,
1836 jobjectArray java_array, jsize index, jobject java_value) {
1837 ScopedJniThreadState ts(env);
1838 ObjectArray<Object>* array = Decode<ObjectArray<Object>*>(ts, java_array);
1839 Object* value = Decode<Object*>(ts, java_value);
1840 array->Set(index, value);
1841 }
1842
1843 static jbooleanArray NewBooleanArray(JNIEnv* env, jsize length) {
1844 ScopedJniThreadState ts(env);
1845 return NewPrimitiveArray<jbooleanArray, BooleanArray>(ts, length);
1846 }
1847
1848 static jbyteArray NewByteArray(JNIEnv* env, jsize length) {
1849 ScopedJniThreadState ts(env);
1850 return NewPrimitiveArray<jbyteArray, ByteArray>(ts, length);
1851 }
1852
1853 static jcharArray NewCharArray(JNIEnv* env, jsize length) {
1854 ScopedJniThreadState ts(env);
1855 return NewPrimitiveArray<jcharArray, CharArray>(ts, length);
1856 }
1857
1858 static jdoubleArray NewDoubleArray(JNIEnv* env, jsize length) {
1859 ScopedJniThreadState ts(env);
1860 return NewPrimitiveArray<jdoubleArray, DoubleArray>(ts, length);
1861 }
1862
1863 static jfloatArray NewFloatArray(JNIEnv* env, jsize length) {
1864 ScopedJniThreadState ts(env);
1865 return NewPrimitiveArray<jfloatArray, FloatArray>(ts, length);
1866 }
1867
1868 static jintArray NewIntArray(JNIEnv* env, jsize length) {
1869 ScopedJniThreadState ts(env);
1870 return NewPrimitiveArray<jintArray, IntArray>(ts, length);
1871 }
1872
1873 static jlongArray NewLongArray(JNIEnv* env, jsize length) {
1874 ScopedJniThreadState ts(env);
1875 return NewPrimitiveArray<jlongArray, LongArray>(ts, length);
1876 }
1877
1878 static jobjectArray NewObjectArray(JNIEnv* env, jsize length, jclass element_jclass, jobject initial_element) {
1879 ScopedJniThreadState ts(env);
1880 CHECK_GE(length, 0); // TODO: ReportJniError
1881
1882 // Compute the array class corresponding to the given element class.
1883 Class* element_class = Decode<Class*>(ts, element_jclass);
1884 std::string descriptor;
1885 descriptor += "[";
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001886 descriptor += element_class->GetDescriptor()->ToModifiedUtf8();
Elliott Hughescdf53122011-08-19 15:46:09 -07001887
1888 // Find the class.
Elliott Hughes75770752011-08-24 17:52:38 -07001889 ScopedLocalRef<jclass> java_array_class(env, FindClass(env, descriptor.c_str()));
1890 if (java_array_class.get() == NULL) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001891 return NULL;
1892 }
1893
Elliott Hughes75770752011-08-24 17:52:38 -07001894 // Allocate and initialize if necessary.
1895 Class* array_class = Decode<Class*>(ts, java_array_class.get());
Elliott Hughescdf53122011-08-19 15:46:09 -07001896 ObjectArray<Object>* result = ObjectArray<Object>::Alloc(array_class, length);
Elliott Hughes75770752011-08-24 17:52:38 -07001897 if (initial_element != NULL) {
1898 Object* initial_object = Decode<Object*>(ts, initial_element);
1899 for (jsize i = 0; i < length; ++i) {
1900 result->Set(i, initial_object);
1901 }
1902 }
Elliott Hughesbf86d042011-08-31 17:53:14 -07001903 return AddLocalReference<jobjectArray>(env, result);
Elliott Hughescdf53122011-08-19 15:46:09 -07001904 }
1905
1906 static jshortArray NewShortArray(JNIEnv* env, jsize length) {
1907 ScopedJniThreadState ts(env);
1908 return NewPrimitiveArray<jshortArray, ShortArray>(ts, length);
1909 }
1910
Elliott Hughes75770752011-08-24 17:52:38 -07001911 static void* GetPrimitiveArrayCritical(JNIEnv* env, jarray array, jboolean* is_copy) {
Elliott Hughesb465ab02011-08-24 11:21:21 -07001912 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001913 return GetPrimitiveArray<jarray, jbyte*, ByteArray>(ts, array, is_copy);
Elliott Hughesb465ab02011-08-24 11:21:21 -07001914 }
1915
Elliott Hughes75770752011-08-24 17:52:38 -07001916 static void ReleasePrimitiveArrayCritical(JNIEnv* env, jarray array, void* data, jint mode) {
Elliott Hughesb465ab02011-08-24 11:21:21 -07001917 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001918 ReleasePrimitiveArray(ts, array, mode);
Elliott Hughesb465ab02011-08-24 11:21:21 -07001919 }
1920
Elliott Hughes75770752011-08-24 17:52:38 -07001921 static jboolean* GetBooleanArrayElements(JNIEnv* env, jbooleanArray array, jboolean* is_copy) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001922 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001923 return GetPrimitiveArray<jbooleanArray, jboolean*, BooleanArray>(ts, array, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07001924 }
1925
Elliott Hughes75770752011-08-24 17:52:38 -07001926 static jbyte* GetByteArrayElements(JNIEnv* env, jbyteArray array, jboolean* is_copy) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001927 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001928 return GetPrimitiveArray<jbyteArray, jbyte*, ByteArray>(ts, array, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07001929 }
1930
Elliott Hughes75770752011-08-24 17:52:38 -07001931 static jchar* GetCharArrayElements(JNIEnv* env, jcharArray array, jboolean* is_copy) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001932 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001933 return GetPrimitiveArray<jcharArray, jchar*, CharArray>(ts, array, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07001934 }
1935
Elliott Hughes75770752011-08-24 17:52:38 -07001936 static jdouble* GetDoubleArrayElements(JNIEnv* env, jdoubleArray array, jboolean* is_copy) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001937 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001938 return GetPrimitiveArray<jdoubleArray, jdouble*, DoubleArray>(ts, array, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07001939 }
1940
Elliott Hughes75770752011-08-24 17:52:38 -07001941 static jfloat* GetFloatArrayElements(JNIEnv* env, jfloatArray array, jboolean* is_copy) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001942 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001943 return GetPrimitiveArray<jfloatArray, jfloat*, FloatArray>(ts, array, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07001944 }
1945
Elliott Hughes75770752011-08-24 17:52:38 -07001946 static jint* GetIntArrayElements(JNIEnv* env, jintArray array, jboolean* is_copy) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001947 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001948 return GetPrimitiveArray<jintArray, jint*, IntArray>(ts, array, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07001949 }
1950
Elliott Hughes75770752011-08-24 17:52:38 -07001951 static jlong* GetLongArrayElements(JNIEnv* env, jlongArray array, jboolean* is_copy) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001952 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001953 return GetPrimitiveArray<jlongArray, jlong*, LongArray>(ts, array, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07001954 }
1955
Elliott Hughes75770752011-08-24 17:52:38 -07001956 static jshort* GetShortArrayElements(JNIEnv* env, jshortArray array, jboolean* is_copy) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001957 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001958 return GetPrimitiveArray<jshortArray, jshort*, ShortArray>(ts, array, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07001959 }
1960
Elliott Hughes75770752011-08-24 17:52:38 -07001961 static void ReleaseBooleanArrayElements(JNIEnv* env, jbooleanArray array, jboolean* data, jint mode) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001962 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001963 ReleasePrimitiveArray(ts, array, mode);
Elliott Hughescdf53122011-08-19 15:46:09 -07001964 }
1965
Elliott Hughes75770752011-08-24 17:52:38 -07001966 static void ReleaseByteArrayElements(JNIEnv* env, jbyteArray array, jbyte* data, jint mode) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001967 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001968 ReleasePrimitiveArray(ts, array, mode);
Elliott Hughescdf53122011-08-19 15:46:09 -07001969 }
1970
Elliott Hughes75770752011-08-24 17:52:38 -07001971 static void ReleaseCharArrayElements(JNIEnv* env, jcharArray array, jchar* data, jint mode) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001972 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001973 ReleasePrimitiveArray(ts, array, mode);
Elliott Hughescdf53122011-08-19 15:46:09 -07001974 }
1975
Elliott Hughes75770752011-08-24 17:52:38 -07001976 static void ReleaseDoubleArrayElements(JNIEnv* env, jdoubleArray array, jdouble* data, jint mode) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001977 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001978 ReleasePrimitiveArray(ts, array, mode);
Elliott Hughescdf53122011-08-19 15:46:09 -07001979 }
1980
Elliott Hughes75770752011-08-24 17:52:38 -07001981 static void ReleaseFloatArrayElements(JNIEnv* env, jfloatArray array, jfloat* data, jint mode) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001982 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001983 ReleasePrimitiveArray(ts, array, mode);
Elliott Hughescdf53122011-08-19 15:46:09 -07001984 }
1985
Elliott Hughes75770752011-08-24 17:52:38 -07001986 static void ReleaseIntArrayElements(JNIEnv* env, jintArray array, jint* data, jint mode) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001987 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001988 ReleasePrimitiveArray(ts, array, mode);
Elliott Hughescdf53122011-08-19 15:46:09 -07001989 }
1990
Elliott Hughes75770752011-08-24 17:52:38 -07001991 static void ReleaseLongArrayElements(JNIEnv* env, jlongArray array, jlong* data, jint mode) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001992 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001993 ReleasePrimitiveArray(ts, array, mode);
Elliott Hughescdf53122011-08-19 15:46:09 -07001994 }
1995
Elliott Hughes75770752011-08-24 17:52:38 -07001996 static void ReleaseShortArrayElements(JNIEnv* env, jshortArray array, jshort* data, jint mode) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001997 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001998 ReleasePrimitiveArray(ts, array, mode);
Elliott Hughescdf53122011-08-19 15:46:09 -07001999 }
2000
Elliott Hughes814e4032011-08-23 12:07:56 -07002001 static void GetBooleanArrayRegion(JNIEnv* env, jbooleanArray array, jsize start, jsize length, jboolean* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002002 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002003 GetPrimitiveArrayRegion<jbooleanArray, jboolean, BooleanArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002004 }
2005
Elliott Hughes814e4032011-08-23 12:07:56 -07002006 static void GetByteArrayRegion(JNIEnv* env, jbyteArray array, jsize start, jsize length, jbyte* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002007 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002008 GetPrimitiveArrayRegion<jbyteArray, jbyte, ByteArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002009 }
2010
Elliott Hughes814e4032011-08-23 12:07:56 -07002011 static void GetCharArrayRegion(JNIEnv* env, jcharArray array, jsize start, jsize length, jchar* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002012 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002013 GetPrimitiveArrayRegion<jcharArray, jchar, CharArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002014 }
2015
Elliott Hughes814e4032011-08-23 12:07:56 -07002016 static void GetDoubleArrayRegion(JNIEnv* env, jdoubleArray array, jsize start, jsize length, jdouble* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002017 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002018 GetPrimitiveArrayRegion<jdoubleArray, jdouble, DoubleArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002019 }
2020
Elliott Hughes814e4032011-08-23 12:07:56 -07002021 static void GetFloatArrayRegion(JNIEnv* env, jfloatArray array, jsize start, jsize length, jfloat* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002022 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002023 GetPrimitiveArrayRegion<jfloatArray, jfloat, FloatArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002024 }
2025
Elliott Hughes814e4032011-08-23 12:07:56 -07002026 static void GetIntArrayRegion(JNIEnv* env, jintArray array, jsize start, jsize length, jint* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002027 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002028 GetPrimitiveArrayRegion<jintArray, jint, IntArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002029 }
2030
Elliott Hughes814e4032011-08-23 12:07:56 -07002031 static void GetLongArrayRegion(JNIEnv* env, jlongArray array, jsize start, jsize length, jlong* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002032 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002033 GetPrimitiveArrayRegion<jlongArray, jlong, LongArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002034 }
2035
Elliott Hughes814e4032011-08-23 12:07:56 -07002036 static void GetShortArrayRegion(JNIEnv* env, jshortArray array, jsize start, jsize length, jshort* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002037 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002038 GetPrimitiveArrayRegion<jshortArray, jshort, ShortArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002039 }
2040
Elliott Hughes814e4032011-08-23 12:07:56 -07002041 static void SetBooleanArrayRegion(JNIEnv* env, jbooleanArray array, jsize start, jsize length, const jboolean* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002042 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002043 SetPrimitiveArrayRegion<jbooleanArray, jboolean, BooleanArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002044 }
2045
Elliott Hughes814e4032011-08-23 12:07:56 -07002046 static void SetByteArrayRegion(JNIEnv* env, jbyteArray array, jsize start, jsize length, const jbyte* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002047 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002048 SetPrimitiveArrayRegion<jbyteArray, jbyte, ByteArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002049 }
2050
Elliott Hughes814e4032011-08-23 12:07:56 -07002051 static void SetCharArrayRegion(JNIEnv* env, jcharArray array, jsize start, jsize length, const jchar* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002052 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002053 SetPrimitiveArrayRegion<jcharArray, jchar, CharArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002054 }
2055
Elliott Hughes814e4032011-08-23 12:07:56 -07002056 static void SetDoubleArrayRegion(JNIEnv* env, jdoubleArray array, jsize start, jsize length, const jdouble* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002057 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002058 SetPrimitiveArrayRegion<jdoubleArray, jdouble, DoubleArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002059 }
2060
Elliott Hughes814e4032011-08-23 12:07:56 -07002061 static void SetFloatArrayRegion(JNIEnv* env, jfloatArray array, jsize start, jsize length, const jfloat* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002062 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002063 SetPrimitiveArrayRegion<jfloatArray, jfloat, FloatArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002064 }
2065
Elliott Hughes814e4032011-08-23 12:07:56 -07002066 static void SetIntArrayRegion(JNIEnv* env, jintArray array, jsize start, jsize length, const jint* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002067 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002068 SetPrimitiveArrayRegion<jintArray, jint, IntArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002069 }
2070
Elliott Hughes814e4032011-08-23 12:07:56 -07002071 static void SetLongArrayRegion(JNIEnv* env, jlongArray array, jsize start, jsize length, const jlong* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002072 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002073 SetPrimitiveArrayRegion<jlongArray, jlong, LongArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002074 }
2075
Elliott Hughes814e4032011-08-23 12:07:56 -07002076 static void SetShortArrayRegion(JNIEnv* env, jshortArray array, jsize start, jsize length, const jshort* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002077 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002078 SetPrimitiveArrayRegion<jshortArray, jshort, ShortArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002079 }
2080
Elliott Hughes5174fe62011-08-23 15:12:35 -07002081 static jint RegisterNatives(JNIEnv* env, jclass java_class, const JNINativeMethod* methods, jint method_count) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002082 ScopedJniThreadState ts(env);
Elliott Hughes5174fe62011-08-23 15:12:35 -07002083 Class* c = Decode<Class*>(ts, java_class);
2084
Elliott Hughes5174fe62011-08-23 15:12:35 -07002085 for (int i = 0; i < method_count; i++) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002086 const char* name = methods[i].name;
2087 const char* sig = methods[i].signature;
2088
2089 if (*sig == '!') {
2090 // TODO: fast jni. it's too noisy to log all these.
2091 ++sig;
2092 }
2093
Elliott Hughes5174fe62011-08-23 15:12:35 -07002094 Method* m = c->FindDirectMethod(name, sig);
2095 if (m == NULL) {
2096 m = c->FindVirtualMethod(name, sig);
Elliott Hughescdf53122011-08-19 15:46:09 -07002097 }
Elliott Hughes5174fe62011-08-23 15:12:35 -07002098 if (m == NULL) {
Elliott Hughes14134a12011-09-30 16:55:51 -07002099 ThrowNoSuchMethodError(ts, c, name, sig, "static or non-static");
Elliott Hughescdf53122011-08-19 15:46:09 -07002100 return JNI_ERR;
Elliott Hughes5174fe62011-08-23 15:12:35 -07002101 } else if (!m->IsNative()) {
Elliott Hughes14134a12011-09-30 16:55:51 -07002102 ThrowNoSuchMethodError(ts, c, name, sig, "native");
Elliott Hughescdf53122011-08-19 15:46:09 -07002103 return JNI_ERR;
2104 }
Elliott Hughes5174fe62011-08-23 15:12:35 -07002105
Elliott Hughes75770752011-08-24 17:52:38 -07002106 if (ts.Vm()->verbose_jni) {
Elliott Hughesa2501992011-08-26 19:39:54 -07002107 LOG(INFO) << "[Registering JNI native method " << PrettyMethod(m) << "]";
Elliott Hughes5174fe62011-08-23 15:12:35 -07002108 }
2109
2110 m->RegisterNative(methods[i].fnPtr);
Elliott Hughescdf53122011-08-19 15:46:09 -07002111 }
2112 return JNI_OK;
2113 }
2114
Elliott Hughes5174fe62011-08-23 15:12:35 -07002115 static jint UnregisterNatives(JNIEnv* env, jclass java_class) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002116 ScopedJniThreadState ts(env);
Elliott Hughes5174fe62011-08-23 15:12:35 -07002117 Class* c = Decode<Class*>(ts, java_class);
2118
Elliott Hughes75770752011-08-24 17:52:38 -07002119 if (ts.Vm()->verbose_jni) {
Elliott Hughes54e7df12011-09-16 11:47:04 -07002120 LOG(INFO) << "[Unregistering JNI native methods for " << PrettyClass(c) << "]";
Elliott Hughes5174fe62011-08-23 15:12:35 -07002121 }
2122
2123 for (size_t i = 0; i < c->NumDirectMethods(); ++i) {
2124 Method* m = c->GetDirectMethod(i);
2125 if (m->IsNative()) {
2126 m->UnregisterNative();
2127 }
2128 }
2129 for (size_t i = 0; i < c->NumVirtualMethods(); ++i) {
2130 Method* m = c->GetVirtualMethod(i);
2131 if (m->IsNative()) {
2132 m->UnregisterNative();
2133 }
2134 }
2135
2136 return JNI_OK;
Elliott Hughescdf53122011-08-19 15:46:09 -07002137 }
2138
Elliott Hughes72025e52011-08-23 17:50:30 -07002139 static jint MonitorEnter(JNIEnv* env, jobject java_object) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002140 ScopedJniThreadState ts(env);
Elliott Hughes5f791332011-09-15 17:45:30 -07002141 Decode<Object*>(ts, java_object)->MonitorEnter(ts.Self());
Elliott Hughes72025e52011-08-23 17:50:30 -07002142 return ts.Self()->IsExceptionPending() ? JNI_ERR : JNI_OK;
Elliott Hughescdf53122011-08-19 15:46:09 -07002143 }
2144
Elliott Hughes72025e52011-08-23 17:50:30 -07002145 static jint MonitorExit(JNIEnv* env, jobject java_object) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002146 ScopedJniThreadState ts(env);
Elliott Hughes5f791332011-09-15 17:45:30 -07002147 Decode<Object*>(ts, java_object)->MonitorExit(ts.Self());
Elliott Hughes72025e52011-08-23 17:50:30 -07002148 return ts.Self()->IsExceptionPending() ? JNI_ERR : JNI_OK;
Elliott Hughescdf53122011-08-19 15:46:09 -07002149 }
2150
2151 static jint GetJavaVM(JNIEnv* env, JavaVM** vm) {
2152 ScopedJniThreadState ts(env);
2153 Runtime* runtime = Runtime::Current();
2154 if (runtime != NULL) {
Elliott Hughes69f5bc62011-08-24 09:26:14 -07002155 *vm = runtime->GetJavaVM();
Elliott Hughescdf53122011-08-19 15:46:09 -07002156 } else {
2157 *vm = NULL;
2158 }
2159 return (*vm != NULL) ? JNI_OK : JNI_ERR;
2160 }
2161
Elliott Hughescdf53122011-08-19 15:46:09 -07002162 static jobject NewDirectByteBuffer(JNIEnv* env, void* address, jlong capacity) {
2163 ScopedJniThreadState ts(env);
Elliott Hughesb465ab02011-08-24 11:21:21 -07002164
2165 // The address may not be NULL, and the capacity must be > 0.
Elliott Hughes75770752011-08-24 17:52:38 -07002166 CHECK(address != NULL); // TODO: ReportJniError
2167 CHECK_GT(capacity, 0); // TODO: ReportJniError
Elliott Hughesb465ab02011-08-24 11:21:21 -07002168
2169 jclass buffer_class = GetDirectByteBufferClass(env);
2170 jmethodID mid = env->GetMethodID(buffer_class, "<init>", "(II)V");
2171 if (mid == NULL) {
2172 return NULL;
2173 }
2174
2175 // At the moment, the Java side is limited to 32 bits.
2176 CHECK_LE(reinterpret_cast<uintptr_t>(address), 0xffffffff);
2177 CHECK_LE(capacity, 0xffffffff);
2178 jint address_arg = reinterpret_cast<jint>(address);
2179 jint capacity_arg = static_cast<jint>(capacity);
2180
2181 jobject result = env->NewObject(buffer_class, mid, address_arg, capacity_arg);
2182 return ts.Self()->IsExceptionPending() ? NULL : result;
Elliott Hughescdf53122011-08-19 15:46:09 -07002183 }
2184
Elliott Hughesb465ab02011-08-24 11:21:21 -07002185 static void* GetDirectBufferAddress(JNIEnv* env, jobject java_buffer) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002186 ScopedJniThreadState ts(env);
Elliott Hughesb465ab02011-08-24 11:21:21 -07002187 static jfieldID fid = env->GetFieldID(GetDirectByteBufferClass(env), "effectiveDirectAddress", "I");
2188 return reinterpret_cast<void*>(env->GetIntField(java_buffer, fid));
Elliott Hughescdf53122011-08-19 15:46:09 -07002189 }
2190
Elliott Hughesb465ab02011-08-24 11:21:21 -07002191 static jlong GetDirectBufferCapacity(JNIEnv* env, jobject java_buffer) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002192 ScopedJniThreadState ts(env);
Elliott Hughesb465ab02011-08-24 11:21:21 -07002193 static jfieldID fid = env->GetFieldID(GetDirectByteBufferClass(env), "capacity", "I");
2194 return static_cast<jlong>(env->GetIntField(java_buffer, fid));
Elliott Hughescdf53122011-08-19 15:46:09 -07002195 }
2196
Elliott Hughesb465ab02011-08-24 11:21:21 -07002197 static jobjectRefType GetObjectRefType(JNIEnv* env, jobject java_object) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002198 ScopedJniThreadState ts(env);
Elliott Hughesb465ab02011-08-24 11:21:21 -07002199
Elliott Hughes75770752011-08-24 17:52:38 -07002200 CHECK(java_object != NULL); // TODO: ReportJniError
Elliott Hughesb465ab02011-08-24 11:21:21 -07002201
2202 // Do we definitely know what kind of reference this is?
2203 IndirectRef ref = reinterpret_cast<IndirectRef>(java_object);
2204 IndirectRefKind kind = GetIndirectRefKind(ref);
2205 switch (kind) {
2206 case kLocal:
2207 return JNILocalRefType;
2208 case kGlobal:
2209 return JNIGlobalRefType;
2210 case kWeakGlobal:
2211 return JNIWeakGlobalRefType;
2212 case kSirtOrInvalid:
2213 // Is it in a stack IRT?
2214 if (ts.Self()->SirtContains(java_object)) {
2215 return JNILocalRefType;
2216 }
2217
Elliott Hughesc5bfa8f2011-08-30 14:32:49 -07002218 if (!ts.Env()->work_around_app_jni_bugs) {
2219 return JNIInvalidRefType;
2220 }
2221
Elliott Hughesb465ab02011-08-24 11:21:21 -07002222 // If we're handing out direct pointers, check whether it's a direct pointer
2223 // to a local reference.
Elliott Hughesc5bfa8f2011-08-30 14:32:49 -07002224 if (Decode<Object*>(ts, java_object) == reinterpret_cast<Object*>(java_object)) {
Elliott Hughesb465ab02011-08-24 11:21:21 -07002225 if (ts.Env()->locals.Contains(java_object)) {
2226 return JNILocalRefType;
2227 }
2228 }
2229
2230 return JNIInvalidRefType;
2231 }
Elliott Hughescdf53122011-08-19 15:46:09 -07002232 }
2233};
Carl Shapiroea4dca82011-08-01 13:45:38 -07002234
Elliott Hughesa2501992011-08-26 19:39:54 -07002235const JNINativeInterface gNativeInterface = {
Carl Shapiroea4dca82011-08-01 13:45:38 -07002236 NULL, // reserved0.
2237 NULL, // reserved1.
2238 NULL, // reserved2.
2239 NULL, // reserved3.
Elliott Hughescdf53122011-08-19 15:46:09 -07002240 JNI::GetVersion,
2241 JNI::DefineClass,
2242 JNI::FindClass,
2243 JNI::FromReflectedMethod,
2244 JNI::FromReflectedField,
2245 JNI::ToReflectedMethod,
2246 JNI::GetSuperclass,
2247 JNI::IsAssignableFrom,
2248 JNI::ToReflectedField,
2249 JNI::Throw,
2250 JNI::ThrowNew,
2251 JNI::ExceptionOccurred,
2252 JNI::ExceptionDescribe,
2253 JNI::ExceptionClear,
2254 JNI::FatalError,
2255 JNI::PushLocalFrame,
2256 JNI::PopLocalFrame,
2257 JNI::NewGlobalRef,
2258 JNI::DeleteGlobalRef,
2259 JNI::DeleteLocalRef,
2260 JNI::IsSameObject,
2261 JNI::NewLocalRef,
2262 JNI::EnsureLocalCapacity,
2263 JNI::AllocObject,
2264 JNI::NewObject,
2265 JNI::NewObjectV,
2266 JNI::NewObjectA,
2267 JNI::GetObjectClass,
2268 JNI::IsInstanceOf,
2269 JNI::GetMethodID,
2270 JNI::CallObjectMethod,
2271 JNI::CallObjectMethodV,
2272 JNI::CallObjectMethodA,
2273 JNI::CallBooleanMethod,
2274 JNI::CallBooleanMethodV,
2275 JNI::CallBooleanMethodA,
2276 JNI::CallByteMethod,
2277 JNI::CallByteMethodV,
2278 JNI::CallByteMethodA,
2279 JNI::CallCharMethod,
2280 JNI::CallCharMethodV,
2281 JNI::CallCharMethodA,
2282 JNI::CallShortMethod,
2283 JNI::CallShortMethodV,
2284 JNI::CallShortMethodA,
2285 JNI::CallIntMethod,
2286 JNI::CallIntMethodV,
2287 JNI::CallIntMethodA,
2288 JNI::CallLongMethod,
2289 JNI::CallLongMethodV,
2290 JNI::CallLongMethodA,
2291 JNI::CallFloatMethod,
2292 JNI::CallFloatMethodV,
2293 JNI::CallFloatMethodA,
2294 JNI::CallDoubleMethod,
2295 JNI::CallDoubleMethodV,
2296 JNI::CallDoubleMethodA,
2297 JNI::CallVoidMethod,
2298 JNI::CallVoidMethodV,
2299 JNI::CallVoidMethodA,
2300 JNI::CallNonvirtualObjectMethod,
2301 JNI::CallNonvirtualObjectMethodV,
2302 JNI::CallNonvirtualObjectMethodA,
2303 JNI::CallNonvirtualBooleanMethod,
2304 JNI::CallNonvirtualBooleanMethodV,
2305 JNI::CallNonvirtualBooleanMethodA,
2306 JNI::CallNonvirtualByteMethod,
2307 JNI::CallNonvirtualByteMethodV,
2308 JNI::CallNonvirtualByteMethodA,
2309 JNI::CallNonvirtualCharMethod,
2310 JNI::CallNonvirtualCharMethodV,
2311 JNI::CallNonvirtualCharMethodA,
2312 JNI::CallNonvirtualShortMethod,
2313 JNI::CallNonvirtualShortMethodV,
2314 JNI::CallNonvirtualShortMethodA,
2315 JNI::CallNonvirtualIntMethod,
2316 JNI::CallNonvirtualIntMethodV,
2317 JNI::CallNonvirtualIntMethodA,
2318 JNI::CallNonvirtualLongMethod,
2319 JNI::CallNonvirtualLongMethodV,
2320 JNI::CallNonvirtualLongMethodA,
2321 JNI::CallNonvirtualFloatMethod,
2322 JNI::CallNonvirtualFloatMethodV,
2323 JNI::CallNonvirtualFloatMethodA,
2324 JNI::CallNonvirtualDoubleMethod,
2325 JNI::CallNonvirtualDoubleMethodV,
2326 JNI::CallNonvirtualDoubleMethodA,
2327 JNI::CallNonvirtualVoidMethod,
2328 JNI::CallNonvirtualVoidMethodV,
2329 JNI::CallNonvirtualVoidMethodA,
2330 JNI::GetFieldID,
2331 JNI::GetObjectField,
2332 JNI::GetBooleanField,
2333 JNI::GetByteField,
2334 JNI::GetCharField,
2335 JNI::GetShortField,
2336 JNI::GetIntField,
2337 JNI::GetLongField,
2338 JNI::GetFloatField,
2339 JNI::GetDoubleField,
2340 JNI::SetObjectField,
2341 JNI::SetBooleanField,
2342 JNI::SetByteField,
2343 JNI::SetCharField,
2344 JNI::SetShortField,
2345 JNI::SetIntField,
2346 JNI::SetLongField,
2347 JNI::SetFloatField,
2348 JNI::SetDoubleField,
2349 JNI::GetStaticMethodID,
2350 JNI::CallStaticObjectMethod,
2351 JNI::CallStaticObjectMethodV,
2352 JNI::CallStaticObjectMethodA,
2353 JNI::CallStaticBooleanMethod,
2354 JNI::CallStaticBooleanMethodV,
2355 JNI::CallStaticBooleanMethodA,
2356 JNI::CallStaticByteMethod,
2357 JNI::CallStaticByteMethodV,
2358 JNI::CallStaticByteMethodA,
2359 JNI::CallStaticCharMethod,
2360 JNI::CallStaticCharMethodV,
2361 JNI::CallStaticCharMethodA,
2362 JNI::CallStaticShortMethod,
2363 JNI::CallStaticShortMethodV,
2364 JNI::CallStaticShortMethodA,
2365 JNI::CallStaticIntMethod,
2366 JNI::CallStaticIntMethodV,
2367 JNI::CallStaticIntMethodA,
2368 JNI::CallStaticLongMethod,
2369 JNI::CallStaticLongMethodV,
2370 JNI::CallStaticLongMethodA,
2371 JNI::CallStaticFloatMethod,
2372 JNI::CallStaticFloatMethodV,
2373 JNI::CallStaticFloatMethodA,
2374 JNI::CallStaticDoubleMethod,
2375 JNI::CallStaticDoubleMethodV,
2376 JNI::CallStaticDoubleMethodA,
2377 JNI::CallStaticVoidMethod,
2378 JNI::CallStaticVoidMethodV,
2379 JNI::CallStaticVoidMethodA,
2380 JNI::GetStaticFieldID,
2381 JNI::GetStaticObjectField,
2382 JNI::GetStaticBooleanField,
2383 JNI::GetStaticByteField,
2384 JNI::GetStaticCharField,
2385 JNI::GetStaticShortField,
2386 JNI::GetStaticIntField,
2387 JNI::GetStaticLongField,
2388 JNI::GetStaticFloatField,
2389 JNI::GetStaticDoubleField,
2390 JNI::SetStaticObjectField,
2391 JNI::SetStaticBooleanField,
2392 JNI::SetStaticByteField,
2393 JNI::SetStaticCharField,
2394 JNI::SetStaticShortField,
2395 JNI::SetStaticIntField,
2396 JNI::SetStaticLongField,
2397 JNI::SetStaticFloatField,
2398 JNI::SetStaticDoubleField,
2399 JNI::NewString,
2400 JNI::GetStringLength,
2401 JNI::GetStringChars,
2402 JNI::ReleaseStringChars,
2403 JNI::NewStringUTF,
2404 JNI::GetStringUTFLength,
2405 JNI::GetStringUTFChars,
2406 JNI::ReleaseStringUTFChars,
2407 JNI::GetArrayLength,
2408 JNI::NewObjectArray,
2409 JNI::GetObjectArrayElement,
2410 JNI::SetObjectArrayElement,
2411 JNI::NewBooleanArray,
2412 JNI::NewByteArray,
2413 JNI::NewCharArray,
2414 JNI::NewShortArray,
2415 JNI::NewIntArray,
2416 JNI::NewLongArray,
2417 JNI::NewFloatArray,
2418 JNI::NewDoubleArray,
2419 JNI::GetBooleanArrayElements,
2420 JNI::GetByteArrayElements,
2421 JNI::GetCharArrayElements,
2422 JNI::GetShortArrayElements,
2423 JNI::GetIntArrayElements,
2424 JNI::GetLongArrayElements,
2425 JNI::GetFloatArrayElements,
2426 JNI::GetDoubleArrayElements,
2427 JNI::ReleaseBooleanArrayElements,
2428 JNI::ReleaseByteArrayElements,
2429 JNI::ReleaseCharArrayElements,
2430 JNI::ReleaseShortArrayElements,
2431 JNI::ReleaseIntArrayElements,
2432 JNI::ReleaseLongArrayElements,
2433 JNI::ReleaseFloatArrayElements,
2434 JNI::ReleaseDoubleArrayElements,
2435 JNI::GetBooleanArrayRegion,
2436 JNI::GetByteArrayRegion,
2437 JNI::GetCharArrayRegion,
2438 JNI::GetShortArrayRegion,
2439 JNI::GetIntArrayRegion,
2440 JNI::GetLongArrayRegion,
2441 JNI::GetFloatArrayRegion,
2442 JNI::GetDoubleArrayRegion,
2443 JNI::SetBooleanArrayRegion,
2444 JNI::SetByteArrayRegion,
2445 JNI::SetCharArrayRegion,
2446 JNI::SetShortArrayRegion,
2447 JNI::SetIntArrayRegion,
2448 JNI::SetLongArrayRegion,
2449 JNI::SetFloatArrayRegion,
2450 JNI::SetDoubleArrayRegion,
2451 JNI::RegisterNatives,
2452 JNI::UnregisterNatives,
2453 JNI::MonitorEnter,
2454 JNI::MonitorExit,
2455 JNI::GetJavaVM,
2456 JNI::GetStringRegion,
2457 JNI::GetStringUTFRegion,
2458 JNI::GetPrimitiveArrayCritical,
2459 JNI::ReleasePrimitiveArrayCritical,
2460 JNI::GetStringCritical,
2461 JNI::ReleaseStringCritical,
2462 JNI::NewWeakGlobalRef,
2463 JNI::DeleteWeakGlobalRef,
2464 JNI::ExceptionCheck,
2465 JNI::NewDirectByteBuffer,
2466 JNI::GetDirectBufferAddress,
2467 JNI::GetDirectBufferCapacity,
2468 JNI::GetObjectRefType,
Carl Shapiroea4dca82011-08-01 13:45:38 -07002469};
2470
Elliott Hughes6c1a3942011-08-17 15:00:06 -07002471static const size_t kMonitorsInitial = 32; // Arbitrary.
2472static const size_t kMonitorsMax = 4096; // Arbitrary sanity check.
2473
2474static const size_t kLocalsInitial = 64; // Arbitrary.
2475static const size_t kLocalsMax = 512; // Arbitrary sanity check.
Elliott Hughesbbd76712011-08-17 10:25:24 -07002476
Elliott Hughes75770752011-08-24 17:52:38 -07002477JNIEnvExt::JNIEnvExt(Thread* self, JavaVMExt* vm)
Elliott Hughes69f5bc62011-08-24 09:26:14 -07002478 : self(self),
Elliott Hughes75770752011-08-24 17:52:38 -07002479 vm(vm),
Ian Rogers5a7a74a2011-09-26 16:32:29 -07002480 local_ref_cookie(IRT_FIRST_SEGMENT),
2481 locals(kLocalsInitial, kLocalsMax, kLocal),
Elliott Hughes75770752011-08-24 17:52:38 -07002482 check_jni(vm->check_jni),
Elliott Hughesc5bfa8f2011-08-30 14:32:49 -07002483 work_around_app_jni_bugs(vm->work_around_app_jni_bugs),
Elliott Hughesbbd76712011-08-17 10:25:24 -07002484 critical(false),
Ian Rogers5a7a74a2011-09-26 16:32:29 -07002485 monitors("monitors", kMonitorsInitial, kMonitorsMax) {
Elliott Hughesa2501992011-08-26 19:39:54 -07002486 functions = unchecked_functions = &gNativeInterface;
2487 if (check_jni) {
2488 functions = GetCheckJniNativeInterface();
2489 }
Ian Rogers5a7a74a2011-09-26 16:32:29 -07002490 // The JniEnv local reference values must be at a consistent offset or else cross-compilation
2491 // errors will ensue.
2492 CHECK_EQ(JNIEnvExt::LocalRefCookieOffset().Int32Value(), 12);
2493 CHECK_EQ(JNIEnvExt::SegmentStateOffset().Int32Value(), 16);
Elliott Hughes40ef99e2011-08-11 17:44:34 -07002494}
2495
Elliott Hughesc1674ed2011-08-25 18:09:09 -07002496JNIEnvExt::~JNIEnvExt() {
2497}
2498
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07002499void JNIEnvExt::DumpReferenceTables() {
2500 locals.Dump();
2501 monitors.Dump();
2502}
2503
Carl Shapiroea4dca82011-08-01 13:45:38 -07002504// JNI Invocation interface.
2505
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002506extern "C" jint JNI_CreateJavaVM(JavaVM** p_vm, void** p_env, void* vm_args) {
2507 const JavaVMInitArgs* args = static_cast<JavaVMInitArgs*>(vm_args);
2508 if (args->version < JNI_VERSION_1_2) {
2509 return JNI_EVERSION;
2510 }
2511 Runtime::Options options;
2512 for (int i = 0; i < args->nOptions; ++i) {
2513 JavaVMOption* option = &args->options[i];
Carl Shapirofc322c72011-07-27 00:20:01 -07002514 options.push_back(std::make_pair(StringPiece(option->optionString),
2515 option->extraInfo));
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002516 }
2517 bool ignore_unrecognized = args->ignoreUnrecognized;
Elliott Hughesf2682d52011-08-15 16:37:04 -07002518 Runtime* runtime = Runtime::Create(options, ignore_unrecognized);
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002519 if (runtime == NULL) {
2520 return JNI_ERR;
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002521 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07002522 runtime->Start();
2523 *p_env = Thread::Current()->GetJniEnv();
2524 *p_vm = runtime->GetJavaVM();
2525 return JNI_OK;
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002526}
2527
Elliott Hughesf2682d52011-08-15 16:37:04 -07002528extern "C" jint JNI_GetCreatedJavaVMs(JavaVM** vms, jsize, jsize* vm_count) {
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002529 Runtime* runtime = Runtime::Current();
2530 if (runtime == NULL) {
Elliott Hughesf2682d52011-08-15 16:37:04 -07002531 *vm_count = 0;
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002532 } else {
Elliott Hughesf2682d52011-08-15 16:37:04 -07002533 *vm_count = 1;
Elliott Hughes69f5bc62011-08-24 09:26:14 -07002534 vms[0] = runtime->GetJavaVM();
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002535 }
2536 return JNI_OK;
2537}
2538
2539// Historically unsupported.
2540extern "C" jint JNI_GetDefaultJavaVMInitArgs(void* vm_args) {
2541 return JNI_ERR;
2542}
2543
Elliott Hughescdf53122011-08-19 15:46:09 -07002544class JII {
2545 public:
2546 static jint DestroyJavaVM(JavaVM* vm) {
2547 if (vm == NULL) {
2548 return JNI_ERR;
2549 } else {
2550 JavaVMExt* raw_vm = reinterpret_cast<JavaVMExt*>(vm);
2551 delete raw_vm->runtime;
2552 return JNI_OK;
2553 }
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002554 }
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002555
Elliott Hughescdf53122011-08-19 15:46:09 -07002556 static jint AttachCurrentThread(JavaVM* vm, JNIEnv** p_env, void* thr_args) {
Elliott Hughes75770752011-08-24 17:52:38 -07002557 return JII_AttachCurrentThread(vm, p_env, thr_args, false);
Elliott Hughescdf53122011-08-19 15:46:09 -07002558 }
2559
2560 static jint AttachCurrentThreadAsDaemon(JavaVM* vm, JNIEnv** p_env, void* thr_args) {
Elliott Hughes75770752011-08-24 17:52:38 -07002561 return JII_AttachCurrentThread(vm, p_env, thr_args, true);
Elliott Hughescdf53122011-08-19 15:46:09 -07002562 }
2563
2564 static jint DetachCurrentThread(JavaVM* vm) {
2565 if (vm == NULL) {
2566 return JNI_ERR;
2567 } else {
2568 JavaVMExt* raw_vm = reinterpret_cast<JavaVMExt*>(vm);
2569 Runtime* runtime = raw_vm->runtime;
2570 runtime->DetachCurrentThread();
2571 return JNI_OK;
2572 }
2573 }
2574
2575 static jint GetEnv(JavaVM* vm, void** env, jint version) {
2576 if (version < JNI_VERSION_1_1 || version > JNI_VERSION_1_6) {
2577 return JNI_EVERSION;
2578 }
2579 if (vm == NULL || env == NULL) {
2580 return JNI_ERR;
2581 }
2582 Thread* thread = Thread::Current();
2583 if (thread == NULL) {
2584 *env = NULL;
2585 return JNI_EDETACHED;
2586 }
2587 *env = thread->GetJniEnv();
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002588 return JNI_OK;
2589 }
Elliott Hughescdf53122011-08-19 15:46:09 -07002590};
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002591
Elliott Hughesa2501992011-08-26 19:39:54 -07002592const JNIInvokeInterface gInvokeInterface = {
Carl Shapiroea4dca82011-08-01 13:45:38 -07002593 NULL, // reserved0
2594 NULL, // reserved1
2595 NULL, // reserved2
Elliott Hughescdf53122011-08-19 15:46:09 -07002596 JII::DestroyJavaVM,
2597 JII::AttachCurrentThread,
2598 JII::DetachCurrentThread,
2599 JII::GetEnv,
2600 JII::AttachCurrentThreadAsDaemon
Carl Shapiroea4dca82011-08-01 13:45:38 -07002601};
2602
Elliott Hughesbbd76712011-08-17 10:25:24 -07002603static const size_t kPinTableInitialSize = 16;
2604static const size_t kPinTableMaxSize = 1024;
2605
Elliott Hughes6c1a3942011-08-17 15:00:06 -07002606static const size_t kGlobalsInitial = 512; // Arbitrary.
2607static const size_t kGlobalsMax = 51200; // Arbitrary sanity check.
2608
2609static const size_t kWeakGlobalsInitial = 16; // Arbitrary.
2610static const size_t kWeakGlobalsMax = 51200; // Arbitrary sanity check.
2611
Elliott Hughesa0957642011-09-02 14:27:33 -07002612JavaVMExt::JavaVMExt(Runtime* runtime, Runtime::ParsedOptions* options)
Elliott Hughes69f5bc62011-08-24 09:26:14 -07002613 : runtime(runtime),
Elliott Hughesa2501992011-08-26 19:39:54 -07002614 check_jni_abort_hook(NULL),
Elliott Hughesa0957642011-09-02 14:27:33 -07002615 check_jni(options->check_jni_),
Elliott Hughesc5bfa8f2011-08-30 14:32:49 -07002616 force_copy(false), // TODO: add a way to enable this
Elliott Hughesa0957642011-09-02 14:27:33 -07002617 verbose_jni(options->IsVerbose("jni")),
2618 log_third_party_jni(options->IsVerbose("third-party-jni")),
2619 trace(options->jni_trace_),
Elliott Hughesc5bfa8f2011-08-30 14:32:49 -07002620 work_around_app_jni_bugs(false), // TODO: add a way to enable this
Elliott Hughes8daa0922011-09-11 13:46:25 -07002621 pins_lock("JNI pin table lock"),
Elliott Hughes6c1a3942011-08-17 15:00:06 -07002622 pin_table("pin table", kPinTableInitialSize, kPinTableMaxSize),
Elliott Hughes8daa0922011-09-11 13:46:25 -07002623 globals_lock("JNI global reference table lock"),
Elliott Hughes6c1a3942011-08-17 15:00:06 -07002624 globals(kGlobalsInitial, kGlobalsMax, kGlobal),
Elliott Hughes8daa0922011-09-11 13:46:25 -07002625 weak_globals_lock("JNI weak global reference table lock"),
Elliott Hughes79082e32011-08-25 12:07:32 -07002626 weak_globals(kWeakGlobalsInitial, kWeakGlobalsMax, kWeakGlobal),
Elliott Hughes8daa0922011-09-11 13:46:25 -07002627 libraries_lock("JNI shared libraries map lock"),
Elliott Hughes79082e32011-08-25 12:07:32 -07002628 libraries(new Libraries) {
Elliott Hughesa2501992011-08-26 19:39:54 -07002629 functions = unchecked_functions = &gInvokeInterface;
2630 if (check_jni) {
2631 functions = GetCheckJniInvokeInterface();
2632 }
Elliott Hughesf2682d52011-08-15 16:37:04 -07002633}
2634
Elliott Hughesde69d7f2011-08-18 16:49:37 -07002635JavaVMExt::~JavaVMExt() {
Elliott Hughes79082e32011-08-25 12:07:32 -07002636 delete libraries;
Elliott Hughesde69d7f2011-08-18 16:49:37 -07002637}
2638
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07002639void JavaVMExt::DumpReferenceTables() {
2640 {
2641 MutexLock mu(globals_lock);
2642 globals.Dump();
2643 }
2644 {
2645 MutexLock mu(weak_globals_lock);
2646 weak_globals.Dump();
2647 }
2648 {
2649 MutexLock mu(pins_lock);
2650 pin_table.Dump();
2651 }
2652}
2653
Elliott Hughes75770752011-08-24 17:52:38 -07002654bool JavaVMExt::LoadNativeLibrary(const std::string& path, ClassLoader* class_loader, std::string& detail) {
2655 detail.clear();
Elliott Hughescdf53122011-08-19 15:46:09 -07002656
2657 // See if we've already loaded this library. If we have, and the class loader
2658 // matches, return successfully without doing anything.
Elliott Hughes75770752011-08-24 17:52:38 -07002659 // TODO: for better results we should canonicalize the pathname (or even compare
2660 // inodes). This implementation is fine if everybody is using System.loadLibrary.
Elliott Hughes79082e32011-08-25 12:07:32 -07002661 SharedLibrary* library;
2662 {
2663 // TODO: move the locking (and more of this logic) into Libraries.
2664 MutexLock mu(libraries_lock);
2665 library = libraries->Get(path);
2666 }
Elliott Hughescdf53122011-08-19 15:46:09 -07002667 if (library != NULL) {
2668 if (library->GetClassLoader() != class_loader) {
Elliott Hughes75770752011-08-24 17:52:38 -07002669 // The library will be associated with class_loader. The JNI
2670 // spec says we can't load the same library into more than one
2671 // class loader.
2672 StringAppendF(&detail, "Shared library \"%s\" already opened by "
2673 "ClassLoader %p; can't open in ClassLoader %p",
2674 path.c_str(), library->GetClassLoader(), class_loader);
2675 LOG(WARNING) << detail;
Elliott Hughescdf53122011-08-19 15:46:09 -07002676 return false;
2677 }
2678 if (verbose_jni) {
2679 LOG(INFO) << "[Shared library \"" << path << "\" already loaded in "
2680 << "ClassLoader " << class_loader << "]";
2681 }
2682 if (!library->CheckOnLoadResult(this)) {
Elliott Hughes75770752011-08-24 17:52:38 -07002683 StringAppendF(&detail, "JNI_OnLoad failed on a previous attempt "
2684 "to load \"%s\"", path.c_str());
Elliott Hughescdf53122011-08-19 15:46:09 -07002685 return false;
2686 }
2687 return true;
2688 }
2689
2690 // Open the shared library. Because we're using a full path, the system
2691 // doesn't have to search through LD_LIBRARY_PATH. (It may do so to
2692 // resolve this library's dependencies though.)
2693
2694 // Failures here are expected when java.library.path has several entries
2695 // and we have to hunt for the lib.
2696
2697 // The current version of the dynamic linker prints detailed information
2698 // about dlopen() failures. Some things to check if the message is
2699 // cryptic:
2700 // - make sure the library exists on the device
2701 // - verify that the right path is being opened (the debug log message
2702 // above can help with that)
2703 // - check to see if the library is valid (e.g. not zero bytes long)
2704 // - check config/prelink-linux-arm.map to ensure that the library
2705 // is listed and is not being overrun by the previous entry (if
2706 // loading suddenly stops working on a prelinked library, this is
2707 // a good one to check)
2708 // - write a trivial app that calls sleep() then dlopen(), attach
2709 // to it with "strace -p <pid>" while it sleeps, and watch for
2710 // attempts to open nonexistent dependent shared libs
2711
2712 // TODO: automate some of these checks!
2713
2714 // This can execute slowly for a large library on a busy system, so we
Elliott Hughes93e74e82011-09-13 11:07:03 -07002715 // want to switch from kRunnable to kVmWait while it executes. This allows
Elliott Hughescdf53122011-08-19 15:46:09 -07002716 // the GC to ignore us.
2717 Thread* self = Thread::Current();
Elliott Hughesad7c2a32011-08-31 11:58:10 -07002718 void* handle = NULL;
2719 {
Elliott Hughes93e74e82011-09-13 11:07:03 -07002720 ScopedThreadStateChange tsc(self, Thread::kVmWait);
Elliott Hughesad7c2a32011-08-31 11:58:10 -07002721 handle = dlopen(path.c_str(), RTLD_LAZY);
2722 }
Elliott Hughescdf53122011-08-19 15:46:09 -07002723
2724 if (verbose_jni) {
2725 LOG(INFO) << "[Call to dlopen(\"" << path << "\") returned " << handle << "]";
2726 }
2727
2728 if (handle == NULL) {
Elliott Hughes75770752011-08-24 17:52:38 -07002729 detail = dlerror();
Elliott Hughescdf53122011-08-19 15:46:09 -07002730 return false;
2731 }
2732
2733 // Create a new entry.
Elliott Hughescdf53122011-08-19 15:46:09 -07002734 {
Elliott Hughes79082e32011-08-25 12:07:32 -07002735 // TODO: move the locking (and more of this logic) into Libraries.
2736 MutexLock mu(libraries_lock);
2737 library = libraries->Get(path);
2738 if (library != NULL) {
2739 LOG(INFO) << "WOW: we lost a race to add shared library: "
2740 << "\"" << path << "\" ClassLoader=" << class_loader;
2741 return library->CheckOnLoadResult(this);
Elliott Hughescdf53122011-08-19 15:46:09 -07002742 }
Elliott Hughes79082e32011-08-25 12:07:32 -07002743 library = new SharedLibrary(path, handle, class_loader);
2744 libraries->Put(path, library);
Elliott Hughescdf53122011-08-19 15:46:09 -07002745 }
Elliott Hughes79082e32011-08-25 12:07:32 -07002746
2747 if (verbose_jni) {
2748 LOG(INFO) << "[Added shared library \"" << path << "\" for ClassLoader " << class_loader << "]";
2749 }
2750
2751 bool result = true;
2752 void* sym = dlsym(handle, "JNI_OnLoad");
2753 if (sym == NULL) {
2754 if (verbose_jni) {
2755 LOG(INFO) << "[No JNI_OnLoad found in \"" << path << "\"]";
2756 }
2757 } else {
2758 // Call JNI_OnLoad. We have to override the current class
2759 // loader, which will always be "null" since the stuff at the
2760 // top of the stack is around Runtime.loadLibrary(). (See
2761 // the comments in the JNI FindClass function.)
2762 typedef int (*JNI_OnLoadFn)(JavaVM*, void*);
2763 JNI_OnLoadFn jni_on_load = reinterpret_cast<JNI_OnLoadFn>(sym);
Brian Carlstrombffb1552011-08-25 12:23:53 -07002764 const ClassLoader* old_class_loader = self->GetClassLoaderOverride();
Elliott Hughes79082e32011-08-25 12:07:32 -07002765 self->SetClassLoaderOverride(class_loader);
2766
Elliott Hughesad7c2a32011-08-31 11:58:10 -07002767 int version = 0;
2768 {
2769 ScopedThreadStateChange tsc(self, Thread::kNative);
2770 if (verbose_jni) {
2771 LOG(INFO) << "[Calling JNI_OnLoad in \"" << path << "\"]";
2772 }
2773 version = (*jni_on_load)(this, NULL);
Elliott Hughes79082e32011-08-25 12:07:32 -07002774 }
Elliott Hughes79082e32011-08-25 12:07:32 -07002775
2776 self->SetClassLoaderOverride(old_class_loader);;
2777
2778 if (version != JNI_VERSION_1_2 &&
2779 version != JNI_VERSION_1_4 &&
2780 version != JNI_VERSION_1_6) {
2781 LOG(WARNING) << "JNI_OnLoad in \"" << path << "\" returned "
2782 << "bad version: " << version;
2783 // It's unwise to call dlclose() here, but we can mark it
2784 // as bad and ensure that future load attempts will fail.
2785 // We don't know how far JNI_OnLoad got, so there could
2786 // be some partially-initialized stuff accessible through
2787 // newly-registered native method calls. We could try to
2788 // unregister them, but that doesn't seem worthwhile.
2789 result = false;
2790 } else {
2791 if (verbose_jni) {
2792 LOG(INFO) << "[Returned " << (result ? "successfully" : "failure")
2793 << " from JNI_OnLoad in \"" << path << "\"]";
2794 }
2795 }
2796 }
2797
2798 library->SetResult(result);
2799 return result;
2800}
2801
2802void* JavaVMExt::FindCodeForNativeMethod(Method* m) {
2803 CHECK(m->IsNative());
2804
2805 Class* c = m->GetDeclaringClass();
2806
2807 // If this is a static method, it could be called before the class
2808 // has been initialized.
2809 if (m->IsStatic()) {
Brian Carlstrom25c33252011-09-18 15:58:35 -07002810 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(c, true)) {
Elliott Hughes79082e32011-08-25 12:07:32 -07002811 return NULL;
2812 }
2813 } else {
Elliott Hughes2a20cfd2011-09-23 19:30:41 -07002814 CHECK(c->GetStatus() >= Class::kStatusInitializing) << c->GetStatus() << " " << PrettyMethod(m);
Elliott Hughes79082e32011-08-25 12:07:32 -07002815 }
2816
Brian Carlstrom16192862011-09-12 17:50:06 -07002817 std::string detail;
2818 void* native_method;
2819 {
2820 MutexLock mu(libraries_lock);
2821 native_method = libraries->FindNativeMethod(m, detail);
2822 }
2823 // throwing can cause libraries_lock to be reacquired
2824 if (native_method == NULL) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002825 Thread::Current()->ThrowNewException("Ljava/lang/UnsatisfiedLinkError;", detail.c_str());
Brian Carlstrom16192862011-09-12 17:50:06 -07002826 }
2827 return native_method;
Elliott Hughescdf53122011-08-19 15:46:09 -07002828}
2829
Elliott Hughes410c0c82011-09-01 17:58:25 -07002830void JavaVMExt::VisitRoots(Heap::RootVisitor* visitor, void* arg) {
2831 {
2832 MutexLock mu(globals_lock);
2833 globals.VisitRoots(visitor, arg);
2834 }
2835 {
2836 MutexLock mu(pins_lock);
2837 pin_table.VisitRoots(visitor, arg);
2838 }
2839 // The weak_globals table is visited by the GC itself (because it mutates the table).
2840}
2841
Ian Rogersdf20fe02011-07-20 20:34:16 -07002842} // namespace art
Elliott Hughesb465ab02011-08-24 11:21:21 -07002843
2844std::ostream& operator<<(std::ostream& os, const jobjectRefType& rhs) {
2845 switch (rhs) {
2846 case JNIInvalidRefType:
2847 os << "JNIInvalidRefType";
2848 return os;
2849 case JNILocalRefType:
2850 os << "JNILocalRefType";
2851 return os;
2852 case JNIGlobalRefType:
2853 os << "JNIGlobalRefType";
2854 return os;
2855 case JNIWeakGlobalRefType:
2856 os << "JNIWeakGlobalRefType";
2857 return os;
2858 }
2859}