blob: 6bd0a71042b600944ebe49feacf97c41dcbe27a9 [file] [log] [blame]
/*
* The Apache Software License, Version 1.1
*
* Copyright (c) 2001-2002 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
* any, must include the following acknowlegement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Alternately, this acknowlegement may appear in the software itself,
* if and wherever such third-party acknowlegements normally appear.
*
* 4. The names "The Jakarta Project", "Ant", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
* from this software without prior written permission. For written
* permission, please contact apache@apache.org.
*
* 5. Products derived from this software may not be called "Apache"
* nor may "Apache" appear in their names without prior written
* permission of the Apache Group.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
* ====================================================================
*
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
*/
package org.apache.tools.ant.taskdefs.optional.ejb;
import java.io.File;
import org.apache.tools.ant.BuildException;
import org.apache.tools.ant.Project;
import org.apache.tools.ant.Task;
import org.apache.tools.ant.taskdefs.ExecTask;
import org.apache.tools.ant.taskdefs.Java;
import org.apache.tools.ant.types.Path;
import org.apache.tools.ant.types.Reference;
/**
* Generates a Borland Application Server 4.5 client JAR using as
* input the EJB JAR file.
*
* Two mode are available: java mode (default) and fork mode. With the fork mode,
* it is impossible to add classpath to the commmand line.
*
* @author <a href="mailto:benoit.moussaud@criltelecom.com">Benoit Moussaud</a>
*
* @ant.task name="blgenclient" category="ejb"
*/
public class BorlandGenerateClient extends Task {
static final String JAVA_MODE = "java";
static final String FORK_MODE = "fork";
/** debug the generateclient task */
boolean debug = false;
/** hold the ejbjar file name */
File ejbjarfile = null;
/** hold the client jar file name */
File clientjarfile = null;
/** hold the classpath */
Path classpath;
/** hold the mode (java|fork) */
String mode = FORK_MODE;
/** hold the version */
int version = BorlandDeploymentTool.BAS;
public void setVersion(int version) {
this.version = version;
}
/**
* Command launching mode: java or fork.
*/
public void setMode(String s) {
mode = s;
}
/**
* If true, turn on the debug mode for each of the Borland tools launched.
*/
public void setDebug(boolean debug) {
this.debug = debug;
}
/**
* EJB JAR file.
*/
public void setEjbjar(File ejbfile) {
ejbjarfile = ejbfile;
}
/**
* Client JAR file name.
*/
public void setClientjar(File clientjar) {
clientjarfile = clientjar;
}
/**
* Path to use for classpath.
*/
public void setClasspath(Path classpath) {
if (this.classpath == null) {
this.classpath = classpath;
} else {
this.classpath.append(classpath);
}
}
/**
* Adds path to the classpath.
*/
public Path createClasspath() {
if (this.classpath == null) {
this.classpath = new Path(project);
}
return this.classpath.createPath();
}
/**
* Reference to existing path, to use as a classpath.
*/
public void setClasspathRef(Reference r) {
createClasspath().setRefid(r);
}
/**
* Do the work.
*
* The work is actually done by creating a separate JVM to run a java task.
*
* @exception BuildException if someting goes wrong with the build
*/
public void execute() throws BuildException {
if (ejbjarfile == null || ejbjarfile.isDirectory()) {
throw new BuildException("invalid ejb jar file.");
}
if (clientjarfile == null || clientjarfile.isDirectory()) {
log("invalid or missing client jar file.", Project.MSG_VERBOSE);
String ejbjarname = ejbjarfile.getAbsolutePath();
//clientname = ejbjarfile+client.jar
String clientname = ejbjarname.substring(0, ejbjarname.lastIndexOf("."));
clientname = clientname + "client.jar";
clientjarfile = new File(clientname);
}
if (mode == null) {
log("mode is null default mode is java");
setMode(JAVA_MODE);
}
if ( !(version == BorlandDeploymentTool.BES || version == BorlandDeploymentTool.BAS)) {
throw new BuildException("version "+version+" is not supported");
}
log("client jar file is " + clientjarfile);
if (mode.equalsIgnoreCase(FORK_MODE)) {
executeFork();
} else {
executeJava();
} // end of else
}
/** launch the generate client using java api */
protected void executeJava() throws BuildException {
try {
if ( version == BorlandDeploymentTool.BES) {
throw new BuildException("java mode is supported only for previous version <="+BorlandDeploymentTool.BAS);
}
log("mode : java");
org.apache.tools.ant.taskdefs.Java execTask = null;
execTask = (Java) getProject().createTask("java");
execTask.setDir(new File("."));
execTask.setClassname("com.inprise.server.commandline.EJBUtilities");
//classpath
//add at the end of the classpath
//the system classpath in order to find the tools.jar file
execTask.setClasspath(classpath.concatSystemClasspath());
execTask.setFork(true);
execTask.createArg().setValue("generateclient");
if (debug) {
execTask.createArg().setValue("-trace");
}
execTask.createArg().setValue("-short");
execTask.createArg().setValue("-jarfile");
// ejb jar file
execTask.createArg().setValue(ejbjarfile.getAbsolutePath());
//client jar file
execTask.createArg().setValue("-single");
execTask.createArg().setValue("-clientjarfile");
execTask.createArg().setValue(clientjarfile.getAbsolutePath());
log("Calling EJBUtilities", Project.MSG_VERBOSE);
execTask.execute();
} catch (Exception e) {
// Have to catch this because of the semantics of calling main()
String msg = "Exception while calling generateclient Details: " + e.toString();
throw new BuildException(msg, e);
}
}
/** launch the generate client using system api */
protected void executeFork() throws BuildException {
if ( version == BorlandDeploymentTool.BAS) {
executeForkV4();
}
if ( version == BorlandDeploymentTool.BES ) {
executeForkV5();
}
}
/** launch the generate client using system api */
protected void executeForkV4() throws BuildException {
try {
log("mode : fork "+BorlandDeploymentTool.BAS,Project.MSG_DEBUG);
org.apache.tools.ant.taskdefs.ExecTask execTask = null;
execTask = (ExecTask) getProject().createTask("exec");
execTask.setDir(new File("."));
execTask.setExecutable("iastool");
execTask.createArg().setValue("generateclient");
if (debug) {
execTask.createArg().setValue("-trace");
}
execTask.createArg().setValue("-short");
execTask.createArg().setValue("-jarfile");
// ejb jar file
execTask.createArg().setValue(ejbjarfile.getAbsolutePath());
//client jar file
execTask.createArg().setValue("-single");
execTask.createArg().setValue("-clientjarfile");
execTask.createArg().setValue(clientjarfile.getAbsolutePath());
log("Calling iastool", Project.MSG_VERBOSE);
execTask.execute();
} catch (Exception e) {
// Have to catch this because of the semantics of calling main()
String msg = "Exception while calling generateclient Details: "
+ e.toString();
throw new BuildException(msg, e);
}
}
/** launch the generate client using system api */
protected void executeForkV5() throws BuildException {
try {
log("mode : fork "+BorlandDeploymentTool.BES,Project.MSG_DEBUG);
org.apache.tools.ant.taskdefs.ExecTask execTask = null;
execTask = (ExecTask) getProject().createTask("exec");
execTask.setDir(new File("."));
execTask.setExecutable("iastool");
if (debug) {
execTask.createArg().setValue("-debug");
}
execTask.createArg().setValue("-genclient");
execTask.createArg().setValue("-jars");
// ejb jar file
execTask.createArg().setValue(ejbjarfile.getAbsolutePath());
//client jar file
execTask.createArg().setValue("-target");
execTask.createArg().setValue(clientjarfile.getAbsolutePath());
//classpath
execTask.createArg().setValue("-cp");
execTask.createArg().setValue(classpath.toString());
log("Calling iastool", Project.MSG_VERBOSE);
execTask.execute();
} catch (Exception e) {
// Have to catch this because of the semantics of calling main()
String msg = "Exception while calling generateclient Details: "
+ e.toString();
throw new BuildException(msg, e);
}
}
}