Package org.jboss.deployers.vfs.plugins.client

Source Code of org.jboss.deployers.vfs.plugins.client.AbstractVFSDeployment

/*
* JBoss, Home of Professional Open Source.
* Copyright 2007, Red Hat Middleware LLC, and individual contributors
* as indicated by the @author tags. See the copyright.txt file 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.deployers.vfs.plugins.client;

import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.ObjectStreamField;
import java.net.URISyntaxException;
import java.net.URL;

import org.jboss.deployers.client.plugins.deployment.AbstractDeployment;
import org.jboss.deployers.vfs.spi.client.VFSDeployment;
import org.jboss.virtual.VFS;
import org.jboss.virtual.VirtualFile;

/**
* AbstractVFSDeployment.
*
* @author <a href="adrian@jboss.org">Adrian Brock</a>
* @author <a href="ales.justin@jboss.org">Ales Justin</a>
* @version $Revision: 1.1 $
*/
public class AbstractVFSDeployment extends AbstractDeployment implements VFSDeployment
{
   /** The serialVersionUID */
   private static final long serialVersionUID = 3992263833911364088L;

   private static final ObjectStreamField[] serialPersistentFields =
   {
      new ObjectStreamField("rootUrl", URL.class),
      new ObjectStreamField("path", String.class),
   };

   /** Minimal info to get full vfs file structure */
   private URL rootUrl;
   private String path;
   /** The root */
   private transient VirtualFile root;

   /**
    * Get the vfs file name safely
    *
    * @param root the virutal file
    * @return the name
    */
   static final String safeVirtualFileName(VirtualFile root)
   {
      if (root == null)
         throw new IllegalArgumentException("Null root");

      try
      {
         return root.toURI().toString();
      }
      catch (Exception e)
      {
         return root.getName();
      }
   }

   /**
    * For serialization
    */
   public AbstractVFSDeployment()
   {
   }
  
   /**
    * Create a new VFSDeployment.
    *
    * @param root the root
    * @throws IllegalArgumentException for a null root
    */
   public AbstractVFSDeployment(VirtualFile root)
   {
      super(safeVirtualFileName(root));
      this.root = root;
   }

   @SuppressWarnings("deprecation")
   public VirtualFile getRoot()
   {
      if (root == null)
      {
         try
         {
            VirtualFile top = VFS.getRoot(rootUrl);
            root = top.findChild(path);
         }
         catch (IOException e)
         {
            throw new IllegalArgumentException("Cannot find root: " + e);          
         }
      }
      return root;
   }

   @Override
   public String getSimpleName()
   {
      return getRoot().getName();
   }
  
   @Override
   public String toString()
   {
      return "AbstractVFSDeployment(" + getSimpleName() + ")";
   }

   private void writeObject(ObjectOutputStream out) throws IOException, URISyntaxException
   {
      URL url = rootUrl;
      if (url == null)
      {
         VFS vfs = getRoot().getVFS();
         url = vfs.getRoot().toURL();
      }
      String pathName = path;
      if (pathName == null)
         pathName = getRoot().getPathName();

      out.defaultWriteObject();
      ObjectOutputStream.PutField fields = out.putFields();
      fields.put("rootUrl", url);
      fields.put("path", pathName);
      out.writeFields();
   }

   private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException
   {
      in.defaultReadObject();
      ObjectInputStream.GetField fields = in.readFields();
      rootUrl = (URL) fields.get("rootUrl", null);
      path = (String) fields.get("path", null);
   }
}
TOP

Related Classes of org.jboss.deployers.vfs.plugins.client.AbstractVFSDeployment

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.