XmlDocumentBuilderImpl.java
/*
* Copyright 2020-2022 the original author or authors.
*
* 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.bremersee.xml;
import static java.util.Objects.isNull;
import static org.springframework.util.ObjectUtils.isEmpty;
import jakarta.xml.bind.JAXBContext;
import jakarta.xml.bind.JAXBException;
import jakarta.xml.bind.Marshaller;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.ParserConfigurationException;
import javax.xml.validation.Schema;
import lombok.ToString;
import org.w3c.dom.Document;
import org.xml.sax.EntityResolver;
import org.xml.sax.ErrorHandler;
import org.xml.sax.InputSource;
import org.xml.sax.SAXException;
/**
* The default xml document builder implementation.
*
* @author Christian Bremer
*/
@ToString
class XmlDocumentBuilderImpl implements XmlDocumentBuilder {
private final DocumentBuilderFactory factory;
private EntityResolver entityResolver;
private ErrorHandler errorHandler;
/**
* Instantiates a new xml document builder.
*/
XmlDocumentBuilderImpl() {
factory = DocumentBuilderFactory.newInstance();
factory.setNamespaceAware(true);
}
@Override
public XmlDocumentBuilder configureFactory(
XmlDocumentBuilderFactoryConfigurator configurator) {
if (!isEmpty(configurator)) {
configurator.configure(factory);
}
return this;
}
@Override
public XmlDocumentBuilder configureFactory(
Boolean coalescing,
Boolean expandEntityReferences,
Boolean ignoringComments,
Boolean ignoringElementContentWhitespace,
Boolean namespaceAware,
Boolean validating,
Boolean xmlIncludeAware) {
if (!isEmpty(coalescing)) {
factory.setCoalescing(coalescing);
}
if (!isEmpty(expandEntityReferences)) {
factory.setExpandEntityReferences(expandEntityReferences);
}
if (!isEmpty(ignoringComments)) {
factory.setIgnoringComments(ignoringComments);
}
if (!isEmpty(ignoringElementContentWhitespace)) {
factory.setIgnoringElementContentWhitespace(ignoringElementContentWhitespace);
}
if (!isEmpty(namespaceAware)) {
factory.setNamespaceAware(namespaceAware);
}
if (!isEmpty(validating)) {
factory.setValidating(validating);
}
if (!isEmpty(xmlIncludeAware)) {
factory.setXIncludeAware(xmlIncludeAware);
}
return this;
}
@Override
public XmlDocumentBuilder configureFactoryAttribute(String name, Object value) {
factory.setAttribute(name, value);
return this;
}
@Override
public XmlDocumentBuilder configureFactoryFeature(String name, boolean value) {
try {
factory.setFeature(name, value);
} catch (ParserConfigurationException e) {
throw new XmlRuntimeException(e);
}
return this;
}
@Override
public XmlDocumentBuilder configureFactorySchema(Schema schema) {
factory.setSchema(schema);
return this;
}
@Override
public XmlDocumentBuilder configureEntityResolver(EntityResolver entityResolver) {
this.entityResolver = entityResolver;
return this;
}
@Override
public XmlDocumentBuilder configureErrorHandler(ErrorHandler errorHandler) {
this.errorHandler = errorHandler;
return this;
}
@Override
public DocumentBuilder buildDocumentBuilder() {
DocumentBuilder documentBuilder;
try {
documentBuilder = factory.newDocumentBuilder();
} catch (ParserConfigurationException e) {
throw new XmlRuntimeException(e);
}
if (!isEmpty(entityResolver)) {
documentBuilder.setEntityResolver(entityResolver);
}
if (!isEmpty(errorHandler)) {
documentBuilder.setErrorHandler(errorHandler);
}
return documentBuilder;
}
@Override
public Document buildDocument() {
return buildDocumentBuilder().newDocument();
}
@Override
public Document buildDocument(File file) {
try {
return buildDocumentBuilder().parse(file);
} catch (SAXException | IOException e) {
throw new XmlRuntimeException(e);
}
}
@Override
public Document buildDocument(String uri) {
try {
return buildDocumentBuilder().parse(uri);
} catch (SAXException | IOException e) {
throw new XmlRuntimeException(e);
}
}
@Override
public Document buildDocument(InputSource is) {
try {
return buildDocumentBuilder().parse(is);
} catch (SAXException | IOException e) {
throw new XmlRuntimeException(e);
}
}
@Override
public Document buildDocument(InputStream is) {
try {
return buildDocumentBuilder().parse(is);
} catch (SAXException | IOException e) {
throw new XmlRuntimeException(e);
}
}
@Override
public Document buildDocument(InputStream is, String systemId) {
try {
return buildDocumentBuilder().parse(is, systemId);
} catch (SAXException | IOException e) {
throw new XmlRuntimeException(e);
}
}
@Override
public Document buildDocument(Object jaxbElement, JAXBContext jaxbContext) {
if (isNull(jaxbElement)) {
return null;
}
try {
return buildDocument(jaxbElement, jaxbContext.createMarshaller());
} catch (JAXBException e) {
throw new JaxbRuntimeException(e);
}
}
@Override
public Document buildDocument(Object jaxbElement, Marshaller marshaller) {
if (isNull(jaxbElement)) {
return null;
}
Document document = buildDocument();
try {
marshaller.marshal(jaxbElement, document);
} catch (JAXBException e) {
throw new JaxbRuntimeException(e);
}
return document;
}
}