(no commit message)
[utils] / support / general / src / main / java / org / wamblee / general / ThreadSpecificInvocationHandler.java
1 /*
2  * Copyright 2005-2010 the original author or authors.
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  * 
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  * 
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.wamblee.general;
17
18 import java.io.Serializable;
19 import java.lang.reflect.InvocationHandler;
20 import java.lang.reflect.InvocationTargetException;
21 import java.lang.reflect.Method;
22 import java.util.Map;
23 import java.util.concurrent.ConcurrentHashMap;
24 import java.util.concurrent.atomic.AtomicInteger;
25
26 /**
27  * Invocation handler for thread-specific proxies.
28  * 
29  * @author Erik Brakkee
30  * 
31  * @param <T>
32  */
33 class ThreadSpecificInvocationHandler<T> implements InvocationHandler,
34     Serializable {
35
36     /**
37      * We store a map of unique ids of invocation handlers to thread local
38      * storage of the service. In this way, serialiability of the generated
39      * proxy is obtained (required by framweorks such as wicket). Also,
40      * different factories will still be separate and never use the same
41      * threadlocal storage.
42      */
43     private static Map<Integer, ThreadLocal> STORAGE = initializeThreadLocal();
44
45     private static AtomicInteger COUNTER = new AtomicInteger();
46
47     private static Map<Integer, ThreadLocal> initializeThreadLocal() {
48         Map<Integer, ThreadLocal> map = new ConcurrentHashMap<Integer, ThreadLocal>();
49         return map;
50     }
51
52     private int id;
53     private Class clazz;
54
55     /**
56      * Constructs the handler.
57      * 
58      * @param aSvc
59      *            Thread local for the service.
60      * @param aClass
61      *            Service interface class.
62      */
63     public ThreadSpecificInvocationHandler(ThreadLocal aSvc, Class aClass) {
64         id = COUNTER.incrementAndGet();
65         clazz = aClass;
66         STORAGE.put(id, aSvc);
67     }
68
69     @Override
70     public Object invoke(Object aProxy, Method aMethod, Object[] aArgs)
71         throws Throwable {
72
73         ThreadLocal<T> local = STORAGE.get(id);
74         T actualSvc = local.get();
75         if (aMethod.getName().equals("toString") && actualSvc == null) {
76             return "Thread-specific proxy for '" + clazz.getName() + "' id = " +
77                 id;
78         }
79         try {
80             return aMethod.invoke(actualSvc, aArgs);
81         } catch (InvocationTargetException e) {
82             throw e.getCause();
83         }
84     }
85 }