a4e78f74e2529f822b5851585185bbf326b62dbf
[utils] / crawler / kissweb / src / org / wamblee / crawler / kiss / servlet / Application.java
1 /*
2  * Copyright 2006 the original author or authors.
3  * 
4  * Licensed under the Apache 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.apache.org/licenses/LICENSE-2.0
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
17 package org.wamblee.crawler.kiss.servlet;
18
19 import java.util.Date;
20
21 import javax.servlet.ServletContextEvent;
22 import javax.servlet.ServletContextListener;
23
24 import org.quartz.JobDetail;
25 import org.quartz.Scheduler;
26 import org.quartz.SchedulerException;
27 import org.quartz.SchedulerFactory;
28 import org.quartz.Trigger;
29 import org.quartz.TriggerUtils;
30 import org.quartz.core.QuartzScheduler;
31 import org.quartz.impl.StdSchedulerFactory;
32 import org.wamblee.crawler.kiss.scheduling.quartz.CrawlerJob;
33 import org.wamblee.crawler.kiss.scheduling.quartz.QuartzCrawlerScheduler;
34 import org.wamblee.general.BeanKernel;
35
36 /**
37  * The mechanism for kick starting the scheduling of the KiSS crawler. 
38  */
39 public class Application implements ServletContextListener {
40     
41     public Application() { 
42         // Empty. 
43     }
44
45     /*
46      * (non-Javadoc)
47      * 
48      * @see javax.servlet.ServletContextListener#contextInitialized(javax.servlet.ServletContextEvent)
49      */
50     public void contextInitialized(ServletContextEvent aEvent) {
51         aEvent.getServletContext().log("KiSS Crawler initializing");
52         try {
53             getScheduler().initialize();
54         } catch (SchedulerException e) {
55             aEvent.getServletContext().log("Error scheduling job", e);
56         }
57         aEvent.getServletContext().log("KiSS Crawler initialized");
58     }
59
60     /*
61      * (non-Javadoc)
62      * 
63      * @see javax.servlet.ServletContextListener#contextDestroyed(javax.servlet.ServletContextEvent)
64      */
65     public void contextDestroyed(ServletContextEvent aEvent) {
66         aEvent.getServletContext().log("KiSS Crawler shutting down");
67         try {
68             getScheduler().shutdown();
69         } catch (SchedulerException e) {
70             aEvent.getServletContext().log("Error scheduling job", e);
71         }
72         aEvent.getServletContext().log("KiSS Crawler shut down complete");
73     }
74
75     private QuartzCrawlerScheduler getScheduler() { 
76         return BeanKernel.getBeanFactory().find(QuartzCrawlerScheduler.class);
77     }
78
79     public static void main(String[] aArgs) throws SchedulerException {
80         Application application = new Application();
81         application.getScheduler().initialize();
82     }
83 }