org.jboss.ws.plugins.tools.AbstractWsProvideMojo.java Source code

Java tutorial

Introduction

Here is the source code for org.jboss.ws.plugins.tools.AbstractWsProvideMojo.java

Source

/*
 * JBoss, Home of Professional Open Source.
 * Copyright 2010, Red Hat Middleware LLC, and individual contributors
 * as indicated by the @author tags. See the copyright.txt file in the
 * distribution for a full listing of individual contributors.
 *
 * This is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation; either version 2.1 of
 * the License, or (at your option) any later version.
 *
 * This software is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this software; if not, write to the Free
 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
 */
package org.jboss.ws.plugins.tools;

import java.io.File;
import java.net.URLClassLoader;

import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.logging.Log;

/**
 * Generic mojo for wsprovide tool
 * 
 * @author alessio.soldano@jboss.com
 * @since 25-Feb-2010
 *
 */
public abstract class AbstractWsProvideMojo extends AbstractToolsMojo {
    /**
     * Enables/Disables WSDL generation.
     * 
     * @parameter default-value="false"
     */
    private boolean generateWsdl;

    /**
     * Sets the resource directory. This directory will contain any generated
     * WSDL and XSD files. If the directory does not exist, it will be created.
     * 
     * @parameter default-value="${project.build.directory}/wsprovide/resources"
     */
    protected File resourceDirectory;

    /**
     * Sets the source directory. This directory will contain any generated Java source.
     * If the directory does not exist, it will be created.
     * 
     * @parameter default-value="${project.build.directory}/wsprovide/java"
     */
    protected File sourceDirectory;

    /**
     * The endpoint implementation class name.
     * 
     * @parameter 
     * @required
     */
    private String endpointClass;

    /**
     * Sets the soap:address to be used for the generated port in the wsdl.
     * 
     * @parameter
     */
    private String portSoapAddress;

    public void execute() throws MojoExecutionException {
        Log log = getLog();
        if (endpointClass == null) {
            getLog().info("No service endpoint implementation class specified, nothing to do.");
            return;
        }

        if (verbose) {
            log.info("Classpath:");
            for (String s : getClasspathElements()) {
                log.info(" " + s);
            }
        }

        ClassLoader origLoader = Thread.currentThread().getContextClassLoader();
        URLClassLoader loader = getMavenClasspathAwareClassLoader();
        Thread.currentThread().setContextClassLoader(loader);
        try {
            WSContractProviderParams params = new WSContractProviderParams();
            params.setEndpointClass(endpointClass);
            params.setExtension(extension);
            params.setGenerateSource(generateSource);
            params.setGenerateWsdl(generateWsdl);
            params.setLoader(loader);
            params.setOutputDirectory(getOutputDirectory());
            params.setResourceDirectory(resourceDirectory);
            params.setSourceDirectory(sourceDirectory);
            params.setFork(fork);
            params.setArgLine(argLine);
            params.setPortSoapAddress(portSoapAddress);

            File manifestOnlyJar = createJar(getClasspathElements(), endpointClass);
            params.setManifestOnlyJar(manifestOnlyJar);

            WSContractDelegate delegate = new WSContractDelegate(getLog());
            delegate.runProvider(params);

            updateProjectSourceRoots();
        } catch (Exception e) {
            throw new MojoExecutionException("Error while running wsprovide", e);
        } finally {
            Thread.currentThread().setContextClassLoader(origLoader);
        }
    }

    public boolean isGenerateWsdl() {
        return generateWsdl;
    }

    public File getResourceDirectory() {
        return resourceDirectory;
    }

    public File getSourceDirectory() {
        return sourceDirectory;
    }

    public String getEndpointClass() {
        return endpointClass;
    }

    public String getPortSoapAddress() {
        return portSoapAddress;
    }
}