Package org.apache.cxf.maven_plugin

Source Code of org.apache.cxf.maven_plugin.XSDToJavaMojo

/**
* 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.net.URI;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;

import org.apache.maven.plugin.AbstractMojo;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.project.MavenProject;
import org.apache.tools.ant.ExitException;
import org.apache.tools.ant.util.optional.NoExitSecurityManager;

/**
* @goal xsdtojava
* @description CXF XSD To Java Tool
*/
public class XSDToJavaMojo extends AbstractMojo {
    /**
     * @parameter
     */
    String testSourceRoot;
   
    /**
     * @parameter  expression="${project.build.directory}/generated/src/main/java"
     * @required
     */
    String sourceRoot;
   
   
    /**
     * @parameter expression="${project}"
     * @required
     */
    MavenProject project;
   
   
    /**
     * @parameter
     */
    XsdOption xsdOptions[];
   
    /**
     * Directory in which the "DONE" markers are saved that
     * @parameter expression="${cxf.markerDirectory}"
     *            default-value="${project.build.directory}/cxf-xsd-plugin-markers"
     */
    File markerDirectory;
   
   
    public void execute() throws MojoExecutionException {
        String outputDir = testSourceRoot == null ? sourceRoot : testSourceRoot;
        File outputDirFile = new File(outputDir);
        outputDirFile.mkdirs();
        markerDirectory.mkdirs();

        long timestamp = CodegenUtils.getCodegenTimestamp();
        boolean result = true;
       
        if (xsdOptions == null) {
            throw new MojoExecutionException("Must specify xsdOptions");          
        }
    
        for (int x = 0; x < xsdOptions.length; x++) {
            String[] args = getArguments(xsdOptions[x], outputDir);
           
            String xsdLocation = xsdOptions[x].getXsd();
            File xsdFile = new File(xsdLocation);
            URI basedir = project.getBasedir().toURI();
            URI xsdURI;
            if (xsdFile.exists()) {
                xsdURI = xsdFile.toURI();
            } else {
                xsdURI = basedir.resolve(xsdLocation);
            }
           
            String doneFileName = xsdURI.toString();
            if (doneFileName.startsWith(basedir.toString())) {
                doneFileName = doneFileName.substring(basedir.toString().length());
            }
           
            doneFileName = doneFileName.replace('?', '_')
                .replace('&', '_').replace('/', '_').replace('\\', '_');
           
            // If URL to WSDL, replace ? and & since they're invalid chars for file names
            File doneFile =
                new File(markerDirectory, "." + doneFileName + ".DONE");
           
            long srctimestamp = 0;
            if ("file".equals(xsdURI.getScheme())) {
                srctimestamp = new File(xsdURI).lastModified();
            } else {
                try {
                    srctimestamp = xsdURI.toURL().openConnection().getDate();
                } catch (Exception e) {
                    //ignore
                }
            }
           
            boolean doWork = timestamp > doneFile.lastModified();
            if (!doneFile.exists()) {
                doWork = true;
            } else if (srctimestamp > doneFile.lastModified()) {
                doWork = true;
            } else {
                File files[] = xsdOptions[x].getDependencies();
                if (files != null) {
                    for (int z = 0; z < files.length; ++z) {
                        if (files[z].lastModified() > doneFile.lastModified()) {
                            doWork = true;
                        }
                    }
                }
            }
           
            if (doWork) {
                SecurityManager oldSm = System.getSecurityManager();
                try {
                    try {
                        System.setSecurityManager(new NoExitSecurityManager());
                       
                        com.sun.tools.xjc.Driver.main(args);
                      
                    } catch (ExitException e) {
                        if (e.getStatus() == 0) {
                            doneFile.delete();
                            doneFile.createNewFile();
                        } else {
                            throw e;
                        }
                    } finally {
                        System.setSecurityManager(oldSm);
                        File dirs[] = xsdOptions[x].getDeleteDirs();
                        if (dirs != null) {
                            for (int idx = 0; idx < dirs.length; ++idx) {
                                result = result && deleteDir(dirs[idx]);
                            }
                        }
                    }
                } catch (Exception e) {
                    e.printStackTrace();
                    throw new MojoExecutionException(e.getMessage(), e);
                }
            }
       
            if (!result) {
                throw new MojoExecutionException("Could not delete redundant dirs");
            }               
        }
       
        if (project != null && sourceRoot != null) {
            project.addCompileSourceRoot(sourceRoot);
        }
        if (project != null && testSourceRoot != null) {
            project.addTestCompileSourceRoot(testSourceRoot);
        }
    }
   
    private String[] getArguments(XsdOption option, String outputDir) {
        List<String> list = new ArrayList<String>();
        if (option.getPackagename() != null) {
            list.add("-p");
            list.add(option.getPackagename());
        }
        if (option.getBindingFile() != null) {
            list.add("-b");
            list.add(option.getBindingFile());
        }
        if (option.getCatalog() != null) {
            list.add("-catalog");
            list.add(option.getCatalog());
        }
        if (option.isExtension()) {
            list.add("-extension");
        }
        if (option.getExtensionArgs() != null) {
            Iterator it = option.getExtensionArgs().iterator();
            while (it.hasNext()) {
                list.add(it.next().toString());
            }
        }         
        if (getLog().isDebugEnabled()) {
            list.add("-verbose");           
        } else {
            list.add("-quiet");
        }
        list.add("-d");
        list.add(outputDir);
        list.add(option.getXsd());
      
        return list.toArray(new String[list.size()]);
       
    }
   
    private boolean deleteDir(File f) {
        if (f.isDirectory()) {
            File files[] = f.listFiles();
            for (int idx = 0; idx < files.length; ++idx) {
                deleteDir(files[idx]);
            }
        }
       
        if (f.exists()) {
            return f.delete();
        }
       
        return true;
    }
}
TOP

Related Classes of org.apache.cxf.maven_plugin.XSDToJavaMojo

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.