1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.ksb.messaging.bam; |
17 | |
|
18 | |
import java.lang.reflect.InvocationTargetException; |
19 | |
import java.lang.reflect.Method; |
20 | |
import java.lang.reflect.Proxy; |
21 | |
|
22 | |
import org.kuali.rice.core.impl.proxy.BaseTargetedInvocationHandler; |
23 | |
import org.kuali.rice.core.impl.resourceloader.ContextClassLoaderProxy; |
24 | |
import org.kuali.rice.core.util.ClassLoaderUtils; |
25 | |
import org.kuali.rice.ksb.messaging.ServiceInfo; |
26 | |
import org.kuali.rice.ksb.messaging.bam.service.BAMService; |
27 | |
import org.kuali.rice.ksb.service.KSBServiceLocator; |
28 | |
|
29 | |
|
30 | |
|
31 | |
|
32 | |
|
33 | |
|
34 | |
|
35 | |
|
36 | |
|
37 | |
|
38 | |
public class BAMClientProxy extends BaseTargetedInvocationHandler { |
39 | |
|
40 | |
private ServiceInfo serviceInfo; |
41 | |
|
42 | |
private BAMClientProxy(Object target, ServiceInfo serviceInfo) { |
43 | 0 | super(target); |
44 | 0 | this.serviceInfo = serviceInfo; |
45 | 0 | } |
46 | |
|
47 | |
public static Object wrap(Object target, ServiceInfo serviceInfo) { |
48 | 0 | return Proxy.newProxyInstance(ClassLoaderUtils.getDefaultClassLoader(), ContextClassLoaderProxy.getInterfacesToProxy(target), new BAMClientProxy(target, serviceInfo)); |
49 | |
} |
50 | |
|
51 | |
protected Object invokeInternal(Object proxyObject, Method method, Object[] arguments) throws Throwable { |
52 | 0 | BAMTargetEntry bamTargetEntry = KSBServiceLocator.getBAMService().recordClientInvocation(this.serviceInfo, getTarget(), method, arguments); |
53 | |
try { |
54 | 0 | return method.invoke(getTarget(), arguments); |
55 | 0 | } catch (Throwable throwable) { |
56 | 0 | if (throwable instanceof InvocationTargetException) { |
57 | 0 | throwable = throwable.getCause(); |
58 | |
} |
59 | 0 | KSBServiceLocator.getBAMService().recordClientInvocationError(throwable, bamTargetEntry); |
60 | 0 | throw throwable; |
61 | |
} |
62 | |
} |
63 | |
} |