org.apache.cxf.maven_plugin.AbstractCodegenMojo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cxf-codegen-plugin Show documentation
Show all versions of cxf-codegen-plugin Show documentation
Apache CXF Code Generation Maven2 Plugins
/**
* 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;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.io.PrintWriter;
import java.net.Authenticator;
import java.net.PasswordAuthentication;
import java.net.URI;
import java.net.URL;
import java.security.MessageDigest;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.LinkedHashSet;
import java.util.LinkedList;
import java.util.List;
import java.util.Set;
import org.apache.commons.lang3.SystemUtils;
import org.apache.cxf.Bus;
import org.apache.cxf.common.util.CollectionUtils;
import org.apache.cxf.common.util.SystemPropertyAction;
import org.apache.cxf.common.util.URIParserUtil;
import org.apache.cxf.helpers.CastUtils;
import org.apache.cxf.helpers.FileUtils;
import org.apache.cxf.helpers.JavaUtils;
import org.apache.maven.ProjectDependenciesResolver;
import org.apache.maven.artifact.Artifact;
import org.apache.maven.artifact.resolver.AbstractArtifactResolutionException;
import org.apache.maven.artifact.resolver.ArtifactResolutionRequest;
import org.apache.maven.artifact.resolver.ArtifactResolutionResult;
import org.apache.maven.execution.MavenSession;
import org.apache.maven.model.Resource;
import org.apache.maven.plugin.AbstractMojo;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugins.annotations.Component;
import org.apache.maven.plugins.annotations.Parameter;
import org.apache.maven.project.MavenProject;
import org.apache.maven.repository.RepositorySystem;
import org.apache.maven.settings.Proxy;
import org.apache.maven.toolchain.Toolchain;
import org.apache.maven.toolchain.ToolchainManager;
import org.codehaus.plexus.archiver.jar.JarArchiver;
import org.codehaus.plexus.archiver.jar.Manifest;
import org.codehaus.plexus.archiver.jar.Manifest.Attribute;
import org.codehaus.plexus.util.StringUtils;
import org.codehaus.plexus.util.cli.CommandLineException;
import org.codehaus.plexus.util.cli.CommandLineUtils;
import org.codehaus.plexus.util.cli.Commandline;
import org.codehaus.plexus.util.cli.StreamConsumer;
import org.sonatype.plexus.build.incremental.BuildContext;
public abstract class AbstractCodegenMojo extends AbstractMojo {
/**
* JVM/System property name holding the hostname of the http proxy.
*/
private static final String HTTP_PROXY_HOST = "http.proxyHost";
/**
* JVM/System property name holding the port of the http proxy.
*/
private static final String HTTP_PROXY_PORT = "http.proxyPort";
/**
* JVM/System property name holding the list of hosts/patterns that
* should not use the proxy configuration.
*/
private static final String HTTP_NON_PROXY_HOSTS = "http.nonProxyHosts";
/**
* JVM/System property name holding the username of the http proxy.
*/
private static final String HTTP_PROXY_USER = "http.proxyUser";
/**
* JVM/System property name holding the password of the http proxy.
*/
private static final String HTTP_PROXY_PASSWORD = "http.proxyPassword";
@Parameter(property = "project.build.outputDirectory", required = true)
protected String classesDirectory;
/**
* By default all maven dependencies of type "wsdl" are added to the effective wsdlOptions. Setting this
* parameter to true disables this functionality
*/
@Parameter(property = "cxf.disableDependencyScan", defaultValue = "false")
protected boolean disableDependencyScan;
/**
* Disables the scanning of the wsdlRoot/testWsdlRoot directories.
* By default, we scan for *.wsdl (see include/exclude params as well) in the wsdlRoot
* directories and run the tool on all the wsdls we find. This disables that scan
* and requires an explicit wsdlOption to be set for each wsdl that needs to be processed.
*/
@Parameter(property = "cxf.disableDirectoryScan", defaultValue = "false")
protected boolean disableDirectoryScan;
/**
* Allows running the JavaToWs in a separate process. Valid values are "false", "always", and "once" The
* value of "true" is equal to "once"
*/
@Parameter(defaultValue = "false")
protected String fork;
/**
* A list of wsdl files to include. Can contain ant-style wildcards and double wildcards. Defaults to
* *.wsdl
*/
@Parameter
protected String[] includes;
/**
* Directory in which the "DONE" markers are saved that
*/
@Parameter(property = "cxf.markerDirectory", defaultValue = "${project.build.directory}/cxf-codegen-plugin-markers")
protected File markerDirectory;
/**
* The plugin dependencies, needed for the fork mode
*/
@Parameter(required = true, readonly = true, property = "plugin.artifacts")
protected List pluginArtifacts;
@Parameter(required = true, property = "project")
protected MavenProject project;
/**
* Use the compile classpath rather than the test classpath for execution useful if the test dependencies
* clash with those of wsdl2java
*/
@Parameter(property = "cxf.useCompileClasspath", defaultValue = "false")
protected boolean useCompileClasspath;
/**
* A list of wsdl files to exclude. Can contain ant-style wildcards and double wildcards.
*/
@Parameter
protected String[] excludes;
@Parameter(property = "cxf.testWsdlRoot", defaultValue = "${basedir}/src/test/resources/wsdl")
protected File testWsdlRoot;
@Parameter(property = "cxf.wsdlRoot", defaultValue = "${basedir}/src/main/resources/wsdl")
protected File wsdlRoot;
@Parameter(property = "cxf.skipGarbageCollection", defaultValue = "false")
protected boolean skipGarbageCollection;
@Component
protected BuildContext buildContext;
/**
* Sets the JVM arguments (i.e. -Xms128m -Xmx128m
) if fork is not set to false
.
*/
@Parameter(property = "cxf.codegen.jvmArgs")
private String additionalJvmArgs;
/**
* Sets the Java executable to use when fork parameter is true
.
*/
@Parameter
private String javaExecutable;
/**
* The toolchain manager.
*/
@Component
private ToolchainManager toolchainManager;
/**
* The Maven session.
*/
@Parameter(readonly = true, required = true, property = "session")
private MavenSession mavenSession;
@Component
private ProjectDependenciesResolver projectDependencyResolver;
@Component
private RepositorySystem repositorySystem;
public AbstractCodegenMojo() {
super();
}
public void execute() throws MojoExecutionException {
if (JavaUtils.isJava9Compatible()) {
fork = "true";
}
System.setProperty("org.apache.cxf.JDKBugHacks.defaultUsesCaches", "true");
// add the generated source into compile source
// do this step first to ensure the source folder will be added to the Eclipse classpath
if (project != null && getGeneratedSourceRoot() != null) {
project.addCompileSourceRoot(getGeneratedSourceRoot().getAbsolutePath());
}
if (project != null && getGeneratedTestRoot() != null) {
project.addTestCompileSourceRoot(getGeneratedTestRoot().getAbsolutePath());
}
checkResources();
// if this is an m2e configuration build then return immediately without doing any work
if (project != null && buildContext.isIncremental() && !buildContext.hasDelta(project.getBasedir())) {
return;
}
File classesDir = new File(classesDirectory);
/*
* This shouldn't be needed, but it's harmless.
*/
classesDir.mkdirs();
if (includes == null) {
includes = new String[] {
"*.wsdl"
};
}
markerDirectory.mkdirs();
String originalProxyHost = SystemPropertyAction.getProperty(HTTP_PROXY_HOST);
String originalProxyPort = SystemPropertyAction.getProperty(HTTP_PROXY_PORT);
String originalNonProxyHosts = SystemPropertyAction.getProperty(HTTP_NON_PROXY_HOSTS);
String originalProxyUser = SystemPropertyAction.getProperty(HTTP_PROXY_USER);
String originalProxyPassword = SystemPropertyAction.getProperty(HTTP_PROXY_PASSWORD);
Bus bus = null;
ClassLoaderSwitcher classLoaderSwitcher = null;
try {
configureProxyServerSettings();
List effectiveWsdlOptions = createWsdlOptionsFromScansAndExplicitWsdlOptions();
if (effectiveWsdlOptions.isEmpty()) {
getLog().info("Nothing to generate");
return;
}
classLoaderSwitcher = new ClassLoaderSwitcher(getLog());
boolean result = true;
Set cp = classLoaderSwitcher.switchClassLoader(project, useCompileClasspath, classesDir);
if ("once".equals(fork) || "true".equals(fork)) {
forkOnce(cp, effectiveWsdlOptions);
} else {
for (GenericWsdlOption o : effectiveWsdlOptions) {
bus = generate(o, bus, cp);
File[] dirs = o.getDeleteDirs();
if (dirs != null) {
for (int idx = 0; idx < dirs.length; ++idx) {
result = result && deleteDir(dirs[idx]);
}
}
}
}
} finally {
// cleanup as much as we can.
if (bus != null) {
bus.shutdown(true);
}
if (classLoaderSwitcher != null) {
classLoaderSwitcher.restoreClassLoader();
}
restoreProxySetting(originalProxyHost, originalProxyPort, originalNonProxyHosts,
originalProxyUser, originalProxyPassword);
}
checkResources();
// refresh the generated sources
if (project != null && getGeneratedSourceRoot() != null && getGeneratedSourceRoot().exists()) {
buildContext.refresh(getGeneratedSourceRoot().getAbsoluteFile());
}
if (project != null && getGeneratedTestRoot() != null && getGeneratedTestRoot().exists()) {
buildContext.refresh(getGeneratedTestRoot().getAbsoluteFile());
}
if (!skipGarbageCollection) {
System.gc();
}
}
private void checkResources() {
File root = project.getBasedir();
Resource sourceRoot = null;
Resource testRoot = null;
File genroot = getGeneratedSourceRoot();
if (genroot != null) {
List resources = project.getBuild().getResources();
for (Resource r : resources) {
File d = new File(root, r.getDirectory());
if (d.equals(genroot)) {
sourceRoot = r;
}
}
Resource r2 = scanForResources(genroot, sourceRoot);
if (r2 != sourceRoot) {
r2.setDirectory(getGeneratedSourceRoot().getAbsolutePath());
project.addResource(r2);
}
}
genroot = getGeneratedTestRoot();
if (genroot != null) {
List resources = project.getBuild().getTestResources();
for (Resource r : resources) {
File d = new File(root, r.getDirectory());
if (d.equals(genroot)) {
testRoot = r;
}
}
Resource r2 = scanForResources(genroot, testRoot);
if (r2 != testRoot) {
r2.setDirectory(getGeneratedTestRoot().getAbsolutePath());
project.addTestResource(r2);
}
}
}
private Resource scanForResources(File rootFile, Resource root) {
File[] files = rootFile.listFiles();
if (files == null) {
return root;
}
for (File f : files) {
if (f.isDirectory()) {
root = scanForResources(f, root);
} else if (!f.getName().endsWith(".java")) {
String n = f.getName();
int idx = n.lastIndexOf('.');
if (idx != -1) {
n = "**/*" + n.substring(idx);
}
if (root == null) {
root = new Resource();
}
if (!root.getIncludes().contains(n)) {
root.addInclude(n);
}
}
}
return root;
}
private void restoreProxySetting(String originalProxyHost, String originalProxyPort,
String originalNonProxyHosts,
String originalProxyUser,
String originalProxyPassword) {
if (originalProxyHost != null) {
System.setProperty(HTTP_PROXY_HOST, originalProxyHost);
} else {
System.getProperties().remove(HTTP_PROXY_HOST);
}
if (originalProxyPort != null) {
System.setProperty(HTTP_PROXY_PORT, originalProxyPort);
} else {
System.getProperties().remove(HTTP_PROXY_PORT);
}
if (originalNonProxyHosts != null) {
System.setProperty(HTTP_NON_PROXY_HOSTS, originalNonProxyHosts);
} else {
System.getProperties().remove(HTTP_NON_PROXY_HOSTS);
}
if (originalProxyUser != null) {
System.setProperty(HTTP_PROXY_USER, originalProxyUser);
} else {
System.getProperties().remove(HTTP_PROXY_USER);
}
if (originalProxyPassword != null) {
System.setProperty(HTTP_PROXY_PASSWORD, originalProxyPassword);
} else {
System.getProperties().remove(HTTP_PROXY_PASSWORD);
}
Proxy proxy = mavenSession.getSettings().getActiveProxy();
if (proxy != null && !StringUtils.isEmpty(proxy.getUsername())
&& !StringUtils.isEmpty(proxy.getPassword())) {
Authenticator.setDefault(null);
}
}
protected abstract Bus generate(GenericWsdlOption o,
Bus bus, Set cp) throws MojoExecutionException;
protected void addPluginArtifact(Set artifactsPath) {
// for Maven 2.x, the actual artifact isn't in the list.... need to try and find it
URL url = getClass().getResource(getClass().getSimpleName() + ".class");
try {
if ("jar".equals(url.getProtocol())) {
String s = url.getPath();
if (s.contains("!")) {
s = s.substring(0, s.indexOf('!'));
url = new URL(s);
}
}
URI uri = new URI(url.getProtocol(), null, url.getPath(), null, null);
if (uri.getSchemeSpecificPart().endsWith(".class")) {
String s = uri.toString();
s = s.substring(0, s.length() - 6 - getClass().getName().length());
uri = new URI(s);
}
File file = new File(uri);
if (file.exists()) {
artifactsPath.add(file.toURI());
}
} catch (Exception ex) {
// ex.printStackTrace();
}
}
protected void configureProxyServerSettings() throws MojoExecutionException {
Proxy proxy = mavenSession.getSettings().getActiveProxy();
if (proxy != null) {
getLog().info("Using proxy server configured in maven.");
if (proxy.getHost() == null) {
throw new MojoExecutionException("Proxy in settings.xml has no host");
}
if (proxy.getHost() != null) {
System.setProperty(HTTP_PROXY_HOST, proxy.getHost());
}
if (String.valueOf(proxy.getPort()) != null) {
System.setProperty(HTTP_PROXY_PORT, String.valueOf(proxy.getPort()));
}
if (proxy.getNonProxyHosts() != null) {
System.setProperty(HTTP_NON_PROXY_HOSTS, proxy.getNonProxyHosts());
}
if (!StringUtils.isEmpty(proxy.getUsername())
&& !StringUtils.isEmpty(proxy.getPassword())) {
final String authUser = proxy.getUsername();
final String authPassword = proxy.getPassword();
Authenticator.setDefault(new Authenticator() {
public PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(authUser, authPassword.toCharArray());
}
});
System.setProperty(HTTP_PROXY_USER, authUser);
System.setProperty(HTTP_PROXY_PASSWORD, authPassword);
}
}
}
protected abstract List createWsdlOptionsFromScansAndExplicitWsdlOptions()
throws MojoExecutionException;
/**
* Recursively delete the given directory
*
* @param f
* @return
*/
protected boolean deleteDir(File f) {
if (f.isDirectory()) {
File[] files = f.listFiles();
if (files != null) {
for (int idx = 0; idx < files.length; ++idx) {
deleteDir(files[idx]);
}
}
}
if (f.exists()) {
return f.delete();
}
buildContext.refresh(f.getParentFile());
return true;
}
protected abstract String getMarkerSuffix();
protected List generateCommandLine(GenericWsdlOption wsdlOption)
throws MojoExecutionException {
File outputDirFile = wsdlOption.getOutputDir();
outputDirFile.mkdirs();
URI basedir = project.getBasedir().toURI();
URI wsdlURI = getWsdlURI(wsdlOption, basedir);
return wsdlOption.generateCommandLine(outputDirFile, basedir, wsdlURI,
getLog().isDebugEnabled());
}
protected void forkOnce(Set classPath, List effectiveWsdlOptions)
throws MojoExecutionException {
List toDo = new LinkedList<>();
List> wargs = new LinkedList<>();
for (GenericWsdlOption wsdlOption : effectiveWsdlOptions) {
File outputDirFile = wsdlOption.getOutputDir();
outputDirFile.mkdirs();
URI basedir = project.getBasedir().toURI();
URI wsdlURI = getWsdlURI(wsdlOption, basedir);
File doneFile = getDoneFile(basedir, wsdlURI, getMarkerSuffix());
if (!shouldRun(wsdlOption, doneFile, wsdlURI)) {
continue;
}
doneFile.delete();
toDo.add(wsdlOption);
wargs.add(generateCommandLine(wsdlOption));
}
if (wargs.isEmpty()) {
return;
}
Set artifactsPath = new LinkedHashSet<>();
for (Artifact a : pluginArtifacts) {
File file = a.getFile();
if (file == null) {
throw new MojoExecutionException("Unable to find file for artifact " + a.getGroupId()
+ ":" + a.getArtifactId() + ":" + a.getVersion());
}
artifactsPath.add(file.toURI());
}
addPluginArtifact(artifactsPath);
artifactsPath.addAll(classPath);
String[] args = createForkOnceArgs(wargs);
runForked(artifactsPath, getForkClass().getName(), args);
for (GenericWsdlOption wsdlOption : toDo) {
File[] dirs = wsdlOption.getDeleteDirs();
if (dirs != null) {
for (int idx = 0; idx < dirs.length; ++idx) {
deleteDir(dirs[idx]);
}
}
URI basedir = project.getBasedir().toURI();
URI wsdlURI = getWsdlURI(wsdlOption, basedir);
File doneFile = getDoneFile(basedir, wsdlURI, getMarkerSuffix());
try {
createMarkerFile(wsdlOption, doneFile, wsdlURI);
} catch (Throwable e) {
getLog().warn("Could not create marker file " + doneFile.getAbsolutePath());
getLog().debug(e);
}
}
}
protected abstract Class> getForkClass();
protected File getDoneFile(URI basedir, URI wsdlURI, String mojo) {
String doneFileName = mojo + wsdlURI.toString();
try {
MessageDigest cript = MessageDigest.getInstance("SHA-1");
cript.reset();
cript.update(doneFileName.getBytes("utf8"));
doneFileName = new javax.xml.bind.annotation.adapters.HexBinaryAdapter().marshal(cript.digest());
} catch (Exception e) {
//ignore, we'll try and fake it based on the wsdl
// Strip the basedir from the doneFileName
if (doneFileName.startsWith(basedir.toString())) {
doneFileName = doneFileName.substring(basedir.toString().length());
}
// If URL to WSDL, replace ? and & since they're invalid chars for file names
// Not to mention slashes.
doneFileName = doneFileName.replace('?', '_').replace('&', '_').replace('/', '_').replace('\\', '_')
.replace(':', '_');
doneFileName += ".DONE";
}
return new File(markerDirectory, "." + doneFileName);
}
protected abstract File getGeneratedSourceRoot();
protected abstract File getGeneratedTestRoot();
protected void runForked(Set classPath,
String mainClassName,
String[] args) throws MojoExecutionException {
getLog().info("Running code generation in fork mode...");
getLog().debug("Running code generation in fork mode with args " + Arrays.asList(args));
Commandline cmd = new Commandline();
cmd.getShell().setQuotedArgumentsEnabled(true); // for JVM args
cmd.setWorkingDirectory(project.getBuild().getDirectory());
String javaPath = getJavaExecutable().getAbsolutePath();
cmd.setExecutable(javaPath);
setJvmForkArgs(javaPath);
cmd.createArg().setLine(additionalJvmArgs);
final File file;
try {
// file = new File("/tmp/test.jar");
file = FileUtils.createTempFile("cxf-codegen", ".jar");
JarArchiver jar = new JarArchiver();
jar.setDestFile(file.getAbsoluteFile());
Manifest manifest = new Manifest();
Attribute attr = new Attribute();
attr.setName("Class-Path");
StringBuilder b = new StringBuilder(8000);
for (URI cp : classPath) {
b.append(cp.toURL().toExternalForm()).append(' ');
}
attr.setValue(b.toString());
manifest.getMainSection().addConfiguredAttribute(attr);
attr = new Attribute();
attr.setName("Main-Class");
attr.setValue(mainClassName);
manifest.getMainSection().addConfiguredAttribute(attr);
jar.addConfiguredManifest(manifest);
jar.createArchive();
cmd.createArg().setValue("-jar");
String tmpFilePath = file.getAbsolutePath();
if (tmpFilePath.contains(" ")) {
//ensure the path is in double quotation marks if the path contain space
tmpFilePath = '"' + tmpFilePath + '"';
}
cmd.createArg().setValue(tmpFilePath);
} catch (Exception e1) {
throw new MojoExecutionException("Could not create runtime jar", e1);
}
cmd.addArguments(args);
StreamConsumer out = new StreamConsumer() {
public void consumeLine(String line) {
getLog().info(line);
}
};
final StringBuilder b = new StringBuilder();
StreamConsumer err = new StreamConsumer() {
public void consumeLine(String line) {
b.append(line);
b.append('\n');
getLog().warn(line);
}
};
int exitCode;
try {
exitCode = CommandLineUtils.executeCommandLine(cmd, out, err);
} catch (CommandLineException e) {
getLog().debug(e);
throw new MojoExecutionException(e.getMessage(), e);
}
String cmdLine = CommandLineUtils.toString(cmd.getCommandline());
if (exitCode != 0) {
StringBuilder msg = new StringBuilder("\nExit code: ");
msg.append(exitCode);
msg.append('\n');
msg.append("Command line was: ").append(cmdLine).append('\n').append('\n');
throw new MojoExecutionException(msg.toString());
}
file.delete();
if (b.toString().contains("WSDL2Java Error")) {
StringBuilder msg = new StringBuilder();
msg.append(b.toString());
msg.append('\n');
msg.append("Command line was: ").append(cmdLine).append('\n').append('\n');
throw new MojoExecutionException(msg.toString());
}
}
/**
* Run the JDK version (could be set via the toolchain) and see if we need to configure the JvmArgs
* accordingly. Once we remove JDK8 support we can just add the additional args by default and remove
* this method.
*/
private void setJvmForkArgs(String javaExecutablePath) {
Commandline cmd = new Commandline();
cmd.getShell().setQuotedArgumentsEnabled(true); // for JVM args
cmd.setWorkingDirectory(project.getBuild().getDirectory());
cmd.setExecutable(javaExecutablePath);
Java9StreamConsumer consumer = new Java9StreamConsumer();
try {
cmd.createArg().setValue("-XshowSettings:properties -version");
CommandLineUtils.executeCommandLine(cmd, null, consumer);
} catch (Exception e2) {
e2.printStackTrace();
}
if (additionalJvmArgs == null) {
additionalJvmArgs = "";
}
if (consumer.isJava9Plus()) {
additionalJvmArgs = "--add-exports=jdk.xml.dom/org.w3c.dom.html=ALL-UNNAMED "
+ "--add-exports=java.xml/com.sun.org.apache.xerces.internal.impl.xs=ALL-UNNAMED "
+ "--add-opens java.base/java.security=ALL-UNNAMED "
+ "--add-opens java.base/java.net=ALL-UNNAMED "
+ "--add-opens java.base/java.lang=ALL-UNNAMED "
+ "--add-opens java.base/java.util=ALL-UNNAMED "
+ "--add-opens java.base/java.util.concurrent=ALL-UNNAMED "
+ additionalJvmArgs;
}
}
/**
* Parse each line of the output for "java.version" and see if the version is >= 9
*/
private static final class Java9StreamConsumer implements StreamConsumer {
boolean java9;
public void consumeLine(String line) {
if (!java9 && line.contains("java.version")) {
String version = line.trim().substring("java.version = ".length());
if (version != null) {
if (version.indexOf('.') > 0) {
version = version.substring(0, version.indexOf('.'));
}
if (version.indexOf('-') > 0) {
version = version.substring(0, version.indexOf('-'));
}
try {
if (Integer.valueOf(version) >= 9) {
java9 = true;
}
} catch (NumberFormatException ex) {
// ignore
}
}
}
}
public boolean isJava9Plus() {
return java9;
}
}
/**
* Determine if code should be generated from the given wsdl
*
* @param wsdlOption
* @param doneFile
* @param wsdlURI
* @return
*/
protected abstract boolean shouldRun(GenericWsdlOption wsdlOption, File doneFile, URI wsdlURI);
protected void createMarkerFile(GenericWsdlOption wsdlOption, File doneFile, URI wsdlURI) throws IOException {
doneFile.createNewFile();
}
private String[] createForkOnceArgs(List> wargs) throws MojoExecutionException {
try {
File f = FileUtils.createTempFile("cxf-w2j", "args");
PrintWriter fw = new PrintWriter(new FileWriter(f));
for (List args : wargs) {
fw.println(Integer.toString(args.size()));
for (String s : args) {
fw.println(s);
}
}
fw.println("-1");
fw.close();
return new String[] {
f.getAbsolutePath()
};
} catch (IOException ex) {
throw new MojoExecutionException("Could not create argument file", ex);
}
}
/**
* 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(GenericWsdlOption option, File baseDir) {
if (option.getUri() == null) {
return null;
}
File file = null;
try {
URI uri = new URI(option.getUri());
if (uri.isAbsolute()) {
file = new File(uri);
}
} catch (Exception e) {
// ignore
}
if (file == null || !file.exists()) {
file = new File(option.getUri());
}
if (!file.exists()) {
file = new File(baseDir, option.getUri());
}
return file;
}
public URI getWsdlURI(GenericWsdlOption option, URI baseURI) throws MojoExecutionException {
String wsdlLocation = option.getUri();
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));
}
protected void downloadRemoteWsdls(List effectiveWsdlOptions)
throws MojoExecutionException {
for (GenericWsdlOption wsdlOption : effectiveWsdlOptions) {
WsdlArtifact wsdlA = wsdlOption.getArtifact();
if (wsdlA == null) {
continue;
}
Artifact wsdlArtifact = repositorySystem.createArtifactWithClassifier(wsdlA.getGroupId(),
wsdlA.getArtifactId(),
wsdlA.getVersion(),
wsdlA.getType(),
wsdlA.getClassifier());
wsdlArtifact = resolveRemoteWsdlArtifact(wsdlArtifact);
if (wsdlArtifact != null) {
File supposedFile = wsdlArtifact.getFile();
if (!supposedFile.exists() || !supposedFile.isFile()) {
getLog().info("Apparent Maven bug: wsdl artifact 'resolved' to "
+ supposedFile.getAbsolutePath() + " for " + wsdlArtifact.toString());
continue;
}
String path = supposedFile.getAbsolutePath();
getLog().info("Resolved WSDL artifact to file " + path);
wsdlOption.setUri(path);
}
}
}
private File getJavaExecutable() throws MojoExecutionException {
if (javaExecutable != null) {
getLog().debug("Plugin configuration set the 'javaExecutable' parameter to " + javaExecutable);
} else {
Toolchain tc = toolchainManager.getToolchainFromBuildContext("jdk", mavenSession);
if (tc != null) {
getLog().info("Using toolchain " + tc + " to find the java executable");
javaExecutable = tc.findTool("java");
} else {
getLog().debug("The java executable is set to default value");
javaExecutable = SystemUtils.getJavaHome() + File.separator + "bin" + File.separator + "java";
}
}
String exe = SystemUtils.IS_OS_WINDOWS && !javaExecutable.endsWith(".exe") ? ".exe" : "";
File javaExe = new File(javaExecutable + exe);
if (!javaExe.isFile()) {
throw new MojoExecutionException("The java executable '" + javaExe + "' doesn't exist or is not a file."
+ " Verify the parameter or toolchain configuration.");
}
getLog().info("The java executable is " + javaExe.getAbsolutePath());
return javaExe;
}
private Artifact resolveRemoteWsdlArtifact(Artifact artifact) throws MojoExecutionException {
Artifact remoteWsdl = resolveDependentWsdl(artifact);
if (remoteWsdl == null) {
remoteWsdl = resolveAttachedWsdl(artifact);
}
if (remoteWsdl == null) {
remoteWsdl = resolveArbitraryWsdl(artifact);
}
if (remoteWsdl != null && remoteWsdl.isResolved()) {
return remoteWsdl;
}
throw new MojoExecutionException(String.format("Failed to resolve WSDL artifact %s",
artifact.toString()));
}
private Artifact resolveDependentWsdl(Artifact artifact) {
Collection scopes = new ArrayList<>();
scopes.add(Artifact.SCOPE_RUNTIME);
Set artifactSet = null;
try {
artifactSet = projectDependencyResolver.resolve(project, scopes, mavenSession);
} catch (AbstractArtifactResolutionException e) {
getLog().info("Error resolving dependent wsdl artifact.", e);
}
return findWsdlArtifact(artifact, artifactSet);
}
private Artifact resolveAttachedWsdl(Artifact artifact) {
List rProjects = mavenSession.getProjects();
List artifactList = new ArrayList<>();
for (MavenProject rProject : rProjects) {
List list = CastUtils.cast(rProject.getAttachedArtifacts());
if (list != null) {
artifactList.addAll(list);
}
}
return findWsdlArtifact(artifact, artifactList);
}
private Artifact resolveArbitraryWsdl(Artifact artifact) {
ArtifactResolutionRequest request = new ArtifactResolutionRequest();
request.setArtifact(artifact);
request.setResolveRoot(true).setResolveTransitively(false);
request.setServers(mavenSession.getRequest().getServers());
request.setMirrors(mavenSession.getRequest().getMirrors());
request.setProxies(mavenSession.getRequest().getProxies());
request.setLocalRepository(mavenSession.getLocalRepository());
request.setRemoteRepositories(mavenSession.getRequest().getRemoteRepositories());
ArtifactResolutionResult result = repositorySystem.resolve(request);
Artifact resolvedArtifact = result.getOriginatingArtifact();
if (resolvedArtifact == null && !CollectionUtils.isEmpty(result.getArtifacts())) {
resolvedArtifact = result.getArtifacts().iterator().next();
}
return resolvedArtifact;
}
private Artifact findWsdlArtifact(Artifact targetArtifact, Collection artifactSet) {
if (artifactSet != null && !artifactSet.isEmpty()) {
for (Artifact pArtifact : artifactSet) {
boolean artifactMatched = isArtifactMatched(targetArtifact, pArtifact);
if (targetArtifact.getClassifier() != null && pArtifact.getClassifier() != null
&& targetArtifact.getClassifier().equals(pArtifact.getClassifier())
&& artifactMatched) {
//handle multile classifiers
return pArtifact;
} else if (artifactMatched && targetArtifact.getClassifier() == null) {
return pArtifact;
}
}
}
return null;
}
private boolean isArtifactMatched(Artifact targetArtifact, Artifact pArtifact) {
return targetArtifact.getGroupId().equals(pArtifact.getGroupId())
&& targetArtifact.getArtifactId().equals(pArtifact.getArtifactId())
&& targetArtifact.getVersion().equals(pArtifact.getVersion())
&& ("wsdl".equals(pArtifact.getType())
|| (
targetArtifact.getClassifier() != null
&& pArtifact.getType() != null
&& (targetArtifact.getClassifier() + ".wsdl").equals(pArtifact.getType())
));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy