blob: e8142fcede2f799291173313bea21280737b82b3 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.commons.vfs.provider.jar;
import org.apache.commons.vfs.FileName;
import org.apache.commons.vfs.FileSystemException;
import org.apache.commons.vfs.provider.zip.ZipFileObject;
import java.io.IOException;
import java.security.cert.Certificate;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.jar.Attributes;
import java.util.jar.JarEntry;
import java.util.jar.JarFile;
import java.util.jar.Manifest;
import java.util.zip.ZipEntry;
/**
* A file in a Jar file system.
*
* @author <a href="mailto:brian@mmmanager.org">Brian Olsen</a>
* @version $Revision$ $Date$
*/
public class JarFileObject extends ZipFileObject
{
private final JarFileSystem fs;
private Attributes attributes;
protected JarFileObject(final FileName name,
final ZipEntry entry,
final JarFileSystem fs,
final boolean zipExists) throws FileSystemException
{
super(name, entry, fs, zipExists);
this.fs = fs;
try
{
getAttributes(); // early get the attributes as the zip file might be closed
}
catch (IOException e)
{
throw new FileSystemException(e);
}
}
/**
* Returns the Jar manifest.
*/
Manifest getManifest() throws IOException
{
if (fs.getZipFile() == null)
{
return null;
}
return ((JarFile) fs.getZipFile()).getManifest();
}
/**
* Returns the attributes of this file.
*/
Attributes getAttributes() throws IOException
{
if (attributes == null)
{
if (entry == null)
{
attributes = new Attributes(1);
}
else
{
attributes = ((JarEntry) entry).getAttributes();
if (attributes == null)
{
attributes = new Attributes(1);
}
}
}
return attributes;
}
/**
* Returns the value of an attribute.
*/
protected Map doGetAttributes()
throws Exception
{
final Map attrs = new HashMap();
// Add the file system's attributes first
final JarFileSystem fs = (JarFileSystem) getFileSystem();
addAll(fs.getAttributes(), attrs);
// Add this file's attributes
addAll(getAttributes(), attrs);
return attrs;
}
/**
* Adds the source attributes to the destination map.
*/
private void addAll(final Attributes src, final Map dest)
{
for (Iterator iterator = src.entrySet().iterator(); iterator.hasNext();)
{
final Map.Entry entry = (Map.Entry) iterator.next();
// final String name = entry.getKey().toString().toLowerCase();
final String name = entry.getKey().toString();
dest.put(name, entry.getValue());
}
}
/**
* Return the certificates of this JarEntry.
*/
protected Certificate[] doGetCertificates()
{
if (entry == null)
{
return null;
}
return ((JarEntry) entry).getCertificates();
}
}