625f8945ca5fb3063f79994acf26cca9ac340e33
[xmlrouter] / impl / src / main / java / org / wamblee / xmlrouter / impl / RobustFilter.java
1 /*
2  * Copyright 2005-2011 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 package org.wamblee.xmlrouter.impl;
17
18 import java.util.logging.Level;
19 import java.util.logging.Logger;
20
21 import javax.xml.transform.dom.DOMSource;
22
23 import org.wamblee.xmlrouter.config.Filter;
24
25 /**
26  * This class provides robustness towards externally supplied filters.
27  * 
28  * @author Erik Brakkee
29  * 
30  */
31 public class RobustFilter extends RobustIdentifiable<Filter> implements Filter {
32
33     private static final Logger LOGGER = Logger.getLogger(RobustFilter.class
34         .getName());
35
36     private Filter filter;
37
38     /**
39      * Constructs the wrapper.
40      * 
41      * @param aId
42      *            Id.
43      * @param aFilter
44      *            Filter to wrap.
45      */
46     public RobustFilter(String aPrefix, Filter aFilter) {
47         super(aFilter);
48         filter = aFilter;
49     }
50
51     @Override
52     public boolean isAllowed(String aDocumentType, DOMSource aSource) {
53         try {
54             return filter.isAllowed(aDocumentType, aSource);
55         } catch (Exception e) {
56             LOGGER.log(Level.WARNING, "Filter " + getId() +
57                 " threw exception, assuming filter returns true", e);
58             return true;
59         }
60     }
61 }