54874559b81e19429453f68f08fb1e1547faedde
[utils] / crawler / src / org / wamblee / crawler / impl / ConfigurationImpl.java
1 /*
2  * Copyright 2005 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.impl;
18
19 import java.util.List;
20
21 import org.wamblee.crawler.Configuration;
22 import org.wamblee.crawler.PageRequest;
23 import org.wamblee.crawler.PageType;
24
25
26 /**
27  * Implementation of the configuration for the crawler. 
28  */
29 public class ConfigurationImpl implements Configuration {
30     
31     private List<UrlConfig> _urlConfig;
32     private List<PageTypeConfig> _pageTypeConfig; 
33     
34     public ConfigurationImpl(List<UrlConfig> aUrlConfig, List<PageTypeConfig> aPageTypeConfig) { 
35         _urlConfig = aUrlConfig;  
36         _pageTypeConfig = aPageTypeConfig; 
37     }
38
39     /* (non-Javadoc)
40      * @see org.wamblee.crawler.Configuration#getRequest(java.lang.String)
41      */
42     public PageRequest getRequest(String aUrl) {
43         
44         for (UrlConfig config: _urlConfig) { 
45             PageRequest request = config.getRequest(aUrl); 
46             if ( request != null ) { 
47                 return request; 
48             }
49         }
50         throw new RuntimeException("No configuration matched the URL '" + aUrl + "'");
51     }
52     
53     /* (non-Javadoc)
54      * @see org.wamblee.crawler.Configuration#getRequest(org.wamblee.crawler.PageType)
55      */
56     public PageRequest getRequest(PageType aType) {
57         for (PageTypeConfig config: _pageTypeConfig) { 
58             PageRequest request = config.getRequest(aType.getType()); 
59             if ( request != null ) { 
60                 return request; 
61             }
62         }
63         throw new RuntimeException("No configuration matched type '" + aType + "'");
64     }
65 }