removed the prefix argument from ConfigImpl.wrap().
[xmlrouter] / impl / src / main / java / org / wamblee / xmlrouter / impl / RobustDocumentType.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.DocumentType;
24
25 /**
26  * Robust document type provides robustness towards externally provided document
27  * types.
28  * 
29  * @author Erik Brakkee
30  * 
31  */
32 public class RobustDocumentType extends RobustIdentifiable<DocumentType>
33     implements DocumentType {
34
35     private static final Logger LOGGER = Logger
36         .getLogger(RobustDocumentType.class.getName());
37
38     private DocumentType type;
39
40     /**
41      * Constructs the wrapper.
42      * 
43      * @param aId
44      *            Id.
45      * @param aType
46      *            Document type to wrap.
47      */
48     public RobustDocumentType(DocumentType aType) {
49         super(aType);
50         type = aType;
51     }
52
53     @Override
54     public String getName() {
55         try {
56             String name = type.getName();
57             if (name == null) {
58                 LOGGER.log(Level.WARNING, "Document type " + getId() +
59                     " returned null for name");
60                 return Constants.UNKNOWN_DOCUMENT_TYPE.toString();
61             }
62             return name;
63         } catch (Exception e) {
64             LOGGER.log(Level.WARNING, "Document type " + getId() +
65                 " threw exception", e);
66             return Constants.UNKNOWN_DOCUMENT_TYPE.toString();
67         }
68     }
69
70     @Override
71     public boolean isInstance(DOMSource aSource) {
72         try {
73             return type.isInstance(aSource);
74         } catch (Exception e) {
75             LOGGER.log(Level.WARNING, "Document type " + getId() +
76                 " threw exception", e);
77             return false;
78         }
79     }
80
81     @Override
82     public boolean validate(DOMSource aSource) {
83         try {
84             return type.validate(aSource);
85         } catch (Exception e) {
86             LOGGER.log(Level.WARNING, "Document type " + getId() +
87                 " threw exception", e);
88             return false;
89         }
90     }
91 }