blob: f6de593017de9583ea278db5818cd26e97731d57 [file] [log] [blame]
Ian Rogers8b2c0b92013-09-19 02:56:49 -07001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Andreas Gampe277ccbd2014-11-03 21:36:10 -080017#include "java_lang_DexCache.h"
18
Ian Rogers8b2c0b92013-09-19 02:56:49 -070019#include "dex_file.h"
Andreas Gampea5b09a62016-11-17 15:21:22 -080020#include "dex_file_types.h"
Ian Rogers68d8b422014-07-17 11:09:10 -070021#include "jni_internal.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070022#include "mirror/class-inl.h"
Vladimir Marko3481ba22015-04-13 12:22:36 +010023#include "mirror/dex_cache-inl.h"
Ian Rogers8b2c0b92013-09-19 02:56:49 -070024#include "mirror/object-inl.h"
Mathieu Chartier0795f232016-09-27 18:43:30 -070025#include "scoped_fast_native_object_access-inl.h"
Ian Rogers8b2c0b92013-09-19 02:56:49 -070026#include "well_known_classes.h"
27
28namespace art {
29
30static jobject DexCache_getDexNative(JNIEnv* env, jobject javaDexCache) {
Ian Rogers1eb512d2013-10-18 15:42:20 -070031 ScopedFastNativeObjectAccess soa(env);
Mathieu Chartier0795f232016-09-27 18:43:30 -070032 ObjPtr<mirror::DexCache> dex_cache = soa.Decode<mirror::DexCache>(javaDexCache);
Ian Rogers8b2c0b92013-09-19 02:56:49 -070033 // Should only be called while holding the lock on the dex cache.
Ian Rogersd9c4fc92013-10-01 19:45:43 -070034 DCHECK_EQ(dex_cache->GetLockOwnerThreadId(), soa.Self()->GetThreadId());
Ian Rogers8b2c0b92013-09-19 02:56:49 -070035 const DexFile* dex_file = dex_cache->GetDexFile();
Mathieu Chartier2cebb242015-04-21 16:50:40 -070036 if (dex_file == nullptr) {
37 return nullptr;
Ian Rogers8b2c0b92013-09-19 02:56:49 -070038 }
39 void* address = const_cast<void*>(reinterpret_cast<const void*>(dex_file->Begin()));
40 jobject byte_buffer = env->NewDirectByteBuffer(address, dex_file->Size());
Mathieu Chartier2cebb242015-04-21 16:50:40 -070041 if (byte_buffer == nullptr) {
Ian Rogers8b2c0b92013-09-19 02:56:49 -070042 DCHECK(soa.Self()->IsExceptionPending());
Mathieu Chartier2cebb242015-04-21 16:50:40 -070043 return nullptr;
Ian Rogers8b2c0b92013-09-19 02:56:49 -070044 }
45
46 jvalue args[1];
47 args[0].l = byte_buffer;
48 return env->CallStaticObjectMethodA(WellKnownClasses::com_android_dex_Dex,
49 WellKnownClasses::com_android_dex_Dex_create,
50 args);
51}
52
Vladimir Markoc1363122015-04-09 14:13:13 +010053static jobject DexCache_getResolvedType(JNIEnv* env, jobject javaDexCache, jint type_index) {
54 ScopedFastNativeObjectAccess soa(env);
Mathieu Chartier0795f232016-09-27 18:43:30 -070055 ObjPtr<mirror::DexCache> dex_cache = soa.Decode<mirror::DexCache>(javaDexCache);
Vladimir Marko05792b92015-08-03 11:56:49 +010056 CHECK_LT(static_cast<size_t>(type_index), dex_cache->NumResolvedTypes());
Andreas Gampea5b09a62016-11-17 15:21:22 -080057 return soa.AddLocalReference<jobject>(dex_cache->GetResolvedType(dex::TypeIndex(type_index)));
Vladimir Markoc1363122015-04-09 14:13:13 +010058}
59
60static jobject DexCache_getResolvedString(JNIEnv* env, jobject javaDexCache, jint string_index) {
61 ScopedFastNativeObjectAccess soa(env);
Mathieu Chartier0795f232016-09-27 18:43:30 -070062 ObjPtr<mirror::DexCache> dex_cache = soa.Decode<mirror::DexCache>(javaDexCache);
Christina Wadsworthbf44e0e2016-08-18 10:37:42 -070063 CHECK_LT(static_cast<size_t>(string_index), dex_cache->GetDexFile()->NumStringIds());
Vladimir Markoc1363122015-04-09 14:13:13 +010064 return soa.AddLocalReference<jobject>(dex_cache->GetResolvedString(string_index));
65}
66
67static void DexCache_setResolvedType(JNIEnv* env, jobject javaDexCache, jint type_index,
68 jobject type) {
69 ScopedFastNativeObjectAccess soa(env);
Mathieu Chartier0795f232016-09-27 18:43:30 -070070 ObjPtr<mirror::DexCache> dex_cache = soa.Decode<mirror::DexCache>(javaDexCache);
Vladimir Marko05792b92015-08-03 11:56:49 +010071 CHECK_LT(static_cast<size_t>(type_index), dex_cache->NumResolvedTypes());
Andreas Gampea5b09a62016-11-17 15:21:22 -080072 dex_cache->SetResolvedType(dex::TypeIndex(type_index), soa.Decode<mirror::Class>(type));
Vladimir Markoc1363122015-04-09 14:13:13 +010073}
74
75static void DexCache_setResolvedString(JNIEnv* env, jobject javaDexCache, jint string_index,
76 jobject string) {
77 ScopedFastNativeObjectAccess soa(env);
Mathieu Chartier0795f232016-09-27 18:43:30 -070078 ObjPtr<mirror::DexCache> dex_cache = soa.Decode<mirror::DexCache>(javaDexCache);
Christina Wadsworthbf44e0e2016-08-18 10:37:42 -070079 CHECK_LT(static_cast<size_t>(string_index), dex_cache->GetDexFile()->NumStringIds());
Mathieu Chartierbc5a7952016-10-17 15:46:31 -070080 dex_cache->SetResolvedString(string_index, soa.Decode<mirror::String>(string));
Vladimir Markoc1363122015-04-09 14:13:13 +010081}
82
Ian Rogers8b2c0b92013-09-19 02:56:49 -070083static JNINativeMethod gMethods[] = {
Ian Rogers1eb512d2013-10-18 15:42:20 -070084 NATIVE_METHOD(DexCache, getDexNative, "!()Lcom/android/dex/Dex;"),
Vladimir Markoc1363122015-04-09 14:13:13 +010085 NATIVE_METHOD(DexCache, getResolvedType, "!(I)Ljava/lang/Class;"),
86 NATIVE_METHOD(DexCache, getResolvedString, "!(I)Ljava/lang/String;"),
87 NATIVE_METHOD(DexCache, setResolvedType, "!(ILjava/lang/Class;)V"),
88 NATIVE_METHOD(DexCache, setResolvedString, "!(ILjava/lang/String;)V"),
Ian Rogers8b2c0b92013-09-19 02:56:49 -070089};
90
91void register_java_lang_DexCache(JNIEnv* env) {
92 REGISTER_NATIVE_METHODS("java/lang/DexCache");
93}
94
95} // namespace art