blob: d69edd5882fbe4655907e8ab98a25c4ea7acd6fd [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2006 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.baseadaptor.bundlefile;
import java.io.*;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.zip.ZipEntry;
/**
* A BundleEntry represented by a ZipEntry in a ZipFile. The ZipBundleEntry
* class is used for bundles that are installed as a ZipFile on a file system.
* @since 3.2
*/
public class ZipBundleEntry extends BundleEntry {
/**
* ZipEntry for this entry.
*/
protected ZipEntry zipEntry;
/**
* The BundleFile for this entry.
*/
protected BundleFile bundleFile;
/**
* Constructs the BundleEntry using a ZipEntry.
* @param bundleFile BundleFile object this entry is a member of
* @param zipEntry ZipEntry object of this entry
*/
ZipBundleEntry(ZipEntry zipEntry, BundleFile bundleFile) {
this.zipEntry = zipEntry;
this.bundleFile = bundleFile;
}
/**
* Return an InputStream for the entry.
*
* @return InputStream for the entry
* @exception java.io.IOException
*/
public InputStream getInputStream() throws IOException {
return ((ZipBundleFile) bundleFile).getZipFile().getInputStream(zipEntry);
}
/**
* Return size of the uncompressed entry.
*
* @return size of entry
*/
public long getSize() {
return zipEntry.getSize();
}
/**
* Return name of the entry.
*
* @return name of entry
*/
public String getName() {
return zipEntry.getName();
}
/**
* Get the modification time for this BundleEntry.
* <p>If the modification time has not been set,
* this method will return <tt>-1</tt>.
*
* @return last modification time.
*/
public long getTime() {
return zipEntry.getTime();
}
public URL getLocalURL() {
try {
return new URL("jar:file:" + bundleFile.basefile.getAbsolutePath() + "!/" + zipEntry.getName()); //$NON-NLS-1$//$NON-NLS-2$
} catch (MalformedURLException e) {
//This can not happen.
return null;
}
}
public URL getFileURL() {
try {
File file = bundleFile.getFile(zipEntry.getName(), false);
if (file != null)
return file.toURL();
} catch (MalformedURLException e) {
//This can not happen.
}
return null;
}
}