All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.virtual.plugins.context.jar.JarEntryHandler Maven / Gradle / Ivy

There is a newer version: 3.3.2.Final
Show newest version
/*
* JBoss, Home of Professional Open Source
* Copyright 2006, JBoss Inc., and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jboss.virtual.plugins.context.jar;

import java.io.IOException;
import java.io.InputStream;
import java.net.URISyntaxException;
import java.net.URL;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.jar.JarFile;
import java.util.zip.ZipEntry;
import java.security.cert.Certificate;

import org.jboss.virtual.plugins.context.HierarchyVirtualFileHandler;
import org.jboss.virtual.plugins.context.StructuredVirtualFileHandler;
import org.jboss.virtual.spi.VFSContext;
import org.jboss.virtual.spi.VirtualFileHandler;

/**
 * JarEntryHandler.
 * TODO: JBVFS-7
 *
 * @author Ales Justin
 * @author Adrian Brock
 * @author [email protected]
 * @version $Revision: 1.1 $
 */
public class JarEntryHandler extends AbstractJarHandler implements StructuredVirtualFileHandler, HierarchyVirtualFileHandler
{
   /**
    * serialVersionUID
    */
   private static final long serialVersionUID = 1L;

   private List entryChildren;
   private transient Map entryMap;

   /**
    * Create a new JarHandler.
    *
    * @param context   the context
    * @param parent    the parent
    * @param jar       the jar file
    * @param entry     the entry
    * @param entryName the entry name
    * @param url       the url
    * @throws IOException              for an error accessing the file system
    * @throws IllegalArgumentException for a null context, url, jar or entry
    */
   public JarEntryHandler(VFSContext context, VirtualFileHandler parent, JarFile jar, ZipEntry entry, String entryName, URL url)
         throws IOException
   {
      super(context, parent, url, jar, entry, entryName);
      try
      {
         setVfsUrl(getChildVfsUrl(entryName, entry.isDirectory()));
      }
      catch (URISyntaxException e)
      {
         throw new RuntimeException(e);
      }
   }

   @Override
   protected void initCacheLastModified()
   {
      // complete
   }

   @Override
   public boolean hasBeenModified() throws IOException
   {
      return false; // right now, jar entries should always 
   }

   /**
    * Add a child to an entry
    *
    * @param child the child
    */
   public void addChild(VirtualFileHandler child)
   {
      if (entryChildren == null)
         entryChildren = new ArrayList();
      entryChildren.add(child);
      if (entryMap != null)
         entryMap.put(child.getName(), child);
   }

   @Override
   public long getLastModified()
   {
      return getEntry().getTime();
   }

   @Override
   public long getSize()
   {
      return getEntry().getSize();
   }

   public boolean isLeaf()
   {
      return getEntry().isDirectory() == false;
   }

   public boolean isHidden()
   {
      checkClosed();
      return false;
   }

   public boolean isNested() throws IOException
   {
      return true;
   }

   public List getChildren(boolean ignoreErrors) throws IOException
   {
      checkClosed();
      if (entryChildren == null)
         return Collections.emptyList();
      return Collections.unmodifiableList(entryChildren);
   }

   @Override
   public InputStream openStream() throws IOException
   {
      return getJar().getInputStream(getEntry());
   }

   // TODO: synchronization on lazy entryMap creation
   public synchronized VirtualFileHandler createChildHandler(String name) throws IOException
   {
      if (entryChildren == null)
         return null;

      if (entryMap == null)
      {
         entryMap = new HashMap();
         for (VirtualFileHandler child : entryChildren)
            entryMap.put(child.getName(), child);
      }
      return entryMap.get(name);
   }

   public VirtualFileHandler getChild(String path) throws IOException
   {
      return structuredFindChild(path);
   }

   public boolean removeChild(String path) throws IOException
   {
      return false;
   }

   public boolean delete(String path)
   {
      return false;
   }

   protected void internalReplaceChild(VirtualFileHandler original, VirtualFileHandler replacement)
   {
      entryChildren.remove(original);
      entryChildren.add(replacement);
      entryMap.put(original.getName(), replacement);
   }

   public Certificate[] getCertificates()
   {
      return getJar().getJarEntry(getEntry().getName()).getCertificates(); 
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy