All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.cxf.maven_plugin.wsdl2java.WsdlOption Maven / Gradle / Ivy

There is a newer version: 4.0.5
Show newest version
/**
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements. See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership. The ASF licenses this file
 * to you 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.cxf.maven_plugin.wsdl2java;

import java.io.File;
import java.net.URI;
import java.util.ArrayList;
import java.util.List;

import org.apache.cxf.common.util.StringUtils;
import org.apache.cxf.common.util.URIParserUtil;
import org.apache.cxf.maven_plugin.WsdlArtifact;
import org.apache.cxf.tools.common.ToolConstants;
import org.apache.maven.plugin.MojoExecutionException;

public class WsdlOption extends Option implements org.apache.cxf.maven_plugin.GenericWsdlOption {

    /**
     * The WSDL file to process.
     */
    String wsdl;

    /**
     * Alternatively to the wsdl string an artifact can be specified
     */
    WsdlArtifact wsdlArtifact;

    public String getWsdl() {
        return wsdl;
    }

    public void setWsdl(String w) {
        wsdl = w;
    }

    public WsdlArtifact getWsdlArtifact() {
        return wsdlArtifact;
    }

    public void setArtifact(WsdlArtifact artifact) {
        wsdlArtifact = artifact;
    }

    public void setWsdlArtifact(WsdlArtifact wsdlArtifact) {
        this.wsdlArtifact = wsdlArtifact;
    }

    /**
     * Try to find a file matching the wsdl path (either absolutely, relatively to the current dir or to
     * the project base dir)
     *
     * @return wsdl file
     */
    public File getWsdlFile(File baseDir) {
        if (wsdl == null) {
            return null;
        }
        File file = null;
        try {
            URI uri = new URI(wsdl);
            if (uri.isAbsolute()) {
                file = new File(uri);
            }
        } catch (Exception e) {
            // ignore
        }
        if (file == null || !file.exists()) {
            file = new File(wsdl);
        }
        if (!file.exists()) {
            file = new File(baseDir, wsdl);
        }
        return file;
    }

    public URI getWsdlURI(URI baseURI) throws MojoExecutionException {
        String wsdlLocation = getWsdl();
        if (wsdlLocation == null) {
            throw new MojoExecutionException("No wsdl available for base URI " + baseURI);
        }
        File wsdlFile = new File(wsdlLocation);
        return wsdlFile.exists() ? wsdlFile.toURI()
            : baseURI.resolve(URIParserUtil.escapeChars(wsdlLocation));
    }

    public boolean isDefServiceName() {
        if (extraargs == null) {
            return false;
        }
        for (int i = 0; i < extraargs.size(); i++) {
            if ("-sn".equalsIgnoreCase(extraargs.get(i))) {
                return true;
            }
        }
        return false;

    }

    public int hashCode() {
        if (wsdl != null) {
            return wsdl.hashCode();
        } else if (wsdlArtifact != null) {
            return wsdlArtifact.hashCode();
        }
        return -1;
    }

    public boolean equals(Object obj) {
        if (!(obj instanceof WsdlOption)) {
            return false;
        }

        WsdlOption t = (WsdlOption)obj;
        return t.getWsdl().equals(getWsdl());
    }

    public String toString() {
        StringBuilder builder = new StringBuilder(128);
        builder.append("WSDL: ").append(wsdl).append('\n');
        builder.append("OutputDir: ").append(outputDir).append('\n');
        builder.append("Extraargs: ").append(extraargs).append('\n');
        builder.append("XJCargs: ").append(xjcargs).append('\n');
        builder.append("Packagenames: ").append(packagenames).append('\n');
        if (wsdlArtifact != null) {
            builder.append("Artifact: ").append(wsdlArtifact.toString()).append('\n');
        }
        builder.append('\n');
        return builder.toString();
    }

    public List generateCommandLine(File outputDirFile, URI basedir, URI wsdlURI, boolean debug) {
        List list = new ArrayList<>();
        addList(list, "-p", true, getPackagenames());
        addList(list, "-nexclude", true, getNamespaceExcludes());
        addIfNotNull(list, outputDirFile, "-d");
        for (String binding : getBindingFiles()) {
            File bindingFile = new File(binding);
            URI bindingURI = bindingFile.exists() ? bindingFile.toURI() : basedir.resolve(binding);
            list.add("-b");
            list.add(bindingURI.toString());
        }
        addIfNotNull(list, getFrontEnd(), "-fe");
        addIfNotNull(list, getDataBinding(), "-db");
        addIfNotNull(list, getWsdlVersion(), "-wv");
        addIfNotNull(list, getCatalog(), "-catalog");
        if (isExtendedSoapHeaders()) {
            list.add("-exsh");
            list.add("true");
        }
        addIfTrue(list, isNoTypes(), "-noTypes");
        addIfTrue(list, isAllowElementRefs(), "-" + ToolConstants.CFG_ALLOW_ELEMENT_REFS);
        if (getValidateWsdl() != null) {
            list.add("-validate=" + getValidateWsdl());
        }
        addIfTrue(list, isMarkGenerated() != null && isMarkGenerated(),
            "-" + ToolConstants.CFG_MARK_GENERATED_OPTION);
        addIfTrue(list, isSuppressGeneratedDate() != null && isSuppressGeneratedDate(),
            "-" + ToolConstants.CFG_SUPPRESS_GENERATED_DATE_OPTION);
        addIfNotNull(list, getDefaultExcludesNamespace(), "-dex");
        addIfNotNull(list, getDefaultNamespacePackageMapping(), "-dns");
        addIfNotNull(list, getServiceName(), "-sn");
        addIfNotNull(list, getFaultSerialVersionUID(), "-"
                     + ToolConstants.CFG_FAULT_SERIAL_VERSION_UID);
        addIfNotNull(list, getExceptionSuper(), "-"
                     + ToolConstants.CFG_EXCEPTION_SUPER);
        addList(list, "-" + ToolConstants.CFG_SEI_SUPER, true,
                getSeiSuper());

        addIfTrue(list, isAutoNameResolution(), "-"
                     + ToolConstants.CFG_AUTORESOLVE);
        addIfTrue(list, isNoAddressBinding(), "-"
                  + ToolConstants.CFG_NO_ADDRESS_BINDING);
        addList(list, "-xjc", false, getXJCargs());
        addList(list, "", false, getExtraargs());
        if (isSetWsdlLocation()) {
            list.add("-wsdlLocation");
            list.add(getWsdlLocation() == null ? "" : getWsdlLocation());
        }
        addIfTrue(list, isWsdlList(), "-wsdlList");
        addIfTrue(list, debug && !list.contains("-verbose"), "-verbose");
        addEqualsArray(list, "-asyncMethods", getAsyncMethods());
        addEqualsArray(list, "-bareMethods", getBareMethods());
        addEqualsArray(list, "-mimeMethods", getMimeMethods());
        list.add(wsdlURI.toString());

        return list;
    }

    private static void addIfTrue(List list, boolean expression, String key) {
        if (expression) {
            list.add(key);
        }
    }

    private static void addIfNotNull(List list, Object value, String key) {
        if (value != null) {
            list.add(key);
            list.add(value.toString());
        }
    }

    private static void addList(List destList, String key, boolean keyAsOwnElement,
                                List sourceList) {
        if (sourceList == null) {
            return;
        }
        for (String value : sourceList) {
            if (keyAsOwnElement) {
                destList.add(key);
                destList.add(value);
            } else {
                // Maven makes empty tags into null
                // instead of empty strings. so replace null by ""
                String v = key + ((value == null) ? "" : value);
                if (!StringUtils.isEmpty(v)) {
                    destList.add(v);
                }
            }
        }
    }
    private static void addEqualsArray(List destList,
                                      String key,
                                      String[] sourceList) {
        if (sourceList == null) {
            return;
        }
        StringBuilder b = new StringBuilder(key);
        if (sourceList.length > 0) {
            b.append('=');
            boolean first = true;
            for (String value : sourceList) {
                if (!first) {
                    b.append(',');
                }
                b.append(value);
                first = false;
            }
        }
        destList.add(b.toString());
    }

    public WsdlArtifact getArtifact() {
        return wsdlArtifact;
    }

    public String getUri() {
        return wsdl;
    }

    public void setUri(String uri) {
        wsdl = uri;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy