All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sun.xml.ws.client.sei.SEIMethodHandler Maven / Gradle / Ivy

There is a newer version: 4.0.2
Show newest version
/*
 * Copyright (c) 1997, 2018 Oracle and/or its affiliates. All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Distribution License v. 1.0, which is available at
 * http://www.eclipse.org/org/documents/edl-v10.php.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

package com.sun.xml.ws.client.sei;

import com.sun.xml.ws.api.message.Message;
import com.sun.xml.ws.model.CheckedExceptionImpl;
import com.sun.xml.ws.model.JavaMethodImpl;
import com.sun.xml.ws.model.ParameterImpl;
import com.sun.xml.ws.model.WrapperParameter;

import javax.xml.namespace.QName;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

/**
 * {@link com.sun.xml.ws.client.sei.MethodHandler} that handles synchronous method invocations.
 *
 * 

* This class mainly performs the following two tasks: *

    *
  1. Accepts Object[] that represents arguments for a Java method, * and creates {@link com.sun.xml.ws.message.jaxb.JAXBMessage} that represents a request message. *
  2. Takes a {@link com.sun.xml.ws.api.message.Message] that represents a response, * and extracts the return value (and updates {@link javax.xml.ws.Holder }s.) *
* *

Creating {@link com.sun.xml.ws.message.jaxb.JAXBMessage }

*

* At the construction time, we prepare {@link com.sun.xml.ws.client.sei.BodyBuilder} and {@link com.sun.xml.ws.client.sei.MessageFiller}s * that know how to move arguments into a {@link com.sun.xml.ws.api.message.Message }. * Some arguments go to the payload, some go to headers, still others go to attachments. * * @author Kohsuke Kawaguchi * @author Jitendra Kotamraju */ abstract class SEIMethodHandler extends MethodHandler { // these objects together create a message from method parameters private BodyBuilder bodyBuilder; private MessageFiller[] inFillers; protected String soapAction; protected boolean isOneWay; protected JavaMethodImpl javaMethod; protected Map checkedExceptions; SEIMethodHandler(SEIStub owner) { super(owner, null); } SEIMethodHandler(SEIStub owner, JavaMethodImpl method) { super(owner, null); //keep all the CheckedException model for the detail qname this.checkedExceptions = new HashMap(); for(CheckedExceptionImpl ce : method.getCheckedExceptions()){ checkedExceptions.put(ce.getBond().getTypeInfo().tagName, ce); } //If a non-"" soapAction is specified, wsa:action the SOAPAction if(method.getInputAction() != null && !method.getBinding().getSOAPAction().equals("") ) { this.soapAction = method.getInputAction(); } else { this.soapAction = method.getBinding().getSOAPAction(); } this.javaMethod = method; {// prepare objects for creating messages List rp = method.getRequestParameters(); BodyBuilder tmpBodyBuilder = null; List fillers = new ArrayList(); for (ParameterImpl param : rp) { ValueGetter getter = getValueGetterFactory().get(param); switch(param.getInBinding().kind) { case BODY: if(param.isWrapperStyle()) { if(param.getParent().getBinding().isRpcLit()) tmpBodyBuilder = new BodyBuilder.RpcLit((WrapperParameter)param, owner.soapVersion, getValueGetterFactory()); else tmpBodyBuilder = new BodyBuilder.DocLit((WrapperParameter)param, owner.soapVersion, getValueGetterFactory()); } else { tmpBodyBuilder = new BodyBuilder.Bare(param, owner.soapVersion, getter); } break; case HEADER: fillers.add(new MessageFiller.Header( param.getIndex(), param.getXMLBridge(), getter )); break; case ATTACHMENT: fillers.add(MessageFiller.AttachmentFiller.createAttachmentFiller(param, getter)); break; case UNBOUND: break; default: throw new AssertionError(); // impossible } } if(tmpBodyBuilder==null) { // no parameter binds to body. we create an empty message switch(owner.soapVersion) { case SOAP_11: tmpBodyBuilder = BodyBuilder.EMPTY_SOAP11; break; case SOAP_12: tmpBodyBuilder = BodyBuilder.EMPTY_SOAP12; break; default: throw new AssertionError(); } } this.bodyBuilder = tmpBodyBuilder; this.inFillers = fillers.toArray(new MessageFiller[fillers.size()]); } this.isOneWay = method.getMEP().isOneWay(); } ResponseBuilder buildResponseBuilder(JavaMethodImpl method, ValueSetterFactory setterFactory) { // prepare objects for processing response List rp = method.getResponseParameters(); List builders = new ArrayList(); for( ParameterImpl param : rp ) { ValueSetter setter; switch(param.getOutBinding().kind) { case BODY: if(param.isWrapperStyle()) { if(param.getParent().getBinding().isRpcLit()) builders.add(new ResponseBuilder.RpcLit((WrapperParameter)param, setterFactory)); else builders.add(new ResponseBuilder.DocLit((WrapperParameter)param, setterFactory)); } else { setter = setterFactory.get(param); builders.add(new ResponseBuilder.Body(param.getXMLBridge(),setter)); } break; case HEADER: setter = setterFactory.get(param); builders.add(new ResponseBuilder.Header(owner.soapVersion, param, setter)); break; case ATTACHMENT: setter = setterFactory.get(param); builders.add(ResponseBuilder.AttachmentBuilder.createAttachmentBuilder(param, setter)); break; case UNBOUND: setter = setterFactory.get(param); builders.add(new ResponseBuilder.NullSetter(setter, ResponseBuilder.getVMUninitializedValue(param.getTypeInfo().type))); break; default: throw new AssertionError(); } } ResponseBuilder rb; switch(builders.size()) { case 0: rb = ResponseBuilder.NONE; break; case 1: rb = builders.get(0); break; default: rb = new ResponseBuilder.Composite(builders); } return rb; } /** * Creates a request {@link com.sun.xml.ws.message.jaxb.JAXBMessage} from method arguments. * @param args proxy invocation arguments * @return Message for the arguments */ Message createRequestMessage(Object[] args) { Message msg = bodyBuilder.createMessage(args); for (MessageFiller filler : inFillers) filler.fillIn(args,msg); return msg; } abstract ValueGetterFactory getValueGetterFactory(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy