d79e714940ebbfe4937566ea4286f6c9bc765ebf
[utils] / crawler / kissweb / src / main / java / 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  * @author Erik Brakkee
29  */
30 public class CrawlerExecutorImpl implements CrawlerExecutor {
31     
32     private String _crawlerConfig; 
33     private String _programConfig;
34     private Notifier _notifier; 
35    
36     /**
37      * Constructs the crawler executor. 
38      * @param aCrawlerConfig Crawler configuration file. 
39      * @param aProgramConfig Program configuration file.
40      * @param aNotifier Object used to send notifications.  
41      */
42     public CrawlerExecutorImpl(String aCrawlerConfig, String aProgramConfig, Notifier aNotifier) { 
43         _crawlerConfig = aCrawlerConfig; 
44         _programConfig = aProgramConfig;
45         _notifier = aNotifier;
46     }
47
48     /* (non-Javadoc)
49      * @see org.wamblee.crawler.kiss.scheduling.CrawlerScheduler.CrawlerExecutor#execute(java.util.Date)
50      */
51     public void execute(Date aDate, Report aReport) throws Exception {
52         new KissCrawler(_crawlerConfig, _programConfig, _notifier, aReport);
53     }
54 }