1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
|
/*******************************************************************************
* Copyright (c) 2005, 2013 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.osgi.internal.loader.buddy;
import java.net.URL;
import java.util.*;
import org.eclipse.osgi.framework.internal.core.Constants;
import org.eclipse.osgi.internal.loader.BundleLoader;
import org.osgi.framework.*;
import org.osgi.service.packageadmin.PackageAdmin;
public class PolicyHandler implements SynchronousBundleListener {
//Key for the framework buddies
private final static String DEPENDENT_POLICY = "dependent"; //$NON-NLS-1$
private final static String GLOBAL_POLICY = "global"; //$NON-NLS-1$
private final static String REGISTERED_POLICY = "registered"; //$NON-NLS-1$
private final static String APP_POLICY = "app"; //$NON-NLS-1$
private final static String EXT_POLICY = "ext"; //$NON-NLS-1$
private final static String BOOT_POLICY = "boot"; //$NON-NLS-1$
private final static String PARENT_POLICY = "parent"; //$NON-NLS-1$
//The loader to which this policy is attached.
private final BundleLoader policedLoader;
//List of the policies as well as cache for the one that have been created. The size of this array never changes over time. This is why the synchronization is not done when iterating over it.
private volatile Object[] policies = null;
//Support to cut class / resource loading cycles in the context of one thread. The contained object is a set of classname
private final ThreadLocal<Set<String>> beingLoaded;
private final PackageAdmin packageAdmin;
public PolicyHandler(BundleLoader loader, String buddyList, PackageAdmin packageAdmin) {
policedLoader = loader;
policies = getArrayFromList(buddyList);
beingLoaded = new ThreadLocal<Set<String>>();
this.packageAdmin = packageAdmin;
}
static Object[] getArrayFromList(String stringList) {
if (stringList == null || stringList.trim().equals("")) //$NON-NLS-1$
return null;
List<Object> list = new ArrayList<Object>();
StringTokenizer tokens = new StringTokenizer(stringList, ","); //$NON-NLS-1$
while (tokens.hasMoreTokens()) {
String token = tokens.nextToken().trim();
if (!token.equals("")) //$NON-NLS-1$
list.add(token.toLowerCase());
}
return list.isEmpty() ? new Object[0] : list.toArray(new Object[list.size()]);
}
private IBuddyPolicy getPolicyImplementation(Object[] policiesSnapshot, int policyOrder) {
synchronized (policiesSnapshot) {
if (policyOrder >= policiesSnapshot.length)
return null;
if (policiesSnapshot[policyOrder] instanceof String) {
String buddyName = (String) policiesSnapshot[policyOrder];
if (REGISTERED_POLICY.equals(buddyName)) {
policiesSnapshot[policyOrder] = new RegisteredPolicy(policedLoader);
return (IBuddyPolicy) policiesSnapshot[policyOrder];
}
if (BOOT_POLICY.equals(buddyName)) {
policiesSnapshot[policyOrder] = SystemPolicy.getInstance(SystemPolicy.BOOT);
return (IBuddyPolicy) policiesSnapshot[policyOrder];
}
if (APP_POLICY.equals(buddyName)) {
policiesSnapshot[policyOrder] = SystemPolicy.getInstance(SystemPolicy.APP);
return (IBuddyPolicy) policiesSnapshot[policyOrder];
}
if (EXT_POLICY.equals(buddyName)) {
policiesSnapshot[policyOrder] = SystemPolicy.getInstance(SystemPolicy.EXT);
return (IBuddyPolicy) policiesSnapshot[policyOrder];
}
if (DEPENDENT_POLICY.equals(buddyName)) {
policiesSnapshot[policyOrder] = new DependentPolicy(policedLoader);
return (IBuddyPolicy) policiesSnapshot[policyOrder];
}
if (GLOBAL_POLICY.equals(buddyName)) {
policiesSnapshot[policyOrder] = new GlobalPolicy(packageAdmin);
return (IBuddyPolicy) policiesSnapshot[policyOrder];
}
if (PARENT_POLICY.equals(buddyName)) {
policiesSnapshot[policyOrder] = new SystemPolicy(policedLoader.getParentClassLoader());
return (IBuddyPolicy) policiesSnapshot[policyOrder];
}
// Not a valid buddy policy
policedLoader.getBundle().getFramework().publishFrameworkEvent(FrameworkEvent.ERROR, policedLoader.getBundle(), new RuntimeException("Invalid buddy policy: " + buddyName)); //$NON-NLS-1$
policiesSnapshot[policyOrder] = null;
// //Buddy policy can be provided by service implementations
// BundleContext fwkCtx = policedLoader.bundle.framework.systemBundle.context;
// ServiceReference[] matchingBuddies = null;
// try {
// matchingBuddies = fwkCtx.getAllServiceReferences(IBuddyPolicy.class.getName(), "buddyName=" + buddyName);
// } catch (InvalidSyntaxException e) {
// //The filter is valid
// }
// if (matchingBuddies == null)
// return new IBuddyPolicy() {
// public Class loadClass(String name) {
// return null;
// }
//
// public URL loadResource(String name) {
// return null;
// }
//
// public Enumeration loadResources(String name) {
// return null;
// }
// };
//
// //The policies loaded through service are not cached
// return ((IBuddyPolicy) fwkCtx.getService(matchingBuddies[0]));
}
return (IBuddyPolicy) policiesSnapshot[policyOrder];
}
}
public Class<?> doBuddyClassLoading(String name) {
if (startLoading(name) == false)
return null;
Class<?> result = null;
Object[] policiesSnapshot = policies;
int policyCount = (policiesSnapshot == null) ? 0 : policiesSnapshot.length;
for (int i = 0; i < policyCount && result == null; i++) {
IBuddyPolicy policy = getPolicyImplementation(policiesSnapshot, i);
if (policy != null)
result = policy.loadClass(name);
}
stopLoading(name);
return result;
}
public URL doBuddyResourceLoading(String name) {
if (startLoading(name) == false)
return null;
URL result = null;
Object[] policiesSnapshot = policies;
int policyCount = (policiesSnapshot == null) ? 0 : policiesSnapshot.length;
for (int i = 0; i < policyCount && result == null; i++) {
IBuddyPolicy policy = getPolicyImplementation(policiesSnapshot, i);
if (policy != null)
result = policy.loadResource(name);
}
stopLoading(name);
return result;
}
public Enumeration<URL> doBuddyResourcesLoading(String name) {
if (startLoading(name) == false)
return null;
List<URL> results = null;
Object[] policiesSnapshot = policies;
int policyCount = (policiesSnapshot == null) ? 0 : policiesSnapshot.length;
for (int i = 0; i < policyCount; i++) {
IBuddyPolicy policy = getPolicyImplementation(policiesSnapshot, i);
if (policy == null)
continue;
Enumeration<URL> result = policy.loadResources(name);
if (result != null) {
if (results == null)
results = new ArrayList<URL>(policyCount);
while (result.hasMoreElements()) {
URL url = result.nextElement();
if (!results.contains(url)) //only add if not already added
results.add(url);
}
}
}
stopLoading(name);
return results == null || results.isEmpty() ? null : Collections.enumeration(results);
}
private boolean startLoading(String name) {
Set<String> classesAndResources = beingLoaded.get();
if (classesAndResources != null && classesAndResources.contains(name))
return false;
if (classesAndResources == null) {
classesAndResources = new HashSet<String>(3);
beingLoaded.set(classesAndResources);
}
classesAndResources.add(name);
return true;
}
private void stopLoading(String name) {
beingLoaded.get().remove(name);
}
public void open(BundleContext context) {
context.addBundleListener(this);
}
public void close(BundleContext context) {
context.removeBundleListener(this);
}
public void bundleChanged(BundleEvent event) {
if ((event.getType() & (BundleEvent.RESOLVED | BundleEvent.UNRESOLVED)) == 0)
return;
// reinitialize the policies
try {
String list = policedLoader.getBundle().getBundleData().getManifest().get(Constants.BUDDY_LOADER);
policies = getArrayFromList(list);
} catch (BundleException e) {
//Ignore
}
}
}
|