⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 proxygeneratortask.java

📁 一个java方面的消息订阅发送的源码
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
/**
 * Redistribution and use of this software and associated documentation
 * ("Software"), with or without modification, are permitted provided
 * that the following conditions are met:
 *
 * 1. Redistributions of source code must retain copyright
 *    statements and notices.  Redistributions must also contain a
 *    copy of this document.
 *
 * 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 name "Exolab" must not be used to endorse or promote
 *    products derived from this Software without prior written
 *    permission of Exoffice Technologies.  For written permission,
 *    please contact info@exolab.org.
 *
 * 4. Products derived from this Software may not be called "Exolab"
 *    nor may "Exolab" appear in their names without prior written
 *    permission of Exoffice Technologies. Exolab is a registered
 *    trademark of Exoffice Technologies.
 *
 * 5. Due credit should be given to the Exolab Project
 *    (http://www.exolab.org/).
 *
 * THIS SOFTWARE IS PROVIDED BY EXOFFICE TECHNOLOGIES AND CONTRIBUTORS
 * ``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
 * EXOFFICE TECHNOLOGIES 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.
 *
 * Copyright 2003-2005 (C) Exoffice Technologies Inc. All Rights Reserved.
 *
 * $Id: ProxyGeneratorTask.java,v 1.3 2005/05/07 14:01:44 tanderson Exp $
 */
package org.exolab.jms.plugins.proxygen;

import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import java.util.StringTokenizer;

import org.apache.tools.ant.AntClassLoader;
import org.apache.tools.ant.BuildException;
import org.apache.tools.ant.DirectoryScanner;
import org.apache.tools.ant.Project;
import org.apache.tools.ant.taskdefs.Javac;
import org.apache.tools.ant.taskdefs.MatchingTask;
import org.apache.tools.ant.types.Path;
import org.apache.tools.ant.types.Reference;
import org.apache.tools.ant.util.FileNameMapper;
import org.apache.tools.ant.util.GlobPatternMapper;
import org.apache.tools.ant.util.SourceFileScanner;


/**
 * Ant task to generate proxies.
 *
 * @author <a href="mailto:tma@netspace.net.au">Tim Anderson</a>
 * @version $Revision: 1.3 $ $Date: 2005/05/07 14:01:44 $
 */
public class ProxyGeneratorTask extends MatchingTask {

    /**
     * The base directory to store compiled classes.
     */
    private File _base;

    /**
     * The base directory to store generated sources. If not set, defaults to
     * _base.
     */
    private File _sourceBase;

    /**
     * The class name to generate source for.
     */
    private String _classname;

    /**
     * A set of class names for adapters of Throwable.
     */
    private List _adapters = new ArrayList();

    /**
     * Indicates whether source should be compiled with debug information;
     * defaults to off.
     */
    private boolean _debug = false;

    /**
     * Compile class path.
     */
    private Path _compileClasspath;


    /**
     * Construct a new <code>ProxyGeneratorTask</code>.
     */
    public ProxyGeneratorTask() {
    }

    /**
     * Sets the location to store compiled classes; required.
     *
     * @param base the base directory
     */
    public void setBase(File base) {
        _base = base;
    }

    /**
     * Returns the base directory to compiled classes.
     *
     * @return the base directory to compiled classes
     */
    public File getBase() {
        return _base;
    }

    /**
     * Sets the the class to run this task against; optional.
     *
     * @param classname the class name
     */
    public void setClassname(String classname) {
        _classname = classname;
    }

    /**
     * Returns the class name to compile.
     *
     * @return the class name to compile
     */
    public String getClassname() {
        return _classname;
    }

    /**
     * Sets list of ThrowableAdapter clases to use.
     *
     * @param adapters a comma-separated list of ThrowableAdapter class names
     */
    public void setAdapters(String adapters) {
        StringTokenizer tokens = new StringTokenizer(adapters,  ",");
        while (tokens.hasMoreTokens()) {
            String classname = tokens.nextToken();
            Adapter adapter = new Adapter();
            adapter.setClassname(classname);
            addConfiguredAdapter(adapter);
        }
    }

    /**
     * Add a nested adapter class name.
     *
     * @param adapter the adapter
     */
    public void addConfiguredAdapter(Adapter adapter) {
        _adapters.add(adapter.getClassname());
    }

    /**
     * Optional directory to save generated source files to.
     *
     * @param sourceBase the directory to save generated source files to
     */
    public void setSourceBase(File sourceBase) {
        _sourceBase = sourceBase;
    }

    /**
     * Returns the directory to save generated source files to.
     *
     * @return the directory to save generated source files to
     */
    public File getSourceBase() {
        return _sourceBase;
    }


    /**
     * Indicates whether source should be compiled with debug information;
     * defaults to off.
     *
     * @param debug if <code>true</code> enable debug information
     */
    public void setDebug(boolean debug) {
        _debug = debug;
    }

    /**
     * Returns the debug flag.
     *
     * @return the debug flag
     */
    public boolean getDebug() {
        return _debug;
    }

    /**
     * Set the classpath to be used for this compilation.
     *
     * @param classpath the classpath
     */
    public void setClasspath(Path classpath) {
        if (_compileClasspath == null) {
            _compileClasspath = classpath;
        } else {
            _compileClasspath.append(classpath);
        }
    }

    /**
     * Creates a nested classpath element.
     *
     * @return a nested classpath element
     */
    public Path createClasspath() {
        if (_compileClasspath == null) {
            _compileClasspath = new Path(project);
        }
        return _compileClasspath.createPath();
    }

    /**
     * Adds to the classpath a reference to a &lt;path&gt; defined elsewhere.
     *

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -