1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
|
/*
* JBoss, Home of Professional Open Source
* Copyright 2005, JBoss Inc., and individual contributors as indicated
* by the @authors tag. See the copyright.txt 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.tools;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
import javax.xml.rpc.encoding.TypeMapping;
import org.jboss.logging.Logger;
import org.jboss.ws.Constants;
import org.jboss.ws.WSException;
import org.jboss.ws.metadata.jaxrpcmapping.JavaWsdlMapping;
import org.jboss.ws.metadata.umdm.EndpointMetaData;
import org.jboss.ws.metadata.umdm.ServiceMetaData;
import org.jboss.ws.metadata.umdm.UnifiedMetaData;
import org.jboss.ws.metadata.wsdl.WSDLDefinitions;
import org.jboss.ws.metadata.wsdl.WSDLUtils;
import org.jboss.ws.metadata.wsdl.xmlschema.JBossXSModel;
import org.jboss.ws.tools.helpers.JavaToWSDLHelper;
/**
* Java To WSDL11 Converter
* @author <mailto:Anil.Saldhana@jboss.org>Anil Saldhana
* @since Jul 24, 2005
*/
public class JavaToWSDL11
{
// provide logging
private static final Logger log = Logger.getLogger(JavaToWSDL11.class);
// The required wsdl namespace URI
private final String wsdlNamespace = Constants.NS_WSDL11;
/** Features as represented by Constants*/
private HashMap<String, Boolean> features = new HashMap<String, Boolean>();
// A Map of package/namespace mapping that needs to be passed onto types generator
private Map<String, String> packageNamespaceMap = null;
private TypeMapping typeMapping = null;
private JavaWsdlMapping javaWsdlMapping = null;
private UnifiedMetaData umd = null;
private boolean qualifiedElements = false;
/**
* Default Constructor
*/
public JavaToWSDL11()
{
if(log.isDebugEnabled()) log.debug("Creating JavaToWSDL11 instance");
}
/**
* Add a feature to this subsystem
* @see org.jboss.ws.tools.WSToolsConstants
* @param name
* @param value
*/
public void addFeature(String name, boolean value)
{
features.put(name, new Boolean(value));
}
/**
* Append features
* @see org.jboss.ws.tools.WSToolsConstants
* @param map
*/
public void addFeatures(Map<String, Boolean> map)
{
features.putAll(map);
}
/**
* Return a feature if set
* @see org.jboss.ws.tools.WSToolsConstants
* @param name
* @return boolean value representing the feature, if not
* @throws IllegalStateException Feature unrecognized
*/
public boolean getFeature(String name)
{
Boolean val = features.get(name);
if (val != null)
return val.booleanValue();
throw new WSException("Feature unrecognized");
}
/**
* A customized Package->Namespace map
*
* @param map
*/
public void setPackageNamespaceMap(Map<String, String> map)
{
packageNamespaceMap = map;
}
/**
* During the WSDL generation process, a typeMapping will be
* created that maps xml types -> java types
*
* @return typeMapping
* @exception IllegalStateException If typeMapping has not been generated
*/
public TypeMapping getTypeMapping()
{
if (typeMapping == null)
throw new WSException("TypeMapping has not been generated");
return typeMapping;
}
/**
* Clients of Tools can build a UnifiedMetaData externally
* and pass it to the Java To WSDL subsystem [Optional]
*
* @param um
*/
public void setUnifiedMetaData(UnifiedMetaData um)
{
this.umd = um;
}
/**
* Generate the common WSDL definition for a given endpoint
*/
public WSDLDefinitions generate(Class endpoint)
{
WSDLDefinitions wsdl = null;
if (umd != null)
{
JavaToWSDLHelper helper = new JavaToWSDLHelper();
try
{
helper.setPackageNamespaceMap(packageNamespaceMap);
wsdl = handleJavaToWSDLGeneration(helper, endpoint.getName());
typeMapping = helper.getTypeMapping();
}
catch (IOException e)
{
log.error("Error during Java->WSDL generation:", e);
}
}
// This is somewhat of a hack
if (qualifiedElements)
{
JBossXSModel schemaModel = WSDLUtils.getSchemaModel(wsdl.getWsdlTypes());
if (schemaModel != null)
schemaModel.setQualifiedElements(true);
}
return wsdl;
}
public boolean isQualifiedElements()
{
return qualifiedElements;
}
public void setQualifiedElements(boolean qualifiedElements)
{
this.qualifiedElements = qualifiedElements;
}
public JavaWsdlMapping getJavaWsdlMapping()
{
return javaWsdlMapping;
}
//PRIVATE METHODS
private WSDLDefinitions handleJavaToWSDLGeneration(JavaToWSDLHelper helper, String endpointName) throws IOException
{
WSDLDefinitions wsdl = null;
if (umd == null)
throw new WSException("Unified Meta Data Model is null");
for (ServiceMetaData service : umd.getServices())
{
EndpointMetaData epMetaData = service.getEndpointByServiceEndpointInterface(endpointName);
if (epMetaData != null)
{
wsdl = helper.generate(service);
break;
}
}
javaWsdlMapping = helper.getJavaWsdlMapping();
return wsdl;
}
}
|