blob: 871889f73f1463845ace1bd60825ca0ef26204de [file] [log] [blame]
/*
* Copyright (c) 2010, 2018 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
package org.glassfish.embeddable.archive;
import java.io.File;
import java.io.IOException;
import java.net.URI;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* Abstraction for a Scattered Java EE module (parts disseminated in various directories).
* <p/>
* <p/>
* Usage example :
* <p/>
* <style type="text/css">
* .ln { color: rgb(0,0,0); font-weight: normal; font-style: normal; }
* .s0 { color: rgb(128,128,128); }
* .s1 { }
* .s2 { color: rgb(0,0,255); }
* .s3 { color: rgb(128,128,128); font-weight: bold; }
* .s4 { color: rgb(255,0,255); }
* </style>
* <pre>
* <a name="l56"> GlassFish glassfish = GlassFishRuntime.bootstrap().newGlassFish();
* <a name="l57"> glassfish.start();
* <a name="l58">
* <a name="l59"> </span><span class="s0">// Create a scattered web application.</span><span class="s1">
* <a name="l60"> ScatteredArchive archive = </span><span class="s2">new </span><span class="s1">ScatteredArchive(</span><span class="s4">&quot;testapp&quot;</span><span class="s1">, ScatteredArchive.Type.WAR);
* <a name="l61"> </span><span class="s0">// target/classes directory contains my complied servlets</span><span class="s1">
* <a name="l62"> archive.addClassPath(</span><span class="s2">new </span><span class="s1">File(</span><span class="s4">&quot;target&quot;</span><span class="s1">, </span><span class="s4">&quot;classes&quot;</span><span class="s1">));
* <a name="l63"> </span><span class="s0">// resources/sun-web.xml is my WEB-INF/sun-web.xml</span><span class="s1">
* <a name="l64"> archive.addMetadata(</span><span class="s2">new </span><span class="s1">File(</span><span class="s4">&quot;resources&quot;</span><span class="s1">, </span><span class="s4">&quot;sun-web.xml&quot;</span><span class="s1">));
* <a name="l65"> </span><span class="s0">// resources/MyLogFactory is my META-INF/services/org.apache.commons.logging.LogFactory</span><span class="s1">
* <a name="l66"> archive.addMetadata(</span><span class="s2">new </span><span class="s1">File(</span><span class="s4">&quot;resources&quot;</span><span class="s1">, </span><span class="s4">&quot;MyLogFactory&quot;</span><span class="s1">),
* <a name="l67"> </span><span class="s4">&quot;META-INF/services/org.apache.commons.logging.LogFactory&quot;</span><span class="s1">);
* <a name="l68">
* <a name="l69"> Deployer deployer = glassfish.getDeployer();
* <a name="l70"> </span><span class="s0">// Deploy my scattered web application</span><span class="s1">
* <a name="l71"> deployer.deploy(archive.toURI());
* </pre>
*
* @author Jerome Dochez
* @author bhavanishankar@java.net
*/
public class ScatteredArchive {
String name;
Type type;
File rootDirectory;
List<File> classpaths = new ArrayList<File>();
// File resourcespath;
Map<String, File> metadatas = new HashMap<String, File>();
String metadataEntryPrefix;
/**
* Construct a new empty scattered archive.
*
* @param name name of the archive.
* @param type type of the archive
* @throws NullPointerException if name or type is null
*/
public ScatteredArchive(String name, Type type) {
if (name == null) {
throw new NullPointerException("name must not be null.");
}
if (type == null) {
throw new NullPointerException("type must not be null.");
}
this.name = name;
this.type = type;
this.metadataEntryPrefix = (type == Type.WAR) ? "WEB-INF/" : "META-INF/";
}
/**
* Construct a new scattered archive with all the contents from the rootDirectory.
* <p/>
* Follows the same semantics as {@link ScatteredArchive(String, ScatteredArchive.Type, File)} constructor.
* rootDirectory must be a File location.
*/
// public ScatteredArchive(String name, Type type, String rootDirectory) {
// this(name, type, rootDirectory != null ? new File(rootDirectory) : null);
// }
/**
* Construct a new scattered archive with all the contents from the rootDirectory.
* <p/>
* By default, a scattered archive is not different from any other
* archive where all the files are located under a top level
* directory (rootDirectory).
* <p/>
* For example, In case of a WAR type archive, the rootDirectory should look like this:
* <pre>
* rootDirectory/WEB-INF/classes/org/myorg/FooServlet.class
* rootDirectory/WEB-INF/classes/org/myorg/Bar.class
* rootDirectory/WEB-INF/web.xml
* rootDirectory/WEB-INF/lib/myjar.jar
* rootDirectory/index.jsp
* rootDirectory/theme.css
* rootDirectory/helper.js
* </pre>
* Some files can then be scattered in different locations and be specified
* through the appropriate add methods of this class.
* <p/>
*
* @param name name of the archive.
* @param type type of the archive
* @param rootDirectory root directory.
* @throws NullPointerException if name, type or rootDirectory is null.
* @throws IOException if rootDirectory does not exist.
* @throws IllegalArgumentException if rootDirectory is not a directory.
*/
public ScatteredArchive(String name, Type type, File rootDirectory)
throws IOException {
this(name, type);
if (rootDirectory == null) {
throw new NullPointerException("rootDirectory must not be null.");
}
if (!rootDirectory.exists()) {
throw new IOException(rootDirectory + " does not exist.");
}
if (!rootDirectory.isDirectory()) {
throw new IllegalArgumentException(rootDirectory + " is not a directory.");
}
this.rootDirectory = rootDirectory;
}
/**
* Construct a new scattered archive with a set of classpaths.
*
* Follows the same semantics as
* {@link ScatteredArchive(String, ScatteredArchive.Type, String, File[])} constructor.
*
* All classpaths[] must be File locations.
*/
// public ScatteredArchive(String name, Type type, String[] classpaths) {
//
// }
/**
* Construct a new scattered archive with a set of classpaths.
* <p/>
* classpaths can contain Directory or JAR file locations.
* <p/>
* Using this constructor has the same effect of doing:
* <pre>
* ScatteredArchive archive = new ScatteredArchive(name, type);
* for(String classpath : classpaths)
* archive.addClassPath(classpath);
* }</pre>
*
* @param name Name of the archive.
* @param type Type of the archive "war" or "jar" or "rar".
* @param classpaths Directory or JAR file locations.
* @throws NullPointerException if name, type or classpaths is null
* @throws IllegalArgumentException if any of the classpaths is not found.
*/
// public ScatteredArchive(String name, Type type, File[] classpaths) {
//
// }
/**
* Add a directory or a JAR file to this scattered archive.
* <p/>
* Follows the same semantics as {@link #addClassPath(File)} method.
* classpath must be a File location.
*/
// public void addClassPath(String classpath) {
// addClassPath(classpath != null ? new File(classpath) : null);
// }
/**
* Add a directory or a JAR file to this scattered archive.
* <p/>
* The classpath that is added is considered as a plain Java CLASSPATH.
* <p/>
* <b>Case 1 : classpath is a directory:</b>
* <p/>
* Let us say there is TEMP/abc directory, which has following contents:
* <pre>
* TEMP/abc/org/myorg/a/A.class
* TEMP/abc/org/myorg/b/B.class
* TEMP/abc/com/xyz/c/C.class
* TEMP/abc/LocalStrings.properties
* TEMP/abc/image/1.png
* </pre>
* then addClassPath(new File("TEMP", "abc") will make:
* <p/>
* (a) The following classes available in the deployed scattered archive application:
* <pre>
* org.myorg.a.A
* org.myorg.b.B
* com.xyz.c.C
* </pre>
* (b) LocalStrings.properties available in the deployed scattered archive application.
* So, the deployed application can do ResourceBundle.getBundle("LocalStrings");
* <p/>
* (c) image/1.png available in the deployed scattered archive application.
* So, the deployed application can load the image file via getClass().getClassLoader().getResource("image/1.png");
* <p/>
* If there is any other type of file under TEMP/abc then it will also be available
* in the deployed scattered archive application's classloader.
* <p/>
* <b>Case 2: classpath is a JAR file</b>
* <p/>
* Let us say there is TEMP/xyz.jar, then addClassPath(new File("TEMP", "xyz.jar"))
* will make all the classes and any random files inside TEMP/xyz.jar
* available in the deployed scattered archive application.
*
* @param classpath A directory or a JAR file.
* @throws NullPointerException if classpath is null
* @throws IOException if the classpath is not found.
*/
public void addClassPath(File classpath) throws IOException {
if (classpath == null) {
throw new NullPointerException("classpath must not be null.");
}
if (!classpath.exists()) {
throw new IOException(classpath + " does not exist.");
}
this.classpaths.add(classpath);
}
/**
* Add a new metadata to this scattered archive.
* <p/>
* The addMetadata(metadata) method has the same effect as:
* <pre>
* addMetadata(metadata, null)
* </pre>
* Follows the same semantics as {@link #addMetadata(String, String)} method.
*/
// public void addMetadata(String metadata) {
// addMetadata(metadata != null ? new File(metadata) : null);
// }
/**
* Add a new metadata to this scattered archive.
* <p/>
* The addMetadata(metadata) method has the same effect as:
* <pre>
* addMetadata(metadata, null)
* </pre>
* Follows the same semantics as {@link #addMetadata(File, String)} method.
*/
public void addMetadata(File metadata) throws IOException {
addMetadata(metadata, null);
}
/**
* Add a new metadata to this scattered archive.
* <p/>
* Follows the same semantics as {@link #addMetadata(File, String)} method.
* metadata must be a file location.
*/
// public void addMetadata(String metadata, String name) {
// addMetadata(metadata != null ? new File(metadata) : null, name);
// }
/**
* Add a new metadata to this scattered archive.
* <p/>
* A metadata is identified by its name (e.g., META-INF/ejb.xml).
* <p/>
* If the specified name is null, then the metadata is considered as a
* deployment descriptor metadata and the name is computed as:
* <pre>
* "WEB-INF/" + metadata.getName() for WAR type archive.
* "META-INF/" + metadata.getName() for other type of archive.
* </pre>
* If the scattered archive already contains the metadata with the same name,
* then the old value is replaced.
*
* @param metadata location of the metadata
* @param name name of the metadata (e.g.,
* META-INF/ejb.xml or META-INF/sun-ejb-jar.xml)
* @throws NullPointerException if metadata is null
* @throws IOException if metadata does not exist.
* @throws IllegalArgumentException if metadata is a directory.
*/
public void addMetadata(File metadata, String name) throws IOException {
if (metadata == null) {
throw new NullPointerException("metadata must not be null.");
}
if (!metadata.exists()) {
throw new IOException(metadata + " does not exist.");
}
if (metadata.isDirectory()) {
throw new IllegalArgumentException(metadata + " is a directory.");
}
if (name == null) {
name = metadataEntryPrefix + metadata.getName();
}
this.metadatas.put(name, metadata);
}
/**
* Set the location of resources files to this scattered archive.
* <p/>
* Follows the same semantics as {@link #setResourcePath(File)} method.
* resourcespath must be a File location.
*/
// public void setResourcePath(String resourcespath) {
// setResourcePath(resourcespath != null ? new File(resourcespath) : null);
// }
/**
* Set the location of resources files to this scattered archive.
* <p/>
* For a WAR type scattered archive, the specified resource location can be
* thought of as a document root of the web application. The document root
* is where JSP pages, and static web resources such as images are stored.
* <p/>
* For the other type of archive, all the contents under the specified
* resource location will be available in the deployed scattered
* application's classloader.
*
* @param resourcespath Resources directory.
* @throws NullPointerException if resourcepath is null.
* @throws IllegalArgumentException if resourcespath is not found or is not a directory.
*/
// public void setResourcePath(File resourcespath) {
// if (resourcespath == null) {
// throw new NullPointerException("resourcespath must not be null.");
// }
// if (!resourcespath.exists()) {
// throw new IllegalArgumentException(resourcespath + " does not exist.");
// }
// if (!resourcespath.isDirectory()) {
// throw new IllegalArgumentException(resourcespath + " is not a directory");
// }
// this.resourcespath = resourcespath;
// }
/**
* Get the deployable URI for this scattered archive.
* <p/>
* <i>Note : java.io.tmpdir is used while building the URI.</i>
*
* @return Deployable scattered archive URI.
* @throws IOException if any I/O error happens while building the URI
* or while reading metadata, classpath elements, rootDirectory.
*/
public URI toURI() throws IOException {
return new Assembler().assemble(this);
}
/**
* Enumeration values for the scattered Java EE module types.
*
* @author bhavanishankar@java.net
*/
public enum Type {
/**
* The module is an Enterprise Java Bean or Application Client archive.
*/
JAR,
/**
* The module is a Web Application archive.
*/
WAR,
/**
* The module is a Connector archive.
*/
RAR,
}
}