9458d1c38de982616bf3a44dcb3bea4fd79c5d57
[utils] / crawler / kissweb / src / org / wamblee / crawler / kiss / scheduling / quartz / QuartzCrawlerScheduler.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.scheduling.quartz;
18
19 import java.util.Date;
20
21 import org.quartz.JobDetail;
22 import org.quartz.Scheduler;
23 import org.quartz.SchedulerException;
24 import org.quartz.SchedulerFactory;
25 import org.quartz.Trigger;
26 import org.quartz.TriggerUtils;
27 import org.quartz.impl.StdSchedulerFactory;
28
29 /**
30  * Interface to the Quartz scheduler.
31  */
32 public class QuartzCrawlerScheduler {
33     
34     private Scheduler _scheduler; 
35
36     /**
37      * Constructs the quartz interface. 
38      * @throws SchedulerException
39      */
40     public QuartzCrawlerScheduler() throws SchedulerException { 
41         SchedulerFactory schedulerFactory = new StdSchedulerFactory();
42         _scheduler = schedulerFactory.getScheduler();
43     }
44     
45     /**
46      * Initializes the scheduler.
47      * @throws SchedulerException
48      */
49     public void initialize() throws SchedulerException { 
50         _scheduler.start();
51
52         JobDetail jobDetail = new JobDetail("kisscrawler", null, CrawlerJob.class);
53         jobDetail.getJobDataMap().put("count", 0);
54
55         Trigger trigger = TriggerUtils.makeHourlyTrigger(); 
56         trigger.setStartTime(TriggerUtils.getEvenHourDate(new Date())); 
57         trigger.setName("hourly");
58
59         _scheduler.scheduleJob(jobDetail, trigger);
60     }
61     
62     /**
63      * Shuts down the scheduler. 
64      * @throws SchedulerException
65      */
66     public void shutdown() throws SchedulerException { 
67         _scheduler.shutdown();
68     }
69 }