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

com.sun.xml.ws.api.server.InstanceResolver 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.api.server;

import com.sun.istack.NotNull;
import com.sun.xml.ws.api.message.Message;
import com.sun.xml.ws.api.message.Packet;
import com.sun.xml.ws.resources.ServerMessages;
import com.sun.xml.ws.resources.WsservletMessages;
import com.sun.xml.ws.server.ServerRtException;
import com.sun.xml.ws.server.SingletonResolver;

import javax.xml.ws.Provider;
import javax.xml.ws.WebServiceContext;
import javax.xml.ws.WebServiceException;
import java.lang.annotation.Annotation;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.logging.Level;
import java.util.logging.Logger;

/**
 * Determines the instance that serves
 * the given request packet.
 *
 * 

* The JAX-WS spec always use a singleton instance * to serve all the requests, but this hook provides * a convenient way to route messages to a proper receiver. * *

* Externally, an instance of {@link InstanceResolver} is * associated with {@link WSEndpoint}. * *

Possible Uses

*

* One can use WS-Addressing message properties to * decide which instance to deliver a message. This * would be an important building block for a stateful * web services. * *

* One can associate an instance of a service * with a specific WS-RM session. * * @author Kohsuke Kawaguchi */ public abstract class InstanceResolver { /** * Decides which instance of 'T' serves the given request message. * *

* This method is called concurrently by multiple threads. * It is also on a criticail path that affects the performance. * A good implementation should try to avoid any synchronization, * and should minimize the amount of work as much as possible. * * @param request * Always non-null. Represents the request message to be served. * The caller may not consume the {@link Message}. */ public abstract @NotNull T resolve(@NotNull Packet request); /** * Called by the default {@link Invoker} after the method call is done. * This gives {@link InstanceResolver} a chance to do clean up. * *

* Alternatively, one could override {@link #createInvoker()} to * create a custom invoker to do this in more flexible way. * *

* The default implementation is a no-op. * * @param request * The same request packet given to {@link #resolve(Packet)} method. * @param servant * The object returned from the {@link #resolve(Packet)} method. * @since 2.1.2 */ public void postInvoke(@NotNull Packet request, @NotNull T servant) { } /** * Called by {@link WSEndpoint} when it's set up. * *

* This is an opportunity for {@link InstanceResolver} * to do a endpoint-specific initialization process. * * @param wsc * The {@link WebServiceContext} instance to be injected * to the user instances (assuming {@link InstanceResolver} */ public void start(@NotNull WSWebServiceContext wsc, @NotNull WSEndpoint endpoint) { // backward compatibility start(wsc); } /** * @deprecated * Use {@link #start(WSWebServiceContext,WSEndpoint)}. */ public void start(@NotNull WebServiceContext wsc) {} /** * Called by {@link WSEndpoint} * when {@link WSEndpoint#dispose()} is called. * * This allows {@link InstanceResolver} to do final clean up. * *

* This method is guaranteed to be only called once by {@link WSEndpoint}. */ public void dispose() {} /** * Creates a {@link InstanceResolver} implementation that always * returns the specified singleton instance. */ public static InstanceResolver createSingleton(T singleton) { assert singleton!=null; InstanceResolver ir = createFromInstanceResolverAnnotation(singleton.getClass()); if(ir==null) ir = new SingletonResolver(singleton); return ir; } /** * @deprecated * This is added here because a Glassfish integration happened * with this signature. Please do not use this. Will be removed * after the next GF integration. */ public static InstanceResolver createDefault(@NotNull Class clazz, boolean bool) { return createDefault(clazz); } /** * Creates a default {@link InstanceResolver} that serves the given class. */ public static InstanceResolver createDefault(@NotNull Class clazz) { InstanceResolver ir = createFromInstanceResolverAnnotation(clazz); if(ir==null) ir = new SingletonResolver(createNewInstance(clazz)); return ir; } /** * Checks for {@link InstanceResolverAnnotation} and creates an instance resolver from it if any. * Otherwise null. */ public static InstanceResolver createFromInstanceResolverAnnotation(@NotNull Class clazz) { for( Annotation a : clazz.getAnnotations() ) { InstanceResolverAnnotation ira = a.annotationType().getAnnotation(InstanceResolverAnnotation.class); if(ira==null) continue; Class ir = ira.value(); try { return ir.getConstructor(Class.class).newInstance(clazz); } catch (InstantiationException e) { throw new WebServiceException(ServerMessages.FAILED_TO_INSTANTIATE_INSTANCE_RESOLVER( ir.getName(),a.annotationType(),clazz.getName())); } catch (IllegalAccessException e) { throw new WebServiceException(ServerMessages.FAILED_TO_INSTANTIATE_INSTANCE_RESOLVER( ir.getName(),a.annotationType(),clazz.getName())); } catch (InvocationTargetException e) { throw new WebServiceException(ServerMessages.FAILED_TO_INSTANTIATE_INSTANCE_RESOLVER( ir.getName(),a.annotationType(),clazz.getName())); } catch (NoSuchMethodException e) { throw new WebServiceException(ServerMessages.FAILED_TO_INSTANTIATE_INSTANCE_RESOLVER( ir.getName(),a.annotationType(),clazz.getName())); } } return null; } protected static T createNewInstance(Class cl) { try { return cl.newInstance(); } catch (InstantiationException e) { logger.log(Level.SEVERE, e.getMessage(), e); throw new ServerRtException( WsservletMessages.ERROR_IMPLEMENTOR_FACTORY_NEW_INSTANCE_FAILED(cl)); } catch (IllegalAccessException e) { logger.log(Level.SEVERE, e.getMessage(), e); throw new ServerRtException( WsservletMessages.ERROR_IMPLEMENTOR_FACTORY_NEW_INSTANCE_FAILED(cl)); } } /** * Wraps this {@link InstanceResolver} into an {@link Invoker}. */ public @NotNull Invoker createInvoker() { return new Invoker() { @Override public void start(@NotNull WSWebServiceContext wsc, @NotNull WSEndpoint endpoint) { InstanceResolver.this.start(wsc,endpoint); } @Override public void dispose() { InstanceResolver.this.dispose(); } @Override public Object invoke(Packet p, Method m, Object... args) throws InvocationTargetException, IllegalAccessException { T t = resolve(p); try { return MethodUtil.invoke(t, m, args ); } finally { postInvoke(p,t); } } @Override public U invokeProvider(@NotNull Packet p, U arg) { T t = resolve(p); try { return ((Provider) t).invoke(arg); } finally { postInvoke(p,t); } } public String toString() { return "Default Invoker over "+InstanceResolver.this.toString(); } }; } private static final Logger logger = Logger.getLogger( com.sun.xml.ws.util.Constants.LoggingDomain + ".server"); }