Coverage Report - org.kuali.rice.ksb.messaging.bam.BAMServerProxy
 
Classes in this File Line Coverage Branch Coverage Complexity
BAMServerProxy
0%
0/11
0%
0/2
2.333
 
 1  
 /*
 2  
  * Copyright 2006-2011 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 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.ksb.messaging.ServiceInfo;
 25  
 import org.kuali.rice.ksb.messaging.bam.service.BAMService;
 26  
 import org.kuali.rice.ksb.service.KSBServiceLocator;
 27  
 
 28  
 
 29  
 /**
 30  
  * A service-side proxy for that records an entry in the BAM for invocations
 31  
  * on the proxied service endpoint.
 32  
  *
 33  
  * @see BAMService
 34  
  *
 35  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 36  
  */
 37  
 
 38  
 public class BAMServerProxy extends BaseTargetedInvocationHandler {
 39  
 
 40  
         private ServiceInfo entry;
 41  
         
 42  
         private BAMServerProxy(Object target, ServiceInfo entry) {
 43  0
                 super(target);
 44  0
                 this.entry = entry;
 45  0
         }
 46  
         
 47  
         public static Object wrap(Object target, ServiceInfo entry) {
 48  0
                 return Proxy.newProxyInstance(target.getClass().getClassLoader(), ContextClassLoaderProxy.getInterfacesToProxy(target), new BAMServerProxy(target, entry));
 49  
         }
 50  
         
 51  
         
 52  
         protected Object invokeInternal(Object proxiedObject, Method method, Object[] arguments) throws Throwable {
 53  0
                 BAMTargetEntry bamTargetEntry = KSBServiceLocator.getBAMService().recordServerInvocation(getTarget(), this.entry, method, arguments);
 54  
                 try {
 55  0
                         return method.invoke(getTarget(), arguments);        
 56  0
                 } catch (Throwable throwable) {
 57  0
                         if (throwable instanceof InvocationTargetException) {
 58  0
                                 throwable = throwable.getCause();
 59  
                         }
 60  0
                         KSBServiceLocator.getBAMService().recordServerInvocationError(throwable, bamTargetEntry);
 61  0
                         throw throwable;
 62  
                 }
 63  
         }
 64  
 }