(no commit message)
[utils] / support / general / src / main / java / org / wamblee / xml / ClasspathUriResolver.java
1 /*
2  * Copyright 2005-2010 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.xml;
17
18 import org.wamblee.io.ClassPathResource;
19 import org.wamblee.io.InputResource;
20
21 import java.io.IOException;
22
23 import javax.xml.transform.Source;
24 import javax.xml.transform.TransformerException;
25 import javax.xml.transform.URIResolver;
26 import javax.xml.transform.stream.StreamSource;
27
28 /**
29  * URI resolver that resolves stylesheets through the classpath.
30  */
31 public class ClasspathUriResolver implements URIResolver {
32     /**
33      * Constructs the resolver.
34      * 
35      */
36     public ClasspathUriResolver() {
37         // Empty.
38     }
39
40     /*
41      * (non-Javadoc)
42      * 
43      * @see javax.xml.transform.URIResolver#resolve(java.lang.String,
44      * java.lang.String)
45      */
46     public Source resolve(String aHref, String aBase)
47         throws TransformerException {
48         InputResource xslt = new ClassPathResource(aHref);
49
50         try {
51             return new StreamSource(xslt.getInputStream());
52         } catch (IOException e) {
53             throw new TransformerException(
54                 "Could not get XSLT style sheet in classpath '" + aHref + "'",
55                 e);
56         }
57     }
58 }