blob: 27eae46236b467d76859e013437967138def83fd [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"
Ian Rogers68d8b422014-07-17 11:09:10 -070020#include "jni_internal.h"
Ian Rogers8b2c0b92013-09-19 02:56:49 -070021#include "mirror/dex_cache.h"
22#include "mirror/object-inl.h"
Ian Rogers1eb512d2013-10-18 15:42:20 -070023#include "scoped_fast_native_object_access.h"
Ian Rogers8b2c0b92013-09-19 02:56:49 -070024#include "well_known_classes.h"
25
26namespace art {
27
28static jobject DexCache_getDexNative(JNIEnv* env, jobject javaDexCache) {
Ian Rogers1eb512d2013-10-18 15:42:20 -070029 ScopedFastNativeObjectAccess soa(env);
Ian Rogers8b2c0b92013-09-19 02:56:49 -070030 mirror::DexCache* dex_cache = soa.Decode<mirror::DexCache*>(javaDexCache);
31 // Should only be called while holding the lock on the dex cache.
Ian Rogersd9c4fc92013-10-01 19:45:43 -070032 DCHECK_EQ(dex_cache->GetLockOwnerThreadId(), soa.Self()->GetThreadId());
Ian Rogers8b2c0b92013-09-19 02:56:49 -070033 const DexFile* dex_file = dex_cache->GetDexFile();
34 if (dex_file == NULL) {
35 return NULL;
36 }
37 void* address = const_cast<void*>(reinterpret_cast<const void*>(dex_file->Begin()));
38 jobject byte_buffer = env->NewDirectByteBuffer(address, dex_file->Size());
39 if (byte_buffer == NULL) {
40 DCHECK(soa.Self()->IsExceptionPending());
41 return NULL;
42 }
43
44 jvalue args[1];
45 args[0].l = byte_buffer;
46 return env->CallStaticObjectMethodA(WellKnownClasses::com_android_dex_Dex,
47 WellKnownClasses::com_android_dex_Dex_create,
48 args);
49}
50
51static JNINativeMethod gMethods[] = {
Ian Rogers1eb512d2013-10-18 15:42:20 -070052 NATIVE_METHOD(DexCache, getDexNative, "!()Lcom/android/dex/Dex;"),
Ian Rogers8b2c0b92013-09-19 02:56:49 -070053};
54
55void register_java_lang_DexCache(JNIEnv* env) {
56 REGISTER_NATIVE_METHODS("java/lang/DexCache");
57}
58
59} // namespace art