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 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268
|
/*
* 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.mapping;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import javax.xml.rpc.encoding.TypeMapping;
import org.apache.xerces.xs.XSComplexTypeDefinition;
import org.apache.xerces.xs.XSSimpleTypeDefinition;
import org.apache.xerces.xs.XSTypeDefinition;
import org.jboss.ws.Constants;
import org.jboss.ws.core.jaxrpc.LiteralTypeMapping;
import org.jboss.ws.metadata.jaxrpcmapping.JavaWsdlMapping;
import org.jboss.ws.metadata.jaxrpcmapping.MethodParamPartsMapping;
import org.jboss.ws.metadata.jaxrpcmapping.ServiceEndpointInterfaceMapping;
import org.jboss.ws.metadata.jaxrpcmapping.ServiceEndpointMethodMapping;
import org.jboss.ws.metadata.wsdl.WSDLDefinitions;
import org.jboss.ws.metadata.wsdl.WSDLService;
import org.jboss.ws.metadata.wsdl.WSDLUtils;
import org.jboss.ws.metadata.wsdl.xmlschema.JBossXSModel;
import org.jboss.ws.tools.JavaWriter;
import org.jboss.ws.tools.NamespacePackageMapping;
import org.jboss.ws.tools.XSDTypeToJava;
import org.jboss.ws.tools.XSDTypeToJava.VAR;
import org.jboss.ws.tools.helpers.MappingFileGeneratorHelper;
/**
* Generates the JAXRPC Mapping file from the WSDL Definitions.
* <dt>Guidance:
* <p>
* If there is knowledge of the ServiceEndpointInterface (SEI)
* as in serverside generation (Java->WSDL), will make use of it.
* </p>
* <p>
* The TypeMapping needs to be provided externally.
* </p>
* </dd>
* @author <mailto:Anil.Saldhana@jboss.org>Anil Saldhana
* @since Apr 5, 2005
*/
public class MappingFileGenerator
{
/**
* WSDLDefinitions object that is the root of the WSDL object model
*/
protected WSDLDefinitions wsdlDefinitions;
/**
* Package Names to override
*/
protected Map<String, String> namespacePackageMap;
/**
* Service Name
*/
protected String serviceName;
/**
* SEI Package Name to override
*/
protected String packageName;
/**
* Service Endpoint Interface (if available).
* <br/> Will be available for server side generation (Java -> WSDL)
*/
protected Class serviceEndpointInterface = null;
/**
* Type Mapping that is input from outside
*/
protected LiteralTypeMapping typeMapping = null;
protected String parameterStyle;
public MappingFileGenerator(WSDLDefinitions wsdl, TypeMapping typeM)
{
this.wsdlDefinitions = wsdl;
String targetNS = wsdl.getTargetNamespace();
packageName = NamespacePackageMapping.getJavaPackageName(targetNS);
this.typeMapping = (LiteralTypeMapping)typeM;
}
/**
* @return @see #wsdlDefinitions
*/
public WSDLDefinitions getWsdlDefinitions()
{
return wsdlDefinitions;
}
public void setWsdlDefinitions(WSDLDefinitions wsdlDefinitions)
{
this.wsdlDefinitions = wsdlDefinitions;
}
/**
* @return @see #packageName
*/
public String getPackageName()
{
return packageName;
}
public void setPackageName(String packageName)
{
this.packageName = packageName;
}
public Map<String, String> getNamespacePackageMap()
{
return namespacePackageMap;
}
public void setNamespacePackageMap(Map<String, String> map)
{
namespacePackageMap = map;
}
/**
* @return @see #serviceName
*/
public String getServiceName()
{
return serviceName;
}
public void setServiceEndpointInterface(Class serviceEndpointInterface)
{
this.serviceEndpointInterface = serviceEndpointInterface;
}
public void setServiceName(String serviceName)
{
this.serviceName = serviceName;
}
public void setParameterStyle(String paramStyle)
{
this.parameterStyle = paramStyle;
}
/**
* Method that generates the jaxrpc mapping metadata
* <dt>Guidance:<dd>
* <p>If you need the metadata serialized, please use:
* @see JavaWsdlMapping#serialize()
* </p>
* @throws IOException
* @throws IllegalArgumentException mappingfilename is null
*/
public JavaWsdlMapping generate() throws IOException
{
MappingFileGeneratorHelper helper = new MappingFileGeneratorHelper(this.wsdlDefinitions, this.serviceName, this.namespacePackageMap, this.serviceEndpointInterface,
this.typeMapping, this.parameterStyle);
JavaWsdlMapping jwm = new JavaWsdlMapping();
//If the schema has types, we will need to generate the java/xml type mapping
helper.constructJavaXmlTypeMapping(jwm);
WSDLService[] services = wsdlDefinitions.getServices();
int lenServices = 0;
if (services != null)
lenServices = services.length;
for (int i = 0; i < lenServices; i++)
{
WSDLService wsdlService = services[i];
jwm.addServiceInterfaceMappings(helper.constructServiceInterfaceMapping(jwm, wsdlService));
helper.constructServiceEndpointInterfaceMapping(jwm, wsdlService);
}
// Add package to namespace mapping after helper has generated the rest of the file.
String targetNS = wsdlDefinitions.getTargetNamespace();
String typeNamespace = helper.getTypeNamespace();
if (typeNamespace == null)
typeNamespace = targetNS;
//Construct package mapping
//Check if the user has provided a typeNamespace
if (typeNamespace != null && typeNamespace.equals(targetNS) == false || isServerSideGeneration())
jwm.addPackageMapping(helper.constructPackageMapping(jwm, getPackageName(typeNamespace), typeNamespace));
jwm.addPackageMapping(helper.constructPackageMapping(jwm, getPackageName(targetNS), targetNS));
return jwm;
}
public void generateJavaSourceFileForRequestResponseStruct(File location, ServiceEndpointInterfaceMapping seim, JBossXSModel xsmodel, String typeNamespace)
throws IOException
{
WSDLUtils utils = WSDLUtils.getInstance();
XSDTypeToJava xst = new XSDTypeToJava();
xst.setTypeMapping(this.typeMapping);
xst.setPackageName(getPackageName(typeNamespace));
ServiceEndpointMethodMapping[] mapArr = seim.getServiceEndpointMethodMappings();
int len = mapArr != null ? mapArr.length : 0;
for (int i = 0; i < len; i++)
{
ServiceEndpointMethodMapping mm = mapArr[i];
String opname = mm.getJavaMethodName();
String sei = seim.getServiceEndpointInterface();
String plainClassName = utils.getJustClassName(sei);
String classname = plainClassName + "_" + opname + "_RequestStruct";
List<VAR> listInputs = new ArrayList<VAR>();
MethodParamPartsMapping[] mppmarr = mm.getMethodParamPartsMappings();
int lenmppmarr = mppmarr != null ? mppmarr.length : 0;
for (int j = 0; j < lenmppmarr; j++)
{
listInputs.addAll(xst.getVARList((XSComplexTypeDefinition)xsmodel.getTypeDefinition(opname, typeNamespace), xsmodel, false));
}
JavaWriter jw = new JavaWriter();
jw.createJavaFile(location, classname, getPackageName(typeNamespace), listInputs, null, null, false, null);
classname = plainClassName + "_" + opname + "_ResponseStruct";
XSTypeDefinition xt = xsmodel.getTypeDefinition(opname + "Response", typeNamespace);
List<VAR> listOutputs = new ArrayList<VAR>();
if (xt instanceof XSSimpleTypeDefinition)
{
listOutputs.add(new VAR(Constants.DEFAULT_RPC_RETURN_NAME, xt.getName(), false));
}
else listOutputs.addAll(xst.getVARList((XSComplexTypeDefinition)xt, xsmodel, false));
jw.createJavaFile(location, classname, getPackageName(typeNamespace), listOutputs, null, null, false, null);
}
}
//PRIVATE METHODS
private boolean isServerSideGeneration()
{
return this.serviceEndpointInterface != null;
}
private String getPackageName(String targetNamespace)
{
//Get it from global config
if (namespacePackageMap != null)
{
String pkg = namespacePackageMap.get(targetNamespace);
if (pkg != null)
{
return pkg;
}
}
//Default behaviour will always generate all classes in the SEI package only
return packageName;
}
}
|