*/
package org.wamblee.xml;
+import org.w3c.dom.ls.DOMImplementationLS;
+import org.w3c.dom.ls.LSInput;
+import org.w3c.dom.ls.LSResourceResolver;
import org.wamblee.io.ClassPathResource;
import org.wamblee.io.InputResource;
import java.io.IOException;
+import java.io.InputStream;
import javax.xml.transform.Source;
import javax.xml.transform.TransformerException;
/**
* URI resolver that resolves stylesheets through the classpath.
*/
-public class ClasspathUriResolver implements URIResolver {
+public class ClasspathUriResolver implements URIResolver, LSResourceResolver {
/**
* Constructs the resolver.
*
e);
}
}
+
+ @Override
+ public LSInput resolveResource(String aType, String aNamespaceURI,
+ String aPublicId, String aSystemId, String aBaseURI) {
+ try {
+ InputStream xslt = new ClassPathResource(aSystemId)
+ .getInputStream();
+ DOMImplementationLS impl = DomUtils.getDomImplementationLS();
+ LSInput input = impl.createLSInput();
+ input.setPublicId(aPublicId);
+ input.setSystemId(aSystemId);
+ input.setByteStream(xslt);
+ return input;
+ } catch (IOException e) {
+ return null;
+ }
+
+
+ }
+
}
*/
public static Document read(InputStream aIs) throws XMLException {
try {
- DOMImplementationRegistry registry = DOMImplementationRegistry
- .newInstance();
-
- DOMImplementationLS impl = (DOMImplementationLS) registry
- .getDOMImplementation("LS");
+ DOMImplementationLS impl = getDomImplementationLS();
LSParser builder = impl.createLSParser(
DOMImplementationLS.MODE_SYNCHRONOUS, null);
LSInput input = impl.createLSInput();
input.setByteStream(aIs);
return builder.parse(input);
- } catch (IllegalAccessException e) {
- throw new XMLException(e.getMessage(), e);
- } catch (InstantiationException e) {
- throw new XMLException(e.getMessage(), e);
- } catch (ClassNotFoundException e) {
- throw new XMLException(e.getMessage(), e);
} catch (LSException e) {
throw new XMLException(e.getMessage(), e);
} finally {
}
}
+ /**
+ * Gets a dom level 3 implementation.
+ * @return Dom implementation.
+ * @throws ClassNotFoundException
+ * @throws InstantiationException
+ * @throws IllegalAccessException
+ */
+ public static DOMImplementationLS getDomImplementationLS() {
+ final String message = "Could not get Dom level 3 implementation";
+ try {
+ DOMImplementationRegistry registry = DOMImplementationRegistry
+ .newInstance();
+
+ DOMImplementationLS impl = (DOMImplementationLS) registry
+ .getDOMImplementation("LS");
+ return impl;
+ } catch (ClassCastException e) {
+ throw new RuntimeException(message, e);
+ } catch (ClassNotFoundException e) {
+ throw new RuntimeException(message, e);
+ } catch (InstantiationException e) {
+ throw new RuntimeException(message, e);
+ } catch (IllegalAccessException e) {
+ throw new RuntimeException(message, e);
+ }
+ }
+
/**
* Reads and validates a document against a schema.
*
import junit.framework.TestCase;
+import org.w3c.dom.ls.LSInput;
+import org.w3c.dom.ls.LSResourceResolver;
import org.wamblee.io.ClassPathResource;
import org.wamblee.io.FileSystemUtils;
* @author Erik Brakkee
*/
public class ClasspathUriResolverTest extends TestCase {
- private URIResolver resolver;
+ private static final String EXISTING_RESOURCE = "org/wamblee/xml/reportToHtml.xsl";
+ private static final String NON_EXISTING_RESOURCE = "org/wamblee/xml/reportToHtml-nonexisting.xsl";
+ private ClasspathUriResolver resolver;
/*
* (non-Javadoc)
* @throws TransformerException
* @throws IOException
*/
- public void testResolveExistingFile() throws TransformerException,
- IOException {
+ public void testResolveExistingFileURIResolver()
+ throws TransformerException, IOException {
Source source = resolver
- .resolve("org/wamblee/xml/reportToHtml.xsl", "");
+ .resolve(EXISTING_RESOURCE, "");
assertTrue(source instanceof StreamSource);
String resolved = FileSystemUtils.read(((StreamSource) source)
.getInputStream());
ClassPathResource resource = new ClassPathResource(
- "org/wamblee/xml/reportToHtml.xsl");
+ EXISTING_RESOURCE);
String expected = FileSystemUtils.read(resource.getInputStream());
assertEquals(expected, resolved);
}
* thrown.
*
*/
- public void testResolveNonExistingFile() {
+ public void testResolveNonExistingFileURIResolver() {
try {
resolver
- .resolve("org/wamblee/xml/reportToHtml-nonexisting.xsl", "");
+ .resolve(NON_EXISTING_RESOURCE, "");
} catch (TransformerException e) {
return; // ok
}
fail();
}
+
+ /**
+ * Resolves an existing file. Verifies the file is resolved correctly.
+ *
+ * @throws TransformerException
+ * @throws IOException
+ */
+ public void testResolveExistingFileLSResourceResolver()
+ throws TransformerException, IOException {
+ LSInput source = resolver.resolveResource(null, null, "kees",
+ EXISTING_RESOURCE, null);
+ assertNotNull(source);
+
+ assertEquals("kees", source.getPublicId());
+ assertEquals(EXISTING_RESOURCE, source.getSystemId());
+
+ String resolved = FileSystemUtils.read(source.getByteStream());
+
+ ClassPathResource resource = new ClassPathResource(
+ EXISTING_RESOURCE);
+ String expected = FileSystemUtils.read(resource.getInputStream());
+ assertEquals(expected, resolved);
+ }
+
+ /**
+ * Resolves a non-existing file. Verifies that a TransformerException is
+ * thrown.
+ *
+ */
+ public void testResolveNonExistingFileLSResourceResolver() {
+ LSInput input = resolver.resolveResource(null, null, "kees",
+ NON_EXISTING_RESOURCE, null);
+ assertNull(input);
+ }
}