org.semarglproject.source.XmlSource Maven / Gradle / Ivy
/**
* Copyright 2012-2013 the Semargl contributors. See AUTHORS for more details.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.semarglproject.source;
import org.semarglproject.rdf.ParseException;
import org.semarglproject.sink.XmlSink;
import org.xml.sax.InputSource;
import org.xml.sax.SAXException;
import org.xml.sax.XMLReader;
import org.xml.sax.helpers.XMLReaderFactory;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.Reader;
import java.nio.charset.Charset;
final class XmlSource extends AbstractSource {
private XMLReader xmlReader = null;
XmlSource(XmlSink sink) {
super(sink);
}
@Override
public void process(Reader reader, String mimeType, String baseUri) throws ParseException {
try {
initXmlReader();
} catch (SAXException e) {
throw new ParseException("Can not instantinate XMLReader", e);
}
try {
sink.setBaseUri(baseUri);
xmlReader.parse(new InputSource(reader));
} catch (SAXException e) {
ParseException wrappedException = sink.processException(e);
try {
sink.endDocument();
} catch (SAXException e2) {
// do nothing
}
throw wrappedException;
} catch (IOException e) {
throw new ParseException(e);
}
}
@Override
public void process(InputStream inputStream, String mimeType, String baseUri) throws ParseException {
Reader reader = new InputStreamReader(inputStream, Charset.forName("UTF-8"));
try {
process(reader, mimeType, baseUri);
} finally {
BaseStreamProcessor.closeQuietly(reader);
}
}
private void initXmlReader() throws SAXException {
if (xmlReader == null) {
xmlReader = getDefaultXmlReader();
}
xmlReader.setContentHandler(sink);
xmlReader.setProperty("http://xml.org/sax/properties/lexical-handler", sink);
}
public void setXmlReader(XMLReader xmlReader) throws SAXException {
if(xmlReader == null) {
this.xmlReader = getDefaultXmlReader();
} else {
this.xmlReader = xmlReader;
}
}
public static XMLReader getDefaultXmlReader() throws SAXException {
XMLReader result = XMLReaderFactory.createXMLReader();
result.setFeature("http://apache.org/xml/features/nonvalidating/load-external-dtd", false);
return result;
}
}