org.eclipse.osgi.internal.loader.classpath.ClasspathEntry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spotless-ext-greclipse Show documentation
Show all versions of spotless-ext-greclipse Show documentation
Groovy Eclipse's formatter bundled for Spotless
The newest version!
/*******************************************************************************
* 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.classpath;
import java.io.*;
import java.security.ProtectionDomain;
import java.util.jar.Manifest;
import org.eclipse.osgi.framework.util.KeyedElement;
import org.eclipse.osgi.framework.util.KeyedHashSet;
import org.eclipse.osgi.storage.BundleInfo;
import org.eclipse.osgi.storage.BundleInfo.Generation;
import org.eclipse.osgi.storage.bundlefile.BundleEntry;
import org.eclipse.osgi.storage.bundlefile.BundleFile;
/**
* A ClasspathEntry contains a single BundleFile
which is used as
* a source to load classes and resources from, and a single
* ProtectionDomain
which is used as the domain to define classes
* loaded from this ClasspathEntry.
* @since 3.2
*/
public class ClasspathEntry {
static final class PDEData {
final String fileName;
final String symbolicName;
PDEData(File baseFile, String symbolicName) {
this.fileName = baseFile == null ? null : baseFile.getAbsolutePath();
this.symbolicName = symbolicName;
}
}
private final BundleFile bundlefile;
private final ProtectionDomain domain;
private final Manifest manifest;
private KeyedHashSet userObjects = null;
// TODO Note that PDE has internal dependency on this field type/name (bug 267238)
private final PDEData data;
/**
* Constructs a ClasspathElement with the specified bundlefile and domain
* @param bundlefile A BundleFile object which acts as a source
* @param domain the protection domain
*/
public ClasspathEntry(BundleFile bundlefile, ProtectionDomain domain, Generation generation) {
this.bundlefile = bundlefile;
this.domain = domain;
this.data = new PDEData(generation.getBundleFile().getBaseFile(), generation.getRevision().getSymbolicName());
this.manifest = getManifest(bundlefile, generation);
}
/**
* Returns the source BundleFile for this classpath entry
* @return the source BundleFile for this classpath entry
*/
public BundleFile getBundleFile() {
return bundlefile;
}
/**
* Returns the ProtectionDomain for this classpath entry
* @return the ProtectionDomain for this classpath entry
*/
public ProtectionDomain getDomain() {
return domain;
}
/**
* Returns a user object which is keyed by the specified key
* @param key the key of the user object to get
* @return a user object which is keyed by the specified key
*/
public synchronized Object getUserObject(Object key) {
if (userObjects == null)
return null;
return userObjects.getByKey(key);
}
/**
* Adds a user object
* @param userObject the user object to add
*/
public synchronized void addUserObject(KeyedElement userObject) {
if (userObjects == null)
userObjects = new KeyedHashSet(5, false);
userObjects.add(userObject);
}
private static Manifest getManifest(BundleFile cpBundleFile, Generation generation) {
if (!generation.hasPackageInfo() && generation.getBundleFile() == cpBundleFile) {
return null;
}
BundleEntry mfEntry = cpBundleFile.getEntry(BundleInfo.OSGI_BUNDLE_MANIFEST);
if (mfEntry != null) {
InputStream manIn = null;
try {
try {
manIn = mfEntry.getInputStream();
return new Manifest(manIn);
} finally {
if (manIn != null)
manIn.close();
}
} catch (IOException e) {
// do nothing
}
}
return null;
}
public Manifest getManifest() {
return this.manifest;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy