1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | |
package org.kuali.rice.kew.lifecycle; |
18 | |
|
19 | |
import org.kuali.rice.core.api.config.property.ConfigContext; |
20 | |
import org.kuali.rice.core.api.lifecycle.BaseLifecycle; |
21 | |
import org.kuali.rice.core.api.lifecycle.BaseLifecycle; |
22 | |
import org.kuali.rice.kew.batch.XmlPollerService; |
23 | |
import org.kuali.rice.kew.service.KEWServiceLocator; |
24 | |
|
25 | |
import java.util.concurrent.Executors; |
26 | |
import java.util.concurrent.ScheduledExecutorService; |
27 | |
import java.util.concurrent.ScheduledFuture; |
28 | |
import java.util.concurrent.TimeUnit; |
29 | |
|
30 | 0 | public class XmlPipelineLifeCycle extends BaseLifecycle { |
31 | |
|
32 | 0 | protected final org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(XmlPipelineLifeCycle.class); |
33 | |
|
34 | |
private ScheduledExecutorService scheduledExecutor; |
35 | |
private ScheduledFuture future; |
36 | |
|
37 | |
public void start() throws Exception { |
38 | 0 | LOG.info("Configuring XML ingestion pipeline..."); |
39 | 0 | scheduledExecutor = Executors.newScheduledThreadPool(1); |
40 | 0 | final XmlPollerService xmlPoller = KEWServiceLocator.getXmlPollerService(); |
41 | 0 | LOG.info("Starting XML data loader. Polling at " + xmlPoller.getPollIntervalSecs() + "-second intervals"); |
42 | 0 | if (!ConfigContext.getCurrentContextConfig().getDevMode()) { |
43 | 0 | future = scheduledExecutor.scheduleWithFixedDelay(xmlPoller, xmlPoller.getInitialDelaySecs(), xmlPoller.getPollIntervalSecs(), TimeUnit.SECONDS); |
44 | 0 | super.start(); |
45 | |
} |
46 | 0 | } |
47 | |
|
48 | |
public void stop() throws Exception { |
49 | 0 | if (isStarted()) { |
50 | 0 | LOG.warn("Shutting down XML file polling timer"); |
51 | |
try { |
52 | 0 | if (future != null) { |
53 | 0 | if (!future.cancel(false)) { |
54 | 0 | LOG.warn("Failed to cancel the XML Poller service."); |
55 | |
} |
56 | 0 | future = null; |
57 | |
} |
58 | 0 | if (scheduledExecutor != null) { |
59 | 0 | scheduledExecutor.shutdownNow(); |
60 | 0 | scheduledExecutor = null; |
61 | |
} |
62 | |
} finally { |
63 | 0 | super.stop(); |
64 | 0 | } |
65 | |
} |
66 | 0 | } |
67 | |
|
68 | |
} |