Coverage Report - org.kuali.rice.ksb.messaging.serviceproxies.DelayedAsynchronousServiceCallProxy
 
Classes in this File Line Coverage Branch Coverage Complexity
DelayedAsynchronousServiceCallProxy
0%
0/46
0%
0/8
2.143
 
 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.serviceproxies;
 17  
 
 18  
 import org.apache.log4j.Logger;
 19  
 import org.kuali.rice.core.api.exception.RiceRuntimeException;
 20  
 import org.kuali.rice.core.api.proxy.TargetedInvocationHandler;
 21  
 import org.kuali.rice.core.impl.proxy.BaseInvocationHandler;
 22  
 import org.kuali.rice.core.impl.resourceloader.ContextClassLoaderProxy;
 23  
 import org.kuali.rice.core.impl.resourceloader.ContextClassLoaderProxy;
 24  
 import org.kuali.rice.core.util.ClassLoaderUtils;
 25  
 import org.kuali.rice.ksb.messaging.AsynchronousCall;
 26  
 import org.kuali.rice.ksb.messaging.PersistedMessageBO;
 27  
 import org.kuali.rice.ksb.messaging.RemotedServiceHolder;
 28  
 import org.kuali.rice.ksb.messaging.ServiceInfo;
 29  
 import org.kuali.rice.ksb.messaging.quartz.MessageServiceExecutorJob;
 30  
 import org.kuali.rice.ksb.messaging.quartz.MessageServiceExecutorJobListener;
 31  
 import org.kuali.rice.ksb.service.KSBServiceLocator;
 32  
 import org.quartz.*;
 33  
 
 34  
 import java.io.Serializable;
 35  
 import java.lang.reflect.Method;
 36  
 import java.lang.reflect.Proxy;
 37  
 import java.sql.Timestamp;
 38  
 import java.util.Calendar;
 39  
 import java.util.List;
 40  
 
 41  
 
 42  
 /**
 43  
  * A proxy which schedules a service to be executed asynchronously after some delay period.
 44  
  * 
 45  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 46  
  */
 47  
 public class DelayedAsynchronousServiceCallProxy extends BaseInvocationHandler implements TargetedInvocationHandler {
 48  
 
 49  0
     private static final Logger LOG = Logger.getLogger(DelayedAsynchronousServiceCallProxy.class);
 50  
 
 51  
     List<RemotedServiceHolder> serviceDefs;
 52  
     private Serializable context;
 53  
     private String value1;
 54  
     private String value2;
 55  
     private long delayMilliseconds;
 56  
 
 57  
     protected DelayedAsynchronousServiceCallProxy(List<RemotedServiceHolder> serviceDefs, Serializable context,
 58  0
             String value1, String value2, long delayMilliseconds) {
 59  0
         this.serviceDefs = serviceDefs;
 60  0
         this.context = context;
 61  0
         this.value1 = value1;
 62  0
         this.value2 = value2;
 63  0
         this.delayMilliseconds = delayMilliseconds;
 64  0
     }
 65  
 
 66  
     public static Object createInstance(List<RemotedServiceHolder> serviceDefs, Serializable context, String value1,
 67  
             String value2, long delayMilliseconds) {
 68  0
         if (serviceDefs == null || serviceDefs.isEmpty()) {
 69  0
             throw new RuntimeException("Cannot create service proxy, no service(s) passed in.");
 70  
         }
 71  
         try {
 72  0
             return Proxy.newProxyInstance(ClassLoaderUtils.getDefaultClassLoader(), ContextClassLoaderProxy
 73  
                     .getInterfacesToProxy(serviceDefs.get(0).getService()),
 74  
                     new DelayedAsynchronousServiceCallProxy(serviceDefs, context, value1, value2, delayMilliseconds));
 75  0
         } catch (Exception e) {
 76  0
             throw new RiceRuntimeException(e);
 77  
         }
 78  
     }
 79  
 
 80  
     @Override
 81  
     protected Object invokeInternal(Object proxy, Method method, Object[] arguments) throws Throwable {
 82  
         // there are multiple service calls to make in the case of topics.
 83  0
         AsynchronousCall methodCall = null;
 84  0
         PersistedMessageBO message = null;
 85  0
         synchronized (this) {
 86  
             // consider moving all this topic invocation stuff to the service
 87  
             // invoker for speed reasons
 88  0
             for (RemotedServiceHolder remotedServiceHolder : this.serviceDefs) {
 89  0
                 ServiceInfo serviceInfo = remotedServiceHolder.getServiceInfo();
 90  0
                 methodCall = new AsynchronousCall(method.getParameterTypes(), arguments, serviceInfo, method.getName(),
 91  
                         null, this.context);
 92  0
                 message = KSBServiceLocator.getRouteQueueService().getMessage(serviceInfo, methodCall);
 93  0
                 message.setValue1(this.value1);
 94  0
                 message.setValue2(this.value2);
 95  0
                 Calendar now = Calendar.getInstance();
 96  0
                 now.add(Calendar.MILLISECOND, (int) delayMilliseconds);
 97  0
                 message.setQueueDate(new Timestamp(now.getTimeInMillis()));
 98  0
                 scheduleMessage(message);
 99  
                 // only do one iteration if this is a queue. The load balancing
 100  
                 // will be handled when the service is
 101  
                 // fetched by the MessageServiceInvoker through the GRL (and
 102  
                 // then through the RemoteResourceServiceLocatorImpl)
 103  0
                 if (serviceInfo.getServiceDefinition().getQueue()) {
 104  0
                     break;
 105  
                 }
 106  0
             }
 107  0
         }
 108  0
         return null;
 109  
     }
 110  
 
 111  
     protected void scheduleMessage(PersistedMessageBO message) throws SchedulerException {
 112  0
         LOG.debug("Scheduling execution of a delayed asynchronous message.");
 113  0
         Scheduler scheduler = KSBServiceLocator.getScheduler();
 114  0
         JobDataMap jobData = new JobDataMap();
 115  0
         jobData.put(MessageServiceExecutorJob.MESSAGE_KEY, message);
 116  0
         JobDetail jobDetail = new JobDetail("Delayed_Asynchronous_Call-" + Math.random(), "Delayed_Asynchronous_Call",
 117  
                 MessageServiceExecutorJob.class);
 118  0
         jobDetail.setJobDataMap(jobData);
 119  0
         jobDetail.addJobListener(MessageServiceExecutorJobListener.NAME);
 120  0
         Trigger trigger = new SimpleTrigger("Delayed_Asynchronous_Call_Trigger-" + Math.random(),
 121  
                 "Delayed_Asynchronous_Call", message.getQueueDate());
 122  0
         trigger.setJobDataMap(jobData);// 1.6 bug required or derby will choke
 123  0
         scheduler.scheduleJob(jobDetail, trigger);
 124  0
     }
 125  
 
 126  
     /**
 127  
          * Returns the List<RemotedServiceHolder> of asynchronous services which will be invoked by calls to this proxy.
 128  
          * This is a List because, in the case of Topics, there can be more than one service invoked.
 129  
          */
 130  
     public Object getTarget() {
 131  0
         return this.serviceDefs;
 132  
     }
 133  
 
 134  
     public List<RemotedServiceHolder> getServiceDefs() {
 135  0
         return this.serviceDefs;
 136  
     }
 137  
 
 138  
     public void setServiceDefs(List<RemotedServiceHolder> serviceDefs) {
 139  0
         this.serviceDefs = serviceDefs;
 140  0
     }
 141  
 
 142  
 }