/* * JBoss, the OpenSource EJB server * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.deployment; import java.net.URL; import java.net.MalformedURLException; import java.util.Iterator; import java.util.Vector; import java.util.Date; import java.util.jar.Manifest; /** Represents a J2EE application or module (EJB.jar, Web.war or App.ear).
* * @author Daniel Schulze * @author Scott.Stark@jboss.org * @version $Revision: 1.8.4.2 $ */ public class Deployment implements java.io.Serializable { public static final int EJB_MODULE = 0; public static final int WAR_MODULE = 1; public static final int EAR_MODULE = 2; public static final int RAR_MODULE = 3; /** The application name */ protected String name; /** The type of the deployment module. One of the XXX_MODULE constants */ protected int type; /** the date this deployment was made */ protected Date date; /** the local position of the apps root directory */ protected URL localUrl; /** the position from which this deployment is installed */ protected URL sourceUrl; /** the content of the commonLibs directory as URL Collection */ protected Vector commonUrls; /** the EJB Modules */ protected Vector ejbModules; /** the WEB Modules */ protected Vector webModules; /** the manifest entry of the deployment (if any) * manifest is not serializable ... is only needed * at deployment time, so we mark it transient * @author cgjung */ protected transient Manifest manifest; /** Creates a new Deployment object. */ Deployment() { date = new Date(); ejbModules = new Vector(); webModules = new Vector(); commonUrls = new Vector(); } /** returns a new instance of the Module innerclass */ public Module newModule() { return new Module(); } /** returns the name of this deployment */ public String getName() { return name; } /** returns the source url that points to from where this deployment has been * downloaded * @author cgjung */ public URL getSourceUrl() { return sourceUrl; } /** returns the local url that points to the place where this deployment * has been downloaded * @author cgjung */ public URL getLocalUrl() { return localUrl; } /** Add a module manifest Class-Path element */ public void addCommonUrl(URL url) { commonUrls.add(url); } /** returns the common urls * @author cgjung */ public Vector getCommonUrls() { return commonUrls; } /** Create a new Module for an EJB and add it to the ejbModules list. @param name, the name of the ejb-jar module @param ejbJar, the local ejb-jar @param mfUrls, the resolved URLs for the ejb-jar manifest Class-Path: */ public void addEjbModule(String name, URL localJar, URL[] mfUrls) { Module m = new Module(); m.name = name; int count = mfUrls != null ? mfUrls.length : 0; for(int u = 0; u < mfUrls.length; u ++) commonUrls.add(mfUrls[u]); m.localUrls.add(localJar); ejbModules.add(m); } /** returns the ejbModules * @author cgjung */ public Vector getEjbModules() { return ejbModules; } /** Create a new Module for an EJB and add it to the ejbModules list. @param name, the name of the ejb-jar module @param webContext, the context under which the web-app should be deployed @param ejbJar, the local ejb-jar @param mfUrls, the resolved URLs for the ejb-jar manifest Class-Path: */ public void addWebModule(String name, String webContext, URL localJar, URL[] mfUrls) { Module m = new Module(); m.name = name; m.webContext = webContext; int count = mfUrls != null ? mfUrls.length : 0; for(int u = 0; u < mfUrls.length; u ++) commonUrls.add(mfUrls[u]); m.localUrls.add(localJar); webModules.add(m); } /** returns the webModules * @author cgjung */ public Vector getWebModules() { return webModules; } /** returns the manifest entry of the deployment * @autor cgjung */ public Manifest getManifest() { return manifest; } /** returns all files (URLs) that are needed to run this deployment properly */ public Vector getAllFiles() { // the common libs Vector result = new Vector(); Iterator it = commonUrls.iterator(); while (it.hasNext()) { String s = ((URL)it.next()).getFile(); result.add(s.substring(s.lastIndexOf("/")+1)); } // the ejb packages it = ejbModules.iterator(); while (it.hasNext()) { String s = ((URL)((Module)it.next()).localUrls.firstElement()).getFile(); result.add(s.substring(s.lastIndexOf("/")+1)); } // the web packages it = webModules.iterator(); while (it.hasNext()) { String s = ((URL)((Module)it.next()).localUrls.firstElement()).getFile(); result.add(s.substring(s.lastIndexOf("/")+1)); } // and the config file result.add(J2eeDeployer.CONFIG); /* it = result.iterator(); while (it.hasNext()) System.out.println ("contained file: "+it.next()); */ return result; } public String toString() { StringBuffer result = new StringBuffer("Deployment, name="+name+", type="+type+"\n"); result.append("Date: "+date+"\n"); result.append("LocalUrl: "+localUrl+"\n"); result.append("SourceUrl: "+sourceUrl+"\n"); result.append("CommonUrls: \n"); Iterator it = commonUrls.iterator(); while (it.hasNext()) { URL u = (URL)it.next(); result.append(u.getFile()); result.append('\n'); } // the ejb packages result.append("EjbModules: \n"); it = ejbModules.iterator(); while (it.hasNext()) { Module m = (Module)it.next(); URL u = (URL)m.localUrls.firstElement(); result.append(u.getFile()); result.append('\n'); } // the web packages result.append("WebModules: \n"); it = webModules.iterator(); while (it.hasNext()) { Module m = (Module)it.next(); URL u = (URL)m.localUrls.firstElement(); result.append("Context: "+m.webContext+", "); result.append(u.getFile()); result.append('\n'); } return result.toString(); } /** Represents a J2ee module. */ public class Module implements java.io.Serializable { /** a short name for the module */ protected String name; /** a collection of urls that make this module.
actually there is only one url for the modules jar file or in case of web the modules root directory needed. But to be able to allow alternative descriptors, the base directories of this alternative descriptors can be put here before the real module url, so that these where found first */ protected Vector localUrls; /** the web root context in case of war file */ protected String webContext; protected Module() { localUrls = new Vector(); } /** * returns the local urls * @author cgjung */ public Vector getLocalUrls() { return localUrls; } /** * returns the name * @author cgjung */ public String getName() { return name; } /** * returns the web context * @author cgjung */ public String getWebContext() { return webContext; } } }