X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=support%2Fgeneral%2Fsrc%2Fmain%2Fjava%2Forg%2Fwamblee%2Fgeneral%2FThreadSpecificProxyFactory.java;h=036a6828648b2cd25153d8ecb6edcd8c517b7e73;hb=a09ef498cd7b52e5c77c2fbfcd26203eca50d643;hp=51d23abf46fd54484ff002f776c8a93c5f8df384;hpb=b7f1440254cf470fec409c3aed6c109b91c1c916;p=utils diff --git a/support/general/src/main/java/org/wamblee/general/ThreadSpecificProxyFactory.java b/support/general/src/main/java/org/wamblee/general/ThreadSpecificProxyFactory.java index 51d23abf..036a6828 100644 --- a/support/general/src/main/java/org/wamblee/general/ThreadSpecificProxyFactory.java +++ b/support/general/src/main/java/org/wamblee/general/ThreadSpecificProxyFactory.java @@ -15,16 +15,21 @@ */ package org.wamblee.general; +import java.io.Serializable; import java.lang.reflect.InvocationHandler; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; import java.lang.reflect.Proxy; +import java.util.HashMap; +import java.util.Map; +import java.util.UUID; /** * Thread-specific proxy is used to create implementations of interfaces that * delegate to a thread-specific implementation of the service. * - * It is used for instance to pass a transaction scoped entity manager around. + * It can be used for instance to create a contextual reference to an entity manager + * that delegates to a thread-specific instance. * * The {@link #set(Object)} method sets the current service instance for the current thread. * The {@link #get()} method gets the current service instance for the current thread. @@ -32,7 +37,7 @@ import java.lang.reflect.Proxy; * instance. The result from this method can be passed at construction of an object that will be used * by multiple threads. * - * This class is mostly used by other test tools. + * This class is mostly used by infrastructure code (utilities) and test tools. * * @param T * Interface to proxy. @@ -40,13 +45,36 @@ import java.lang.reflect.Proxy; * */ public class ThreadSpecificProxyFactory { - private class ThreadSpecificInvocationHandler implements InvocationHandler { + + /** + * We store a map of unique ids of invocation handlers to thread local storage of the + * service. In this way, serialiability of the generated proxy is obtained (required by + * framweorks such as wicket). Also, different factories will still be separate and never + * use the same threadlocal storage. + */ + private static Map STORAGE = + initializeThreadLocal(); + + private static class ThreadSpecificInvocationHandler implements InvocationHandler, Serializable { + + private String id; + private Class clazz; + + public ThreadSpecificInvocationHandler(String aId, Class aClass) { + id = aId; + clazz = aClass; + } @Override public Object invoke(Object aProxy, Method aMethod, Object[] aArgs) throws Throwable { + ThreadLocal local = STORAGE.get(id); + T actualSvc = local.get(); + if ( aMethod.getName().equals("toString") && actualSvc == null) { + return "Thread-specific proxy for '" + clazz.getName() + "'"; + } try { - return aMethod.invoke(svc.get(), aArgs); + return aMethod.invoke(actualSvc, aArgs); } catch (InvocationTargetException e) { throw e.getCause(); } @@ -73,6 +101,11 @@ public class ThreadSpecificProxyFactory { proxy = createProxy(); } + private static Map initializeThreadLocal() { + Map map = new HashMap(); + return map; + } + /** * Sets the thread-specific service. * @@ -104,7 +137,9 @@ public class ThreadSpecificProxyFactory { } private T createProxy() { - InvocationHandler handler = new ThreadSpecificInvocationHandler(); + String id = UUID.randomUUID().toString(); + STORAGE.put(id, svc); + InvocationHandler handler = new ThreadSpecificInvocationHandler(id, clazz); Class proxyClass = Proxy.getProxyClass(clazz.getClassLoader(), new Class[] { clazz }); T proxyObj;