Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution License("CDDL") (collectively, the "License"). You
* may not use this file except in compliance with the License. You can obtain
* a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL.html
* or glassfish/bootstrap/legal/LICENSE.txt. See the License for the specific
* language governing permissions and limitations under the License.
*
* When distributing the software, include this License Header Notice in each
* file and include the License file at glassfish/bootstrap/legal/LICENSE.txt.
* Sun designates this particular file as subject to the "Classpath" exception
* as provided by Sun in the GPL Version 2 section of the License file that
* accompanied this code. If applicable, add the following below the License
* Header, with the fields enclosed by brackets [] replaced by your own
* identifying information: "Portions Copyrighted [year]
* [name of copyright owner]"
*
* Contributor(s):
*
* If you wish your version of this file to be governed by only the CDDL or
* only the GPL Version 2, indicate your decision by adding "[Contributor]
* elects to include this software in this distribution under the [CDDL or GPL
* Version 2] license." If you don't indicate a single choice of license, a
* recipient has the option to distribute your version of this file under
* either the CDDL, the GPL Version 2 or to extend the choice of license to
* its licensees as provided above. However, if you add GPL Version 2 code
* and therefore, elected the GPL Version 2 license, then the option applies
* only if the new code is made subject to such option by the copyright
* holder.
*/
package com.sun.xml.ws.model;
import com.sun.istack.NotNull;
import com.sun.xml.bind.api.Bridge;
import com.sun.xml.bind.api.JAXBRIContext;
import com.sun.xml.bind.api.TypeReference;
import com.sun.xml.ws.api.model.JavaMethod;
import com.sun.xml.ws.api.model.ParameterBinding;
import com.sun.xml.ws.api.model.SEIModel;
import com.sun.xml.ws.api.model.wsdl.WSDLModel;
import com.sun.xml.ws.api.model.wsdl.WSDLPort;
import com.sun.xml.ws.client.WSServiceDelegate;
import com.sun.xml.ws.encoding.soap.streaming.SOAPNamespaceConstants;
import com.sun.xml.ws.model.wsdl.WSDLBoundOperationImpl;
import com.sun.xml.ws.model.wsdl.WSDLBoundPortTypeImpl;
import com.sun.xml.ws.model.wsdl.WSDLPartImpl;
import com.sun.xml.ws.model.wsdl.WSDLPortImpl;
import com.sun.xml.ws.resources.ModelerMessages;
import com.sun.xml.ws.util.Pool;
import com.sun.xml.ws.developer.UsesJAXBContextFeature;
import com.sun.xml.ws.developer.JAXBContextFactory;
import com.sun.xml.ws.binding.WebServiceFeatureList;
import javax.jws.WebParam.Mode;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.namespace.QName;
import javax.xml.ws.WebServiceException;
import javax.xml.ws.WebServiceFeature;
import java.lang.reflect.Method;
import java.security.AccessController;
import java.security.PrivilegedActionException;
import java.security.PrivilegedExceptionAction;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.logging.Level;
import java.util.logging.Logger;
/**
* model of the web service. Used by the runtime marshall/unmarshall
* web service invocations
*
* @author JAXWS Development Team
*/
public abstract class AbstractSEIModelImpl implements SEIModel {
protected AbstractSEIModelImpl(WebServiceFeature[] features) {
this.features = features;
}
void postProcess() {
// should be called only once.
if (jaxbContext != null)
return;
populateMaps();
createJAXBContext();
}
/**
* Link {@link SEIModel} to {@link WSDLModel}.
* Merge it with {@link #postProcess()}.
*/
public void freeze(WSDLPortImpl port) {
this.port = port;
for (JavaMethodImpl m : javaMethods) {
m.freeze(port);
}
}
/**
* Populate methodToJM and nameToJM maps.
*/
abstract protected void populateMaps();
public Pool.Marshaller getMarshallerPool() {
return marshallers;
}
/**
* @return the JAXBRIContext
*/
public JAXBRIContext getJAXBContext() {
return jaxbContext;
}
/**
* @return the known namespaces from JAXBRIContext
*/
public List getKnownNamespaceURIs() {
return knownNamespaceURIs;
}
/**
* @return the Bridge for the type
*/
public final Bridge getBridge(TypeReference type) {
Bridge b = bridgeMap.get(type);
assert b!=null; // we should have created Bridge for all TypeReferences known to this model
return b;
}
private JAXBRIContext createJAXBContext() {
final List types = getAllTypeReferences();
final List cls = new ArrayList(types.size() + additionalClasses.size());
cls.addAll(additionalClasses);
for (TypeReference type : types)
cls.add((Class) type.type);
try {
//jaxbContext = JAXBRIContext.newInstance(cls, types, targetNamespace, false);
// Need to avoid doPriv block once JAXB is fixed. Afterwards, use the above
jaxbContext = AccessController.doPrivileged(new PrivilegedExceptionAction() {
public JAXBRIContext run() throws Exception {
if(LOGGER.isLoggable(Level.FINE)) {
LOGGER.log(Level.FINE,"Creating JAXBContext with classes="+cls+" and types="+types);
}
UsesJAXBContextFeature f = WebServiceFeatureList.getFeature(features, UsesJAXBContextFeature.class);
JAXBContextFactory factory = f!=null ? f.getFactory() : null;
if(factory==null) factory=JAXBContextFactory.DEFAULT;
return factory.createJAXBContext(AbstractSEIModelImpl.this,cls,types);
}
});
createBridgeMap(types);
} catch (PrivilegedActionException e) {
throw new WebServiceException(ModelerMessages.UNABLE_TO_CREATE_JAXB_CONTEXT(), e);
}
knownNamespaceURIs = new ArrayList();
for (String namespace : jaxbContext.getKnownNamespaceURIs()) {
if (namespace.length() > 0) {
if (!namespace.equals(SOAPNamespaceConstants.XSD) && !namespace.equals(SOAPNamespaceConstants.XMLNS))
knownNamespaceURIs.add(namespace);
}
}
marshallers = new Pool.Marshaller(jaxbContext);
return jaxbContext;
}
/**
* @return returns non-null list of TypeReference
*/
private List getAllTypeReferences() {
List types = new ArrayList();
Collection methods = methodToJM.values();
for (JavaMethodImpl m : methods) {
m.fillTypes(types);
}
return types;
}
private void createBridgeMap(List types) {
for (TypeReference type : types) {
Bridge bridge = jaxbContext.createBridge(type);
bridgeMap.put(type, bridge);
}
}
/**
* @return the Method for a given WSDLOperation qname
*/
public Method getDispatchMethod(QName qname) {
//handle the empty body
if (qname == null)
qname = emptyBodyName;
JavaMethodImpl jm = getJavaMethod(qname);
if (jm != null) {
return jm.getMethod();
}
return null;
}
/**
* @return true if name is the name
* of a known fault name for the Method method
*/
public boolean isKnownFault(QName name, Method method) {
JavaMethodImpl m = getJavaMethod(method);
for (CheckedExceptionImpl ce : m.getCheckedExceptions()) {
if (ce.getDetailType().tagName.equals(name))
return true;
}
return false;
}
/**
* @return true if ex is a Checked Exception
* for Method m
*/
public boolean isCheckedException(Method m, Class ex) {
JavaMethodImpl jm = getJavaMethod(m);
for (CheckedExceptionImpl ce : jm.getCheckedExceptions()) {
if (ce.getExceptionClass().equals(ex))
return true;
}
return false;
}
/**
* @return the JavaMethod representing the method
*/
public JavaMethodImpl getJavaMethod(Method method) {
return methodToJM.get(method);
}
/**
* @return the JavaMethod associated with the
* operation named name
*/
public JavaMethodImpl getJavaMethod(QName name) {
return nameToJM.get(name);
}
/**
* @return the QName associated with the
* JavaMethod jm.
*
* @deprecated
* Use {@link JavaMethod#getOperationName()}.
*/
public QName getQNameForJM(JavaMethodImpl jm) {
for (QName key : nameToJM.keySet()) {
JavaMethodImpl jmethod = nameToJM.get(key);
if (jmethod.getOperationName().equals(jm.getOperationName())){
return key;
}
}
return null;
}
/**
* @return a Collection of JavaMethods
* associated with this RuntimeModel
*/
public final Collection getJavaMethods() {
return Collections.unmodifiableList(javaMethods);
}
void addJavaMethod(JavaMethodImpl jm) {
if (jm != null)
javaMethods.add(jm);
}
/**
* Used from {@link WSServiceDelegate}
* to apply the binding information from WSDL after the model is created frm SEI class on the client side. On the server
* side all the binding information is available before modeling and this method is not used.
*
* @deprecated To be removed once client side new architecture is implemented
*/
public void applyParameterBinding(WSDLBoundPortTypeImpl wsdlBinding){
if(wsdlBinding == null)
return;
for(JavaMethodImpl method : javaMethods){
if(method.isAsync())
continue;
QName opName = new QName(wsdlBinding.getPortTypeName().getNamespaceURI(), method.getOperationName());
//patch the soapaction correctly from the WSDL
WSDLBoundOperationImpl bo = wsdlBinding.get(opName);
String action = bo.getSOAPAction();
method.getBinding().setSOAPAction(action);
boolean isRpclit = method.getBinding().isRpcLit();
List reqParams = method.requestParams;
List reqAttachParams = null;
for(ParameterImpl param:reqParams){
if(param.isWrapperStyle()){
if(isRpclit){
WrapperParameter reqParam = (WrapperParameter)param;
if(bo.getRequestNamespace() != null){
patchRpclitNamespace(bo.getRequestNamespace(), reqParam);
}
reqAttachParams = applyRpcLitParamBinding(method, (WrapperParameter)param, wsdlBinding, Mode.IN);
}
continue;
}
String partName = param.getPartName();
if(partName == null)
continue;
ParameterBinding paramBinding = wsdlBinding.getBinding(opName, partName, Mode.IN);
if(paramBinding != null)
param.setInBinding(paramBinding);
}
List resAttachParams = null;
List resParams = method.responseParams;
for(ParameterImpl param:resParams){
if(param.isWrapperStyle()){
if(isRpclit){
WrapperParameter respParam = (WrapperParameter)param;
if(bo.getResponseNamespace() != null){
patchRpclitNamespace(bo.getResponseNamespace(), respParam);
}
resAttachParams = applyRpcLitParamBinding(method, (WrapperParameter)param, wsdlBinding, Mode.OUT);
}
continue;
}
//if the parameter is not inout and its header=true then dont get binding from WSDL
// if(!param.isINOUT() && param.getBinding().isHeader())
// continue;
String partName = param.getPartName();
if(partName == null)
continue;
ParameterBinding paramBinding = wsdlBinding.getBinding(opName,
partName, Mode.OUT);
if(paramBinding != null)
param.setOutBinding(paramBinding);
}
if(reqAttachParams != null){
for(ParameterImpl p : reqAttachParams){
method.addRequestParameter(p);
}
}
if(resAttachParams != null){
for(ParameterImpl p : resAttachParams){
method.addResponseParameter(p);
}
}
}
}
/**
* For rpclit wrapper element inside , the targetNamespace should be taked from
* the soapbind:body@namespace value. Since no annotations on SEI/impl class captures it so we
* need to get it from WSDL and patch it. *
*/
private void patchRpclitNamespace(String namespace, WrapperParameter param){
TypeReference type = param.getTypeReference();
TypeReference newType = new TypeReference(new QName(namespace, type.tagName.getLocalPart()), type.type, type.annotations);
param.setTypeReference(newType);
}
/**
* Applies binding related information to the RpcLitPayload. The payload map is populated correctl
* @return
* Returns attachment parameters if/any.
*/
private List applyRpcLitParamBinding(JavaMethodImpl method, WrapperParameter wrapperParameter, WSDLBoundPortTypeImpl boundPortType, Mode mode) {
QName opName = new QName(boundPortType.getPortTypeName().getNamespaceURI(), method.getOperationName());
WSDLBoundOperationImpl bo = boundPortType.get(opName);
Map bodyParams = new HashMap();
List unboundParams = new ArrayList();
List attachParams = new ArrayList();
for(ParameterImpl param : wrapperParameter.wrapperChildren){
String partName = param.getPartName();
if(partName == null)
continue;
ParameterBinding paramBinding = boundPortType.getBinding(opName,
partName, mode);
if(paramBinding != null){
if(mode == Mode.IN)
param.setInBinding(paramBinding);
else if(mode == Mode.OUT || mode == Mode.INOUT)
param.setOutBinding(paramBinding);
if(paramBinding.isUnbound()){
unboundParams.add(param);
} else if(paramBinding.isAttachment()){
attachParams.add(param);
}else if(paramBinding.isBody()){
if(bo != null){
WSDLPartImpl p = bo.getPart(param.getPartName(), mode);
if(p != null)
bodyParams.put(p.getIndex(), param);
else
bodyParams.put(bodyParams.size(), param);
}else{
bodyParams.put(bodyParams.size(), param);
}
}
}
}
wrapperParameter.clear();
for(int i = 0; i < bodyParams.size();i++){
ParameterImpl p = bodyParams.get(i);
wrapperParameter.addWrapperChild(p);
}
//add unbounded parts
for(ParameterImpl p:unboundParams){
wrapperParameter.addWrapperChild(p);
}
return attachParams;
}
void put(QName name, JavaMethodImpl jm) {
nameToJM.put(name, jm);
}
void put(Method method, JavaMethodImpl jm) {
methodToJM.put(method, jm);
}
public String getWSDLLocation() {
return wsdlLocation;
}
void setWSDLLocation(String location) {
wsdlLocation = location;
}
public QName getServiceQName() {
return serviceName;
}
public WSDLPort getPort() {
return port;
}
public QName getPortName() {
return portName;
}
public QName getPortTypeName() {
return portTypeName;
}
void setServiceQName(QName name) {
serviceName = name;
}
void setPortName(QName name) {
portName = name;
}
void setPortTypeName(QName name) {
portTypeName = name;
}
/**
* This is the targetNamespace for the WSDL containing the PortType
* definition
*/
void setTargetNamespace(String namespace) {
targetNamespace = namespace;
}
/**
* This is the targetNamespace for the WSDL containing the PortType
* definition
*/
public String getTargetNamespace() {
return targetNamespace;
}
@NotNull
public QName getBoundPortTypeName() {
assert portName != null;
return new QName(portName.getNamespaceURI(), portName.getLocalPart()+"Binding");
}
/**
* Adds additional classes obtained from {@link XmlSeeAlso} annotation. In starting
* from wsdl case these classes would most likely be JAXB ObjectFactory that references other classes.
*/
public void addAdditionalClasses(Class... additionalClasses) {
for(Class cls : additionalClasses)
this.additionalClasses.add(cls);
}
private List additionalClasses = new ArrayList();
private Pool.Marshaller marshallers;
protected JAXBRIContext jaxbContext;
private String wsdlLocation;
private QName serviceName;
private QName portName;
private QName portTypeName;
private Map methodToJM = new HashMap();
/**
* Payload QName to the method that handles it.
*/
private Map nameToJM = new HashMap();
private List javaMethods = new ArrayList();
private final Map bridgeMap = new HashMap();
protected final QName emptyBodyName = new QName("");
private String targetNamespace = "";
private List knownNamespaceURIs = null;
private WSDLPortImpl port;
private final WebServiceFeature[] features;
private static final Logger LOGGER = Logger.getLogger(AbstractSEIModelImpl.class.getName());
}