blob: 7d0d1b4f5ee55f6924f9121e64a2ed6b7c80bf6f [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2006 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
17package android.app;
18
Dianne Hackbornf7be4802013-04-12 14:52:58 -070019import android.os.Trace;
Dianne Hackbornadd005c2013-07-17 18:43:12 -070020import android.util.ArrayMap;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080021import dalvik.system.PathClassLoader;
22
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080023class ApplicationLoaders
24{
25 public static ApplicationLoaders getDefault()
26 {
27 return gApplicationLoaders;
28 }
29
Dimitry Ivanov75b10ec2015-12-11 17:34:21 -080030 public ClassLoader getClassLoader(String zip, boolean isBundled, String librarySearchPath,
Dmitriy Ivanov048a0db2015-11-15 14:58:36 -080031 String libraryPermittedPath, ClassLoader parent)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080032 {
33 /*
34 * This is the parent we use if they pass "null" in. In theory
35 * this should be the "system" class loader; in practice we
36 * don't use that and can happily (and more efficiently) use the
37 * bootstrap class loader.
38 */
39 ClassLoader baseParent = ClassLoader.getSystemClassLoader().getParent();
40
41 synchronized (mLoaders) {
42 if (parent == null) {
43 parent = baseParent;
44 }
45
46 /*
47 * If we're one step up from the base class loader, find
48 * something in our cache. Otherwise, we create a whole
49 * new ClassLoader for the zip archive.
50 */
51 if (parent == baseParent) {
Kenny Root85387d72010-08-26 10:13:11 -070052 ClassLoader loader = mLoaders.get(zip);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080053 if (loader != null) {
54 return loader;
55 }
56
Dianne Hackbornf7be4802013-04-12 14:52:58 -070057 Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, zip);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080058 PathClassLoader pathClassloader =
Dimitry Ivanov75b10ec2015-12-11 17:34:21 -080059 new PathClassLoader(zip, isBundled, librarySearchPath,
60 libraryPermittedPath, parent);
Dianne Hackbornf7be4802013-04-12 14:52:58 -070061 Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);
62
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080063 mLoaders.put(zip, pathClassloader);
64 return pathClassloader;
65 }
66
Dianne Hackbornf7be4802013-04-12 14:52:58 -070067 Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, zip);
68 PathClassLoader pathClassloader = new PathClassLoader(zip, parent);
69 Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);
70 return pathClassloader;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080071 }
72 }
73
Dianne Hackbornadd005c2013-07-17 18:43:12 -070074 private final ArrayMap<String, ClassLoader> mLoaders = new ArrayMap<String, ClassLoader>();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080075
76 private static final ApplicationLoaders gApplicationLoaders
77 = new ApplicationLoaders();
78}