View Javadoc
1   /**
2    * Copyright 2005-2015 The Kuali Foundation
3    *
4    * Licensed under the Educational Community 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.opensource.org/licenses/ecl2.php
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.kuali.rice.ksb.messaging.bam;
17  
18  import org.kuali.rice.core.api.config.property.Config;
19  import org.kuali.rice.core.api.config.property.ConfigContext;
20  import org.kuali.rice.core.api.util.ClassLoaderUtils;
21  import org.kuali.rice.core.api.util.ContextClassLoaderProxy;
22  import org.kuali.rice.core.api.util.reflect.BaseTargetedInvocationHandler;
23  import org.kuali.rice.ksb.api.bus.ServiceConfiguration;
24  import org.kuali.rice.ksb.messaging.bam.service.BAMService;
25  import org.kuali.rice.ksb.service.KSBServiceLocator;
26  
27  import java.lang.reflect.InvocationTargetException;
28  import java.lang.reflect.Method;
29  import java.lang.reflect.Proxy;
30  
31  
32  /**
33   * A client-side proxy for that records an entry in the BAM for invocations
34   * on the proxied service.
35   *
36   * @see BAMService
37   *
38   * @author Kuali Rice Team (rice.collab@kuali.org)
39   */
40  public class BAMClientProxy extends BaseTargetedInvocationHandler {
41  
42  	private ServiceConfiguration serviceConfiguration;
43  	
44  	private BAMClientProxy(Object target, ServiceConfiguration serviceConfiguration) {
45  		super(target);
46  		this.serviceConfiguration = serviceConfiguration;
47  	}
48  	
49  	public static boolean isBamSupported() {
50  		return KSBServiceLocator.getBAMService() != null && Boolean.valueOf(ConfigContext.getCurrentContextConfig().getProperty(Config.BAM_ENABLED));
51  	}
52  	
53  	public static Object wrap(Object target, ServiceConfiguration serviceConfiguration) {
54  		if (!isBamSupported()) {
55  			return target;
56  		}
57  		return Proxy.newProxyInstance(ClassLoaderUtils.getDefaultClassLoader(), ContextClassLoaderProxy.getInterfacesToProxy(target), new BAMClientProxy(target, serviceConfiguration));
58  	}
59  	
60  	protected Object invokeInternal(Object proxyObject, Method method, Object[] arguments) throws Throwable {
61  		BAMTargetEntry bamTargetEntry = KSBServiceLocator.getBAMService().recordClientInvocation(this.serviceConfiguration, getTarget(), method, arguments);
62  		try {
63  			return method.invoke(getTarget(), arguments);	
64  		} catch (Throwable throwable) {
65  			if (throwable instanceof InvocationTargetException) {
66  				throwable = throwable.getCause();
67  			}
68  			KSBServiceLocator.getBAMService().recordClientInvocationError(throwable, bamTargetEntry);
69  			throw throwable;
70  		}
71  	}
72  }