1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.ksb.messaging.serviceproxies; |
17 | |
|
18 | |
import java.io.Serializable; |
19 | |
import java.lang.reflect.Method; |
20 | |
import java.lang.reflect.Proxy; |
21 | |
import java.sql.Timestamp; |
22 | |
import java.util.Calendar; |
23 | |
import java.util.List; |
24 | |
|
25 | |
import org.apache.log4j.Logger; |
26 | |
import org.kuali.rice.core.api.exception.RiceRuntimeException; |
27 | |
import org.kuali.rice.core.impl.resourceloader.ContextClassLoaderProxy; |
28 | |
import org.kuali.rice.core.util.ClassLoaderUtils; |
29 | |
import org.kuali.rice.core.util.reflect.BaseInvocationHandler; |
30 | |
import org.kuali.rice.core.util.reflect.TargetedInvocationHandler; |
31 | |
import org.kuali.rice.ksb.api.bus.Endpoint; |
32 | |
import org.kuali.rice.ksb.api.bus.ServiceConfiguration; |
33 | |
import org.kuali.rice.ksb.api.messaging.AsynchronousCall; |
34 | |
import org.kuali.rice.ksb.messaging.PersistedMessageBO; |
35 | |
import org.kuali.rice.ksb.messaging.quartz.MessageServiceExecutorJob; |
36 | |
import org.kuali.rice.ksb.messaging.quartz.MessageServiceExecutorJobListener; |
37 | |
import org.kuali.rice.ksb.service.KSBServiceLocator; |
38 | |
import org.quartz.JobDataMap; |
39 | |
import org.quartz.JobDetail; |
40 | |
import org.quartz.Scheduler; |
41 | |
import org.quartz.SchedulerException; |
42 | |
import org.quartz.SimpleTrigger; |
43 | |
import org.quartz.Trigger; |
44 | |
|
45 | |
|
46 | |
|
47 | |
|
48 | |
|
49 | |
|
50 | |
|
51 | |
public class DelayedAsynchronousServiceCallProxy extends BaseInvocationHandler implements TargetedInvocationHandler { |
52 | |
|
53 | 0 | private static final Logger LOG = Logger.getLogger(DelayedAsynchronousServiceCallProxy.class); |
54 | |
|
55 | |
List<Endpoint> endpoints; |
56 | |
private Serializable context; |
57 | |
private String value1; |
58 | |
private String value2; |
59 | |
private long delayMilliseconds; |
60 | |
|
61 | |
protected DelayedAsynchronousServiceCallProxy(List<Endpoint> endpoints, Serializable context, |
62 | 0 | String value1, String value2, long delayMilliseconds) { |
63 | 0 | this.endpoints = endpoints; |
64 | 0 | this.context = context; |
65 | 0 | this.value1 = value1; |
66 | 0 | this.value2 = value2; |
67 | 0 | this.delayMilliseconds = delayMilliseconds; |
68 | 0 | } |
69 | |
|
70 | |
public static Object createInstance(List<Endpoint> endpoints, Serializable context, String value1, |
71 | |
String value2, long delayMilliseconds) { |
72 | 0 | if (endpoints == null || endpoints.isEmpty()) { |
73 | 0 | throw new RuntimeException("Cannot create service proxy, no service(s) passed in."); |
74 | |
} |
75 | |
try { |
76 | 0 | return Proxy.newProxyInstance(ClassLoaderUtils.getDefaultClassLoader(), ContextClassLoaderProxy |
77 | |
.getInterfacesToProxy(endpoints.get(0).getService()), |
78 | |
new DelayedAsynchronousServiceCallProxy(endpoints, context, value1, value2, delayMilliseconds)); |
79 | 0 | } catch (Exception e) { |
80 | 0 | throw new RiceRuntimeException(e); |
81 | |
} |
82 | |
} |
83 | |
|
84 | |
@Override |
85 | |
protected Object invokeInternal(Object proxy, Method method, Object[] arguments) throws Throwable { |
86 | |
|
87 | 0 | AsynchronousCall methodCall = null; |
88 | 0 | PersistedMessageBO message = null; |
89 | 0 | synchronized (this) { |
90 | |
|
91 | |
|
92 | 0 | for (Endpoint endpoint : this.endpoints) { |
93 | 0 | ServiceConfiguration serviceConfiguration = endpoint.getServiceConfiguration(); |
94 | 0 | methodCall = new AsynchronousCall(method.getParameterTypes(), arguments, serviceConfiguration, method.getName(), |
95 | |
null, this.context); |
96 | 0 | message = KSBServiceLocator.getMessageQueueService().getMessage(serviceConfiguration, methodCall); |
97 | 0 | message.setValue1(this.value1); |
98 | 0 | message.setValue2(this.value2); |
99 | 0 | Calendar now = Calendar.getInstance(); |
100 | 0 | now.add(Calendar.MILLISECOND, (int) delayMilliseconds); |
101 | 0 | message.setQueueDate(new Timestamp(now.getTimeInMillis())); |
102 | 0 | scheduleMessage(message); |
103 | |
|
104 | |
|
105 | |
|
106 | |
|
107 | 0 | if (serviceConfiguration.isQueue()) { |
108 | 0 | break; |
109 | |
} |
110 | 0 | } |
111 | 0 | } |
112 | 0 | return null; |
113 | |
} |
114 | |
|
115 | |
protected void scheduleMessage(PersistedMessageBO message) throws SchedulerException { |
116 | 0 | LOG.debug("Scheduling execution of a delayed asynchronous message."); |
117 | 0 | Scheduler scheduler = KSBServiceLocator.getScheduler(); |
118 | 0 | JobDataMap jobData = new JobDataMap(); |
119 | 0 | jobData.put(MessageServiceExecutorJob.MESSAGE_KEY, message); |
120 | 0 | JobDetail jobDetail = new JobDetail("Delayed_Asynchronous_Call-" + Math.random(), "Delayed_Asynchronous_Call", |
121 | |
MessageServiceExecutorJob.class); |
122 | 0 | jobDetail.setJobDataMap(jobData); |
123 | 0 | jobDetail.addJobListener(MessageServiceExecutorJobListener.NAME); |
124 | 0 | Trigger trigger = new SimpleTrigger("Delayed_Asynchronous_Call_Trigger-" + Math.random(), |
125 | |
"Delayed_Asynchronous_Call", message.getQueueDate()); |
126 | 0 | trigger.setJobDataMap(jobData); |
127 | 0 | scheduler.scheduleJob(jobDetail, trigger); |
128 | 0 | } |
129 | |
|
130 | |
|
131 | |
|
132 | |
|
133 | |
|
134 | |
public Object getTarget() { |
135 | 0 | return this.endpoints; |
136 | |
} |
137 | |
|
138 | |
} |