blob: 51f5d710a53969ea3501fd1e0233ba1079934059 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2016 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;
import org.eclipse.osgi.internal.debug.Debug;
import org.eclipse.osgi.internal.framework.EquinoxConfiguration;
import org.eclipse.osgi.internal.loader.classpath.ClasspathManager;
import org.eclipse.osgi.storage.BundleInfo.Generation;
public class EquinoxClassLoader extends ModuleClassLoader {
private static final boolean EQUINOX_REGISTERED_AS_PARALLEL = ClassLoader.registerAsParallelCapable();
private final EquinoxConfiguration configuration;
private final Debug debug;
private final BundleLoader delegate;
private final Generation generation;
// TODO Note that PDE has internal dependency on this field type/name (bug 267238)
private final ClasspathManager manager;
private final boolean isRegisteredAsParallel;
/**
* Constructs a new DefaultClassLoader.
* @param parent the parent classloader
* @param configuration the equinox configuration
* @param delegate the delegate for this classloader
* @param generation the generation for this class loader
*/
public EquinoxClassLoader(ClassLoader parent, EquinoxConfiguration configuration, BundleLoader delegate, Generation generation) {
super(parent);
this.configuration = configuration;
this.debug = configuration.getDebug();
this.delegate = delegate;
this.generation = generation;
this.manager = new ClasspathManager(generation, this);
this.isRegisteredAsParallel = (ModuleClassLoader.REGISTERED_AS_PARALLEL && EQUINOX_REGISTERED_AS_PARALLEL) || this.configuration.PARALLEL_CAPABLE;
}
protected final Generation getGeneration() {
return this.generation;
}
public final ClasspathManager getClasspathManager() {
return manager;
}
public final boolean isRegisteredAsParallel() {
return isRegisteredAsParallel;
}
public final BundleLoader getBundleLoader() {
return delegate;
}
@Override
protected final Debug getDebug() {
return debug;
}
@Override
protected final EquinoxConfiguration getConfiguration() {
return configuration;
}
}