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

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

There is a newer version: 4.0.2
Show newest version
/*
 * The contents of this file are subject to the terms
 * of the Common Development and Distribution License
 * (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/CDDLv1.0.html.
 * See the License for the specific language governing
 * permissions and limitations under the License.
 * 
 * When distributing Covered Code, include this CDDL
 * Header Notice in each file and include the License file
 * at https://glassfish.dev.java.net/public/CDDLv1.0.html.
 * If applicable, add the following below the CDDL Header,
 * with the fields enclosed by brackets [] replaced by
 * you own identifying information:
 * "Portions Copyrighted [year] [name of copyright owner]"
 * 
 * Copyright 2006 Sun Microsystems Inc. All Rights Reserved
 */

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

import com.sun.xml.bind.api.AccessorException;
import com.sun.xml.bind.api.Bridge;
import com.sun.xml.bind.api.CompositeStructure;
import com.sun.xml.bind.api.RawAccessor;
import com.sun.xml.ws.api.SOAPVersion;
import com.sun.xml.ws.api.message.Message;
import com.sun.xml.ws.api.message.Messages;
import com.sun.xml.ws.api.model.SEIModel;
import com.sun.xml.ws.model.ParameterImpl;
import com.sun.xml.ws.model.WrapperParameter;
import com.sun.xml.ws.message.jaxb.JAXBMessage;
import java.util.Collection;

import javax.xml.bind.JAXBException;
import javax.xml.namespace.QName;
import javax.xml.ws.Holder;
import javax.xml.ws.WebServiceException;
import java.util.List;

/**
 * Builds Async bean
 *
 * @see MessageFiller
 * @author Jitendra Kotamraju
 */
abstract class AsyncBuilder {
    
    abstract Object fillAsyncBean(Object[] methodArgs, Object returnValue, Object bean);

    /**
     * Used to create a payload JAXB object just by taking
     * one of the parameters.
     */
    final static class Bare extends AsyncBuilder {
        /**
         * The index of the method invocation parameters that goes into the payload.
         */
        private final int methodPos;
        private final ValueGetter getter;
        private final RawAccessor accessor;

        /**
         * Creates a {@link BodyBuilder} from a bare parameter.
         */
        Bare(Class wrapper, ParameterImpl p) {
            this.methodPos = p.getIndex();
            this.getter = ValueGetter.get(p);
            QName name = p.getName();
            try {
                accessor = p.getOwner().getJAXBContext().getElementPropertyAccessor(
                        wrapper, name.getNamespaceURI(), name.getLocalPart() );
            } catch (JAXBException e) {
                throw new WebServiceException(  // TODO: i18n
                    wrapper+" do not have a property of the name "+name,e);
            }
        }

        /**
         * Picks up an object from the method arguments and uses it.
         */
        Object fillAsyncBean(Object[] methodArgs, Object returnValue, Object bean) {
            Object obj = (methodPos == -1) ? returnValue : getter.get(methodArgs[methodPos]);
            try {
                accessor.set(bean, obj);
            } catch (Exception e) {
                throw new WebServiceException(e);    // TODO:i18n
            }
            return bean;
        }
    }
    
    final static class Filler extends AsyncBuilder {
        /**
         * The index of the method invocation parameters that goes into the payload.
         */
        private final int methodPos;
        private final ValueGetter getter;

        /**
         * Creates a {@link BodyBuilder} from a bare parameter.
         */
        Filler(ParameterImpl p) {
            this.methodPos = p.getIndex();
            this.getter = ValueGetter.get(p);
        }

        /**
         * Picks up an object from the method arguments and uses it.
         */
        Object fillAsyncBean(Object[] methodArgs, Object returnValue, Object bean) {
            return (methodPos == -1) ? returnValue : getter.get(methodArgs[methodPos]);
        }
    }
    
    public static AsyncBuilder NONE = new None();
    
    static final class None extends AsyncBuilder {
        Object fillAsyncBean(Object[] methodArgs, Object returnValue, Object bean) {
            return bean;
        }
    }
    
    static final class Composite extends AsyncBuilder {
        private final AsyncBuilder[] builders;
        private final Class beanClass;

        public Composite(AsyncBuilder[] builders, Class beanClass) {
            this.builders = builders;
            this.beanClass = beanClass;
        }


        public Composite(Collection builders, Class beanClass) {
            this(builders.toArray(new AsyncBuilder[builders.size()]), beanClass);
        }

        Object fillAsyncBean(Object[] methodArgs, Object returnValue, Object bean) {
            try {
                bean = beanClass.newInstance();
            } catch (Exception ex) {
                throw new WebServiceException(ex);
            }
            for (AsyncBuilder builder : builders) {
                builder.fillAsyncBean(methodArgs, returnValue, bean);
            }
            return bean;
        }
    }


    /**
     * Used to handle a 'wrapper' style request.
     * Common part of rpc/lit and doc/lit.
     */
    abstract static class Wrapped extends AsyncBuilder {

        /**
         * Where in the method argument list do they come from?
         */
        protected final int[] indices;

        /**
         * Abstracts away the {@link Holder} handling when touching method arguments.
         */
        protected final ValueGetter[] getters;

        protected Wrapped(WrapperParameter wp) {

            List children = wp.getWrapperChildren();

            indices = new int[children.size()];
            getters = new ValueGetter[children.size()];
            for( int i=0; i children = wp.getWrapperChildren();

            accessors = new RawAccessor[children.size()];
            for( int i=0; i=0; i-- ) {
                    Object obj = (indices[i] == -1) ? returnValue : methodArgs[indices[i]];                    
                    accessors[i].set(bean,getters[i].get(obj));
                }
            } catch (Exception e) {
                throw new WebServiceException(e);    // TODO:i18n
            }
            return bean;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy