blob: 314cdb1a7eb391f9bf7db2192cfcd6fd704cc86f [file] [log] [blame]
Elliott Hughes64bf5a32011-09-20 14:43:12 -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
17#include "class_linker.h"
18#include "jni_internal.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080019#include "mirror/class_loader.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070020#include "mirror/object-inl.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070021#include "scoped_thread_state_change.h"
Elliott Hughes64bf5a32011-09-20 14:43:12 -070022#include "ScopedUtfChars.h"
23#include "zip_archive.h"
24
Elliott Hughes64bf5a32011-09-20 14:43:12 -070025namespace art {
26
Elliott Hughes0512f022012-03-15 22:10:52 -070027static jclass VMClassLoader_findLoadedClass(JNIEnv* env, jclass, jobject javaLoader, jstring javaName) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -070028 ScopedObjectAccess soa(env);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080029 mirror::ClassLoader* loader = soa.Decode<mirror::ClassLoader*>(javaLoader);
Elliott Hughes64bf5a32011-09-20 14:43:12 -070030 ScopedUtfChars name(env, javaName);
31 if (name.c_str() == NULL) {
32 return NULL;
33 }
34
Brian Carlstromf91c8c32011-09-21 17:30:34 -070035 std::string descriptor(DotToDescriptor(name.c_str()));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080036 mirror::Class* c = Runtime::Current()->GetClassLinker()->LookupClass(descriptor.c_str(), loader);
Ian Rogersbe125a92012-01-11 15:19:49 -080037 if (c != NULL && c->IsResolved()) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -070038 return soa.AddLocalReference<jclass>(c);
Ian Rogersbe125a92012-01-11 15:19:49 -080039 } else {
40 // Class wasn't resolved so it may be erroneous or not yet ready, force the caller to go into
41 // the regular loadClass code.
42 return NULL;
43 }
Elliott Hughes64bf5a32011-09-20 14:43:12 -070044}
45
Elliott Hughes1bac54f2012-03-16 12:48:31 -070046static jint VMClassLoader_getBootClassPathSize(JNIEnv*, jclass) {
Elliott Hughes64bf5a32011-09-20 14:43:12 -070047 return Runtime::Current()->GetClassLinker()->GetBootClassPath().size();
48}
49
50/*
51 * Returns a string URL for a resource with the specified 'javaName' in
52 * entry 'index' of the boot class path.
53 *
54 * We return a newly-allocated String in the following form:
55 *
56 * jar:file://path!/name
57 *
58 * Where "path" is the bootstrap class path entry and "name" is the string
59 * passed into this method. "path" needs to be an absolute path (starting
60 * with '/'); if it's not we'd need to make it absolute as part of forming
61 * the URL string.
62 */
Elliott Hughes0512f022012-03-15 22:10:52 -070063static jstring VMClassLoader_getBootClassPathResource(JNIEnv* env, jclass, jstring javaName, jint index) {
Elliott Hughes64bf5a32011-09-20 14:43:12 -070064 ScopedUtfChars name(env, javaName);
65 if (name.c_str() == NULL) {
66 return NULL;
67 }
68
69 const std::vector<const DexFile*>& path = Runtime::Current()->GetClassLinker()->GetBootClassPath();
70 if (index < 0 || size_t(index) >= path.size()) {
71 return NULL;
72 }
73 const DexFile* dex_file = path[index];
74 const std::string& location(dex_file->GetLocation());
Ian Rogers8d31bbd2013-10-13 10:44:14 -070075 std::string error_msg;
76 UniquePtr<ZipArchive> zip_archive(ZipArchive::Open(location.c_str(), &error_msg));
77 if (zip_archive.get() == nullptr) {
78 LOG(WARNING) << "Failed to open zip archive '" << location << "': " << error_msg;
Elliott Hughes64bf5a32011-09-20 14:43:12 -070079 return NULL;
80 }
Narayan Kamath92572be2013-11-28 14:06:24 +000081 UniquePtr<ZipEntry> zip_entry(zip_archive->Find(name.c_str(), &error_msg));
Elliott Hughes64bf5a32011-09-20 14:43:12 -070082 if (zip_entry.get() == NULL) {
83 return NULL;
84 }
85
86 std::string url;
87 StringAppendF(&url, "jar:file://%s!/%s", location.c_str(), name.c_str());
88 return env->NewStringUTF(url.c_str());
89}
90
Elliott Hughes64bf5a32011-09-20 14:43:12 -070091static JNINativeMethod gMethods[] = {
92 NATIVE_METHOD(VMClassLoader, findLoadedClass, "(Ljava/lang/ClassLoader;Ljava/lang/String;)Ljava/lang/Class;"),
93 NATIVE_METHOD(VMClassLoader, getBootClassPathResource, "(Ljava/lang/String;I)Ljava/lang/String;"),
94 NATIVE_METHOD(VMClassLoader, getBootClassPathSize, "()I"),
Elliott Hughes64bf5a32011-09-20 14:43:12 -070095};
96
Elliott Hughes64bf5a32011-09-20 14:43:12 -070097void register_java_lang_VMClassLoader(JNIEnv* env) {
Elliott Hugheseac76672012-05-24 21:56:51 -070098 REGISTER_NATIVE_METHODS("java/lang/VMClassLoader");
Elliott Hughes64bf5a32011-09-20 14:43:12 -070099}
100
101} // namespace art