Package org.apache.cactus.integration.ant

Source Code of org.apache.cactus.integration.ant.ContainerSet

/*
* ========================================================================
*
* Copyright 2003 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*   http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* ========================================================================
*/
package org.apache.cactus.integration.ant;

import java.util.ArrayList;
import java.util.List;

import org.apache.cactus.integration.ant.container.Container;
import org.apache.cactus.integration.ant.container.ContainerFactory;
import org.apache.cactus.integration.ant.container.ContainerWrapper;
import org.apache.cactus.integration.ant.container.GenericContainer;
import org.apache.tools.ant.BuildException;
import org.apache.tools.ant.DynamicConfigurator;
import org.apache.tools.ant.types.DataType;

/**
* Ant data type that represents a set of J2EE containers.
*
* @version $Id: ContainerSet.java 238810 2004-02-29 10:05:26Z vmassol $
*/
public class ContainerSet extends DataType implements DynamicConfigurator
{

    // Instance Variables ------------------------------------------------------

    /**
     * The list of nested container elements.
     */
    private ContainerFactory factory = new ContainerFactory();

    /**
     * The list of nested container and containerset elements.
     */
    private List containers = new ArrayList();

    /**
     * The timeout in milliseconds.
     */
    private long timeout = -1;

    /**
     * The proxy port.
     */
    private int proxyPort = -1;

    // DynamicConfigurator Implementation --------------------------------------

    /**
     * @see org.apache.tools.ant.DynamicConfigurator#createDynamicElement
     */
    public final Object createDynamicElement(String theName)
        throws BuildException
    {
        if (isReference())
        {
            throw noChildrenAllowed();
        }
        Container container = this.factory.createContainer(theName);
        this.containers.add(container);
        return container;
    }

    /**
     * @see org.apache.tools.ant.DynamicConfigurator#setDynamicAttribute
     */
    public final void setDynamicAttribute(String theName, String theValue)
        throws BuildException
    {
        if (isReference())
        {
            throw tooManyAttributes();
        }
        throw new BuildException("Attribute [" + theName
            + "] not supported");
    }

    // Public Methods ----------------------------------------------------------

    /**
     * Adds a nested generic container to the set of containers.
     *
     * @param theContainer The generic container element to add
     */
    public final void addGeneric(GenericContainer theContainer)
    {
        this.containers.add(theContainer);
    }

    /**
     * Returns an iterator over the nested container elements, in the order
     * they appear in the build file.
     *
     * @return An iterator over the nested container elements
     */
    public final Container[] getContainers()
    {
        Container[] containers = (Container[])
            this.containers.toArray(new Container[this.containers.size()]);
        if (this.proxyPort > 0)
        {
            for (int i = 0; i < containers.length; i++)
            {
                containers[i] = new ContainerWrapper(containers[i])
                {
                    public int getPort()
                    {
                        return proxyPort;
                    }
                };
            }
        }
        return containers;
    }

    /**
     * Returns the timeout after which connecting to a container will be
     * given up, or <code>-1</code> if no timeout has been set.
     *
     * @return The timeout in milliseconds
     */
    public final long getTimeout()
    {
        return this.timeout;
    }

    /**
     * Sets the timeout after which connecting to a container will be given
     * up.
     *
     * @param theTimeout The timeout in milliseconds
     */
    public final void setTimeout(long theTimeout)
    {
        this.timeout = theTimeout;
    }

    /**
     * Returns the proxy port, or <code>-1</code> if no proxy port has been set.
     *
     * @return The proxy port
     */
    public final int getProxyPort()
    {
        return this.proxyPort;
    }

    /**
     * Sets the proxy port which will be used by the test caller instead
     * of the real container port. This can be used to insert protocol
     * tracers between the test caller and the container.
     *
     * @param theProxyPort The proxy port to set
     */
    public final void setProxyPort(int theProxyPort)
    {
        this.proxyPort = theProxyPort;
    }

}
TOP

Related Classes of org.apache.cactus.integration.ant.ContainerSet

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.