(no commit message)
[utils] / crawler / kissweb / src / org / wamblee / crawler / kiss / scheduling / CrawlerExecutorImpl.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;
18
19 import java.util.Date;
20
21 import org.wamblee.crawler.kiss.main.KissCrawler;
22 import org.wamblee.crawler.kiss.main.Report;
23 import org.wamblee.crawler.kiss.notification.Notifier;
24
25 /**
26  * Implementation which executes the KiSS crawler for retrieving web content. 
27  */
28 public class CrawlerExecutorImpl implements CrawlerExecutor {
29     
30     private String _crawlerConfig; 
31     private String _programConfig;
32     private Notifier _notifier; 
33    
34     /**
35      * Constructs the crawler executor. 
36      * @param aCrawlerConfig Crawler configuration file. 
37      * @param aProgramConfig Program configuration file.
38      * @param aNotifier Object used to send notifications.  
39      */
40     public CrawlerExecutorImpl(String aCrawlerConfig, String aProgramConfig, Notifier aNotifier) { 
41         _crawlerConfig = aCrawlerConfig; 
42         _programConfig = aProgramConfig;
43         _notifier = aNotifier;
44     }
45
46     /* (non-Javadoc)
47      * @see org.wamblee.crawler.kiss.scheduling.CrawlerScheduler.CrawlerExecutor#execute(java.util.Date)
48      */
49     public void execute(Date aDate, Report aReport) throws Exception {
50         new KissCrawler(_crawlerConfig, _programConfig, _notifier, aReport);
51     }
52 }