You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by di...@apache.org on 2006/02/10 22:17:43 UTC

svn commit: r376864 - /webservices/axis2/trunk/java/modules/tool/src/org/apache/axis2/tool/ant/Java2WSDLTask.java

Author: dims
Date: Fri Feb 10 13:17:41 2006
New Revision: 376864

URL: http://svn.apache.org/viewcvs?rev=376864&view=rev
Log:
Fix for AXIS2-445 - Java2WSDL Ant Task from Deepak

Added:
    webservices/axis2/trunk/java/modules/tool/src/org/apache/axis2/tool/ant/Java2WSDLTask.java

Added: webservices/axis2/trunk/java/modules/tool/src/org/apache/axis2/tool/ant/Java2WSDLTask.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/tool/src/org/apache/axis2/tool/ant/Java2WSDLTask.java?rev=376864&view=auto
==============================================================================
--- webservices/axis2/trunk/java/modules/tool/src/org/apache/axis2/tool/ant/Java2WSDLTask.java (added)
+++ webservices/axis2/trunk/java/modules/tool/src/org/apache/axis2/tool/ant/Java2WSDLTask.java Fri Feb 10 13:17:41 2006
@@ -0,0 +1,203 @@
+/*
+ * Copyright 2004,2005 The Apache Software Foundation.
+ *
+ * Licensed 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.axis2.tool.ant;
+
+import org.apache.axis2.wsdl.codegen.Java2WSDLCodegenEngine;
+import org.apache.axis2.wsdl.util.CommandLineOption;
+import org.apache.axis2.wsdl.util.CommandLineOptionConstants;
+import org.apache.tools.ant.AntClassLoader;
+import org.apache.tools.ant.BuildException;
+import org.apache.tools.ant.Task;
+
+import java.util.HashMap;
+import java.util.Map;
+
+public class Java2WSDLTask extends Task {
+
+    private String className = null;
+    private String outputLocation = null;
+    private String classpathURI = null;
+    private String targetNamespace = null;
+    private String targetNamespacePrefix = null;
+    private String schemaTargetNamespace = null;
+    private String schemaTargetNamespacePrefix = null;
+    private String serviceName = null;
+    private String outputFileName = null;
+
+    /**
+     * 
+     */
+    public Java2WSDLTask() {
+        super();
+    }
+
+    /**
+     * Fills the option map. This map is passed onto
+     * the code generation API to generate the code.
+     */
+    private Map fillOptionMap() {
+        Map optionMap = new HashMap();
+
+        // Check that critical options exist
+        if (className == null) {
+        	throw new BuildException(
+        		"You must specify a classname");
+        }
+
+        ////////////////////////////////////////////////////////////////
+
+        // Classname
+        addToOptionMap(	optionMap, 
+        				CommandLineOptionConstants.Java2WSDLConstants.CLASSNAME_OPTION,
+                        className);
+        
+        // Output location
+        addToOptionMap(	optionMap, 
+                		CommandLineOptionConstants.Java2WSDLConstants.OUTPUT_LOCATION_OPTION,
+                        outputLocation);
+
+        // Classpath URI
+        addToOptionMap(	optionMap, 
+                		CommandLineOptionConstants.Java2WSDLConstants.CLASSPATH_OPTION,
+                		classpathURI);
+        
+        // Target namespace
+        addToOptionMap(	optionMap,
+                		CommandLineOptionConstants.Java2WSDLConstants.TARGET_NAMESPACE_OPTION,
+                		targetNamespace);
+
+        // Target namespace prefix
+        addToOptionMap(	optionMap,
+        				CommandLineOptionConstants.Java2WSDLConstants.TARGET_NAMESPACE_PREFIX_OPTION,
+        				targetNamespacePrefix);
+
+        // Schema target namespace
+        addToOptionMap(	optionMap,
+        				CommandLineOptionConstants.Java2WSDLConstants.SCHEMA_TARGET_NAMESPACE_OPTION,
+        				schemaTargetNamespace);
+
+        // Schema target namespace prefix
+        addToOptionMap(	optionMap,
+                		CommandLineOptionConstants.Java2WSDLConstants.SCHEMA_TARGET_NAMESPACE_PREFIX_OPTION,
+                		schemaTargetNamespacePrefix);
+
+        // Service name
+        addToOptionMap(	optionMap,
+        				CommandLineOptionConstants.Java2WSDLConstants.SERVICE_NAME_OPTION,
+        				serviceName);
+
+        // Output file name
+        addToOptionMap(	optionMap,
+                		CommandLineOptionConstants.Java2WSDLConstants.OUTPUT_FILENAME_OPTION,
+                		outputFileName);
+
+        return optionMap;
+    }
+
+    /**
+     * Utility method to convert a string into a single item string[]
+     * @param value
+     * @return Returns String[].
+     */
+    private String[] getStringArray(String value) {
+        String[] values = new String[1];
+        values[0] = value;
+        return values;
+    }
+
+    /**
+     * Function to put arguments in the option map. 
+     * This functions skips adding of options that have a null value.
+     * 
+     * @param map The option map into which the option is to be added
+     * @param option The option name
+     * @param value The value of the option
+     */
+    private void addToOptionMap(Map map, String option, String value) {
+    	if (value != null) {
+    		map.put(option,
+                    new CommandLineOption(option, getStringArray(value)));
+    	}
+    }
+
+    public void execute() throws BuildException {
+        try {
+            /**
+             * <comment borrowed from AntCodegenTask>
+             *  
+             * This needs the ClassLoader we use to load the task have all the dependancies set, hope that
+             * is ok for now
+             *
+             * todo look into this further!!!!!
+             */
+
+
+            AntClassLoader cl = new AntClassLoader(
+                    null,
+                    getProject(),
+                    null,
+                    false);
+
+            Thread.currentThread().setContextClassLoader(cl);
+            
+            if (outputLocation != null) cl.addPathElement(outputLocation);
+
+            Map commandLineOptions = this.fillOptionMap();
+            new Java2WSDLCodegenEngine(commandLineOptions).generate();
+
+        } catch (Throwable e) {
+            throw new BuildException(e);
+        }
+
+    }
+
+    public void setClassName(String className) {
+    	this.className = className;
+    }
+    
+    public void setOutputLocation(String outputLocation) {
+    		this.outputLocation = outputLocation;
+    }
+    
+    public void setClassPathURI(String classpathURI) {
+    	this.classpathURI = classpathURI;
+    }
+    
+    public void setTargetNamespace(String targetNamespace) {
+    	this.targetNamespace = targetNamespace;
+    }
+    
+    public void setTargetNamespacePrefix(String targetNamespacePrefix) {
+    	this.targetNamespacePrefix = targetNamespacePrefix;
+    }
+
+    public void setSchemaTargetNamespace(String schemaTargetNamespace) {
+    	this.schemaTargetNamespace = schemaTargetNamespace;
+    }
+    
+    public void setSchemaTargetNamespacePrefix(String schemaTargetNamespacePrefix) {
+    	this.schemaTargetNamespacePrefix = schemaTargetNamespacePrefix;
+    }
+    
+    public void setServiceName(String serviceName) {
+    	this.serviceName = serviceName;
+    }
+    
+    public void setOutputFileName(String outputFileName) {
+    	this.outputFileName = outputFileName;
+    }
+}