/*
 * The Apache Software License, Version 1.1
 *
 * Copyright (c) 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.j2ee;

import org.apache.tools.ant.BuildException;
import org.apache.tools.ant.taskdefs.Java;

/**
 *  An Ant wrapper task for the oc4j deploy tool.  This is used to
 *  hot-deploy J2EE applications to a running OC4J server. As OC4J
 *  is based on Orion this task might work for that app server, too.
 *  This is <b>not</b> the same as creating the application archive.
 *  This task assumes the archive (EAR, JAR, or WAR) file has been
 *  assembled and is supplied as the "source" attribute.
 *  <p>In the end, this task assembles the commandline parameters
 *  and runs the oc4j deploy tool in a seperate JVM.
 *
 *  @author Henning Saul - henning.saul@bbc.co.uk
 *
 *  @see org.apache.tools.ant.taskdefs.optional.j2ee.HotDeploymentTool
 *  @see org.apache.tools.ant.taskdefs.optional.j2ee.AbstractHotDeploymentTool
 *  @see org.apache.tools.ant.taskdefs.optional.j2ee.ServerDeploy
 */
public class OC4JHotDeploymentTool extends AbstractHotDeploymentTool implements HotDeploymentTool {
    /** The classname of the tool to run **/
    private static final String OC4J_DEPLOY_CLASS_NAME = "com.evermind.client.orion.OrionConsoleAdmin";
    
    /** All the valid actions that oc4j deploy permits **/
    private static final String[] VALID_ACTIONS =
    {ACTION_DEPLOY, ACTION_UPDATE};
    
    /** The application name that is being deployed **/
    private String application;
    
    /**
     *  Perform the actual deployment.
     *  For this implementation, a JVM is spawned and the oc4j tool is executed.
     *  @exception org.apache.tools.ant.BuildException if the attributes are invalid or incomplete.
     */
    public void deploy() {
        Java java = (Java) getTask().getProject().createTask("java");
        java.setFork(true);
        java.setFailonerror(true);
        java.setClasspath(getClasspath());       
        java.setClassname(OC4J_DEPLOY_CLASS_NAME);
        java.createArg().setLine(getArguments());
        java.execute();
    }
    
    /**
     *  Validates the passed in attributes.
     *  <p>The rules are:
     *  <ol><li>If action is "deploy" or "update" the "application" and "source"
     *  attributes must be supplied.
     *  @exception org.apache.tools.ant.BuildException if the attributes are invalid or incomplete
     */
    public void validateAttributes() throws BuildException {
        super.validateAttributes();
        
        String action = getTask().getAction();
        
        // check that the password has been set
        if ((getPassword() == null))
            throw new BuildException("The password attribute must be set.");
        
        // check for missing application on deploy & update
        if ((action.equals(ACTION_DEPLOY) || action.equals(ACTION_UPDATE))
        && application == null)
            throw new BuildException("The application attribute must be set "
            + "if action = " + action);
        
        // check for missing source on deploy & update
        if ((action.equals(ACTION_DEPLOY) || action.equals(ACTION_UPDATE))
        && getTask().getSource() == null)
            throw new BuildException("The source attribute must be set if "
            + "action = " + action);
        
    }
    
    /**
     *  Builds the arguments to pass to oc4j deploy tool according to the
     *  supplied action.
     *  @return A String containing the arguments for the oc4j deploy tool.
     */
    public String getArguments() throws BuildException {
        String action = getTask().getAction();
        String args = null;
        
        if (action.equals(ACTION_DEPLOY) || action.equals(ACTION_UPDATE))
            args = buildDeployArgs();
        
        return args;
    }
    
    /**
     *  Determines if the action supplied is valid.
     *  <p>Valid actions are contained in the static array VALID_ACTIONS
     *  @return true if the action attribute is valid, false if not.
     */
    protected boolean isActionValid() {
        boolean valid = false;
        
        String action = getTask().getAction();
        
        for (int i = 0; i < VALID_ACTIONS.length; i++) {
            if (action.equals(VALID_ACTIONS[i])) {
                valid = true;
                break;
            }
        }
        
        return valid;
    }
    
    /**
     *  Builds the prefix arguments to pass to the oc4j deploy tool.
     *  These arguments are generic across all actions.
     *  @return A StringBuffer containing the prefix arguments.
     *  The action-specific build methods will append to this StringBuffer.
     */
    protected StringBuffer buildArgsPrefix() {
        ServerDeploy task = getTask();
        // constructs the "<url> <username> <password>" portion
        // of the commmand line
        return new StringBuffer(1024)
        .append((getServer() != null)
        ? getServer()
        : "")
        .append(" ")
        .append((getUserName() != null)
        ? getUserName()
        : "admin")
        .append(" ")
        .append(getPassword()).append(" ");
    }
    
    /**
     *  Builds the arguments to pass to the oc4j deploy tool for deployment actions
     *  ("deploy" and "update").
     *  @return A String containing the full argument string for the oc4j deploy tool.
     */
    protected String buildDeployArgs() {
        String args = buildArgsPrefix()
        .append("-deploy")
        .append(" ")
        .append("-file ")
        .append(getTask().getSource())
        .append(" ")
        .append("-deploymentName ")
        .append(application).append(" ")
        .toString();
        return args;
    }
    
    /**
     *  Sets the application field.
     *  <p>This is a required attribute.
     *  @param application A String representing the application portion of the
     *  oc4j command line.
     */
    public void setApplication(String application) {
        this.application = application;
    }
    
}

