View Javadoc

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