blob: 3b84bfa0261ab16feffc3e103b3bff42efdc97ae [file] [log] [blame]
Brian Carlstromf91c8c32011-09-21 17:30:34 -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 "dalvik_system_DexFile.h"
18
Elliott Hughes07ed66b2012-12-12 18:34:25 -080019#include "base/logging.h"
Andreas Gampe833a4852014-05-21 18:46:59 -070020#include "base/stl_util.h"
Andreas Gampe20c89302014-08-19 17:28:06 -070021#include "base/stringprintf.h"
Brian Carlstromaded5f72011-10-07 17:15:04 -070022#include "class_linker.h"
Ian Rogers62d6c772013-02-27 08:32:07 -080023#include "common_throws.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070024#include "dex_file-inl.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070025#include "jni_internal.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080026#include "mirror/class_loader.h"
Ian Rogers05f30572013-02-20 12:13:11 -080027#include "mirror/object-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080028#include "mirror/string.h"
Richard Uhler66d874d2015-01-15 09:37:19 -080029#include "oat_file_assistant.h"
Brian Carlstrom1d9f52b2011-10-13 10:50:45 -070030#include "os.h"
Calin Juravle9dae5b42014-04-07 16:36:21 +030031#include "profiler.h"
Brian Carlstromaded5f72011-10-07 17:15:04 -070032#include "runtime.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070033#include "scoped_thread_state_change.h"
Ian Rogersc9818482012-01-11 08:52:51 -080034#include "ScopedLocalRef.h"
Brian Carlstromf91c8c32011-09-21 17:30:34 -070035#include "ScopedUtfChars.h"
Calin Juravlebb0b53f2014-05-23 17:33:29 +010036#include "utils.h"
Ian Rogersdd157d72014-05-15 14:47:50 -070037#include "well_known_classes.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070038#include "zip_archive.h"
Brian Carlstromf91c8c32011-09-21 17:30:34 -070039
40namespace art {
41
Andreas Gampe324b9bb2015-02-23 16:33:22 -080042static std::unique_ptr<std::vector<const DexFile*>>
43ConvertJavaArrayToNative(JNIEnv* env, jobject arrayObject) {
44 jarray array = reinterpret_cast<jarray>(arrayObject);
45
46 jsize array_size = env->GetArrayLength(array);
47 if (env->ExceptionCheck() == JNI_TRUE) {
48 return std::unique_ptr<std::vector<const DexFile*>>();
49 }
50
51 // TODO: Optimize. On 32bit we can use an int array.
52 jboolean is_long_data_copied;
53 jlong* long_data = env->GetLongArrayElements(reinterpret_cast<jlongArray>(array),
54 &is_long_data_copied);
55 if (env->ExceptionCheck() == JNI_TRUE) {
56 return std::unique_ptr<std::vector<const DexFile*>>();
57 }
58
59 std::unique_ptr<std::vector<const DexFile*>> ret(new std::vector<const DexFile*>());
60 ret->reserve(array_size);
61 for (jsize i = 0; i < array_size; ++i) {
62 ret->push_back(reinterpret_cast<const DexFile*>(static_cast<uintptr_t>(*(long_data + i))));
63 }
64
65 env->ReleaseLongArrayElements(reinterpret_cast<jlongArray>(array), long_data, JNI_ABORT);
66 if (env->ExceptionCheck() == JNI_TRUE) {
67 return std::unique_ptr<std::vector<const DexFile*>>();
68 }
69
70 return ret;
71}
72
73static jlongArray ConvertNativeToJavaArray(JNIEnv* env,
74 std::vector<std::unique_ptr<const DexFile>>& vec) {
75 size_t vec_size = vec.size();
76 jlongArray long_array = env->NewLongArray(static_cast<jsize>(vec_size));
77 if (env->ExceptionCheck() == JNI_TRUE) {
78 return nullptr;
79 }
80
81 jboolean is_long_data_copied;
82 jlong* long_data = env->GetLongArrayElements(long_array, &is_long_data_copied);
83 if (env->ExceptionCheck() == JNI_TRUE) {
84 return nullptr;
85 }
86
87 jlong* tmp = long_data;
88 for (auto& dex_file : vec) {
89 *tmp = reinterpret_cast<uintptr_t>(dex_file.get());
90 tmp++;
91 }
92
93 env->ReleaseLongArrayElements(long_array, long_data, 0);
94 if (env->ExceptionCheck() == JNI_TRUE) {
95 return nullptr;
96 }
97
98 // Now release all the unique_ptrs.
99 for (auto& dex_file : vec) {
100 dex_file.release();
101 }
102
103 return long_array;
104}
105
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700106// A smart pointer that provides read-only access to a Java string's UTF chars.
107// Unlike libcore's NullableScopedUtfChars, this will *not* throw NullPointerException if
108// passed a null jstring. The correct idiom is:
109//
110// NullableScopedUtfChars name(env, javaName);
Brian Carlstromc252c3e2011-10-16 23:21:02 -0700111// if (env->ExceptionCheck()) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700112// return null;
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700113// }
114// // ... use name.c_str()
115//
116// TODO: rewrite to get rid of this, or change ScopedUtfChars to offer this option.
117class NullableScopedUtfChars {
Elliott Hughesba8eee12012-01-24 20:25:24 -0800118 public:
119 NullableScopedUtfChars(JNIEnv* env, jstring s) : mEnv(env), mString(s) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700120 mUtfChars = (s != nullptr) ? env->GetStringUTFChars(s, nullptr) : nullptr;
Elliott Hughesba8eee12012-01-24 20:25:24 -0800121 }
122
123 ~NullableScopedUtfChars() {
124 if (mUtfChars) {
125 mEnv->ReleaseStringUTFChars(mString, mUtfChars);
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700126 }
Elliott Hughesba8eee12012-01-24 20:25:24 -0800127 }
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700128
Elliott Hughesba8eee12012-01-24 20:25:24 -0800129 const char* c_str() const {
130 return mUtfChars;
131 }
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700132
Elliott Hughesba8eee12012-01-24 20:25:24 -0800133 size_t size() const {
134 return strlen(mUtfChars);
135 }
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700136
Elliott Hughesba8eee12012-01-24 20:25:24 -0800137 // Element access.
138 const char& operator[](size_t n) const {
139 return mUtfChars[n];
140 }
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700141
Elliott Hughesba8eee12012-01-24 20:25:24 -0800142 private:
143 JNIEnv* mEnv;
144 jstring mString;
145 const char* mUtfChars;
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700146
Elliott Hughesba8eee12012-01-24 20:25:24 -0800147 // Disallow copy and assignment.
148 NullableScopedUtfChars(const NullableScopedUtfChars&);
149 void operator=(const NullableScopedUtfChars&);
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700150};
151
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700152static jobject DexFile_openDexFileNative(
153 JNIEnv* env, jclass, jstring javaSourceName, jstring javaOutputName, jint) {
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700154 ScopedUtfChars sourceName(env, javaSourceName);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700155 if (sourceName.c_str() == nullptr) {
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700156 return 0;
157 }
158 NullableScopedUtfChars outputName(env, javaOutputName);
Brian Carlstromc252c3e2011-10-16 23:21:02 -0700159 if (env->ExceptionCheck()) {
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700160 return 0;
161 }
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700162
Brian Carlstrom756ee4e2013-10-03 15:46:12 -0700163 ClassLinker* linker = Runtime::Current()->GetClassLinker();
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800164 std::vector<std::unique_ptr<const DexFile>> dex_files;
Andreas Gampe833a4852014-05-21 18:46:59 -0700165 std::vector<std::string> error_msgs;
166
Igor Murashkinb1d8c312015-08-04 11:18:43 -0700167 dex_files = linker->OpenDexFilesFromOat(sourceName.c_str(), outputName.c_str(), &error_msgs);
Andreas Gampe833a4852014-05-21 18:46:59 -0700168
Richard Uhler66d874d2015-01-15 09:37:19 -0800169 if (!dex_files.empty()) {
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800170 jlongArray array = ConvertNativeToJavaArray(env, dex_files);
171 if (array == nullptr) {
172 ScopedObjectAccess soa(env);
173 for (auto& dex_file : dex_files) {
Mathieu Chartier673ed3d2015-08-28 14:56:43 -0700174 if (linker->FindDexCache(soa.Self(), *dex_file, true) != nullptr) {
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800175 dex_file.release();
176 }
177 }
178 }
179 return array;
Brian Carlstrom756ee4e2013-10-03 15:46:12 -0700180 } else {
Vladimir Marko60836d52014-01-16 15:53:38 +0000181 ScopedObjectAccess soa(env);
Andreas Gampe329d1882014-04-08 10:32:19 -0700182 CHECK(!error_msgs.empty());
183 // The most important message is at the end. So set up nesting by going forward, which will
184 // wrap the existing exception as a cause for the following one.
185 auto it = error_msgs.begin();
186 auto itEnd = error_msgs.end();
187 for ( ; it != itEnd; ++it) {
188 ThrowWrappedIOException("%s", it->c_str());
189 }
190
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800191 return nullptr;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700192 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700193}
194
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800195static void DexFile_closeDexFile(JNIEnv* env, jclass, jobject cookie) {
196 std::unique_ptr<std::vector<const DexFile*>> dex_files = ConvertJavaArrayToNative(env, cookie);
Andreas Gampe833a4852014-05-21 18:46:59 -0700197 if (dex_files.get() == nullptr) {
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800198 DCHECK(env->ExceptionCheck());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700199 return;
200 }
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800201
Ian Rogersb0fa5dc2014-04-28 16:47:08 -0700202 ScopedObjectAccess soa(env);
Andreas Gampe833a4852014-05-21 18:46:59 -0700203
Richard Uhlerfbef44d2014-12-23 09:48:51 -0800204 // The Runtime currently never unloads classes, which means any registered
205 // dex files must be kept around forever in case they are used. We
206 // accomplish this here by explicitly leaking those dex files that are
207 // registered.
208 //
209 // TODO: The Runtime should support unloading of classes and freeing of the
210 // dex files for those unloaded classes rather than leaking dex files here.
Mathieu Chartier673ed3d2015-08-28 14:56:43 -0700211 ClassLinker* const class_linker = Runtime::Current()->GetClassLinker();
212 for (const DexFile* dex_file : *dex_files) {
213 if (class_linker->FindDexCache(soa.Self(), *dex_file, true) == nullptr) {
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800214 delete dex_file;
Andreas Gampe833a4852014-05-21 18:46:59 -0700215 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700216 }
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700217}
218
Elliott Hughes0512f022012-03-15 22:10:52 -0700219static jclass DexFile_defineClassNative(JNIEnv* env, jclass, jstring javaName, jobject javaLoader,
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800220 jobject cookie) {
221 std::unique_ptr<std::vector<const DexFile*>> dex_files = ConvertJavaArrayToNative(env, cookie);
222 if (dex_files.get() == nullptr) {
Brian Carlstrom7571e8b2013-08-12 17:04:14 -0700223 VLOG(class_linker) << "Failed to find dex_file";
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800224 DCHECK(env->ExceptionCheck());
225 return nullptr;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700226 }
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800227
Brian Carlstromdf143242011-10-10 18:05:34 -0700228 ScopedUtfChars class_name(env, javaName);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700229 if (class_name.c_str() == nullptr) {
Brian Carlstrom2e450bf2013-09-06 15:39:46 -0700230 VLOG(class_linker) << "Failed to find class_name";
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700231 return nullptr;
Brian Carlstromdf143242011-10-10 18:05:34 -0700232 }
Elliott Hughes95572412011-12-13 18:14:20 -0800233 const std::string descriptor(DotToDescriptor(class_name.c_str()));
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -0800234 const size_t hash(ComputeModifiedUtf8Hash(descriptor.c_str()));
Richard Uhlerfbef44d2014-12-23 09:48:51 -0800235 for (auto& dex_file : *dex_files) {
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -0800236 const DexFile::ClassDef* dex_class_def = dex_file->FindClassDef(descriptor.c_str(), hash);
Andreas Gampe833a4852014-05-21 18:46:59 -0700237 if (dex_class_def != nullptr) {
238 ScopedObjectAccess soa(env);
239 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
240 class_linker->RegisterDexFile(*dex_file);
241 StackHandleScope<1> hs(soa.Self());
242 Handle<mirror::ClassLoader> class_loader(
243 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(javaLoader)));
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -0800244 mirror::Class* result = class_linker->DefineClass(soa.Self(), descriptor.c_str(), hash,
Ian Rogers7b078e82014-09-10 14:44:24 -0700245 class_loader, *dex_file, *dex_class_def);
Andreas Gampe833a4852014-05-21 18:46:59 -0700246 if (result != nullptr) {
Brian Carlstrom667ab7c2014-10-16 19:12:28 -0700247 VLOG(class_linker) << "DexFile_defineClassNative returning " << result
248 << " for " << class_name.c_str();
Andreas Gampe833a4852014-05-21 18:46:59 -0700249 return soa.AddLocalReference<jclass>(result);
250 }
251 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700252 }
Brian Carlstrom667ab7c2014-10-16 19:12:28 -0700253 VLOG(class_linker) << "Failed to find dex_class_def " << class_name.c_str();
Andreas Gampe833a4852014-05-21 18:46:59 -0700254 return nullptr;
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700255}
256
Andreas Gampe833a4852014-05-21 18:46:59 -0700257// Needed as a compare functor for sets of const char
258struct CharPointerComparator {
259 bool operator()(const char *str1, const char *str2) const {
260 return strcmp(str1, str2) < 0;
261 }
262};
263
264// Note: this can be an expensive call, as we sort out duplicates in MultiDex files.
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800265static jobjectArray DexFile_getClassNameList(JNIEnv* env, jclass, jobject cookie) {
266 std::unique_ptr<std::vector<const DexFile*>> dex_files = ConvertJavaArrayToNative(env, cookie);
267 if (dex_files.get() == nullptr) {
268 DCHECK(env->ExceptionCheck());
269 return nullptr;
270 }
Andreas Gampe833a4852014-05-21 18:46:59 -0700271
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800272 // Push all class descriptors into a set. Use set instead of unordered_set as we want to
273 // retrieve all in the end.
274 std::set<const char*, CharPointerComparator> descriptors;
275 for (auto& dex_file : *dex_files) {
276 for (size_t i = 0; i < dex_file->NumClassDefs(); ++i) {
277 const DexFile::ClassDef& class_def = dex_file->GetClassDef(i);
278 const char* descriptor = dex_file->GetClassDescriptor(class_def);
279 descriptors.insert(descriptor);
Andreas Gampe833a4852014-05-21 18:46:59 -0700280 }
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800281 }
Andreas Gampe833a4852014-05-21 18:46:59 -0700282
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800283 // Now create output array and copy the set into it.
284 jobjectArray result = env->NewObjectArray(descriptors.size(), WellKnownClasses::java_lang_String,
285 nullptr);
286 if (result != nullptr) {
287 auto it = descriptors.begin();
288 auto it_end = descriptors.end();
289 jsize i = 0;
290 for (; it != it_end; it++, ++i) {
291 std::string descriptor(DescriptorToDot(*it));
292 ScopedLocalRef<jstring> jdescriptor(env, env->NewStringUTF(descriptor.c_str()));
293 if (jdescriptor.get() == nullptr) {
294 return nullptr;
Ian Rogersdd157d72014-05-15 14:47:50 -0700295 }
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800296 env->SetObjectArrayElement(result, i, jdescriptor.get());
Ian Rogersdd157d72014-05-15 14:47:50 -0700297 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700298 }
Ian Rogersdd157d72014-05-15 14:47:50 -0700299 return result;
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700300}
301
Richard Uhler95abd042015-03-24 09:51:28 -0700302static jint GetDexOptNeeded(JNIEnv* env, const char* filename,
Narayan Kamath11d9f062014-04-23 20:24:57 +0100303 const char* pkgname, const char* instruction_set, const jboolean defer) {
Brian Carlstrombf2cb162012-02-27 17:49:19 -0800304
Narayan Kamath11d9f062014-04-23 20:24:57 +0100305 if ((filename == nullptr) || !OS::FileExists(filename)) {
Richard Uhler95abd042015-03-24 09:51:28 -0700306 LOG(ERROR) << "DexFile_getDexOptNeeded file '" << filename << "' does not exist";
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700307 ScopedLocalRef<jclass> fnfe(env, env->FindClass("java/io/FileNotFoundException"));
Narayan Kamath11d9f062014-04-23 20:24:57 +0100308 const char* message = (filename == nullptr) ? "<empty file name>" : filename;
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700309 env->ThrowNew(fnfe.get(), message);
Richard Uhler95abd042015-03-24 09:51:28 -0700310 return OatFileAssistant::kNoDexOptNeeded;
Brian Carlstrom1d9f52b2011-10-13 10:50:45 -0700311 }
312
Alex Light6e183f22014-07-18 14:57:04 -0700313 const InstructionSet target_instruction_set = GetInstructionSetFromString(instruction_set);
Andreas Gampe20c89302014-08-19 17:28:06 -0700314 if (target_instruction_set == kNone) {
315 ScopedLocalRef<jclass> iae(env, env->FindClass("java/lang/IllegalArgumentException"));
316 std::string message(StringPrintf("Instruction set %s is invalid.", instruction_set));
317 env->ThrowNew(iae.get(), message.c_str());
318 return 0;
319 }
Alex Light6e183f22014-07-18 14:57:04 -0700320
Richard Uhler66d874d2015-01-15 09:37:19 -0800321 // TODO: Verify the dex location is well formed, and throw an IOException if
322 // not?
323
324 OatFileAssistant oat_file_assistant(filename, target_instruction_set, false, pkgname);
325
326 // Always treat elements of the bootclasspath as up-to-date.
327 if (oat_file_assistant.IsInBootClassPath()) {
Richard Uhler95abd042015-03-24 09:51:28 -0700328 return OatFileAssistant::kNoDexOptNeeded;
Richard Uhler66d874d2015-01-15 09:37:19 -0800329 }
330
331 // TODO: Checking the profile should probably be done in the GetStatus()
332 // function. We have it here because GetStatus() should not be copying
333 // profile files. But who should be copying profile files?
334 if (oat_file_assistant.OdexFileIsOutOfDate()) {
335 // Needs recompile if profile has changed significantly.
336 if (Runtime::Current()->GetProfilerOptions().IsEnabled()) {
337 if (oat_file_assistant.IsProfileChangeSignificant()) {
338 if (!defer) {
339 oat_file_assistant.CopyProfileFile();
340 }
Richard Uhler95abd042015-03-24 09:51:28 -0700341 return OatFileAssistant::kDex2OatNeeded;
Richard Uhler66d874d2015-01-15 09:37:19 -0800342 } else if (oat_file_assistant.ProfileExists()
343 && !oat_file_assistant.OldProfileExists()) {
344 if (!defer) {
345 oat_file_assistant.CopyProfileFile();
346 }
347 }
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700348 }
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800349 }
350
Richard Uhler95abd042015-03-24 09:51:28 -0700351 return oat_file_assistant.GetDexOptNeeded();
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700352}
353
Richard Uhler95abd042015-03-24 09:51:28 -0700354static jint DexFile_getDexOptNeeded(JNIEnv* env, jclass, jstring javaFilename,
Narayan Kamath11d9f062014-04-23 20:24:57 +0100355 jstring javaPkgname, jstring javaInstructionSet, jboolean defer) {
356 ScopedUtfChars filename(env, javaFilename);
Andreas Gampe20c89302014-08-19 17:28:06 -0700357 if (env->ExceptionCheck()) {
358 return 0;
359 }
360
Narayan Kamath11d9f062014-04-23 20:24:57 +0100361 NullableScopedUtfChars pkgname(env, javaPkgname);
Andreas Gampe20c89302014-08-19 17:28:06 -0700362
Narayan Kamath11d9f062014-04-23 20:24:57 +0100363 ScopedUtfChars instruction_set(env, javaInstructionSet);
Andreas Gampe20c89302014-08-19 17:28:06 -0700364 if (env->ExceptionCheck()) {
365 return 0;
366 }
Narayan Kamath11d9f062014-04-23 20:24:57 +0100367
Richard Uhler95abd042015-03-24 09:51:28 -0700368 return GetDexOptNeeded(env, filename.c_str(), pkgname.c_str(),
369 instruction_set.c_str(), defer);
Narayan Kamath11d9f062014-04-23 20:24:57 +0100370}
371
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700372// public API, null pkgname
Narayan Kamath11d9f062014-04-23 20:24:57 +0100373static jboolean DexFile_isDexOptNeeded(JNIEnv* env, jclass, jstring javaFilename) {
374 const char* instruction_set = GetInstructionSetString(kRuntimeISA);
375 ScopedUtfChars filename(env, javaFilename);
Richard Uhler95abd042015-03-24 09:51:28 -0700376 jint status = GetDexOptNeeded(env, filename.c_str(), nullptr /* pkgname */,
377 instruction_set, false /* defer */);
378 return (status != OatFileAssistant::kNoDexOptNeeded) ? JNI_TRUE : JNI_FALSE;
Dave Allison39c3bfb2014-01-28 18:33:52 -0800379}
380
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700381static JNINativeMethod gMethods[] = {
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800382 NATIVE_METHOD(DexFile, closeDexFile, "(Ljava/lang/Object;)V"),
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700383 NATIVE_METHOD(DexFile, defineClassNative,
384 "(Ljava/lang/String;Ljava/lang/ClassLoader;Ljava/lang/Object;)Ljava/lang/Class;"),
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800385 NATIVE_METHOD(DexFile, getClassNameList, "(Ljava/lang/Object;)[Ljava/lang/String;"),
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700386 NATIVE_METHOD(DexFile, isDexOptNeeded, "(Ljava/lang/String;)Z"),
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700387 NATIVE_METHOD(DexFile, getDexOptNeeded,
388 "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Z)I"),
389 NATIVE_METHOD(DexFile, openDexFileNative,
390 "(Ljava/lang/String;Ljava/lang/String;I)Ljava/lang/Object;"),
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700391};
392
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700393void register_dalvik_system_DexFile(JNIEnv* env) {
Elliott Hugheseac76672012-05-24 21:56:51 -0700394 REGISTER_NATIVE_METHODS("dalvik/system/DexFile");
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700395}
396
397} // namespace art