001: /**
002: * JOnAS : Java(TM) OpenSource Application Server
003: * Copyright (C) 1999-2004 Bull S.A.
004: * Contact: jonas-team@objectweb.org
005: *
006: * This library is free software; you can redistribute it and/or
007: * modify it under the terms of the GNU Lesser General Public
008: * License as published by the Free Software Foundation; either
009: * version 2.1 of the License, or any later version.
010: *
011: * This library is distributed in the hope that it will be useful,
012: * but WITHOUT ANY WARRANTY; without even the implied warranty of
013: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
014: * Lesser General Public License for more details.
015: *
016: * You should have received a copy of the GNU Lesser General Public
017: * License along with this library; if not, write to the Free Software
018: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
019: * USA
020: *
021: * --------------------------------------------------------------------------
022: * $Id: DummyWebApp.java 7057 2005-07-18 23:53:31Z mwringe $
023: * --------------------------------------------------------------------------
024: */package org.objectweb.jonas_lib.genbase.archive;
025:
026: import java.io.File;
027: import java.io.FileOutputStream;
028: import java.io.IOException;
029: import java.io.OutputStream;
030: import java.util.jar.Attributes;
031: import java.util.jar.Manifest;
032:
033: import org.objectweb.jonas_lib.files.FileUtils;
034: import org.objectweb.jonas_lib.files.FileUtilsException;
035: import org.objectweb.jonas_lib.genbase.GenBaseException;
036: import org.objectweb.jonas_lib.genbase.utils.TempRepository;
037:
038: /**
039: * DummyWebApp is a wrapper for auto generated webapp archive.
040: *
041: * @author Guillaume Sauthier
042: */
043: public class DummyWebApp extends WebApp {
044:
045: /** webapp name */
046: private String name;
047:
048: /**
049: * Creates a new DummyWebApp archive.
050: *
051: * @param app the file containing the webapp archive.
052: * @param name webapp filename
053: *
054: * @throws GenBaseException when archive creation fails.
055: */
056: public DummyWebApp(Application app, String name)
057: throws GenBaseException {
058: super (createFileArchive(), app);
059: this .name = name;
060: }
061:
062: /**
063: * Create a new FileArchive
064: *
065: * @return a new Archive
066: *
067: * @throws GenBaseException When Archive creation fails.
068: */
069: private static Archive createFileArchive() throws GenBaseException {
070: TempRepository tr = TempRepository.getInstance();
071:
072: try {
073: File tmp = tr.createDir();
074: File meta = new File(tmp, "META-INF");
075: meta.mkdirs();
076:
077: File web = new File(tmp, "WEB-INF");
078: web.mkdirs();
079:
080: File manifest = new File(meta, "MANIFEST.MF");
081:
082: Manifest mf = new Manifest();
083: mf.getMainAttributes().putValue(
084: Attributes.Name.MANIFEST_VERSION.toString(), "1.0");
085:
086: OutputStream os = new FileOutputStream(manifest);
087: mf.write(os);
088: os.close();
089:
090: String jonasRoot = System.getProperty("install.root");
091: File webTemplate = new File(new File(jonasRoot),
092: "templates" + File.separator + "wsgen"
093: + File.separator + "web.xml");
094: FileUtils.copyFile(webTemplate, web);
095:
096: //Load context.xml, used by Tomcat to determine security realm to use (if any)
097: File contextTemplate = new File(new File(jonasRoot),
098: "templates" + File.separator + "wsgen"
099: + File.separator + "context.xml");
100: FileUtils.copyFile(contextTemplate, meta);
101:
102: //Load web-jetty.xml, used by Jetty to determine security realm to use (if any)
103: File webjettyTemplate = new File(new File(jonasRoot),
104: "templates" + File.separator + "wsgen"
105: + File.separator + "web-jetty.xml");
106: FileUtils.copyFile(webjettyTemplate, web);
107:
108: return new FileArchive(tmp);
109: } catch (IOException ioe) {
110: throw new GenBaseException(ioe);
111: } catch (FileUtilsException fue) {
112: throw new GenBaseException(fue);
113: }
114: }
115:
116: /**
117: * @return Returns the DummyApplication filename.
118: */
119: public String getName() {
120: return name;
121: }
122:
123: }
|