com.qwazr.library.xml.AbstractXmlFactoryTool Maven / Gradle / Ivy
/*
* Copyright 2015-2017 Emmanuel Keller / QWAZR
*
* 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 com.qwazr.library.xml;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.qwazr.library.AbstractLibrary;
import com.qwazr.utils.LoggerUtils;
import org.xml.sax.ErrorHandler;
import org.xml.sax.SAXException;
import org.xml.sax.SAXParseException;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.ParserConfigurationException;
import java.util.Map;
import java.util.logging.Level;
import java.util.logging.Logger;
public abstract class AbstractXmlFactoryTool extends AbstractLibrary {
private static final Logger LOGGER = LoggerUtils.getLogger(AbstractXmlFactoryTool.class);
public final Boolean namespace_aware = null;
public final Boolean expand_entity_references = null;
public final Boolean validating = null;
public final Map features = null;
public final Boolean coalescing = null;
public final Boolean x_include_aware = null;
@JsonIgnore
private final DocumentBuilderFactory documentBuilderFactory;
public AbstractXmlFactoryTool() {
documentBuilderFactory = DocumentBuilderFactory.newInstance();
if (namespace_aware != null)
documentBuilderFactory.setNamespaceAware(namespace_aware);
if (expand_entity_references != null)
documentBuilderFactory.setExpandEntityReferences(expand_entity_references);
if (validating != null)
documentBuilderFactory.setValidating(validating);
if (features != null) {
features.forEach((key, value) -> {
try {
documentBuilderFactory.setFeature(key, value);
} catch (ParserConfigurationException e) {
throw new RuntimeException("Cannot set the feature: " + key, e);
}
});
}
if (coalescing != null)
documentBuilderFactory.setCoalescing(coalescing);
if (x_include_aware != null)
documentBuilderFactory.setXIncludeAware(x_include_aware);
}
final protected DocumentBuilder getNewDocumentBuilder() throws ParserConfigurationException {
synchronized (documentBuilderFactory) {
final DocumentBuilder builder = documentBuilderFactory.newDocumentBuilder();
builder.setErrorHandler(ToolErrorHandler.INSTANCE);
return builder;
}
}
private static class ToolErrorHandler implements ErrorHandler {
private static final ToolErrorHandler INSTANCE = new ToolErrorHandler();
@Override
final public void warning(SAXParseException exception) throws SAXException {
LOGGER.log(Level.WARNING, exception.getMessage(), exception);
}
@Override
final public void error(SAXParseException exception) throws SAXException {
LOGGER.log(Level.SEVERE, exception.getMessage(), exception);
}
@Override
final public void fatalError(SAXParseException exception) throws SAXException {
throw exception;
}
}
}