blob: 21b5918c110fbef3316243e6285ad7b1974b447e [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);
Elliott Hughes418d20f2011-09-22 14:00:39 -070095template ObjectArray<Class>* Decode<ObjectArray<Class>*>(JNIEnv*, jobject);
96template ObjectArray<Object>* Decode<ObjectArray<Object>*>(JNIEnv*, jobject);
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -070097template ObjectArray<StackTraceElement>* Decode<ObjectArray<StackTraceElement>*>(JNIEnv*, jobject);
Elliott Hughes726079d2011-10-07 18:43:44 -070098template String* Decode<String*>(JNIEnv*, jobject);
99template Throwable* Decode<Throwable*>(JNIEnv*, jobject);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700100
101namespace {
102
Elliott Hughescdf53122011-08-19 15:46:09 -0700103jweak AddWeakGlobalReference(ScopedJniThreadState& ts, Object* obj) {
104 if (obj == NULL) {
105 return NULL;
106 }
Elliott Hughes75770752011-08-24 17:52:38 -0700107 JavaVMExt* vm = ts.Vm();
Elliott Hughescdf53122011-08-19 15:46:09 -0700108 IndirectReferenceTable& weak_globals = vm->weak_globals;
109 MutexLock mu(vm->weak_globals_lock);
110 IndirectRef ref = weak_globals.Add(IRT_FIRST_SEGMENT, obj);
111 return reinterpret_cast<jweak>(ref);
112}
113
Elliott Hughesbf86d042011-08-31 17:53:14 -0700114// For internal use.
Elliott Hughesc5f7c912011-08-18 14:00:42 -0700115template<typename T>
116T Decode(ScopedJniThreadState& ts, jobject obj) {
Ian Rogers408f79a2011-08-23 18:22:33 -0700117 return reinterpret_cast<T>(ts.Self()->DecodeJObject(obj));
Elliott Hughes8a26c5c2011-08-15 18:35:43 -0700118}
119
Elliott Hughes418d20f2011-09-22 14:00:39 -0700120byte* CreateArgArray(JNIEnv* public_env, Method* method, va_list ap) {
121 JNIEnvExt* env = reinterpret_cast<JNIEnvExt*>(public_env);
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700122 size_t num_bytes = method->NumArgArrayBytes();
Elliott Hughes90a33692011-08-30 13:27:07 -0700123 UniquePtr<byte[]> arg_array(new byte[num_bytes]);
Brian Carlstromc74255f2011-09-11 22:47:39 -0700124 const String* shorty = method->GetShorty();
Brian Carlstrom2ed67392011-09-09 14:53:28 -0700125 for (int i = 1, offset = 0; i < shorty->GetLength(); ++i) {
126 switch (shorty->CharAt(i)) {
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700127 case 'Z':
128 case 'B':
129 case 'C':
130 case 'S':
131 case 'I':
132 *reinterpret_cast<int32_t*>(&arg_array[offset]) = va_arg(ap, jint);
133 offset += 4;
134 break;
135 case 'F':
136 *reinterpret_cast<float*>(&arg_array[offset]) = va_arg(ap, jdouble);
137 offset += 4;
138 break;
139 case 'L': {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700140 Object* obj = Decode<Object*>(env, va_arg(ap, jobject));
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700141 *reinterpret_cast<Object**>(&arg_array[offset]) = obj;
142 offset += sizeof(Object*);
143 break;
144 }
145 case 'D':
146 *reinterpret_cast<double*>(&arg_array[offset]) = va_arg(ap, jdouble);
147 offset += 8;
148 break;
149 case 'J':
150 *reinterpret_cast<int64_t*>(&arg_array[offset]) = va_arg(ap, jlong);
151 offset += 8;
152 break;
153 }
154 }
155 return arg_array.release();
156}
157
Elliott Hughes418d20f2011-09-22 14:00:39 -0700158byte* CreateArgArray(JNIEnv* public_env, Method* method, jvalue* args) {
159 JNIEnvExt* env = reinterpret_cast<JNIEnvExt*>(public_env);
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700160 size_t num_bytes = method->NumArgArrayBytes();
Elliott Hughes90a33692011-08-30 13:27:07 -0700161 UniquePtr<byte[]> arg_array(new byte[num_bytes]);
Brian Carlstromc74255f2011-09-11 22:47:39 -0700162 const String* shorty = method->GetShorty();
Brian Carlstrom2ed67392011-09-09 14:53:28 -0700163 for (int i = 1, offset = 0; i < shorty->GetLength(); ++i) {
164 switch (shorty->CharAt(i)) {
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700165 case 'Z':
166 case 'B':
167 case 'C':
168 case 'S':
169 case 'I':
170 *reinterpret_cast<uint32_t*>(&arg_array[offset]) = args[i - 1].i;
171 offset += 4;
172 break;
173 case 'F':
174 *reinterpret_cast<float*>(&arg_array[offset]) = args[i - 1].f;
175 offset += 4;
176 break;
177 case 'L': {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700178 Object* obj = Decode<Object*>(env, args[i - 1].l);
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700179 *reinterpret_cast<Object**>(&arg_array[offset]) = obj;
180 offset += sizeof(Object*);
181 break;
182 }
183 case 'D':
184 *reinterpret_cast<double*>(&arg_array[offset]) = args[i - 1].d;
185 offset += 8;
186 break;
187 case 'J':
188 *reinterpret_cast<uint64_t*>(&arg_array[offset]) = args[i - 1].j;
189 offset += 8;
190 break;
191 }
192 }
193 return arg_array.release();
194}
195
Elliott Hughes418d20f2011-09-22 14:00:39 -0700196JValue InvokeWithArgArray(JNIEnv* public_env, Object* receiver, Method* method, byte* args) {
197 JNIEnvExt* env = reinterpret_cast<JNIEnvExt*>(public_env);
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700198 JValue result;
Elliott Hughes418d20f2011-09-22 14:00:39 -0700199 method->Invoke(env->self, receiver, args, &result);
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700200 return result;
201}
202
Elliott Hughes418d20f2011-09-22 14:00:39 -0700203JValue InvokeWithVarArgs(JNIEnv* public_env, jobject obj, jmethodID mid, va_list args) {
204 JNIEnvExt* env = reinterpret_cast<JNIEnvExt*>(public_env);
205 Object* receiver = Decode<Object*>(env, obj);
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -0700206 Method* method = DecodeMethod(mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700207 UniquePtr<byte[]> arg_array(CreateArgArray(env, method, args));
208 return InvokeWithArgArray(env, receiver, method, arg_array.get());
Elliott Hughes72025e52011-08-23 17:50:30 -0700209}
210
Elliott Hughes75770752011-08-24 17:52:38 -0700211Method* FindVirtualMethod(Object* receiver, Method* method) {
Brian Carlstrom30b94452011-08-25 21:35:26 -0700212 return receiver->GetClass()->FindVirtualMethodForVirtualOrInterface(method);
Elliott Hughes72025e52011-08-23 17:50:30 -0700213}
214
Elliott Hughes418d20f2011-09-22 14:00:39 -0700215JValue InvokeVirtualOrInterfaceWithJValues(JNIEnv* public_env, jobject obj, jmethodID mid, jvalue* args) {
216 JNIEnvExt* env = reinterpret_cast<JNIEnvExt*>(public_env);
217 Object* receiver = Decode<Object*>(env, obj);
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -0700218 Method* method = FindVirtualMethod(receiver, DecodeMethod(mid));
Elliott Hughes418d20f2011-09-22 14:00:39 -0700219 UniquePtr<byte[]> arg_array(CreateArgArray(env, method, args));
220 return InvokeWithArgArray(env, receiver, method, arg_array.get());
Elliott Hughes72025e52011-08-23 17:50:30 -0700221}
222
Elliott Hughes418d20f2011-09-22 14:00:39 -0700223JValue InvokeVirtualOrInterfaceWithVarArgs(JNIEnv* public_env, jobject obj, jmethodID mid, va_list args) {
224 JNIEnvExt* env = reinterpret_cast<JNIEnvExt*>(public_env);
225 Object* receiver = Decode<Object*>(env, obj);
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -0700226 Method* method = FindVirtualMethod(receiver, DecodeMethod(mid));
Elliott Hughes418d20f2011-09-22 14:00:39 -0700227 UniquePtr<byte[]> arg_array(CreateArgArray(env, method, args));
228 return InvokeWithArgArray(env, receiver, method, arg_array.get());
Carl Shapiroea4dca82011-08-01 13:45:38 -0700229}
230
Elliott Hughes6b436852011-08-12 10:16:44 -0700231// Section 12.3.2 of the JNI spec describes JNI class descriptors. They're
232// separated with slashes but aren't wrapped with "L;" like regular descriptors
233// (i.e. "a/b/C" rather than "La/b/C;"). Arrays of reference types are an
234// exception; there the "L;" must be present ("[La/b/C;"). Historically we've
235// supported names with dots too (such as "a.b.C").
236std::string NormalizeJniClassDescriptor(const char* name) {
237 std::string result;
238 // Add the missing "L;" if necessary.
239 if (name[0] == '[') {
240 result = name;
241 } else {
242 result += 'L';
243 result += name;
244 result += ';';
245 }
246 // Rewrite '.' as '/' for backwards compatibility.
Elliott Hughesa5b897e2011-08-16 11:33:06 -0700247 if (result.find('.') != std::string::npos) {
248 LOG(WARNING) << "Call to JNI FindClass with dots in name: "
249 << "\"" << name << "\"";
250 std::replace(result.begin(), result.end(), '.', '/');
Elliott Hughes6b436852011-08-12 10:16:44 -0700251 }
252 return result;
253}
254
Elliott Hughes14134a12011-09-30 16:55:51 -0700255void ThrowNoSuchMethodError(ScopedJniThreadState& ts, Class* c, const char* name, const char* sig, const char* kind) {
256 std::string class_descriptor(c->GetDescriptor()->ToModifiedUtf8());
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700257 ts.Self()->ThrowNewExceptionF("Ljava/lang/NoSuchMethodError;",
Elliott Hughes14134a12011-09-30 16:55:51 -0700258 "no %s method \"%s.%s%s\"", kind, class_descriptor.c_str(), name, sig);
259}
260
Elliott Hughescdf53122011-08-19 15:46:09 -0700261jmethodID FindMethodID(ScopedJniThreadState& ts, jclass jni_class, const char* name, const char* sig, bool is_static) {
262 Class* c = Decode<Class*>(ts, jni_class);
Brian Carlstrom25c33252011-09-18 15:58:35 -0700263 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(c, true)) {
Elliott Hughesf4c21c92011-08-19 17:31:31 -0700264 return NULL;
Carl Shapiro83ab4f32011-08-15 20:21:39 -0700265 }
Elliott Hughescdf53122011-08-19 15:46:09 -0700266
267 Method* method = NULL;
268 if (is_static) {
269 method = c->FindDirectMethod(name, sig);
Ian Rogers4dd71f12011-08-16 14:16:02 -0700270 } else {
Elliott Hughescdf53122011-08-19 15:46:09 -0700271 method = c->FindVirtualMethod(name, sig);
272 if (method == NULL) {
273 // No virtual method matching the signature. Search declared
274 // private methods and constructors.
275 method = c->FindDeclaredDirectMethod(name, sig);
Ian Rogers4dd71f12011-08-16 14:16:02 -0700276 }
Carl Shapiro83ab4f32011-08-15 20:21:39 -0700277 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700278
Elliott Hughescdf53122011-08-19 15:46:09 -0700279 if (method == NULL || method->IsStatic() != is_static) {
Elliott Hughes14134a12011-09-30 16:55:51 -0700280 ThrowNoSuchMethodError(ts, c, name, sig, is_static ? "static" : "non-static");
Elliott Hughescdf53122011-08-19 15:46:09 -0700281 return NULL;
282 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700283
Elliott Hughes418d20f2011-09-22 14:00:39 -0700284 method->InitJavaFields();
285
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700286 return EncodeMethod(method);
Carl Shapiroea4dca82011-08-01 13:45:38 -0700287}
288
Elliott Hughescdf53122011-08-19 15:46:09 -0700289jfieldID FindFieldID(ScopedJniThreadState& ts, jclass jni_class, const char* name, const char* sig, bool is_static) {
290 Class* c = Decode<Class*>(ts, jni_class);
Brian Carlstrom25c33252011-09-18 15:58:35 -0700291 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(c, true)) {
Elliott Hughesf4c21c92011-08-19 17:31:31 -0700292 return NULL;
Carl Shapiro83ab4f32011-08-15 20:21:39 -0700293 }
Elliott Hughescdf53122011-08-19 15:46:09 -0700294
295 Field* field = NULL;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700296 Class* field_type;
297 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
298 if (sig[1] != '\0') {
299 // TODO: need to get the appropriate ClassLoader.
300 const ClassLoader* cl = ts.Self()->GetClassLoaderOverride();
301 field_type = class_linker->FindClass(sig, cl);
Ian Rogers4dd71f12011-08-16 14:16:02 -0700302 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700303 field_type = class_linker->FindPrimitiveClass(*sig);
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700304 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700305 if (field_type == NULL) {
306 // Failed to find type from the signature of the field.
Ian Rogersb17d08b2011-09-02 16:16:49 -0700307 DCHECK(ts.Self()->IsExceptionPending());
308 ts.Self()->ClearException();
309 std::string class_descriptor(c->GetDescriptor()->ToModifiedUtf8());
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700310 ts.Self()->ThrowNewExceptionF("Ljava/lang/NoSuchFieldError;",
Ian Rogersb17d08b2011-09-02 16:16:49 -0700311 "no type \"%s\" found and so no field \"%s\" could be found in class "
312 "\"%s\" or its superclasses", sig, name, class_descriptor.c_str());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700313 return NULL;
314 }
315 if (is_static) {
316 field = c->FindStaticField(name, field_type);
317 } else {
318 field = c->FindInstanceField(name, field_type);
319 }
Elliott Hughescdf53122011-08-19 15:46:09 -0700320 if (field == NULL) {
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700321 std::string class_descriptor(c->GetDescriptor()->ToModifiedUtf8());
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700322 ts.Self()->ThrowNewExceptionF("Ljava/lang/NoSuchFieldError;",
Elliott Hughescdf53122011-08-19 15:46:09 -0700323 "no \"%s\" field \"%s\" in class \"%s\" or its superclasses", sig,
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700324 name, class_descriptor.c_str());
Elliott Hughes8a26c5c2011-08-15 18:35:43 -0700325 return NULL;
326 }
Elliott Hughes80609252011-09-23 17:24:51 -0700327 field->InitJavaFields();
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700328 return EncodeField(field);
Carl Shapiroea4dca82011-08-01 13:45:38 -0700329}
330
Elliott Hughes75770752011-08-24 17:52:38 -0700331void PinPrimitiveArray(ScopedJniThreadState& ts, const Array* array) {
332 JavaVMExt* vm = ts.Vm();
333 MutexLock mu(vm->pins_lock);
334 vm->pin_table.Add(array);
335}
336
337void UnpinPrimitiveArray(ScopedJniThreadState& ts, const Array* array) {
338 JavaVMExt* vm = ts.Vm();
339 MutexLock mu(vm->pins_lock);
340 vm->pin_table.Remove(array);
341}
342
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700343template<typename JniT, typename ArtT>
344JniT NewPrimitiveArray(ScopedJniThreadState& ts, jsize length) {
345 CHECK_GE(length, 0); // TODO: ReportJniError
346 ArtT* result = ArtT::Alloc(length);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700347 return AddLocalReference<JniT>(ts.Env(), result);
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700348}
349
Elliott Hughes75770752011-08-24 17:52:38 -0700350template <typename ArrayT, typename CArrayT, typename ArtArrayT>
351CArrayT GetPrimitiveArray(ScopedJniThreadState& ts, ArrayT java_array, jboolean* is_copy) {
352 ArtArrayT* array = Decode<ArtArrayT*>(ts, java_array);
353 PinPrimitiveArray(ts, array);
354 if (is_copy != NULL) {
355 *is_copy = JNI_FALSE;
356 }
357 return array->GetData();
358}
359
360template <typename ArrayT>
361void ReleasePrimitiveArray(ScopedJniThreadState& ts, ArrayT java_array, jint mode) {
362 if (mode != JNI_COMMIT) {
363 Array* array = Decode<Array*>(ts, java_array);
364 UnpinPrimitiveArray(ts, array);
365 }
366}
367
Elliott Hughes814e4032011-08-23 12:07:56 -0700368void ThrowAIOOBE(ScopedJniThreadState& ts, Array* array, jsize start, jsize length, const char* identifier) {
Elliott Hughes54e7df12011-09-16 11:47:04 -0700369 std::string type(PrettyTypeOf(array));
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700370 ts.Self()->ThrowNewExceptionF("Ljava/lang/ArrayIndexOutOfBoundsException;",
Elliott Hughes814e4032011-08-23 12:07:56 -0700371 "%s offset=%d length=%d %s.length=%d",
372 type.c_str(), start, length, identifier, array->GetLength());
373}
Elliott Hughesb465ab02011-08-24 11:21:21 -0700374void ThrowSIOOBE(ScopedJniThreadState& ts, jsize start, jsize length, jsize array_length) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700375 ts.Self()->ThrowNewExceptionF("Ljava/lang/StringIndexOutOfBoundsException;",
Elliott Hughesb465ab02011-08-24 11:21:21 -0700376 "offset=%d length=%d string.length()=%d", start, length, array_length);
377}
Elliott Hughes814e4032011-08-23 12:07:56 -0700378
379template <typename JavaArrayT, typename JavaT, typename ArrayT>
Elliott Hughes75770752011-08-24 17:52:38 -0700380void GetPrimitiveArrayRegion(ScopedJniThreadState& ts, JavaArrayT java_array, jsize start, jsize length, JavaT* buf) {
Elliott Hughes814e4032011-08-23 12:07:56 -0700381 ArrayT* array = Decode<ArrayT*>(ts, java_array);
382 if (start < 0 || length < 0 || start + length > array->GetLength()) {
383 ThrowAIOOBE(ts, array, start, length, "src");
384 } else {
385 JavaT* data = array->GetData();
386 memcpy(buf, data + start, length * sizeof(JavaT));
387 }
388}
389
390template <typename JavaArrayT, typename JavaT, typename ArrayT>
Elliott Hughes75770752011-08-24 17:52:38 -0700391void SetPrimitiveArrayRegion(ScopedJniThreadState& ts, JavaArrayT java_array, jsize start, jsize length, const JavaT* buf) {
Elliott Hughes814e4032011-08-23 12:07:56 -0700392 ArrayT* array = Decode<ArrayT*>(ts, java_array);
393 if (start < 0 || length < 0 || start + length > array->GetLength()) {
394 ThrowAIOOBE(ts, array, start, length, "dst");
395 } else {
396 JavaT* data = array->GetData();
397 memcpy(data + start, buf, length * sizeof(JavaT));
398 }
399}
400
Elliott Hughes75770752011-08-24 17:52:38 -0700401jclass InitDirectByteBufferClass(JNIEnv* env) {
Elliott Hughesb465ab02011-08-24 11:21:21 -0700402 ScopedLocalRef<jclass> buffer_class(env, env->FindClass("java/nio/ReadWriteDirectByteBuffer"));
403 CHECK(buffer_class.get() != NULL);
404 return reinterpret_cast<jclass>(env->NewGlobalRef(buffer_class.get()));
405}
406
Elliott Hughes75770752011-08-24 17:52:38 -0700407jclass GetDirectByteBufferClass(JNIEnv* env) {
Elliott Hughesb465ab02011-08-24 11:21:21 -0700408 static jclass buffer_class = InitDirectByteBufferClass(env);
409 return buffer_class;
410}
411
Elliott Hughes75770752011-08-24 17:52:38 -0700412jint JII_AttachCurrentThread(JavaVM* vm, JNIEnv** p_env, void* thr_args, bool as_daemon) {
413 if (vm == NULL || p_env == NULL) {
414 return JNI_ERR;
415 }
416
417 JavaVMAttachArgs* in_args = static_cast<JavaVMAttachArgs*>(thr_args);
418 JavaVMAttachArgs args;
419 if (thr_args == NULL) {
420 // Allow the v1.1 calling convention.
421 args.version = JNI_VERSION_1_2;
422 args.name = NULL;
423 args.group = NULL; // TODO: get "main" thread group
424 } else {
425 args.version = in_args->version;
426 args.name = in_args->name;
427 if (in_args->group != NULL) {
428 UNIMPLEMENTED(WARNING) << "thr_args->group != NULL";
429 args.group = NULL; // TODO: decode in_args->group
430 } else {
431 args.group = NULL; // TODO: get "main" thread group
432 }
433 }
434 CHECK_GE(args.version, JNI_VERSION_1_2);
435
436 Runtime* runtime = reinterpret_cast<JavaVMExt*>(vm)->runtime;
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700437 runtime->AttachCurrentThread(args.name, as_daemon);
438 *p_env = Thread::Current()->GetJniEnv();
Elliott Hughesd92bec42011-09-02 17:04:36 -0700439 return JNI_OK;
Elliott Hughes75770752011-08-24 17:52:38 -0700440}
441
Elliott Hughes79082e32011-08-25 12:07:32 -0700442class SharedLibrary {
443 public:
444 SharedLibrary(const std::string& path, void* handle, Object* class_loader)
445 : path_(path),
446 handle_(handle),
Shih-wei Liao31384c52011-09-06 15:27:45 -0700447 class_loader_(class_loader),
Elliott Hughes8daa0922011-09-11 13:46:25 -0700448 jni_on_load_lock_("JNI_OnLoad lock"),
Elliott Hughes5f791332011-09-15 17:45:30 -0700449 jni_on_load_cond_("JNI_OnLoad"),
Elliott Hughesdcc24742011-09-07 14:02:44 -0700450 jni_on_load_thread_id_(Thread::Current()->GetThinLockId()),
Elliott Hughes79082e32011-08-25 12:07:32 -0700451 jni_on_load_result_(kPending) {
Elliott Hughes79082e32011-08-25 12:07:32 -0700452 }
453
Elliott Hughes79082e32011-08-25 12:07:32 -0700454 Object* GetClassLoader() {
455 return class_loader_;
456 }
457
458 std::string GetPath() {
459 return path_;
460 }
461
462 /*
463 * Check the result of an earlier call to JNI_OnLoad on this library. If
464 * the call has not yet finished in another thread, wait for it.
465 */
466 bool CheckOnLoadResult(JavaVMExt* vm) {
467 Thread* self = Thread::Current();
Elliott Hughesdcc24742011-09-07 14:02:44 -0700468 if (jni_on_load_thread_id_ == self->GetThinLockId()) {
Elliott Hughes79082e32011-08-25 12:07:32 -0700469 // Check this so we don't end up waiting for ourselves. We need
470 // to return "true" so the caller can continue.
471 LOG(INFO) << *self << " recursive attempt to load library "
472 << "\"" << path_ << "\"";
473 return true;
474 }
475
476 MutexLock mu(jni_on_load_lock_);
477 while (jni_on_load_result_ == kPending) {
478 if (vm->verbose_jni) {
479 LOG(INFO) << "[" << *self << " waiting for \"" << path_ << "\" "
480 << "JNI_OnLoad...]";
481 }
Elliott Hughes93e74e82011-09-13 11:07:03 -0700482 ScopedThreadStateChange tsc(self, Thread::kVmWait);
Elliott Hughes5f791332011-09-15 17:45:30 -0700483 jni_on_load_cond_.Wait(jni_on_load_lock_);
Elliott Hughes79082e32011-08-25 12:07:32 -0700484 }
485
486 bool okay = (jni_on_load_result_ == kOkay);
487 if (vm->verbose_jni) {
488 LOG(INFO) << "[Earlier JNI_OnLoad for \"" << path_ << "\" "
489 << (okay ? "succeeded" : "failed") << "]";
490 }
491 return okay;
492 }
493
494 void SetResult(bool result) {
495 jni_on_load_result_ = result ? kOkay : kFailed;
Elliott Hughesdcc24742011-09-07 14:02:44 -0700496 jni_on_load_thread_id_ = 0;
Elliott Hughes79082e32011-08-25 12:07:32 -0700497
498 // Broadcast a wakeup to anybody sleeping on the condition variable.
499 MutexLock mu(jni_on_load_lock_);
Elliott Hughes5f791332011-09-15 17:45:30 -0700500 jni_on_load_cond_.Broadcast();
Elliott Hughes79082e32011-08-25 12:07:32 -0700501 }
502
503 void* FindSymbol(const std::string& symbol_name) {
504 return dlsym(handle_, symbol_name.c_str());
505 }
506
507 private:
508 enum JNI_OnLoadState {
509 kPending,
510 kFailed,
511 kOkay,
512 };
513
514 // Path to library "/system/lib/libjni.so".
515 std::string path_;
516
517 // The void* returned by dlopen(3).
518 void* handle_;
519
520 // The ClassLoader this library is associated with.
521 Object* class_loader_;
522
523 // Guards remaining items.
Elliott Hughes8daa0922011-09-11 13:46:25 -0700524 Mutex jni_on_load_lock_;
Elliott Hughes79082e32011-08-25 12:07:32 -0700525 // Wait for JNI_OnLoad in other thread.
Elliott Hughes5f791332011-09-15 17:45:30 -0700526 ConditionVariable jni_on_load_cond_;
Elliott Hughes79082e32011-08-25 12:07:32 -0700527 // Recursive invocation guard.
Elliott Hughesdcc24742011-09-07 14:02:44 -0700528 uint32_t jni_on_load_thread_id_;
Elliott Hughes79082e32011-08-25 12:07:32 -0700529 // Result of earlier JNI_OnLoad call.
530 JNI_OnLoadState jni_on_load_result_;
531};
532
Elliott Hughescdf53122011-08-19 15:46:09 -0700533} // namespace
Carl Shapiroea4dca82011-08-01 13:45:38 -0700534
Elliott Hughes79082e32011-08-25 12:07:32 -0700535// This exists mainly to keep implementation details out of the header file.
536class Libraries {
537 public:
538 Libraries() {
539 }
540
541 ~Libraries() {
Elliott Hughesc31664f2011-09-29 15:58:28 -0700542 STLDeleteValues(&libraries_);
Elliott Hughes79082e32011-08-25 12:07:32 -0700543 }
544
545 SharedLibrary* Get(const std::string& path) {
546 return libraries_[path];
547 }
548
549 void Put(const std::string& path, SharedLibrary* library) {
550 libraries_[path] = library;
551 }
552
553 // See section 11.3 "Linking Native Methods" of the JNI spec.
Brian Carlstrom16192862011-09-12 17:50:06 -0700554 void* FindNativeMethod(const Method* m, std::string& detail) {
Elliott Hughes79082e32011-08-25 12:07:32 -0700555 std::string jni_short_name(JniShortName(m));
556 std::string jni_long_name(JniLongName(m));
Elliott Hughes4b093bf2011-08-25 13:34:29 -0700557 const ClassLoader* declaring_class_loader = m->GetDeclaringClass()->GetClassLoader();
Elliott Hughes79082e32011-08-25 12:07:32 -0700558 for (It it = libraries_.begin(); it != libraries_.end(); ++it) {
559 SharedLibrary* library = it->second;
560 if (library->GetClassLoader() != declaring_class_loader) {
561 // We only search libraries loaded by the appropriate ClassLoader.
562 continue;
563 }
564 // Try the short name then the long name...
565 void* fn = library->FindSymbol(jni_short_name);
566 if (fn == NULL) {
567 fn = library->FindSymbol(jni_long_name);
568 }
569 if (fn != NULL) {
570 if (Runtime::Current()->GetJavaVM()->verbose_jni) {
Elliott Hughesa2501992011-08-26 19:39:54 -0700571 LOG(INFO) << "[Found native code for " << PrettyMethod(m)
Elliott Hughes79082e32011-08-25 12:07:32 -0700572 << " in \"" << library->GetPath() << "\"]";
573 }
574 return fn;
575 }
576 }
Elliott Hughes79082e32011-08-25 12:07:32 -0700577 detail += "No implementation found for ";
Elliott Hughesa2501992011-08-26 19:39:54 -0700578 detail += PrettyMethod(m);
Brian Carlstrom92827a52011-10-10 15:50:01 -0700579 detail += " (tried " + jni_short_name + " and " + jni_long_name + ")";
Elliott Hughes79082e32011-08-25 12:07:32 -0700580 LOG(ERROR) << detail;
Elliott Hughes79082e32011-08-25 12:07:32 -0700581 return NULL;
582 }
583
584 private:
585 typedef std::map<std::string, SharedLibrary*>::iterator It; // TODO: C++0x auto
586
587 std::map<std::string, SharedLibrary*> libraries_;
588};
589
Elliott Hughes418d20f2011-09-22 14:00:39 -0700590JValue InvokeWithJValues(JNIEnv* public_env, jobject obj, jmethodID mid, jvalue* args) {
591 JNIEnvExt* env = reinterpret_cast<JNIEnvExt*>(public_env);
592 Object* receiver = Decode<Object*>(env, obj);
593 Method* method = DecodeMethod(mid);
594 UniquePtr<byte[]> arg_array(CreateArgArray(env, method, args));
595 return InvokeWithArgArray(env, receiver, method, arg_array.get());
596}
597
Elliott Hughescdf53122011-08-19 15:46:09 -0700598class JNI {
599 public:
Carl Shapiroea4dca82011-08-01 13:45:38 -0700600
Elliott Hughescdf53122011-08-19 15:46:09 -0700601 static jint GetVersion(JNIEnv* env) {
602 ScopedJniThreadState ts(env);
603 return JNI_VERSION_1_6;
604 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700605
Elliott Hughescdf53122011-08-19 15:46:09 -0700606 static jclass DefineClass(JNIEnv* env, const char*, jobject, const jbyte*, jsize) {
607 ScopedJniThreadState ts(env);
608 LOG(WARNING) << "JNI DefineClass is not supported";
Elliott Hughesf2682d52011-08-15 16:37:04 -0700609 return NULL;
610 }
611
Elliott Hughescdf53122011-08-19 15:46:09 -0700612 static jclass FindClass(JNIEnv* env, const char* name) {
613 ScopedJniThreadState ts(env);
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700614 Runtime* runtime = Runtime::Current();
615 ClassLinker* class_linker = runtime->GetClassLinker();
Elliott Hughescdf53122011-08-19 15:46:09 -0700616 std::string descriptor(NormalizeJniClassDescriptor(name));
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700617 Class* c = NULL;
618 if (runtime->IsStarted()) {
619 // TODO: need to get the appropriate ClassLoader.
620 const ClassLoader* cl = ts.Self()->GetClassLoaderOverride();
621 c = class_linker->FindClass(descriptor, cl);
622 } else {
623 c = class_linker->FindSystemClass(descriptor);
624 }
Elliott Hughesbf86d042011-08-31 17:53:14 -0700625 return AddLocalReference<jclass>(env, c);
Ian Rogers4dd71f12011-08-16 14:16:02 -0700626 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700627
Elliott Hughescdf53122011-08-19 15:46:09 -0700628 static jmethodID FromReflectedMethod(JNIEnv* env, jobject java_method) {
629 ScopedJniThreadState ts(env);
630 Method* method = Decode<Method*>(ts, java_method);
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700631 return EncodeMethod(method);
Elliott Hughesf2682d52011-08-15 16:37:04 -0700632 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700633
Elliott Hughescdf53122011-08-19 15:46:09 -0700634 static jfieldID FromReflectedField(JNIEnv* env, jobject java_field) {
635 ScopedJniThreadState ts(env);
636 Field* field = Decode<Field*>(ts, java_field);
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700637 return EncodeField(field);
Elliott Hughescdf53122011-08-19 15:46:09 -0700638 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700639
Elliott Hughescdf53122011-08-19 15:46:09 -0700640 static jobject ToReflectedMethod(JNIEnv* env, jclass, jmethodID mid, jboolean) {
641 ScopedJniThreadState ts(env);
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -0700642 Method* method = DecodeMethod(mid);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700643 return AddLocalReference<jobject>(env, method);
Elliott Hughescdf53122011-08-19 15:46:09 -0700644 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700645
Elliott Hughescdf53122011-08-19 15:46:09 -0700646 static jobject ToReflectedField(JNIEnv* env, jclass, jfieldID fid, jboolean) {
647 ScopedJniThreadState ts(env);
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -0700648 Field* field = DecodeField(fid);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700649 return AddLocalReference<jobject>(env, field);
Elliott Hughescdf53122011-08-19 15:46:09 -0700650 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700651
Elliott Hughes37f7a402011-08-22 18:56:01 -0700652 static jclass GetObjectClass(JNIEnv* env, jobject java_object) {
653 ScopedJniThreadState ts(env);
654 Object* o = Decode<Object*>(ts, java_object);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700655 return AddLocalReference<jclass>(env, o->GetClass());
Elliott Hughes37f7a402011-08-22 18:56:01 -0700656 }
657
Elliott Hughes885c3bd2011-08-22 16:59:20 -0700658 static jclass GetSuperclass(JNIEnv* env, jclass java_class) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700659 ScopedJniThreadState ts(env);
Elliott Hughes885c3bd2011-08-22 16:59:20 -0700660 Class* c = Decode<Class*>(ts, java_class);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700661 return AddLocalReference<jclass>(env, c->GetSuperClass());
Elliott Hughescdf53122011-08-19 15:46:09 -0700662 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700663
Elliott Hughes37f7a402011-08-22 18:56:01 -0700664 static jboolean IsAssignableFrom(JNIEnv* env, jclass java_class1, jclass java_class2) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700665 ScopedJniThreadState ts(env);
Elliott Hughes37f7a402011-08-22 18:56:01 -0700666 Class* c1 = Decode<Class*>(ts, java_class1);
667 Class* c2 = Decode<Class*>(ts, java_class2);
668 return c1->IsAssignableFrom(c2) ? JNI_TRUE : JNI_FALSE;
Elliott Hughescdf53122011-08-19 15:46:09 -0700669 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700670
Elliott Hughes37f7a402011-08-22 18:56:01 -0700671 static jboolean IsInstanceOf(JNIEnv* env, jobject jobj, jclass clazz) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700672 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -0700673 CHECK_NE(static_cast<jclass>(NULL), clazz); // TODO: ReportJniError
Elliott Hughes37f7a402011-08-22 18:56:01 -0700674 if (jobj == NULL) {
Brian Carlstrom5d40f182011-09-26 22:29:18 -0700675 // Note: JNI is different from regular Java instanceof in this respect
Elliott Hughes37f7a402011-08-22 18:56:01 -0700676 return JNI_TRUE;
677 } else {
678 Object* obj = Decode<Object*>(ts, jobj);
679 Class* klass = Decode<Class*>(ts, clazz);
Brian Carlstrom5d40f182011-09-26 22:29:18 -0700680 return obj->InstanceOf(klass) ? JNI_TRUE : JNI_FALSE;
Elliott Hughes37f7a402011-08-22 18:56:01 -0700681 }
Elliott Hughescdf53122011-08-19 15:46:09 -0700682 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700683
Elliott Hughes37f7a402011-08-22 18:56:01 -0700684 static jint Throw(JNIEnv* env, jthrowable java_exception) {
685 ScopedJniThreadState ts(env);
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700686 Throwable* exception = Decode<Throwable*>(ts, java_exception);
Elliott Hughes37f7a402011-08-22 18:56:01 -0700687 if (exception == NULL) {
688 return JNI_ERR;
689 }
690 ts.Self()->SetException(exception);
691 return JNI_OK;
692 }
693
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700694 static jint ThrowNew(JNIEnv* env, jclass c, const char* msg) {
Elliott Hughes37f7a402011-08-22 18:56:01 -0700695 ScopedJniThreadState ts(env);
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700696 // TODO: check for a pending exception to decide what constructor to call.
697 jmethodID mid = env->GetMethodID(c, "<init>", "(Ljava/lang/String;)V");
698 if (mid == NULL) {
699 return JNI_ERR;
700 }
Elliott Hughes72025e52011-08-23 17:50:30 -0700701 ScopedLocalRef<jstring> s(env, env->NewStringUTF(msg));
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700702 if (msg != NULL && s.get() == NULL) {
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700703 return JNI_ERR;
704 }
705
706 jvalue args[1];
Elliott Hughes72025e52011-08-23 17:50:30 -0700707 args[0].l = s.get();
708 ScopedLocalRef<jthrowable> exception(env, reinterpret_cast<jthrowable>(env->NewObjectA(c, mid, args)));
709 if (exception.get() == NULL) {
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700710 return JNI_ERR;
711 }
712
Elliott Hughes72025e52011-08-23 17:50:30 -0700713 ts.Self()->SetException(Decode<Throwable*>(ts, exception.get()));
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700714
Elliott Hughes37f7a402011-08-22 18:56:01 -0700715 return JNI_OK;
716 }
717
718 static jboolean ExceptionCheck(JNIEnv* env) {
719 ScopedJniThreadState ts(env);
720 return ts.Self()->IsExceptionPending() ? JNI_TRUE : JNI_FALSE;
721 }
722
723 static void ExceptionClear(JNIEnv* env) {
724 ScopedJniThreadState ts(env);
725 ts.Self()->ClearException();
726 }
727
728 static void ExceptionDescribe(JNIEnv* env) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700729 ScopedJniThreadState ts(env);
Elliott Hughes72025e52011-08-23 17:50:30 -0700730
731 Thread* self = ts.Self();
732 Throwable* original_exception = self->GetException();
733 self->ClearException();
734
Elliott Hughesbf86d042011-08-31 17:53:14 -0700735 ScopedLocalRef<jthrowable> exception(env, AddLocalReference<jthrowable>(env, original_exception));
Elliott Hughes72025e52011-08-23 17:50:30 -0700736 ScopedLocalRef<jclass> exception_class(env, env->GetObjectClass(exception.get()));
737 jmethodID mid = env->GetMethodID(exception_class.get(), "printStackTrace", "()V");
738 if (mid == NULL) {
739 LOG(WARNING) << "JNI WARNING: no printStackTrace()V in "
Elliott Hughes54e7df12011-09-16 11:47:04 -0700740 << PrettyTypeOf(original_exception);
Elliott Hughes72025e52011-08-23 17:50:30 -0700741 } else {
742 env->CallVoidMethod(exception.get(), mid);
743 if (self->IsExceptionPending()) {
Elliott Hughes54e7df12011-09-16 11:47:04 -0700744 LOG(WARNING) << "JNI WARNING: " << PrettyTypeOf(self->GetException())
Elliott Hughes72025e52011-08-23 17:50:30 -0700745 << " thrown while calling printStackTrace";
746 self->ClearException();
747 }
748 }
749
750 self->SetException(original_exception);
Elliott Hughescdf53122011-08-19 15:46:09 -0700751 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700752
Elliott Hughescdf53122011-08-19 15:46:09 -0700753 static jthrowable ExceptionOccurred(JNIEnv* env) {
754 ScopedJniThreadState ts(env);
755 Object* exception = ts.Self()->GetException();
756 if (exception == NULL) {
757 return NULL;
758 } else {
759 // TODO: if adding a local reference failing causes the VM to abort
760 // then the following check will never occur.
Elliott Hughesbf86d042011-08-31 17:53:14 -0700761 jthrowable localException = AddLocalReference<jthrowable>(env, exception);
Elliott Hughescdf53122011-08-19 15:46:09 -0700762 if (localException == NULL) {
763 // We were unable to add a new local reference, and threw a new
764 // exception. We can't return "exception", because it's not a
765 // local reference. So we have to return NULL, indicating that
766 // there was no exception, even though it's pretty much raining
767 // exceptions in here.
768 LOG(WARNING) << "JNI WARNING: addLocal/exception combo";
769 }
770 return localException;
771 }
772 }
773
Elliott Hughescdf53122011-08-19 15:46:09 -0700774 static void FatalError(JNIEnv* env, const char* msg) {
775 ScopedJniThreadState ts(env);
776 LOG(FATAL) << "JNI FatalError called: " << msg;
777 }
778
779 static jint PushLocalFrame(JNIEnv* env, jint cap) {
780 ScopedJniThreadState ts(env);
781 UNIMPLEMENTED(WARNING) << "ignoring PushLocalFrame(" << cap << ")";
782 return JNI_OK;
783 }
784
785 static jobject PopLocalFrame(JNIEnv* env, jobject res) {
786 ScopedJniThreadState ts(env);
787 UNIMPLEMENTED(WARNING) << "ignoring PopLocalFrame " << res;
788 return res;
789 }
790
Elliott Hughes72025e52011-08-23 17:50:30 -0700791 static jint EnsureLocalCapacity(JNIEnv* env, jint cap) {
792 ScopedJniThreadState ts(env);
793 UNIMPLEMENTED(WARNING) << "ignoring EnsureLocalCapacity(" << cap << ")";
794 return 0;
795 }
796
Elliott Hughescdf53122011-08-19 15:46:09 -0700797 static jobject NewGlobalRef(JNIEnv* env, jobject obj) {
798 ScopedJniThreadState ts(env);
799 if (obj == NULL) {
800 return NULL;
801 }
802
Elliott Hughes75770752011-08-24 17:52:38 -0700803 JavaVMExt* vm = ts.Vm();
Elliott Hughescdf53122011-08-19 15:46:09 -0700804 IndirectReferenceTable& globals = vm->globals;
805 MutexLock mu(vm->globals_lock);
806 IndirectRef ref = globals.Add(IRT_FIRST_SEGMENT, Decode<Object*>(ts, obj));
807 return reinterpret_cast<jobject>(ref);
808 }
809
810 static void DeleteGlobalRef(JNIEnv* env, jobject obj) {
811 ScopedJniThreadState ts(env);
812 if (obj == NULL) {
813 return;
814 }
815
Elliott Hughes75770752011-08-24 17:52:38 -0700816 JavaVMExt* vm = ts.Vm();
Elliott Hughescdf53122011-08-19 15:46:09 -0700817 IndirectReferenceTable& globals = vm->globals;
818 MutexLock mu(vm->globals_lock);
819
820 if (!globals.Remove(IRT_FIRST_SEGMENT, obj)) {
821 LOG(WARNING) << "JNI WARNING: DeleteGlobalRef(" << obj << ") "
822 << "failed to find entry";
823 }
824 }
825
826 static jweak NewWeakGlobalRef(JNIEnv* env, jobject obj) {
827 ScopedJniThreadState ts(env);
828 return AddWeakGlobalReference(ts, Decode<Object*>(ts, obj));
829 }
830
831 static void DeleteWeakGlobalRef(JNIEnv* env, jweak obj) {
832 ScopedJniThreadState ts(env);
833 if (obj == NULL) {
834 return;
835 }
836
Elliott Hughes75770752011-08-24 17:52:38 -0700837 JavaVMExt* vm = ts.Vm();
Elliott Hughescdf53122011-08-19 15:46:09 -0700838 IndirectReferenceTable& weak_globals = vm->weak_globals;
839 MutexLock mu(vm->weak_globals_lock);
840
841 if (!weak_globals.Remove(IRT_FIRST_SEGMENT, obj)) {
842 LOG(WARNING) << "JNI WARNING: DeleteWeakGlobalRef(" << obj << ") "
843 << "failed to find entry";
844 }
845 }
846
847 static jobject NewLocalRef(JNIEnv* env, jobject obj) {
848 ScopedJniThreadState ts(env);
849 if (obj == NULL) {
850 return NULL;
851 }
852
853 IndirectReferenceTable& locals = ts.Env()->locals;
854
Ian Rogers5a7a74a2011-09-26 16:32:29 -0700855 uint32_t cookie = ts.Env()->local_ref_cookie;
Elliott Hughescdf53122011-08-19 15:46:09 -0700856 IndirectRef ref = locals.Add(cookie, Decode<Object*>(ts, obj));
857 return reinterpret_cast<jobject>(ref);
858 }
859
860 static void DeleteLocalRef(JNIEnv* env, jobject obj) {
861 ScopedJniThreadState ts(env);
862 if (obj == NULL) {
863 return;
864 }
865
866 IndirectReferenceTable& locals = ts.Env()->locals;
867
Ian Rogers5a7a74a2011-09-26 16:32:29 -0700868 uint32_t cookie = ts.Env()->local_ref_cookie;
Elliott Hughescdf53122011-08-19 15:46:09 -0700869 if (!locals.Remove(cookie, obj)) {
870 // Attempting to delete a local reference that is not in the
871 // topmost local reference frame is a no-op. DeleteLocalRef returns
872 // void and doesn't throw any exceptions, but we should probably
873 // complain about it so the user will notice that things aren't
874 // going quite the way they expect.
875 LOG(WARNING) << "JNI WARNING: DeleteLocalRef(" << obj << ") "
876 << "failed to find entry";
877 }
878 }
879
880 static jboolean IsSameObject(JNIEnv* env, jobject obj1, jobject obj2) {
881 ScopedJniThreadState ts(env);
882 return (Decode<Object*>(ts, obj1) == Decode<Object*>(ts, obj2))
883 ? JNI_TRUE : JNI_FALSE;
884 }
885
Elliott Hughes885c3bd2011-08-22 16:59:20 -0700886 static jobject AllocObject(JNIEnv* env, jclass java_class) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700887 ScopedJniThreadState ts(env);
Elliott Hughes885c3bd2011-08-22 16:59:20 -0700888 Class* c = Decode<Class*>(ts, java_class);
Brian Carlstrom25c33252011-09-18 15:58:35 -0700889 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(c, true)) {
Elliott Hughes885c3bd2011-08-22 16:59:20 -0700890 return NULL;
891 }
Elliott Hughesbf86d042011-08-31 17:53:14 -0700892 return AddLocalReference<jobject>(env, c->AllocObject());
Elliott Hughescdf53122011-08-19 15:46:09 -0700893 }
894
Elliott Hughes72025e52011-08-23 17:50:30 -0700895 static jobject NewObject(JNIEnv* env, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700896 ScopedJniThreadState ts(env);
897 va_list args;
Elliott Hughes72025e52011-08-23 17:50:30 -0700898 va_start(args, mid);
899 jobject result = NewObjectV(env, clazz, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -0700900 va_end(args);
901 return result;
902 }
903
Elliott Hughes72025e52011-08-23 17:50:30 -0700904 static jobject NewObjectV(JNIEnv* env, jclass java_class, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700905 ScopedJniThreadState ts(env);
Elliott Hughes885c3bd2011-08-22 16:59:20 -0700906 Class* c = Decode<Class*>(ts, java_class);
Brian Carlstrom25c33252011-09-18 15:58:35 -0700907 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(c, true)) {
Elliott Hughes885c3bd2011-08-22 16:59:20 -0700908 return NULL;
909 }
Brian Carlstrom1f870082011-08-23 16:02:11 -0700910 Object* result = c->AllocObject();
Elliott Hughesbf86d042011-08-31 17:53:14 -0700911 jobject local_result = AddLocalReference<jobject>(env, result);
Elliott Hughes72025e52011-08-23 17:50:30 -0700912 CallNonvirtualVoidMethodV(env, local_result, java_class, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -0700913 return local_result;
914 }
915
Elliott Hughes72025e52011-08-23 17:50:30 -0700916 static jobject NewObjectA(JNIEnv* env, jclass java_class, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700917 ScopedJniThreadState ts(env);
Elliott Hughes885c3bd2011-08-22 16:59:20 -0700918 Class* c = Decode<Class*>(ts, java_class);
Brian Carlstrom25c33252011-09-18 15:58:35 -0700919 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(c, true)) {
Elliott Hughes885c3bd2011-08-22 16:59:20 -0700920 return NULL;
921 }
Brian Carlstrom1f870082011-08-23 16:02:11 -0700922 Object* result = c->AllocObject();
Elliott Hughesbf86d042011-08-31 17:53:14 -0700923 jobject local_result = AddLocalReference<jobjectArray>(env, result);
Elliott Hughes72025e52011-08-23 17:50:30 -0700924 CallNonvirtualVoidMethodA(env, local_result, java_class, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -0700925 return local_result;
926 }
927
Elliott Hughescdf53122011-08-19 15:46:09 -0700928 static jmethodID GetMethodID(JNIEnv* env, jclass c, const char* name, const char* sig) {
929 ScopedJniThreadState ts(env);
930 return FindMethodID(ts, c, name, sig, false);
931 }
932
933 static jmethodID GetStaticMethodID(JNIEnv* env, jclass c, const char* name, const char* sig) {
934 ScopedJniThreadState ts(env);
935 return FindMethodID(ts, c, name, sig, true);
936 }
937
Elliott Hughes72025e52011-08-23 17:50:30 -0700938 static jobject CallObjectMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700939 ScopedJniThreadState ts(env);
Elliott Hughes72025e52011-08-23 17:50:30 -0700940 va_list ap;
941 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700942 JValue result = InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, ap);
Elliott Hughes72025e52011-08-23 17:50:30 -0700943 va_end(ap);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700944 return AddLocalReference<jobject>(env, result.l);
Elliott Hughescdf53122011-08-19 15:46:09 -0700945 }
946
Elliott Hughes72025e52011-08-23 17:50:30 -0700947 static jobject CallObjectMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700948 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700949 JValue result = InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, args);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700950 return AddLocalReference<jobject>(env, result.l);
Elliott Hughescdf53122011-08-19 15:46:09 -0700951 }
952
Elliott Hughes72025e52011-08-23 17:50:30 -0700953 static jobject CallObjectMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700954 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700955 JValue result = InvokeVirtualOrInterfaceWithJValues(env, obj, mid, args);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700956 return AddLocalReference<jobject>(env, result.l);
Elliott Hughescdf53122011-08-19 15:46:09 -0700957 }
958
Elliott Hughes72025e52011-08-23 17:50:30 -0700959 static jboolean CallBooleanMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700960 ScopedJniThreadState ts(env);
Elliott Hughes72025e52011-08-23 17:50:30 -0700961 va_list ap;
962 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700963 JValue result = InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, ap);
Elliott Hughes72025e52011-08-23 17:50:30 -0700964 va_end(ap);
965 return result.z;
Elliott Hughescdf53122011-08-19 15:46:09 -0700966 }
967
Elliott Hughes72025e52011-08-23 17:50:30 -0700968 static jboolean CallBooleanMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700969 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700970 return InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, args).z;
Elliott Hughescdf53122011-08-19 15:46:09 -0700971 }
972
Elliott Hughes72025e52011-08-23 17:50:30 -0700973 static jboolean CallBooleanMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700974 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700975 return InvokeVirtualOrInterfaceWithJValues(env, obj, mid, args).z;
Elliott Hughescdf53122011-08-19 15:46:09 -0700976 }
977
Elliott Hughes72025e52011-08-23 17:50:30 -0700978 static jbyte CallByteMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700979 ScopedJniThreadState ts(env);
Elliott Hughes72025e52011-08-23 17:50:30 -0700980 va_list ap;
981 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700982 JValue result = InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, ap);
Elliott Hughes72025e52011-08-23 17:50:30 -0700983 va_end(ap);
984 return result.b;
Elliott Hughescdf53122011-08-19 15:46:09 -0700985 }
986
Elliott Hughes72025e52011-08-23 17:50:30 -0700987 static jbyte CallByteMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700988 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700989 return InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, args).b;
Elliott Hughescdf53122011-08-19 15:46:09 -0700990 }
991
Elliott Hughes72025e52011-08-23 17:50:30 -0700992 static jbyte CallByteMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700993 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700994 return InvokeVirtualOrInterfaceWithJValues(env, obj, mid, args).b;
Elliott Hughescdf53122011-08-19 15:46:09 -0700995 }
996
Elliott Hughes72025e52011-08-23 17:50:30 -0700997 static jchar CallCharMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700998 ScopedJniThreadState ts(env);
Elliott Hughes72025e52011-08-23 17:50:30 -0700999 va_list ap;
1000 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001001 JValue result = InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, ap);
Elliott Hughes72025e52011-08-23 17:50:30 -07001002 va_end(ap);
1003 return result.c;
Elliott Hughescdf53122011-08-19 15:46:09 -07001004 }
1005
Elliott Hughes72025e52011-08-23 17:50:30 -07001006 static jchar CallCharMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001007 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001008 return InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, args).c;
Elliott Hughescdf53122011-08-19 15:46:09 -07001009 }
1010
Elliott Hughes72025e52011-08-23 17:50:30 -07001011 static jchar CallCharMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001012 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001013 return InvokeVirtualOrInterfaceWithJValues(env, obj, mid, args).c;
Elliott Hughescdf53122011-08-19 15:46:09 -07001014 }
1015
Elliott Hughes72025e52011-08-23 17:50:30 -07001016 static jdouble CallDoubleMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001017 ScopedJniThreadState ts(env);
Elliott Hughes72025e52011-08-23 17:50:30 -07001018 va_list ap;
1019 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001020 JValue result = InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, ap);
Elliott Hughes72025e52011-08-23 17:50:30 -07001021 va_end(ap);
1022 return result.d;
Elliott Hughescdf53122011-08-19 15:46:09 -07001023 }
1024
Elliott Hughes72025e52011-08-23 17:50:30 -07001025 static jdouble CallDoubleMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001026 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001027 return InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, args).d;
Elliott Hughescdf53122011-08-19 15:46:09 -07001028 }
1029
Elliott Hughes72025e52011-08-23 17:50:30 -07001030 static jdouble CallDoubleMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001031 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001032 return InvokeVirtualOrInterfaceWithJValues(env, obj, mid, args).d;
Elliott Hughescdf53122011-08-19 15:46:09 -07001033 }
1034
Elliott Hughes72025e52011-08-23 17:50:30 -07001035 static jfloat CallFloatMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001036 ScopedJniThreadState ts(env);
Elliott Hughes72025e52011-08-23 17:50:30 -07001037 va_list ap;
1038 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001039 JValue result = InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, ap);
Elliott Hughes72025e52011-08-23 17:50:30 -07001040 va_end(ap);
1041 return result.f;
Elliott Hughescdf53122011-08-19 15:46:09 -07001042 }
1043
Elliott Hughes72025e52011-08-23 17:50:30 -07001044 static jfloat CallFloatMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001045 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001046 return InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, args).f;
Elliott Hughescdf53122011-08-19 15:46:09 -07001047 }
1048
Elliott Hughes72025e52011-08-23 17:50:30 -07001049 static jfloat CallFloatMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001050 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001051 return InvokeVirtualOrInterfaceWithJValues(env, obj, mid, args).f;
Elliott Hughescdf53122011-08-19 15:46:09 -07001052 }
1053
Elliott Hughes72025e52011-08-23 17:50:30 -07001054 static jint CallIntMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001055 ScopedJniThreadState ts(env);
Elliott Hughes72025e52011-08-23 17:50:30 -07001056 va_list ap;
1057 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001058 JValue result = InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, ap);
Elliott Hughes72025e52011-08-23 17:50:30 -07001059 va_end(ap);
1060 return result.i;
Elliott Hughescdf53122011-08-19 15:46:09 -07001061 }
1062
Elliott Hughes72025e52011-08-23 17:50:30 -07001063 static jint CallIntMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001064 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001065 return InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, args).i;
Elliott Hughescdf53122011-08-19 15:46:09 -07001066 }
1067
Elliott Hughes72025e52011-08-23 17:50:30 -07001068 static jint CallIntMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001069 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001070 return InvokeVirtualOrInterfaceWithJValues(env, obj, mid, args).i;
Elliott Hughescdf53122011-08-19 15:46:09 -07001071 }
1072
Elliott Hughes72025e52011-08-23 17:50:30 -07001073 static jlong CallLongMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001074 ScopedJniThreadState ts(env);
Elliott Hughes72025e52011-08-23 17:50:30 -07001075 va_list ap;
1076 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001077 JValue result = InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, ap);
Elliott Hughes72025e52011-08-23 17:50:30 -07001078 va_end(ap);
1079 return result.j;
Elliott Hughescdf53122011-08-19 15:46:09 -07001080 }
1081
Elliott Hughes72025e52011-08-23 17:50:30 -07001082 static jlong CallLongMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001083 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001084 return InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, args).j;
Elliott Hughescdf53122011-08-19 15:46:09 -07001085 }
1086
Elliott Hughes72025e52011-08-23 17:50:30 -07001087 static jlong CallLongMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001088 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001089 return InvokeVirtualOrInterfaceWithJValues(env, obj, mid, args).j;
Elliott Hughescdf53122011-08-19 15:46:09 -07001090 }
1091
Elliott Hughes72025e52011-08-23 17:50:30 -07001092 static jshort CallShortMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001093 ScopedJniThreadState ts(env);
Elliott Hughes72025e52011-08-23 17:50:30 -07001094 va_list ap;
1095 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001096 JValue result = InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, ap);
Elliott Hughes72025e52011-08-23 17:50:30 -07001097 va_end(ap);
1098 return result.s;
Elliott Hughescdf53122011-08-19 15:46:09 -07001099 }
1100
Elliott Hughes72025e52011-08-23 17:50:30 -07001101 static jshort CallShortMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001102 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001103 return InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, args).s;
Elliott Hughescdf53122011-08-19 15:46:09 -07001104 }
1105
Elliott Hughes72025e52011-08-23 17:50:30 -07001106 static jshort CallShortMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001107 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001108 return InvokeVirtualOrInterfaceWithJValues(env, obj, mid, args).s;
Elliott Hughescdf53122011-08-19 15:46:09 -07001109 }
1110
Elliott Hughes72025e52011-08-23 17:50:30 -07001111 static void CallVoidMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001112 ScopedJniThreadState ts(env);
Elliott Hughes72025e52011-08-23 17:50:30 -07001113 va_list ap;
1114 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001115 JValue result = InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, ap);
Elliott Hughes72025e52011-08-23 17:50:30 -07001116 va_end(ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001117 }
1118
Elliott Hughes72025e52011-08-23 17:50:30 -07001119 static void CallVoidMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001120 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001121 InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -07001122 }
1123
Elliott Hughes72025e52011-08-23 17:50:30 -07001124 static void CallVoidMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001125 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001126 InvokeVirtualOrInterfaceWithJValues(env, obj, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -07001127 }
1128
1129 static jobject CallNonvirtualObjectMethod(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001130 jobject obj, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001131 ScopedJniThreadState ts(env);
1132 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001133 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001134 JValue result = InvokeWithVarArgs(env, obj, mid, ap);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001135 jobject local_result = AddLocalReference<jobject>(env, result.l);
Elliott Hughescdf53122011-08-19 15:46:09 -07001136 va_end(ap);
1137 return local_result;
1138 }
1139
1140 static jobject CallNonvirtualObjectMethodV(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001141 jobject obj, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001142 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001143 JValue result = InvokeWithVarArgs(env, obj, mid, args);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001144 return AddLocalReference<jobject>(env, result.l);
Elliott Hughescdf53122011-08-19 15:46:09 -07001145 }
1146
1147 static jobject CallNonvirtualObjectMethodA(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001148 jobject obj, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001149 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001150 JValue result = InvokeWithJValues(env, obj, mid, args);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001151 return AddLocalReference<jobject>(env, result.l);
Elliott Hughescdf53122011-08-19 15:46:09 -07001152 }
1153
1154 static jboolean CallNonvirtualBooleanMethod(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001155 jobject obj, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001156 ScopedJniThreadState ts(env);
1157 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001158 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001159 JValue result = InvokeWithVarArgs(env, obj, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001160 va_end(ap);
1161 return result.z;
1162 }
1163
1164 static jboolean CallNonvirtualBooleanMethodV(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001165 jobject obj, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001166 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001167 return InvokeWithVarArgs(env, obj, mid, args).z;
Elliott Hughescdf53122011-08-19 15:46:09 -07001168 }
1169
1170 static jboolean CallNonvirtualBooleanMethodA(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001171 jobject obj, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001172 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001173 return InvokeWithJValues(env, obj, mid, args).z;
Elliott Hughescdf53122011-08-19 15:46:09 -07001174 }
1175
1176 static jbyte CallNonvirtualByteMethod(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001177 jobject obj, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001178 ScopedJniThreadState ts(env);
1179 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001180 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001181 JValue result = InvokeWithVarArgs(env, obj, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001182 va_end(ap);
1183 return result.b;
1184 }
1185
1186 static jbyte CallNonvirtualByteMethodV(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001187 jobject obj, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001188 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001189 return InvokeWithVarArgs(env, obj, mid, args).b;
Elliott Hughescdf53122011-08-19 15:46:09 -07001190 }
1191
1192 static jbyte CallNonvirtualByteMethodA(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001193 jobject obj, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001194 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001195 return InvokeWithJValues(env, obj, mid, args).b;
Elliott Hughescdf53122011-08-19 15:46:09 -07001196 }
1197
1198 static jchar CallNonvirtualCharMethod(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001199 jobject obj, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001200 ScopedJniThreadState ts(env);
1201 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001202 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001203 JValue result = InvokeWithVarArgs(env, obj, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001204 va_end(ap);
1205 return result.c;
1206 }
1207
1208 static jchar CallNonvirtualCharMethodV(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001209 jobject obj, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001210 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001211 return InvokeWithVarArgs(env, obj, mid, args).c;
Elliott Hughescdf53122011-08-19 15:46:09 -07001212 }
1213
1214 static jchar CallNonvirtualCharMethodA(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001215 jobject obj, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001216 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001217 return InvokeWithJValues(env, obj, mid, args).c;
Elliott Hughescdf53122011-08-19 15:46:09 -07001218 }
1219
1220 static jshort CallNonvirtualShortMethod(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001221 jobject obj, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001222 ScopedJniThreadState ts(env);
1223 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001224 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001225 JValue result = InvokeWithVarArgs(env, obj, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001226 va_end(ap);
1227 return result.s;
1228 }
1229
1230 static jshort CallNonvirtualShortMethodV(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001231 jobject obj, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001232 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001233 return InvokeWithVarArgs(env, obj, mid, args).s;
Elliott Hughescdf53122011-08-19 15:46:09 -07001234 }
1235
1236 static jshort CallNonvirtualShortMethodA(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001237 jobject obj, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001238 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001239 return InvokeWithJValues(env, obj, mid, args).s;
Elliott Hughescdf53122011-08-19 15:46:09 -07001240 }
1241
Elliott Hughes418d20f2011-09-22 14:00:39 -07001242 static jint CallNonvirtualIntMethod(JNIEnv* env, jobject obj, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001243 ScopedJniThreadState ts(env);
1244 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001245 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001246 JValue result = InvokeWithVarArgs(env, obj, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001247 va_end(ap);
1248 return result.i;
1249 }
1250
1251 static jint CallNonvirtualIntMethodV(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001252 jobject obj, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001253 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001254 return InvokeWithVarArgs(env, obj, mid, args).i;
Elliott Hughescdf53122011-08-19 15:46:09 -07001255 }
1256
1257 static jint CallNonvirtualIntMethodA(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001258 jobject obj, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001259 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001260 return InvokeWithJValues(env, obj, mid, args).i;
Elliott Hughescdf53122011-08-19 15:46:09 -07001261 }
1262
1263 static jlong CallNonvirtualLongMethod(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001264 jobject obj, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001265 ScopedJniThreadState ts(env);
1266 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001267 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001268 JValue result = InvokeWithVarArgs(env, obj, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001269 va_end(ap);
1270 return result.j;
1271 }
1272
1273 static jlong CallNonvirtualLongMethodV(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001274 jobject obj, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001275 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001276 return InvokeWithVarArgs(env, obj, mid, args).j;
Elliott Hughescdf53122011-08-19 15:46:09 -07001277 }
1278
1279 static jlong CallNonvirtualLongMethodA(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001280 jobject obj, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001281 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001282 return InvokeWithJValues(env, obj, mid, args).j;
Elliott Hughescdf53122011-08-19 15:46:09 -07001283 }
1284
1285 static jfloat CallNonvirtualFloatMethod(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001286 jobject obj, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001287 ScopedJniThreadState ts(env);
1288 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001289 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001290 JValue result = InvokeWithVarArgs(env, obj, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001291 va_end(ap);
1292 return result.f;
1293 }
1294
1295 static jfloat CallNonvirtualFloatMethodV(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001296 jobject obj, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001297 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001298 return InvokeWithVarArgs(env, obj, mid, args).f;
Elliott Hughescdf53122011-08-19 15:46:09 -07001299 }
1300
1301 static jfloat CallNonvirtualFloatMethodA(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001302 jobject obj, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001303 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001304 return InvokeWithJValues(env, obj, mid, args).f;
Elliott Hughescdf53122011-08-19 15:46:09 -07001305 }
1306
1307 static jdouble CallNonvirtualDoubleMethod(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001308 jobject obj, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001309 ScopedJniThreadState ts(env);
1310 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001311 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001312 JValue result = InvokeWithVarArgs(env, obj, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001313 va_end(ap);
1314 return result.d;
1315 }
1316
1317 static jdouble CallNonvirtualDoubleMethodV(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001318 jobject obj, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001319 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001320 return InvokeWithVarArgs(env, obj, mid, args).d;
Elliott Hughescdf53122011-08-19 15:46:09 -07001321 }
1322
1323 static jdouble CallNonvirtualDoubleMethodA(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001324 jobject obj, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001325 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001326 return InvokeWithJValues(env, obj, mid, args).d;
Elliott Hughescdf53122011-08-19 15:46:09 -07001327 }
1328
1329 static void CallNonvirtualVoidMethod(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001330 jobject obj, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001331 ScopedJniThreadState ts(env);
1332 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001333 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001334 InvokeWithVarArgs(env, obj, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001335 va_end(ap);
1336 }
1337
1338 static void CallNonvirtualVoidMethodV(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001339 jobject obj, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001340 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001341 InvokeWithVarArgs(env, obj, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -07001342 }
1343
1344 static void CallNonvirtualVoidMethodA(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001345 jobject obj, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001346 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001347 InvokeWithJValues(env, obj, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -07001348 }
1349
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -07001350 static jfieldID GetFieldID(JNIEnv* env, jclass c, const char* name, const char* sig) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001351 ScopedJniThreadState ts(env);
1352 return FindFieldID(ts, c, name, sig, false);
1353 }
Carl Shapiroea4dca82011-08-01 13:45:38 -07001354
1355
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -07001356 static jfieldID GetStaticFieldID(JNIEnv* env, jclass c, const char* name, const char* sig) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001357 ScopedJniThreadState ts(env);
1358 return FindFieldID(ts, c, name, sig, true);
1359 }
Carl Shapiroea4dca82011-08-01 13:45:38 -07001360
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001361 static jobject GetObjectField(JNIEnv* env, jobject obj, jfieldID fid) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001362 ScopedJniThreadState ts(env);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001363 Object* o = Decode<Object*>(ts, obj);
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -07001364 Field* f = DecodeField(fid);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001365 return AddLocalReference<jobject>(env, f->GetObject(o));
Elliott Hughescdf53122011-08-19 15:46:09 -07001366 }
Carl Shapiroea4dca82011-08-01 13:45:38 -07001367
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001368 static jobject GetStaticObjectField(JNIEnv* env, jclass, jfieldID fid) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001369 ScopedJniThreadState ts(env);
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -07001370 Field* f = DecodeField(fid);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001371 return AddLocalReference<jobject>(env, f->GetObject(NULL));
Elliott Hughescdf53122011-08-19 15:46:09 -07001372 }
1373
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001374 static void SetObjectField(JNIEnv* env, jobject java_object, jfieldID fid, jobject java_value) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001375 ScopedJniThreadState ts(env);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001376 Object* o = Decode<Object*>(ts, java_object);
1377 Object* v = Decode<Object*>(ts, java_value);
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -07001378 Field* f = DecodeField(fid);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001379 f->SetObject(o, v);
Elliott Hughescdf53122011-08-19 15:46:09 -07001380 }
1381
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001382 static void SetStaticObjectField(JNIEnv* env, jclass, jfieldID fid, jobject java_value) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001383 ScopedJniThreadState ts(env);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001384 Object* v = Decode<Object*>(ts, java_value);
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -07001385 Field* f = DecodeField(fid);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001386 f->SetObject(NULL, v);
Elliott Hughescdf53122011-08-19 15:46:09 -07001387 }
1388
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001389#define GET_PRIMITIVE_FIELD(fn, instance) \
1390 ScopedJniThreadState ts(env); \
1391 Object* o = Decode<Object*>(ts, instance); \
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -07001392 Field* f = DecodeField(fid); \
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001393 return f->fn(o)
1394
1395#define SET_PRIMITIVE_FIELD(fn, instance, value) \
1396 ScopedJniThreadState ts(env); \
1397 Object* o = Decode<Object*>(ts, instance); \
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -07001398 Field* f = DecodeField(fid); \
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001399 f->fn(o, value)
1400
1401 static jboolean GetBooleanField(JNIEnv* env, jobject obj, jfieldID fid) {
1402 GET_PRIMITIVE_FIELD(GetBoolean, obj);
Elliott Hughescdf53122011-08-19 15:46:09 -07001403 }
1404
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001405 static jbyte GetByteField(JNIEnv* env, jobject obj, jfieldID fid) {
1406 GET_PRIMITIVE_FIELD(GetByte, obj);
Elliott Hughescdf53122011-08-19 15:46:09 -07001407 }
1408
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001409 static jchar GetCharField(JNIEnv* env, jobject obj, jfieldID fid) {
1410 GET_PRIMITIVE_FIELD(GetChar, obj);
Elliott Hughescdf53122011-08-19 15:46:09 -07001411 }
1412
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001413 static jshort GetShortField(JNIEnv* env, jobject obj, jfieldID fid) {
1414 GET_PRIMITIVE_FIELD(GetShort, obj);
Elliott Hughescdf53122011-08-19 15:46:09 -07001415 }
1416
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001417 static jint GetIntField(JNIEnv* env, jobject obj, jfieldID fid) {
1418 GET_PRIMITIVE_FIELD(GetInt, obj);
Elliott Hughescdf53122011-08-19 15:46:09 -07001419 }
1420
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001421 static jlong GetLongField(JNIEnv* env, jobject obj, jfieldID fid) {
1422 GET_PRIMITIVE_FIELD(GetLong, obj);
Elliott Hughescdf53122011-08-19 15:46:09 -07001423 }
1424
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001425 static jfloat GetFloatField(JNIEnv* env, jobject obj, jfieldID fid) {
1426 GET_PRIMITIVE_FIELD(GetFloat, obj);
Elliott Hughescdf53122011-08-19 15:46:09 -07001427 }
1428
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001429 static jdouble GetDoubleField(JNIEnv* env, jobject obj, jfieldID fid) {
1430 GET_PRIMITIVE_FIELD(GetDouble, obj);
Elliott Hughescdf53122011-08-19 15:46:09 -07001431 }
1432
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001433 static jboolean GetStaticBooleanField(JNIEnv* env, jclass clazz, jfieldID fid) {
1434 GET_PRIMITIVE_FIELD(GetBoolean, NULL);
Elliott Hughescdf53122011-08-19 15:46:09 -07001435 }
1436
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001437 static jbyte GetStaticByteField(JNIEnv* env, jclass clazz, jfieldID fid) {
1438 GET_PRIMITIVE_FIELD(GetByte, NULL);
Elliott Hughescdf53122011-08-19 15:46:09 -07001439 }
1440
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001441 static jchar GetStaticCharField(JNIEnv* env, jclass clazz, jfieldID fid) {
1442 GET_PRIMITIVE_FIELD(GetChar, NULL);
Elliott Hughescdf53122011-08-19 15:46:09 -07001443 }
1444
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001445 static jshort GetStaticShortField(JNIEnv* env, jclass clazz, jfieldID fid) {
1446 GET_PRIMITIVE_FIELD(GetShort, NULL);
Elliott Hughescdf53122011-08-19 15:46:09 -07001447 }
1448
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001449 static jint GetStaticIntField(JNIEnv* env, jclass clazz, jfieldID fid) {
1450 GET_PRIMITIVE_FIELD(GetInt, NULL);
Elliott Hughescdf53122011-08-19 15:46:09 -07001451 }
1452
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001453 static jlong GetStaticLongField(JNIEnv* env, jclass clazz, jfieldID fid) {
1454 GET_PRIMITIVE_FIELD(GetLong, NULL);
1455 }
1456
1457 static jfloat GetStaticFloatField(JNIEnv* env, jclass clazz, jfieldID fid) {
1458 GET_PRIMITIVE_FIELD(GetFloat, NULL);
1459 }
1460
1461 static jdouble GetStaticDoubleField(JNIEnv* env, jclass clazz, jfieldID fid) {
1462 GET_PRIMITIVE_FIELD(GetDouble, NULL);
1463 }
1464
1465 static void SetBooleanField(JNIEnv* env, jobject obj, jfieldID fid, jboolean v) {
1466 SET_PRIMITIVE_FIELD(SetBoolean, obj, v);
1467 }
1468
1469 static void SetByteField(JNIEnv* env, jobject obj, jfieldID fid, jbyte v) {
1470 SET_PRIMITIVE_FIELD(SetByte, obj, v);
1471 }
1472
1473 static void SetCharField(JNIEnv* env, jobject obj, jfieldID fid, jchar v) {
1474 SET_PRIMITIVE_FIELD(SetChar, obj, v);
1475 }
1476
1477 static void SetFloatField(JNIEnv* env, jobject obj, jfieldID fid, jfloat v) {
1478 SET_PRIMITIVE_FIELD(SetFloat, obj, v);
1479 }
1480
1481 static void SetDoubleField(JNIEnv* env, jobject obj, jfieldID fid, jdouble v) {
1482 SET_PRIMITIVE_FIELD(SetDouble, obj, v);
1483 }
1484
1485 static void SetIntField(JNIEnv* env, jobject obj, jfieldID fid, jint v) {
1486 SET_PRIMITIVE_FIELD(SetInt, obj, v);
1487 }
1488
1489 static void SetLongField(JNIEnv* env, jobject obj, jfieldID fid, jlong v) {
1490 SET_PRIMITIVE_FIELD(SetLong, obj, v);
1491 }
1492
1493 static void SetShortField(JNIEnv* env, jobject obj, jfieldID fid, jshort v) {
1494 SET_PRIMITIVE_FIELD(SetShort, obj, v);
1495 }
1496
1497 static void SetStaticBooleanField(JNIEnv* env, jclass, jfieldID fid, jboolean v) {
1498 SET_PRIMITIVE_FIELD(SetBoolean, NULL, v);
1499 }
1500
1501 static void SetStaticByteField(JNIEnv* env, jclass, jfieldID fid, jbyte v) {
1502 SET_PRIMITIVE_FIELD(SetByte, NULL, v);
1503 }
1504
1505 static void SetStaticCharField(JNIEnv* env, jclass, jfieldID fid, jchar v) {
1506 SET_PRIMITIVE_FIELD(SetChar, NULL, v);
1507 }
1508
1509 static void SetStaticFloatField(JNIEnv* env, jclass, jfieldID fid, jfloat v) {
1510 SET_PRIMITIVE_FIELD(SetFloat, NULL, v);
1511 }
1512
1513 static void SetStaticDoubleField(JNIEnv* env, jclass, jfieldID fid, jdouble v) {
1514 SET_PRIMITIVE_FIELD(SetDouble, NULL, v);
1515 }
1516
1517 static void SetStaticIntField(JNIEnv* env, jclass, jfieldID fid, jint v) {
1518 SET_PRIMITIVE_FIELD(SetInt, NULL, v);
1519 }
1520
1521 static void SetStaticLongField(JNIEnv* env, jclass, jfieldID fid, jlong v) {
1522 SET_PRIMITIVE_FIELD(SetLong, NULL, v);
1523 }
1524
1525 static void SetStaticShortField(JNIEnv* env, jclass, jfieldID fid, jshort v) {
1526 SET_PRIMITIVE_FIELD(SetShort, NULL, v);
Elliott Hughescdf53122011-08-19 15:46:09 -07001527 }
1528
Elliott Hughes418d20f2011-09-22 14:00:39 -07001529 static jobject CallStaticObjectMethod(JNIEnv* env, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001530 ScopedJniThreadState ts(env);
1531 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001532 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001533 JValue result = InvokeWithVarArgs(env, NULL, mid, ap);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001534 jobject local_result = AddLocalReference<jobject>(env, result.l);
Elliott Hughescdf53122011-08-19 15:46:09 -07001535 va_end(ap);
1536 return local_result;
1537 }
1538
Elliott Hughes418d20f2011-09-22 14:00:39 -07001539 static jobject CallStaticObjectMethodV(JNIEnv* env, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001540 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001541 JValue result = InvokeWithVarArgs(env, NULL, mid, args);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001542 return AddLocalReference<jobject>(env, result.l);
Elliott Hughescdf53122011-08-19 15:46:09 -07001543 }
1544
Elliott Hughes418d20f2011-09-22 14:00:39 -07001545 static jobject CallStaticObjectMethodA(JNIEnv* env, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001546 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001547 JValue result = InvokeWithJValues(env, NULL, mid, args);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001548 return AddLocalReference<jobject>(env, result.l);
Elliott Hughescdf53122011-08-19 15:46:09 -07001549 }
1550
Elliott Hughes418d20f2011-09-22 14:00:39 -07001551 static jboolean CallStaticBooleanMethod(JNIEnv* env, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001552 ScopedJniThreadState ts(env);
1553 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001554 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001555 JValue result = InvokeWithVarArgs(env, NULL, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001556 va_end(ap);
1557 return result.z;
1558 }
1559
Elliott Hughes418d20f2011-09-22 14:00:39 -07001560 static jboolean CallStaticBooleanMethodV(JNIEnv* env, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001561 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001562 return InvokeWithVarArgs(env, NULL, mid, args).z;
Elliott Hughescdf53122011-08-19 15:46:09 -07001563 }
1564
Elliott Hughes418d20f2011-09-22 14:00:39 -07001565 static jboolean CallStaticBooleanMethodA(JNIEnv* env, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001566 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001567 return InvokeWithJValues(env, NULL, mid, args).z;
Elliott Hughescdf53122011-08-19 15:46:09 -07001568 }
1569
Elliott Hughes72025e52011-08-23 17:50:30 -07001570 static jbyte CallStaticByteMethod(JNIEnv* env, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001571 ScopedJniThreadState ts(env);
1572 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001573 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001574 JValue result = InvokeWithVarArgs(env, NULL, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001575 va_end(ap);
1576 return result.b;
1577 }
1578
Elliott Hughes418d20f2011-09-22 14:00:39 -07001579 static jbyte CallStaticByteMethodV(JNIEnv* env, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001580 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001581 return InvokeWithVarArgs(env, NULL, mid, args).b;
Elliott Hughescdf53122011-08-19 15:46:09 -07001582 }
1583
Elliott Hughes418d20f2011-09-22 14:00:39 -07001584 static jbyte CallStaticByteMethodA(JNIEnv* env, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001585 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001586 return InvokeWithJValues(env, NULL, mid, args).b;
Elliott Hughescdf53122011-08-19 15:46:09 -07001587 }
1588
Elliott Hughes72025e52011-08-23 17:50:30 -07001589 static jchar CallStaticCharMethod(JNIEnv* env, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001590 ScopedJniThreadState ts(env);
1591 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001592 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001593 JValue result = InvokeWithVarArgs(env, NULL, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001594 va_end(ap);
1595 return result.c;
1596 }
1597
Elliott Hughes418d20f2011-09-22 14:00:39 -07001598 static jchar CallStaticCharMethodV(JNIEnv* env, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001599 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001600 return InvokeWithVarArgs(env, NULL, mid, args).c;
Elliott Hughescdf53122011-08-19 15:46:09 -07001601 }
1602
Elliott Hughes418d20f2011-09-22 14:00:39 -07001603 static jchar CallStaticCharMethodA(JNIEnv* env, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001604 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001605 return InvokeWithJValues(env, NULL, mid, args).c;
Elliott Hughescdf53122011-08-19 15:46:09 -07001606 }
1607
Elliott Hughes72025e52011-08-23 17:50:30 -07001608 static jshort CallStaticShortMethod(JNIEnv* env, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001609 ScopedJniThreadState ts(env);
1610 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001611 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001612 JValue result = InvokeWithVarArgs(env, NULL, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001613 va_end(ap);
1614 return result.s;
1615 }
1616
Elliott Hughes418d20f2011-09-22 14:00:39 -07001617 static jshort CallStaticShortMethodV(JNIEnv* env, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001618 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001619 return InvokeWithVarArgs(env, NULL, mid, args).s;
Elliott Hughescdf53122011-08-19 15:46:09 -07001620 }
1621
Elliott Hughes418d20f2011-09-22 14:00:39 -07001622 static jshort CallStaticShortMethodA(JNIEnv* env, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001623 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001624 return InvokeWithJValues(env, NULL, mid, args).s;
Elliott Hughescdf53122011-08-19 15:46:09 -07001625 }
1626
Elliott Hughes72025e52011-08-23 17:50:30 -07001627 static jint CallStaticIntMethod(JNIEnv* env, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001628 ScopedJniThreadState ts(env);
1629 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001630 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001631 JValue result = InvokeWithVarArgs(env, NULL, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001632 va_end(ap);
1633 return result.i;
1634 }
1635
Elliott Hughes418d20f2011-09-22 14:00:39 -07001636 static jint CallStaticIntMethodV(JNIEnv* env, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001637 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001638 return InvokeWithVarArgs(env, NULL, mid, args).i;
Elliott Hughescdf53122011-08-19 15:46:09 -07001639 }
1640
Elliott Hughes418d20f2011-09-22 14:00:39 -07001641 static jint CallStaticIntMethodA(JNIEnv* env, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001642 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001643 return InvokeWithJValues(env, NULL, mid, args).i;
Elliott Hughescdf53122011-08-19 15:46:09 -07001644 }
1645
Elliott Hughes72025e52011-08-23 17:50:30 -07001646 static jlong CallStaticLongMethod(JNIEnv* env, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001647 ScopedJniThreadState ts(env);
1648 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001649 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001650 JValue result = InvokeWithVarArgs(env, NULL, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001651 va_end(ap);
1652 return result.j;
1653 }
1654
Elliott Hughes418d20f2011-09-22 14:00:39 -07001655 static jlong CallStaticLongMethodV(JNIEnv* env, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001656 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001657 return InvokeWithVarArgs(env, NULL, mid, args).j;
Elliott Hughescdf53122011-08-19 15:46:09 -07001658 }
1659
Elliott Hughes418d20f2011-09-22 14:00:39 -07001660 static jlong CallStaticLongMethodA(JNIEnv* env, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001661 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001662 return InvokeWithJValues(env, NULL, mid, args).j;
Elliott Hughescdf53122011-08-19 15:46:09 -07001663 }
1664
Elliott Hughes72025e52011-08-23 17:50:30 -07001665 static jfloat CallStaticFloatMethod(JNIEnv* env, jclass cls, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001666 ScopedJniThreadState ts(env);
1667 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001668 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001669 JValue result = InvokeWithVarArgs(env, NULL, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001670 va_end(ap);
1671 return result.f;
1672 }
1673
Elliott Hughes418d20f2011-09-22 14:00:39 -07001674 static jfloat CallStaticFloatMethodV(JNIEnv* env, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001675 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001676 return InvokeWithVarArgs(env, NULL, mid, args).f;
Elliott Hughescdf53122011-08-19 15:46:09 -07001677 }
1678
Elliott Hughes418d20f2011-09-22 14:00:39 -07001679 static jfloat CallStaticFloatMethodA(JNIEnv* env, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001680 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001681 return InvokeWithJValues(env, NULL, mid, args).f;
Elliott Hughescdf53122011-08-19 15:46:09 -07001682 }
1683
Elliott Hughes72025e52011-08-23 17:50:30 -07001684 static jdouble CallStaticDoubleMethod(JNIEnv* env, jclass cls, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001685 ScopedJniThreadState ts(env);
1686 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001687 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001688 JValue result = InvokeWithVarArgs(env, NULL, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001689 va_end(ap);
1690 return result.d;
1691 }
1692
Elliott Hughes418d20f2011-09-22 14:00:39 -07001693 static jdouble CallStaticDoubleMethodV(JNIEnv* env, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001694 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001695 return InvokeWithVarArgs(env, NULL, mid, args).d;
Elliott Hughescdf53122011-08-19 15:46:09 -07001696 }
1697
Elliott Hughes418d20f2011-09-22 14:00:39 -07001698 static jdouble CallStaticDoubleMethodA(JNIEnv* env, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001699 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001700 return InvokeWithJValues(env, NULL, mid, args).d;
Elliott Hughescdf53122011-08-19 15:46:09 -07001701 }
1702
Elliott Hughes72025e52011-08-23 17:50:30 -07001703 static void CallStaticVoidMethod(JNIEnv* env, jclass cls, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001704 ScopedJniThreadState ts(env);
1705 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001706 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001707 InvokeWithVarArgs(env, NULL, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001708 va_end(ap);
1709 }
1710
Elliott Hughes418d20f2011-09-22 14:00:39 -07001711 static void CallStaticVoidMethodV(JNIEnv* env, jclass cls, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001712 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001713 InvokeWithVarArgs(env, NULL, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -07001714 }
1715
Elliott Hughes418d20f2011-09-22 14:00:39 -07001716 static void CallStaticVoidMethodA(JNIEnv* env, jclass cls, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001717 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001718 InvokeWithJValues(env, NULL, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -07001719 }
1720
Elliott Hughes814e4032011-08-23 12:07:56 -07001721 static jstring NewString(JNIEnv* env, const jchar* chars, jsize char_count) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001722 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07001723 if (chars == NULL && char_count == 0) {
1724 return NULL;
1725 }
1726 String* result = String::AllocFromUtf16(char_count, chars);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001727 return AddLocalReference<jstring>(env, result);
Elliott Hughescdf53122011-08-19 15:46:09 -07001728 }
1729
1730 static jstring NewStringUTF(JNIEnv* env, const char* utf) {
1731 ScopedJniThreadState ts(env);
1732 if (utf == NULL) {
1733 return NULL;
1734 }
1735 String* result = String::AllocFromModifiedUtf8(utf);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001736 return AddLocalReference<jstring>(env, result);
Elliott Hughescdf53122011-08-19 15:46:09 -07001737 }
1738
Elliott Hughes814e4032011-08-23 12:07:56 -07001739 static jsize GetStringLength(JNIEnv* env, jstring java_string) {
1740 ScopedJniThreadState ts(env);
1741 return Decode<String*>(ts, java_string)->GetLength();
1742 }
1743
1744 static jsize GetStringUTFLength(JNIEnv* env, jstring java_string) {
1745 ScopedJniThreadState ts(env);
1746 return Decode<String*>(ts, java_string)->GetUtfLength();
1747 }
1748
Elliott Hughesb465ab02011-08-24 11:21:21 -07001749 static void GetStringRegion(JNIEnv* env, jstring java_string, jsize start, jsize length, jchar* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001750 ScopedJniThreadState ts(env);
Elliott Hughesb465ab02011-08-24 11:21:21 -07001751 String* s = Decode<String*>(ts, java_string);
1752 if (start < 0 || length < 0 || start + length > s->GetLength()) {
1753 ThrowSIOOBE(ts, start, length, s->GetLength());
1754 } else {
1755 const jchar* chars = s->GetCharArray()->GetData() + s->GetOffset();
1756 memcpy(buf, chars + start, length * sizeof(jchar));
1757 }
Elliott Hughes814e4032011-08-23 12:07:56 -07001758 }
1759
Elliott Hughesb465ab02011-08-24 11:21:21 -07001760 static void GetStringUTFRegion(JNIEnv* env, jstring java_string, jsize start, jsize length, char* buf) {
Elliott Hughes814e4032011-08-23 12:07:56 -07001761 ScopedJniThreadState ts(env);
Elliott Hughesb465ab02011-08-24 11:21:21 -07001762 String* s = Decode<String*>(ts, java_string);
1763 if (start < 0 || length < 0 || start + length > s->GetLength()) {
1764 ThrowSIOOBE(ts, start, length, s->GetLength());
1765 } else {
1766 const jchar* chars = s->GetCharArray()->GetData() + s->GetOffset();
1767 ConvertUtf16ToModifiedUtf8(buf, chars + start, length);
1768 }
Elliott Hughes814e4032011-08-23 12:07:56 -07001769 }
1770
Elliott Hughes75770752011-08-24 17:52:38 -07001771 static const jchar* GetStringChars(JNIEnv* env, jstring java_string, jboolean* is_copy) {
Elliott Hughes814e4032011-08-23 12:07:56 -07001772 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001773 String* s = Decode<String*>(ts, java_string);
1774 const CharArray* chars = s->GetCharArray();
1775 PinPrimitiveArray(ts, chars);
1776 if (is_copy != NULL) {
1777 *is_copy = JNI_FALSE;
1778 }
1779 return chars->GetData() + s->GetOffset();
Elliott Hughes814e4032011-08-23 12:07:56 -07001780 }
1781
Elliott Hughes75770752011-08-24 17:52:38 -07001782 static void ReleaseStringChars(JNIEnv* env, jstring java_string, const jchar* chars) {
Elliott Hughes814e4032011-08-23 12:07:56 -07001783 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001784 UnpinPrimitiveArray(ts, Decode<String*>(ts, java_string)->GetCharArray());
Elliott Hughescdf53122011-08-19 15:46:09 -07001785 }
1786
Elliott Hughes75770752011-08-24 17:52:38 -07001787 static const jchar* GetStringCritical(JNIEnv* env, jstring java_string, jboolean* is_copy) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001788 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001789 return GetStringChars(env, java_string, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07001790 }
1791
Elliott Hughes75770752011-08-24 17:52:38 -07001792 static void ReleaseStringCritical(JNIEnv* env, jstring java_string, const jchar* chars) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001793 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001794 return ReleaseStringChars(env, java_string, chars);
Elliott Hughescdf53122011-08-19 15:46:09 -07001795 }
1796
Elliott Hughes75770752011-08-24 17:52:38 -07001797 static const char* GetStringUTFChars(JNIEnv* env, jstring java_string, jboolean* is_copy) {
Elliott Hughesb465ab02011-08-24 11:21:21 -07001798 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001799 if (java_string == NULL) {
1800 return NULL;
1801 }
1802 if (is_copy != NULL) {
1803 *is_copy = JNI_TRUE;
1804 }
1805 String* s = Decode<String*>(ts, java_string);
1806 size_t byte_count = s->GetUtfLength();
1807 char* bytes = new char[byte_count + 1];
Elliott Hughes418dfe72011-10-06 18:56:27 -07001808 CHECK(bytes != NULL); // bionic aborts anyway.
Elliott Hughes75770752011-08-24 17:52:38 -07001809 const uint16_t* chars = s->GetCharArray()->GetData() + s->GetOffset();
1810 ConvertUtf16ToModifiedUtf8(bytes, chars, s->GetLength());
1811 bytes[byte_count] = '\0';
1812 return bytes;
Elliott Hughesb465ab02011-08-24 11:21:21 -07001813 }
1814
Elliott Hughes75770752011-08-24 17:52:38 -07001815 static void ReleaseStringUTFChars(JNIEnv* env, jstring, const char* chars) {
Elliott Hughesb465ab02011-08-24 11:21:21 -07001816 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001817 delete[] chars;
Elliott Hughesb465ab02011-08-24 11:21:21 -07001818 }
1819
Elliott Hughesbd935992011-08-22 11:59:34 -07001820 static jsize GetArrayLength(JNIEnv* env, jarray java_array) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001821 ScopedJniThreadState ts(env);
Elliott Hughesbd935992011-08-22 11:59:34 -07001822 Object* obj = Decode<Object*>(ts, java_array);
Brian Carlstromb63ec392011-08-27 17:38:27 -07001823 CHECK(obj->IsArrayInstance()); // TODO: ReportJniError
Elliott Hughesbd935992011-08-22 11:59:34 -07001824 Array* array = obj->AsArray();
1825 return array->GetLength();
Elliott Hughescdf53122011-08-19 15:46:09 -07001826 }
1827
Elliott Hughes814e4032011-08-23 12:07:56 -07001828 static jobject GetObjectArrayElement(JNIEnv* env, jobjectArray java_array, jsize index) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001829 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07001830 ObjectArray<Object>* array = Decode<ObjectArray<Object>*>(ts, java_array);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001831 return AddLocalReference<jobject>(env, array->Get(index));
Elliott Hughescdf53122011-08-19 15:46:09 -07001832 }
1833
1834 static void SetObjectArrayElement(JNIEnv* env,
1835 jobjectArray java_array, jsize index, jobject java_value) {
1836 ScopedJniThreadState ts(env);
1837 ObjectArray<Object>* array = Decode<ObjectArray<Object>*>(ts, java_array);
1838 Object* value = Decode<Object*>(ts, java_value);
1839 array->Set(index, value);
1840 }
1841
1842 static jbooleanArray NewBooleanArray(JNIEnv* env, jsize length) {
1843 ScopedJniThreadState ts(env);
1844 return NewPrimitiveArray<jbooleanArray, BooleanArray>(ts, length);
1845 }
1846
1847 static jbyteArray NewByteArray(JNIEnv* env, jsize length) {
1848 ScopedJniThreadState ts(env);
1849 return NewPrimitiveArray<jbyteArray, ByteArray>(ts, length);
1850 }
1851
1852 static jcharArray NewCharArray(JNIEnv* env, jsize length) {
1853 ScopedJniThreadState ts(env);
1854 return NewPrimitiveArray<jcharArray, CharArray>(ts, length);
1855 }
1856
1857 static jdoubleArray NewDoubleArray(JNIEnv* env, jsize length) {
1858 ScopedJniThreadState ts(env);
1859 return NewPrimitiveArray<jdoubleArray, DoubleArray>(ts, length);
1860 }
1861
1862 static jfloatArray NewFloatArray(JNIEnv* env, jsize length) {
1863 ScopedJniThreadState ts(env);
1864 return NewPrimitiveArray<jfloatArray, FloatArray>(ts, length);
1865 }
1866
1867 static jintArray NewIntArray(JNIEnv* env, jsize length) {
1868 ScopedJniThreadState ts(env);
1869 return NewPrimitiveArray<jintArray, IntArray>(ts, length);
1870 }
1871
1872 static jlongArray NewLongArray(JNIEnv* env, jsize length) {
1873 ScopedJniThreadState ts(env);
1874 return NewPrimitiveArray<jlongArray, LongArray>(ts, length);
1875 }
1876
1877 static jobjectArray NewObjectArray(JNIEnv* env, jsize length, jclass element_jclass, jobject initial_element) {
1878 ScopedJniThreadState ts(env);
1879 CHECK_GE(length, 0); // TODO: ReportJniError
1880
1881 // Compute the array class corresponding to the given element class.
1882 Class* element_class = Decode<Class*>(ts, element_jclass);
1883 std::string descriptor;
1884 descriptor += "[";
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001885 descriptor += element_class->GetDescriptor()->ToModifiedUtf8();
Elliott Hughescdf53122011-08-19 15:46:09 -07001886
1887 // Find the class.
Elliott Hughes75770752011-08-24 17:52:38 -07001888 ScopedLocalRef<jclass> java_array_class(env, FindClass(env, descriptor.c_str()));
1889 if (java_array_class.get() == NULL) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001890 return NULL;
1891 }
1892
Elliott Hughes75770752011-08-24 17:52:38 -07001893 // Allocate and initialize if necessary.
1894 Class* array_class = Decode<Class*>(ts, java_array_class.get());
Elliott Hughescdf53122011-08-19 15:46:09 -07001895 ObjectArray<Object>* result = ObjectArray<Object>::Alloc(array_class, length);
Elliott Hughes75770752011-08-24 17:52:38 -07001896 if (initial_element != NULL) {
1897 Object* initial_object = Decode<Object*>(ts, initial_element);
1898 for (jsize i = 0; i < length; ++i) {
1899 result->Set(i, initial_object);
1900 }
1901 }
Elliott Hughesbf86d042011-08-31 17:53:14 -07001902 return AddLocalReference<jobjectArray>(env, result);
Elliott Hughescdf53122011-08-19 15:46:09 -07001903 }
1904
1905 static jshortArray NewShortArray(JNIEnv* env, jsize length) {
1906 ScopedJniThreadState ts(env);
1907 return NewPrimitiveArray<jshortArray, ShortArray>(ts, length);
1908 }
1909
Elliott Hughes75770752011-08-24 17:52:38 -07001910 static void* GetPrimitiveArrayCritical(JNIEnv* env, jarray array, jboolean* is_copy) {
Elliott Hughesb465ab02011-08-24 11:21:21 -07001911 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001912 return GetPrimitiveArray<jarray, jbyte*, ByteArray>(ts, array, is_copy);
Elliott Hughesb465ab02011-08-24 11:21:21 -07001913 }
1914
Elliott Hughes75770752011-08-24 17:52:38 -07001915 static void ReleasePrimitiveArrayCritical(JNIEnv* env, jarray array, void* data, jint mode) {
Elliott Hughesb465ab02011-08-24 11:21:21 -07001916 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001917 ReleasePrimitiveArray(ts, array, mode);
Elliott Hughesb465ab02011-08-24 11:21:21 -07001918 }
1919
Elliott Hughes75770752011-08-24 17:52:38 -07001920 static jboolean* GetBooleanArrayElements(JNIEnv* env, jbooleanArray array, jboolean* is_copy) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001921 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001922 return GetPrimitiveArray<jbooleanArray, jboolean*, BooleanArray>(ts, array, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07001923 }
1924
Elliott Hughes75770752011-08-24 17:52:38 -07001925 static jbyte* GetByteArrayElements(JNIEnv* env, jbyteArray array, jboolean* is_copy) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001926 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001927 return GetPrimitiveArray<jbyteArray, jbyte*, ByteArray>(ts, array, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07001928 }
1929
Elliott Hughes75770752011-08-24 17:52:38 -07001930 static jchar* GetCharArrayElements(JNIEnv* env, jcharArray array, jboolean* is_copy) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001931 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001932 return GetPrimitiveArray<jcharArray, jchar*, CharArray>(ts, array, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07001933 }
1934
Elliott Hughes75770752011-08-24 17:52:38 -07001935 static jdouble* GetDoubleArrayElements(JNIEnv* env, jdoubleArray array, jboolean* is_copy) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001936 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001937 return GetPrimitiveArray<jdoubleArray, jdouble*, DoubleArray>(ts, array, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07001938 }
1939
Elliott Hughes75770752011-08-24 17:52:38 -07001940 static jfloat* GetFloatArrayElements(JNIEnv* env, jfloatArray array, jboolean* is_copy) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001941 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001942 return GetPrimitiveArray<jfloatArray, jfloat*, FloatArray>(ts, array, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07001943 }
1944
Elliott Hughes75770752011-08-24 17:52:38 -07001945 static jint* GetIntArrayElements(JNIEnv* env, jintArray array, jboolean* is_copy) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001946 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001947 return GetPrimitiveArray<jintArray, jint*, IntArray>(ts, array, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07001948 }
1949
Elliott Hughes75770752011-08-24 17:52:38 -07001950 static jlong* GetLongArrayElements(JNIEnv* env, jlongArray array, jboolean* is_copy) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001951 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001952 return GetPrimitiveArray<jlongArray, jlong*, LongArray>(ts, array, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07001953 }
1954
Elliott Hughes75770752011-08-24 17:52:38 -07001955 static jshort* GetShortArrayElements(JNIEnv* env, jshortArray array, jboolean* is_copy) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001956 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001957 return GetPrimitiveArray<jshortArray, jshort*, ShortArray>(ts, array, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07001958 }
1959
Elliott Hughes75770752011-08-24 17:52:38 -07001960 static void ReleaseBooleanArrayElements(JNIEnv* env, jbooleanArray array, jboolean* data, jint mode) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001961 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001962 ReleasePrimitiveArray(ts, array, mode);
Elliott Hughescdf53122011-08-19 15:46:09 -07001963 }
1964
Elliott Hughes75770752011-08-24 17:52:38 -07001965 static void ReleaseByteArrayElements(JNIEnv* env, jbyteArray array, jbyte* data, jint mode) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001966 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001967 ReleasePrimitiveArray(ts, array, mode);
Elliott Hughescdf53122011-08-19 15:46:09 -07001968 }
1969
Elliott Hughes75770752011-08-24 17:52:38 -07001970 static void ReleaseCharArrayElements(JNIEnv* env, jcharArray array, jchar* data, jint mode) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001971 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001972 ReleasePrimitiveArray(ts, array, mode);
Elliott Hughescdf53122011-08-19 15:46:09 -07001973 }
1974
Elliott Hughes75770752011-08-24 17:52:38 -07001975 static void ReleaseDoubleArrayElements(JNIEnv* env, jdoubleArray array, jdouble* data, jint mode) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001976 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001977 ReleasePrimitiveArray(ts, array, mode);
Elliott Hughescdf53122011-08-19 15:46:09 -07001978 }
1979
Elliott Hughes75770752011-08-24 17:52:38 -07001980 static void ReleaseFloatArrayElements(JNIEnv* env, jfloatArray array, jfloat* data, jint mode) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001981 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001982 ReleasePrimitiveArray(ts, array, mode);
Elliott Hughescdf53122011-08-19 15:46:09 -07001983 }
1984
Elliott Hughes75770752011-08-24 17:52:38 -07001985 static void ReleaseIntArrayElements(JNIEnv* env, jintArray array, jint* data, jint mode) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001986 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001987 ReleasePrimitiveArray(ts, array, mode);
Elliott Hughescdf53122011-08-19 15:46:09 -07001988 }
1989
Elliott Hughes75770752011-08-24 17:52:38 -07001990 static void ReleaseLongArrayElements(JNIEnv* env, jlongArray array, jlong* data, jint mode) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001991 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001992 ReleasePrimitiveArray(ts, array, mode);
Elliott Hughescdf53122011-08-19 15:46:09 -07001993 }
1994
Elliott Hughes75770752011-08-24 17:52:38 -07001995 static void ReleaseShortArrayElements(JNIEnv* env, jshortArray array, jshort* data, jint mode) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001996 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001997 ReleasePrimitiveArray(ts, array, mode);
Elliott Hughescdf53122011-08-19 15:46:09 -07001998 }
1999
Elliott Hughes814e4032011-08-23 12:07:56 -07002000 static void GetBooleanArrayRegion(JNIEnv* env, jbooleanArray array, jsize start, jsize length, jboolean* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002001 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002002 GetPrimitiveArrayRegion<jbooleanArray, jboolean, BooleanArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002003 }
2004
Elliott Hughes814e4032011-08-23 12:07:56 -07002005 static void GetByteArrayRegion(JNIEnv* env, jbyteArray array, jsize start, jsize length, jbyte* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002006 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002007 GetPrimitiveArrayRegion<jbyteArray, jbyte, ByteArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002008 }
2009
Elliott Hughes814e4032011-08-23 12:07:56 -07002010 static void GetCharArrayRegion(JNIEnv* env, jcharArray array, jsize start, jsize length, jchar* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002011 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002012 GetPrimitiveArrayRegion<jcharArray, jchar, CharArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002013 }
2014
Elliott Hughes814e4032011-08-23 12:07:56 -07002015 static void GetDoubleArrayRegion(JNIEnv* env, jdoubleArray array, jsize start, jsize length, jdouble* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002016 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002017 GetPrimitiveArrayRegion<jdoubleArray, jdouble, DoubleArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002018 }
2019
Elliott Hughes814e4032011-08-23 12:07:56 -07002020 static void GetFloatArrayRegion(JNIEnv* env, jfloatArray array, jsize start, jsize length, jfloat* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002021 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002022 GetPrimitiveArrayRegion<jfloatArray, jfloat, FloatArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002023 }
2024
Elliott Hughes814e4032011-08-23 12:07:56 -07002025 static void GetIntArrayRegion(JNIEnv* env, jintArray array, jsize start, jsize length, jint* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002026 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002027 GetPrimitiveArrayRegion<jintArray, jint, IntArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002028 }
2029
Elliott Hughes814e4032011-08-23 12:07:56 -07002030 static void GetLongArrayRegion(JNIEnv* env, jlongArray array, jsize start, jsize length, jlong* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002031 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002032 GetPrimitiveArrayRegion<jlongArray, jlong, LongArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002033 }
2034
Elliott Hughes814e4032011-08-23 12:07:56 -07002035 static void GetShortArrayRegion(JNIEnv* env, jshortArray array, jsize start, jsize length, jshort* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002036 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002037 GetPrimitiveArrayRegion<jshortArray, jshort, ShortArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002038 }
2039
Elliott Hughes814e4032011-08-23 12:07:56 -07002040 static void SetBooleanArrayRegion(JNIEnv* env, jbooleanArray array, jsize start, jsize length, const jboolean* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002041 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002042 SetPrimitiveArrayRegion<jbooleanArray, jboolean, BooleanArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002043 }
2044
Elliott Hughes814e4032011-08-23 12:07:56 -07002045 static void SetByteArrayRegion(JNIEnv* env, jbyteArray array, jsize start, jsize length, const jbyte* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002046 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002047 SetPrimitiveArrayRegion<jbyteArray, jbyte, ByteArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002048 }
2049
Elliott Hughes814e4032011-08-23 12:07:56 -07002050 static void SetCharArrayRegion(JNIEnv* env, jcharArray array, jsize start, jsize length, const jchar* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002051 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002052 SetPrimitiveArrayRegion<jcharArray, jchar, CharArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002053 }
2054
Elliott Hughes814e4032011-08-23 12:07:56 -07002055 static void SetDoubleArrayRegion(JNIEnv* env, jdoubleArray array, jsize start, jsize length, const jdouble* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002056 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002057 SetPrimitiveArrayRegion<jdoubleArray, jdouble, DoubleArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002058 }
2059
Elliott Hughes814e4032011-08-23 12:07:56 -07002060 static void SetFloatArrayRegion(JNIEnv* env, jfloatArray array, jsize start, jsize length, const jfloat* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002061 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002062 SetPrimitiveArrayRegion<jfloatArray, jfloat, FloatArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002063 }
2064
Elliott Hughes814e4032011-08-23 12:07:56 -07002065 static void SetIntArrayRegion(JNIEnv* env, jintArray array, jsize start, jsize length, const jint* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002066 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002067 SetPrimitiveArrayRegion<jintArray, jint, IntArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002068 }
2069
Elliott Hughes814e4032011-08-23 12:07:56 -07002070 static void SetLongArrayRegion(JNIEnv* env, jlongArray array, jsize start, jsize length, const jlong* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002071 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002072 SetPrimitiveArrayRegion<jlongArray, jlong, LongArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002073 }
2074
Elliott Hughes814e4032011-08-23 12:07:56 -07002075 static void SetShortArrayRegion(JNIEnv* env, jshortArray array, jsize start, jsize length, const jshort* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002076 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002077 SetPrimitiveArrayRegion<jshortArray, jshort, ShortArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002078 }
2079
Elliott Hughes5174fe62011-08-23 15:12:35 -07002080 static jint RegisterNatives(JNIEnv* env, jclass java_class, const JNINativeMethod* methods, jint method_count) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002081 ScopedJniThreadState ts(env);
Elliott Hughes5174fe62011-08-23 15:12:35 -07002082 Class* c = Decode<Class*>(ts, java_class);
2083
Elliott Hughes5174fe62011-08-23 15:12:35 -07002084 for (int i = 0; i < method_count; i++) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002085 const char* name = methods[i].name;
2086 const char* sig = methods[i].signature;
2087
2088 if (*sig == '!') {
2089 // TODO: fast jni. it's too noisy to log all these.
2090 ++sig;
2091 }
2092
Elliott Hughes5174fe62011-08-23 15:12:35 -07002093 Method* m = c->FindDirectMethod(name, sig);
2094 if (m == NULL) {
2095 m = c->FindVirtualMethod(name, sig);
Elliott Hughescdf53122011-08-19 15:46:09 -07002096 }
Elliott Hughes5174fe62011-08-23 15:12:35 -07002097 if (m == NULL) {
Elliott Hughes14134a12011-09-30 16:55:51 -07002098 ThrowNoSuchMethodError(ts, c, name, sig, "static or non-static");
Elliott Hughescdf53122011-08-19 15:46:09 -07002099 return JNI_ERR;
Elliott Hughes5174fe62011-08-23 15:12:35 -07002100 } else if (!m->IsNative()) {
Elliott Hughes14134a12011-09-30 16:55:51 -07002101 ThrowNoSuchMethodError(ts, c, name, sig, "native");
Elliott Hughescdf53122011-08-19 15:46:09 -07002102 return JNI_ERR;
2103 }
Elliott Hughes5174fe62011-08-23 15:12:35 -07002104
Elliott Hughes75770752011-08-24 17:52:38 -07002105 if (ts.Vm()->verbose_jni) {
Elliott Hughesa2501992011-08-26 19:39:54 -07002106 LOG(INFO) << "[Registering JNI native method " << PrettyMethod(m) << "]";
Elliott Hughes5174fe62011-08-23 15:12:35 -07002107 }
2108
2109 m->RegisterNative(methods[i].fnPtr);
Elliott Hughescdf53122011-08-19 15:46:09 -07002110 }
2111 return JNI_OK;
2112 }
2113
Elliott Hughes5174fe62011-08-23 15:12:35 -07002114 static jint UnregisterNatives(JNIEnv* env, jclass java_class) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002115 ScopedJniThreadState ts(env);
Elliott Hughes5174fe62011-08-23 15:12:35 -07002116 Class* c = Decode<Class*>(ts, java_class);
2117
Elliott Hughes75770752011-08-24 17:52:38 -07002118 if (ts.Vm()->verbose_jni) {
Elliott Hughes54e7df12011-09-16 11:47:04 -07002119 LOG(INFO) << "[Unregistering JNI native methods for " << PrettyClass(c) << "]";
Elliott Hughes5174fe62011-08-23 15:12:35 -07002120 }
2121
2122 for (size_t i = 0; i < c->NumDirectMethods(); ++i) {
2123 Method* m = c->GetDirectMethod(i);
2124 if (m->IsNative()) {
2125 m->UnregisterNative();
2126 }
2127 }
2128 for (size_t i = 0; i < c->NumVirtualMethods(); ++i) {
2129 Method* m = c->GetVirtualMethod(i);
2130 if (m->IsNative()) {
2131 m->UnregisterNative();
2132 }
2133 }
2134
2135 return JNI_OK;
Elliott Hughescdf53122011-08-19 15:46:09 -07002136 }
2137
Elliott Hughes72025e52011-08-23 17:50:30 -07002138 static jint MonitorEnter(JNIEnv* env, jobject java_object) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002139 ScopedJniThreadState ts(env);
Elliott Hughes5f791332011-09-15 17:45:30 -07002140 Decode<Object*>(ts, java_object)->MonitorEnter(ts.Self());
Elliott Hughes72025e52011-08-23 17:50:30 -07002141 return ts.Self()->IsExceptionPending() ? JNI_ERR : JNI_OK;
Elliott Hughescdf53122011-08-19 15:46:09 -07002142 }
2143
Elliott Hughes72025e52011-08-23 17:50:30 -07002144 static jint MonitorExit(JNIEnv* env, jobject java_object) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002145 ScopedJniThreadState ts(env);
Elliott Hughes5f791332011-09-15 17:45:30 -07002146 Decode<Object*>(ts, java_object)->MonitorExit(ts.Self());
Elliott Hughes72025e52011-08-23 17:50:30 -07002147 return ts.Self()->IsExceptionPending() ? JNI_ERR : JNI_OK;
Elliott Hughescdf53122011-08-19 15:46:09 -07002148 }
2149
2150 static jint GetJavaVM(JNIEnv* env, JavaVM** vm) {
2151 ScopedJniThreadState ts(env);
2152 Runtime* runtime = Runtime::Current();
2153 if (runtime != NULL) {
Elliott Hughes69f5bc62011-08-24 09:26:14 -07002154 *vm = runtime->GetJavaVM();
Elliott Hughescdf53122011-08-19 15:46:09 -07002155 } else {
2156 *vm = NULL;
2157 }
2158 return (*vm != NULL) ? JNI_OK : JNI_ERR;
2159 }
2160
Elliott Hughescdf53122011-08-19 15:46:09 -07002161 static jobject NewDirectByteBuffer(JNIEnv* env, void* address, jlong capacity) {
2162 ScopedJniThreadState ts(env);
Elliott Hughesb465ab02011-08-24 11:21:21 -07002163
2164 // The address may not be NULL, and the capacity must be > 0.
Elliott Hughes75770752011-08-24 17:52:38 -07002165 CHECK(address != NULL); // TODO: ReportJniError
2166 CHECK_GT(capacity, 0); // TODO: ReportJniError
Elliott Hughesb465ab02011-08-24 11:21:21 -07002167
2168 jclass buffer_class = GetDirectByteBufferClass(env);
2169 jmethodID mid = env->GetMethodID(buffer_class, "<init>", "(II)V");
2170 if (mid == NULL) {
2171 return NULL;
2172 }
2173
2174 // At the moment, the Java side is limited to 32 bits.
2175 CHECK_LE(reinterpret_cast<uintptr_t>(address), 0xffffffff);
2176 CHECK_LE(capacity, 0xffffffff);
2177 jint address_arg = reinterpret_cast<jint>(address);
2178 jint capacity_arg = static_cast<jint>(capacity);
2179
2180 jobject result = env->NewObject(buffer_class, mid, address_arg, capacity_arg);
2181 return ts.Self()->IsExceptionPending() ? NULL : result;
Elliott Hughescdf53122011-08-19 15:46:09 -07002182 }
2183
Elliott Hughesb465ab02011-08-24 11:21:21 -07002184 static void* GetDirectBufferAddress(JNIEnv* env, jobject java_buffer) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002185 ScopedJniThreadState ts(env);
Elliott Hughesb465ab02011-08-24 11:21:21 -07002186 static jfieldID fid = env->GetFieldID(GetDirectByteBufferClass(env), "effectiveDirectAddress", "I");
2187 return reinterpret_cast<void*>(env->GetIntField(java_buffer, fid));
Elliott Hughescdf53122011-08-19 15:46:09 -07002188 }
2189
Elliott Hughesb465ab02011-08-24 11:21:21 -07002190 static jlong GetDirectBufferCapacity(JNIEnv* env, jobject java_buffer) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002191 ScopedJniThreadState ts(env);
Elliott Hughesb465ab02011-08-24 11:21:21 -07002192 static jfieldID fid = env->GetFieldID(GetDirectByteBufferClass(env), "capacity", "I");
2193 return static_cast<jlong>(env->GetIntField(java_buffer, fid));
Elliott Hughescdf53122011-08-19 15:46:09 -07002194 }
2195
Elliott Hughesb465ab02011-08-24 11:21:21 -07002196 static jobjectRefType GetObjectRefType(JNIEnv* env, jobject java_object) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002197 ScopedJniThreadState ts(env);
Elliott Hughesb465ab02011-08-24 11:21:21 -07002198
Elliott Hughes75770752011-08-24 17:52:38 -07002199 CHECK(java_object != NULL); // TODO: ReportJniError
Elliott Hughesb465ab02011-08-24 11:21:21 -07002200
2201 // Do we definitely know what kind of reference this is?
2202 IndirectRef ref = reinterpret_cast<IndirectRef>(java_object);
2203 IndirectRefKind kind = GetIndirectRefKind(ref);
2204 switch (kind) {
2205 case kLocal:
2206 return JNILocalRefType;
2207 case kGlobal:
2208 return JNIGlobalRefType;
2209 case kWeakGlobal:
2210 return JNIWeakGlobalRefType;
2211 case kSirtOrInvalid:
2212 // Is it in a stack IRT?
2213 if (ts.Self()->SirtContains(java_object)) {
2214 return JNILocalRefType;
2215 }
2216
Elliott Hughesc5bfa8f2011-08-30 14:32:49 -07002217 if (!ts.Env()->work_around_app_jni_bugs) {
2218 return JNIInvalidRefType;
2219 }
2220
Elliott Hughesb465ab02011-08-24 11:21:21 -07002221 // If we're handing out direct pointers, check whether it's a direct pointer
2222 // to a local reference.
Elliott Hughesc5bfa8f2011-08-30 14:32:49 -07002223 if (Decode<Object*>(ts, java_object) == reinterpret_cast<Object*>(java_object)) {
Elliott Hughesb465ab02011-08-24 11:21:21 -07002224 if (ts.Env()->locals.Contains(java_object)) {
2225 return JNILocalRefType;
2226 }
2227 }
2228
2229 return JNIInvalidRefType;
2230 }
Elliott Hughescdf53122011-08-19 15:46:09 -07002231 }
2232};
Carl Shapiroea4dca82011-08-01 13:45:38 -07002233
Elliott Hughesa2501992011-08-26 19:39:54 -07002234const JNINativeInterface gNativeInterface = {
Carl Shapiroea4dca82011-08-01 13:45:38 -07002235 NULL, // reserved0.
2236 NULL, // reserved1.
2237 NULL, // reserved2.
2238 NULL, // reserved3.
Elliott Hughescdf53122011-08-19 15:46:09 -07002239 JNI::GetVersion,
2240 JNI::DefineClass,
2241 JNI::FindClass,
2242 JNI::FromReflectedMethod,
2243 JNI::FromReflectedField,
2244 JNI::ToReflectedMethod,
2245 JNI::GetSuperclass,
2246 JNI::IsAssignableFrom,
2247 JNI::ToReflectedField,
2248 JNI::Throw,
2249 JNI::ThrowNew,
2250 JNI::ExceptionOccurred,
2251 JNI::ExceptionDescribe,
2252 JNI::ExceptionClear,
2253 JNI::FatalError,
2254 JNI::PushLocalFrame,
2255 JNI::PopLocalFrame,
2256 JNI::NewGlobalRef,
2257 JNI::DeleteGlobalRef,
2258 JNI::DeleteLocalRef,
2259 JNI::IsSameObject,
2260 JNI::NewLocalRef,
2261 JNI::EnsureLocalCapacity,
2262 JNI::AllocObject,
2263 JNI::NewObject,
2264 JNI::NewObjectV,
2265 JNI::NewObjectA,
2266 JNI::GetObjectClass,
2267 JNI::IsInstanceOf,
2268 JNI::GetMethodID,
2269 JNI::CallObjectMethod,
2270 JNI::CallObjectMethodV,
2271 JNI::CallObjectMethodA,
2272 JNI::CallBooleanMethod,
2273 JNI::CallBooleanMethodV,
2274 JNI::CallBooleanMethodA,
2275 JNI::CallByteMethod,
2276 JNI::CallByteMethodV,
2277 JNI::CallByteMethodA,
2278 JNI::CallCharMethod,
2279 JNI::CallCharMethodV,
2280 JNI::CallCharMethodA,
2281 JNI::CallShortMethod,
2282 JNI::CallShortMethodV,
2283 JNI::CallShortMethodA,
2284 JNI::CallIntMethod,
2285 JNI::CallIntMethodV,
2286 JNI::CallIntMethodA,
2287 JNI::CallLongMethod,
2288 JNI::CallLongMethodV,
2289 JNI::CallLongMethodA,
2290 JNI::CallFloatMethod,
2291 JNI::CallFloatMethodV,
2292 JNI::CallFloatMethodA,
2293 JNI::CallDoubleMethod,
2294 JNI::CallDoubleMethodV,
2295 JNI::CallDoubleMethodA,
2296 JNI::CallVoidMethod,
2297 JNI::CallVoidMethodV,
2298 JNI::CallVoidMethodA,
2299 JNI::CallNonvirtualObjectMethod,
2300 JNI::CallNonvirtualObjectMethodV,
2301 JNI::CallNonvirtualObjectMethodA,
2302 JNI::CallNonvirtualBooleanMethod,
2303 JNI::CallNonvirtualBooleanMethodV,
2304 JNI::CallNonvirtualBooleanMethodA,
2305 JNI::CallNonvirtualByteMethod,
2306 JNI::CallNonvirtualByteMethodV,
2307 JNI::CallNonvirtualByteMethodA,
2308 JNI::CallNonvirtualCharMethod,
2309 JNI::CallNonvirtualCharMethodV,
2310 JNI::CallNonvirtualCharMethodA,
2311 JNI::CallNonvirtualShortMethod,
2312 JNI::CallNonvirtualShortMethodV,
2313 JNI::CallNonvirtualShortMethodA,
2314 JNI::CallNonvirtualIntMethod,
2315 JNI::CallNonvirtualIntMethodV,
2316 JNI::CallNonvirtualIntMethodA,
2317 JNI::CallNonvirtualLongMethod,
2318 JNI::CallNonvirtualLongMethodV,
2319 JNI::CallNonvirtualLongMethodA,
2320 JNI::CallNonvirtualFloatMethod,
2321 JNI::CallNonvirtualFloatMethodV,
2322 JNI::CallNonvirtualFloatMethodA,
2323 JNI::CallNonvirtualDoubleMethod,
2324 JNI::CallNonvirtualDoubleMethodV,
2325 JNI::CallNonvirtualDoubleMethodA,
2326 JNI::CallNonvirtualVoidMethod,
2327 JNI::CallNonvirtualVoidMethodV,
2328 JNI::CallNonvirtualVoidMethodA,
2329 JNI::GetFieldID,
2330 JNI::GetObjectField,
2331 JNI::GetBooleanField,
2332 JNI::GetByteField,
2333 JNI::GetCharField,
2334 JNI::GetShortField,
2335 JNI::GetIntField,
2336 JNI::GetLongField,
2337 JNI::GetFloatField,
2338 JNI::GetDoubleField,
2339 JNI::SetObjectField,
2340 JNI::SetBooleanField,
2341 JNI::SetByteField,
2342 JNI::SetCharField,
2343 JNI::SetShortField,
2344 JNI::SetIntField,
2345 JNI::SetLongField,
2346 JNI::SetFloatField,
2347 JNI::SetDoubleField,
2348 JNI::GetStaticMethodID,
2349 JNI::CallStaticObjectMethod,
2350 JNI::CallStaticObjectMethodV,
2351 JNI::CallStaticObjectMethodA,
2352 JNI::CallStaticBooleanMethod,
2353 JNI::CallStaticBooleanMethodV,
2354 JNI::CallStaticBooleanMethodA,
2355 JNI::CallStaticByteMethod,
2356 JNI::CallStaticByteMethodV,
2357 JNI::CallStaticByteMethodA,
2358 JNI::CallStaticCharMethod,
2359 JNI::CallStaticCharMethodV,
2360 JNI::CallStaticCharMethodA,
2361 JNI::CallStaticShortMethod,
2362 JNI::CallStaticShortMethodV,
2363 JNI::CallStaticShortMethodA,
2364 JNI::CallStaticIntMethod,
2365 JNI::CallStaticIntMethodV,
2366 JNI::CallStaticIntMethodA,
2367 JNI::CallStaticLongMethod,
2368 JNI::CallStaticLongMethodV,
2369 JNI::CallStaticLongMethodA,
2370 JNI::CallStaticFloatMethod,
2371 JNI::CallStaticFloatMethodV,
2372 JNI::CallStaticFloatMethodA,
2373 JNI::CallStaticDoubleMethod,
2374 JNI::CallStaticDoubleMethodV,
2375 JNI::CallStaticDoubleMethodA,
2376 JNI::CallStaticVoidMethod,
2377 JNI::CallStaticVoidMethodV,
2378 JNI::CallStaticVoidMethodA,
2379 JNI::GetStaticFieldID,
2380 JNI::GetStaticObjectField,
2381 JNI::GetStaticBooleanField,
2382 JNI::GetStaticByteField,
2383 JNI::GetStaticCharField,
2384 JNI::GetStaticShortField,
2385 JNI::GetStaticIntField,
2386 JNI::GetStaticLongField,
2387 JNI::GetStaticFloatField,
2388 JNI::GetStaticDoubleField,
2389 JNI::SetStaticObjectField,
2390 JNI::SetStaticBooleanField,
2391 JNI::SetStaticByteField,
2392 JNI::SetStaticCharField,
2393 JNI::SetStaticShortField,
2394 JNI::SetStaticIntField,
2395 JNI::SetStaticLongField,
2396 JNI::SetStaticFloatField,
2397 JNI::SetStaticDoubleField,
2398 JNI::NewString,
2399 JNI::GetStringLength,
2400 JNI::GetStringChars,
2401 JNI::ReleaseStringChars,
2402 JNI::NewStringUTF,
2403 JNI::GetStringUTFLength,
2404 JNI::GetStringUTFChars,
2405 JNI::ReleaseStringUTFChars,
2406 JNI::GetArrayLength,
2407 JNI::NewObjectArray,
2408 JNI::GetObjectArrayElement,
2409 JNI::SetObjectArrayElement,
2410 JNI::NewBooleanArray,
2411 JNI::NewByteArray,
2412 JNI::NewCharArray,
2413 JNI::NewShortArray,
2414 JNI::NewIntArray,
2415 JNI::NewLongArray,
2416 JNI::NewFloatArray,
2417 JNI::NewDoubleArray,
2418 JNI::GetBooleanArrayElements,
2419 JNI::GetByteArrayElements,
2420 JNI::GetCharArrayElements,
2421 JNI::GetShortArrayElements,
2422 JNI::GetIntArrayElements,
2423 JNI::GetLongArrayElements,
2424 JNI::GetFloatArrayElements,
2425 JNI::GetDoubleArrayElements,
2426 JNI::ReleaseBooleanArrayElements,
2427 JNI::ReleaseByteArrayElements,
2428 JNI::ReleaseCharArrayElements,
2429 JNI::ReleaseShortArrayElements,
2430 JNI::ReleaseIntArrayElements,
2431 JNI::ReleaseLongArrayElements,
2432 JNI::ReleaseFloatArrayElements,
2433 JNI::ReleaseDoubleArrayElements,
2434 JNI::GetBooleanArrayRegion,
2435 JNI::GetByteArrayRegion,
2436 JNI::GetCharArrayRegion,
2437 JNI::GetShortArrayRegion,
2438 JNI::GetIntArrayRegion,
2439 JNI::GetLongArrayRegion,
2440 JNI::GetFloatArrayRegion,
2441 JNI::GetDoubleArrayRegion,
2442 JNI::SetBooleanArrayRegion,
2443 JNI::SetByteArrayRegion,
2444 JNI::SetCharArrayRegion,
2445 JNI::SetShortArrayRegion,
2446 JNI::SetIntArrayRegion,
2447 JNI::SetLongArrayRegion,
2448 JNI::SetFloatArrayRegion,
2449 JNI::SetDoubleArrayRegion,
2450 JNI::RegisterNatives,
2451 JNI::UnregisterNatives,
2452 JNI::MonitorEnter,
2453 JNI::MonitorExit,
2454 JNI::GetJavaVM,
2455 JNI::GetStringRegion,
2456 JNI::GetStringUTFRegion,
2457 JNI::GetPrimitiveArrayCritical,
2458 JNI::ReleasePrimitiveArrayCritical,
2459 JNI::GetStringCritical,
2460 JNI::ReleaseStringCritical,
2461 JNI::NewWeakGlobalRef,
2462 JNI::DeleteWeakGlobalRef,
2463 JNI::ExceptionCheck,
2464 JNI::NewDirectByteBuffer,
2465 JNI::GetDirectBufferAddress,
2466 JNI::GetDirectBufferCapacity,
2467 JNI::GetObjectRefType,
Carl Shapiroea4dca82011-08-01 13:45:38 -07002468};
2469
Elliott Hughes6c1a3942011-08-17 15:00:06 -07002470static const size_t kMonitorsInitial = 32; // Arbitrary.
2471static const size_t kMonitorsMax = 4096; // Arbitrary sanity check.
2472
2473static const size_t kLocalsInitial = 64; // Arbitrary.
2474static const size_t kLocalsMax = 512; // Arbitrary sanity check.
Elliott Hughesbbd76712011-08-17 10:25:24 -07002475
Elliott Hughes75770752011-08-24 17:52:38 -07002476JNIEnvExt::JNIEnvExt(Thread* self, JavaVMExt* vm)
Elliott Hughes69f5bc62011-08-24 09:26:14 -07002477 : self(self),
Elliott Hughes75770752011-08-24 17:52:38 -07002478 vm(vm),
Ian Rogers5a7a74a2011-09-26 16:32:29 -07002479 local_ref_cookie(IRT_FIRST_SEGMENT),
2480 locals(kLocalsInitial, kLocalsMax, kLocal),
Elliott Hughes75770752011-08-24 17:52:38 -07002481 check_jni(vm->check_jni),
Elliott Hughesc5bfa8f2011-08-30 14:32:49 -07002482 work_around_app_jni_bugs(vm->work_around_app_jni_bugs),
Elliott Hughesbbd76712011-08-17 10:25:24 -07002483 critical(false),
Ian Rogers5a7a74a2011-09-26 16:32:29 -07002484 monitors("monitors", kMonitorsInitial, kMonitorsMax) {
Elliott Hughesa2501992011-08-26 19:39:54 -07002485 functions = unchecked_functions = &gNativeInterface;
2486 if (check_jni) {
2487 functions = GetCheckJniNativeInterface();
2488 }
Ian Rogers5a7a74a2011-09-26 16:32:29 -07002489 // The JniEnv local reference values must be at a consistent offset or else cross-compilation
2490 // errors will ensue.
2491 CHECK_EQ(JNIEnvExt::LocalRefCookieOffset().Int32Value(), 12);
2492 CHECK_EQ(JNIEnvExt::SegmentStateOffset().Int32Value(), 16);
Elliott Hughes40ef99e2011-08-11 17:44:34 -07002493}
2494
Elliott Hughesc1674ed2011-08-25 18:09:09 -07002495JNIEnvExt::~JNIEnvExt() {
2496}
2497
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07002498void JNIEnvExt::DumpReferenceTables() {
2499 locals.Dump();
2500 monitors.Dump();
2501}
2502
Carl Shapiroea4dca82011-08-01 13:45:38 -07002503// JNI Invocation interface.
2504
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002505extern "C" jint JNI_CreateJavaVM(JavaVM** p_vm, void** p_env, void* vm_args) {
2506 const JavaVMInitArgs* args = static_cast<JavaVMInitArgs*>(vm_args);
2507 if (args->version < JNI_VERSION_1_2) {
2508 return JNI_EVERSION;
2509 }
2510 Runtime::Options options;
2511 for (int i = 0; i < args->nOptions; ++i) {
2512 JavaVMOption* option = &args->options[i];
Carl Shapirofc322c72011-07-27 00:20:01 -07002513 options.push_back(std::make_pair(StringPiece(option->optionString),
2514 option->extraInfo));
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002515 }
2516 bool ignore_unrecognized = args->ignoreUnrecognized;
Elliott Hughesf2682d52011-08-15 16:37:04 -07002517 Runtime* runtime = Runtime::Create(options, ignore_unrecognized);
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002518 if (runtime == NULL) {
2519 return JNI_ERR;
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002520 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07002521 runtime->Start();
2522 *p_env = Thread::Current()->GetJniEnv();
2523 *p_vm = runtime->GetJavaVM();
2524 return JNI_OK;
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002525}
2526
Elliott Hughesf2682d52011-08-15 16:37:04 -07002527extern "C" jint JNI_GetCreatedJavaVMs(JavaVM** vms, jsize, jsize* vm_count) {
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002528 Runtime* runtime = Runtime::Current();
2529 if (runtime == NULL) {
Elliott Hughesf2682d52011-08-15 16:37:04 -07002530 *vm_count = 0;
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002531 } else {
Elliott Hughesf2682d52011-08-15 16:37:04 -07002532 *vm_count = 1;
Elliott Hughes69f5bc62011-08-24 09:26:14 -07002533 vms[0] = runtime->GetJavaVM();
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002534 }
2535 return JNI_OK;
2536}
2537
2538// Historically unsupported.
2539extern "C" jint JNI_GetDefaultJavaVMInitArgs(void* vm_args) {
2540 return JNI_ERR;
2541}
2542
Elliott Hughescdf53122011-08-19 15:46:09 -07002543class JII {
2544 public:
2545 static jint DestroyJavaVM(JavaVM* vm) {
2546 if (vm == NULL) {
2547 return JNI_ERR;
2548 } else {
2549 JavaVMExt* raw_vm = reinterpret_cast<JavaVMExt*>(vm);
2550 delete raw_vm->runtime;
2551 return JNI_OK;
2552 }
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002553 }
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002554
Elliott Hughescdf53122011-08-19 15:46:09 -07002555 static jint AttachCurrentThread(JavaVM* vm, JNIEnv** p_env, void* thr_args) {
Elliott Hughes75770752011-08-24 17:52:38 -07002556 return JII_AttachCurrentThread(vm, p_env, thr_args, false);
Elliott Hughescdf53122011-08-19 15:46:09 -07002557 }
2558
2559 static jint AttachCurrentThreadAsDaemon(JavaVM* vm, JNIEnv** p_env, void* thr_args) {
Elliott Hughes75770752011-08-24 17:52:38 -07002560 return JII_AttachCurrentThread(vm, p_env, thr_args, true);
Elliott Hughescdf53122011-08-19 15:46:09 -07002561 }
2562
2563 static jint DetachCurrentThread(JavaVM* vm) {
2564 if (vm == NULL) {
2565 return JNI_ERR;
2566 } else {
2567 JavaVMExt* raw_vm = reinterpret_cast<JavaVMExt*>(vm);
2568 Runtime* runtime = raw_vm->runtime;
2569 runtime->DetachCurrentThread();
2570 return JNI_OK;
2571 }
2572 }
2573
2574 static jint GetEnv(JavaVM* vm, void** env, jint version) {
2575 if (version < JNI_VERSION_1_1 || version > JNI_VERSION_1_6) {
2576 return JNI_EVERSION;
2577 }
2578 if (vm == NULL || env == NULL) {
2579 return JNI_ERR;
2580 }
2581 Thread* thread = Thread::Current();
2582 if (thread == NULL) {
2583 *env = NULL;
2584 return JNI_EDETACHED;
2585 }
2586 *env = thread->GetJniEnv();
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002587 return JNI_OK;
2588 }
Elliott Hughescdf53122011-08-19 15:46:09 -07002589};
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002590
Elliott Hughesa2501992011-08-26 19:39:54 -07002591const JNIInvokeInterface gInvokeInterface = {
Carl Shapiroea4dca82011-08-01 13:45:38 -07002592 NULL, // reserved0
2593 NULL, // reserved1
2594 NULL, // reserved2
Elliott Hughescdf53122011-08-19 15:46:09 -07002595 JII::DestroyJavaVM,
2596 JII::AttachCurrentThread,
2597 JII::DetachCurrentThread,
2598 JII::GetEnv,
2599 JII::AttachCurrentThreadAsDaemon
Carl Shapiroea4dca82011-08-01 13:45:38 -07002600};
2601
Elliott Hughesbbd76712011-08-17 10:25:24 -07002602static const size_t kPinTableInitialSize = 16;
2603static const size_t kPinTableMaxSize = 1024;
2604
Elliott Hughes6c1a3942011-08-17 15:00:06 -07002605static const size_t kGlobalsInitial = 512; // Arbitrary.
2606static const size_t kGlobalsMax = 51200; // Arbitrary sanity check.
2607
2608static const size_t kWeakGlobalsInitial = 16; // Arbitrary.
2609static const size_t kWeakGlobalsMax = 51200; // Arbitrary sanity check.
2610
Elliott Hughesa0957642011-09-02 14:27:33 -07002611JavaVMExt::JavaVMExt(Runtime* runtime, Runtime::ParsedOptions* options)
Elliott Hughes69f5bc62011-08-24 09:26:14 -07002612 : runtime(runtime),
Elliott Hughesa2501992011-08-26 19:39:54 -07002613 check_jni_abort_hook(NULL),
Elliott Hughesa0957642011-09-02 14:27:33 -07002614 check_jni(options->check_jni_),
Elliott Hughesc5bfa8f2011-08-30 14:32:49 -07002615 force_copy(false), // TODO: add a way to enable this
Elliott Hughesa0957642011-09-02 14:27:33 -07002616 verbose_jni(options->IsVerbose("jni")),
2617 log_third_party_jni(options->IsVerbose("third-party-jni")),
2618 trace(options->jni_trace_),
Elliott Hughesc5bfa8f2011-08-30 14:32:49 -07002619 work_around_app_jni_bugs(false), // TODO: add a way to enable this
Elliott Hughes8daa0922011-09-11 13:46:25 -07002620 pins_lock("JNI pin table lock"),
Elliott Hughes6c1a3942011-08-17 15:00:06 -07002621 pin_table("pin table", kPinTableInitialSize, kPinTableMaxSize),
Elliott Hughes8daa0922011-09-11 13:46:25 -07002622 globals_lock("JNI global reference table lock"),
Elliott Hughes6c1a3942011-08-17 15:00:06 -07002623 globals(kGlobalsInitial, kGlobalsMax, kGlobal),
Elliott Hughes8daa0922011-09-11 13:46:25 -07002624 weak_globals_lock("JNI weak global reference table lock"),
Elliott Hughes79082e32011-08-25 12:07:32 -07002625 weak_globals(kWeakGlobalsInitial, kWeakGlobalsMax, kWeakGlobal),
Elliott Hughes8daa0922011-09-11 13:46:25 -07002626 libraries_lock("JNI shared libraries map lock"),
Elliott Hughes79082e32011-08-25 12:07:32 -07002627 libraries(new Libraries) {
Elliott Hughesa2501992011-08-26 19:39:54 -07002628 functions = unchecked_functions = &gInvokeInterface;
2629 if (check_jni) {
2630 functions = GetCheckJniInvokeInterface();
2631 }
Elliott Hughesf2682d52011-08-15 16:37:04 -07002632}
2633
Elliott Hughesde69d7f2011-08-18 16:49:37 -07002634JavaVMExt::~JavaVMExt() {
Elliott Hughes79082e32011-08-25 12:07:32 -07002635 delete libraries;
Elliott Hughesde69d7f2011-08-18 16:49:37 -07002636}
2637
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07002638void JavaVMExt::DumpReferenceTables() {
2639 {
2640 MutexLock mu(globals_lock);
2641 globals.Dump();
2642 }
2643 {
2644 MutexLock mu(weak_globals_lock);
2645 weak_globals.Dump();
2646 }
2647 {
2648 MutexLock mu(pins_lock);
2649 pin_table.Dump();
2650 }
2651}
2652
Elliott Hughes75770752011-08-24 17:52:38 -07002653bool JavaVMExt::LoadNativeLibrary(const std::string& path, ClassLoader* class_loader, std::string& detail) {
2654 detail.clear();
Elliott Hughescdf53122011-08-19 15:46:09 -07002655
2656 // See if we've already loaded this library. If we have, and the class loader
2657 // matches, return successfully without doing anything.
Elliott Hughes75770752011-08-24 17:52:38 -07002658 // TODO: for better results we should canonicalize the pathname (or even compare
2659 // inodes). This implementation is fine if everybody is using System.loadLibrary.
Elliott Hughes79082e32011-08-25 12:07:32 -07002660 SharedLibrary* library;
2661 {
2662 // TODO: move the locking (and more of this logic) into Libraries.
2663 MutexLock mu(libraries_lock);
2664 library = libraries->Get(path);
2665 }
Elliott Hughescdf53122011-08-19 15:46:09 -07002666 if (library != NULL) {
2667 if (library->GetClassLoader() != class_loader) {
Elliott Hughes75770752011-08-24 17:52:38 -07002668 // The library will be associated with class_loader. The JNI
2669 // spec says we can't load the same library into more than one
2670 // class loader.
2671 StringAppendF(&detail, "Shared library \"%s\" already opened by "
2672 "ClassLoader %p; can't open in ClassLoader %p",
2673 path.c_str(), library->GetClassLoader(), class_loader);
2674 LOG(WARNING) << detail;
Elliott Hughescdf53122011-08-19 15:46:09 -07002675 return false;
2676 }
2677 if (verbose_jni) {
2678 LOG(INFO) << "[Shared library \"" << path << "\" already loaded in "
2679 << "ClassLoader " << class_loader << "]";
2680 }
2681 if (!library->CheckOnLoadResult(this)) {
Elliott Hughes75770752011-08-24 17:52:38 -07002682 StringAppendF(&detail, "JNI_OnLoad failed on a previous attempt "
2683 "to load \"%s\"", path.c_str());
Elliott Hughescdf53122011-08-19 15:46:09 -07002684 return false;
2685 }
2686 return true;
2687 }
2688
2689 // Open the shared library. Because we're using a full path, the system
2690 // doesn't have to search through LD_LIBRARY_PATH. (It may do so to
2691 // resolve this library's dependencies though.)
2692
2693 // Failures here are expected when java.library.path has several entries
2694 // and we have to hunt for the lib.
2695
2696 // The current version of the dynamic linker prints detailed information
2697 // about dlopen() failures. Some things to check if the message is
2698 // cryptic:
2699 // - make sure the library exists on the device
2700 // - verify that the right path is being opened (the debug log message
2701 // above can help with that)
2702 // - check to see if the library is valid (e.g. not zero bytes long)
2703 // - check config/prelink-linux-arm.map to ensure that the library
2704 // is listed and is not being overrun by the previous entry (if
2705 // loading suddenly stops working on a prelinked library, this is
2706 // a good one to check)
2707 // - write a trivial app that calls sleep() then dlopen(), attach
2708 // to it with "strace -p <pid>" while it sleeps, and watch for
2709 // attempts to open nonexistent dependent shared libs
2710
2711 // TODO: automate some of these checks!
2712
2713 // This can execute slowly for a large library on a busy system, so we
Elliott Hughes93e74e82011-09-13 11:07:03 -07002714 // want to switch from kRunnable to kVmWait while it executes. This allows
Elliott Hughescdf53122011-08-19 15:46:09 -07002715 // the GC to ignore us.
2716 Thread* self = Thread::Current();
Elliott Hughesad7c2a32011-08-31 11:58:10 -07002717 void* handle = NULL;
2718 {
Elliott Hughes93e74e82011-09-13 11:07:03 -07002719 ScopedThreadStateChange tsc(self, Thread::kVmWait);
Elliott Hughesad7c2a32011-08-31 11:58:10 -07002720 handle = dlopen(path.c_str(), RTLD_LAZY);
2721 }
Elliott Hughescdf53122011-08-19 15:46:09 -07002722
2723 if (verbose_jni) {
2724 LOG(INFO) << "[Call to dlopen(\"" << path << "\") returned " << handle << "]";
2725 }
2726
2727 if (handle == NULL) {
Elliott Hughes75770752011-08-24 17:52:38 -07002728 detail = dlerror();
Elliott Hughescdf53122011-08-19 15:46:09 -07002729 return false;
2730 }
2731
2732 // Create a new entry.
Elliott Hughescdf53122011-08-19 15:46:09 -07002733 {
Elliott Hughes79082e32011-08-25 12:07:32 -07002734 // TODO: move the locking (and more of this logic) into Libraries.
2735 MutexLock mu(libraries_lock);
2736 library = libraries->Get(path);
2737 if (library != NULL) {
2738 LOG(INFO) << "WOW: we lost a race to add shared library: "
2739 << "\"" << path << "\" ClassLoader=" << class_loader;
2740 return library->CheckOnLoadResult(this);
Elliott Hughescdf53122011-08-19 15:46:09 -07002741 }
Elliott Hughes79082e32011-08-25 12:07:32 -07002742 library = new SharedLibrary(path, handle, class_loader);
2743 libraries->Put(path, library);
Elliott Hughescdf53122011-08-19 15:46:09 -07002744 }
Elliott Hughes79082e32011-08-25 12:07:32 -07002745
2746 if (verbose_jni) {
2747 LOG(INFO) << "[Added shared library \"" << path << "\" for ClassLoader " << class_loader << "]";
2748 }
2749
2750 bool result = true;
2751 void* sym = dlsym(handle, "JNI_OnLoad");
2752 if (sym == NULL) {
2753 if (verbose_jni) {
2754 LOG(INFO) << "[No JNI_OnLoad found in \"" << path << "\"]";
2755 }
2756 } else {
2757 // Call JNI_OnLoad. We have to override the current class
2758 // loader, which will always be "null" since the stuff at the
2759 // top of the stack is around Runtime.loadLibrary(). (See
2760 // the comments in the JNI FindClass function.)
2761 typedef int (*JNI_OnLoadFn)(JavaVM*, void*);
2762 JNI_OnLoadFn jni_on_load = reinterpret_cast<JNI_OnLoadFn>(sym);
Brian Carlstrombffb1552011-08-25 12:23:53 -07002763 const ClassLoader* old_class_loader = self->GetClassLoaderOverride();
Elliott Hughes79082e32011-08-25 12:07:32 -07002764 self->SetClassLoaderOverride(class_loader);
2765
Elliott Hughesad7c2a32011-08-31 11:58:10 -07002766 int version = 0;
2767 {
2768 ScopedThreadStateChange tsc(self, Thread::kNative);
2769 if (verbose_jni) {
2770 LOG(INFO) << "[Calling JNI_OnLoad in \"" << path << "\"]";
2771 }
2772 version = (*jni_on_load)(this, NULL);
Elliott Hughes79082e32011-08-25 12:07:32 -07002773 }
Elliott Hughes79082e32011-08-25 12:07:32 -07002774
Brian Carlstromaded5f72011-10-07 17:15:04 -07002775 self->SetClassLoaderOverride(old_class_loader);
Elliott Hughes79082e32011-08-25 12:07:32 -07002776
2777 if (version != JNI_VERSION_1_2 &&
2778 version != JNI_VERSION_1_4 &&
2779 version != JNI_VERSION_1_6) {
2780 LOG(WARNING) << "JNI_OnLoad in \"" << path << "\" returned "
2781 << "bad version: " << version;
2782 // It's unwise to call dlclose() here, but we can mark it
2783 // as bad and ensure that future load attempts will fail.
2784 // We don't know how far JNI_OnLoad got, so there could
2785 // be some partially-initialized stuff accessible through
2786 // newly-registered native method calls. We could try to
2787 // unregister them, but that doesn't seem worthwhile.
2788 result = false;
2789 } else {
2790 if (verbose_jni) {
2791 LOG(INFO) << "[Returned " << (result ? "successfully" : "failure")
2792 << " from JNI_OnLoad in \"" << path << "\"]";
2793 }
2794 }
2795 }
2796
2797 library->SetResult(result);
2798 return result;
2799}
2800
2801void* JavaVMExt::FindCodeForNativeMethod(Method* m) {
2802 CHECK(m->IsNative());
2803
2804 Class* c = m->GetDeclaringClass();
2805
2806 // If this is a static method, it could be called before the class
2807 // has been initialized.
2808 if (m->IsStatic()) {
Brian Carlstrom25c33252011-09-18 15:58:35 -07002809 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(c, true)) {
Elliott Hughes79082e32011-08-25 12:07:32 -07002810 return NULL;
2811 }
2812 } else {
Elliott Hughes2a20cfd2011-09-23 19:30:41 -07002813 CHECK(c->GetStatus() >= Class::kStatusInitializing) << c->GetStatus() << " " << PrettyMethod(m);
Elliott Hughes79082e32011-08-25 12:07:32 -07002814 }
2815
Brian Carlstrom16192862011-09-12 17:50:06 -07002816 std::string detail;
2817 void* native_method;
2818 {
2819 MutexLock mu(libraries_lock);
2820 native_method = libraries->FindNativeMethod(m, detail);
2821 }
2822 // throwing can cause libraries_lock to be reacquired
2823 if (native_method == NULL) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002824 Thread::Current()->ThrowNewException("Ljava/lang/UnsatisfiedLinkError;", detail.c_str());
Brian Carlstrom16192862011-09-12 17:50:06 -07002825 }
2826 return native_method;
Elliott Hughescdf53122011-08-19 15:46:09 -07002827}
2828
Elliott Hughes410c0c82011-09-01 17:58:25 -07002829void JavaVMExt::VisitRoots(Heap::RootVisitor* visitor, void* arg) {
2830 {
2831 MutexLock mu(globals_lock);
2832 globals.VisitRoots(visitor, arg);
2833 }
2834 {
2835 MutexLock mu(pins_lock);
2836 pin_table.VisitRoots(visitor, arg);
2837 }
2838 // The weak_globals table is visited by the GC itself (because it mutates the table).
2839}
2840
Ian Rogersdf20fe02011-07-20 20:34:16 -07002841} // namespace art
Elliott Hughesb465ab02011-08-24 11:21:21 -07002842
2843std::ostream& operator<<(std::ostream& os, const jobjectRefType& rhs) {
2844 switch (rhs) {
2845 case JNIInvalidRefType:
2846 os << "JNIInvalidRefType";
2847 return os;
2848 case JNILocalRefType:
2849 os << "JNILocalRefType";
2850 return os;
2851 case JNIGlobalRefType:
2852 os << "JNIGlobalRefType";
2853 return os;
2854 case JNIWeakGlobalRefType:
2855 os << "JNIWeakGlobalRefType";
2856 return os;
2857 }
2858}