All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jcabi.xml.DomParser Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2012-2024, jcabi.com
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met: 1) Redistributions of source code must retain the above
 * copyright notice, this list of conditions and the following
 * disclaimer. 2) Redistributions in binary form must reproduce the above
 * copyright notice, this list of conditions and the following
 * disclaimer in the documentation and/or other materials provided
 * with the distribution. 3) Neither the name of the jcabi.com nor
 * the names of its contributors may be used to endorse or promote
 * products derived from this software without specific prior written
 * permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT
 * NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
 * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
 * THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
 * OF THE POSSIBILITY OF SUCH DAMAGE.
 */
package com.jcabi.xml;

import com.jcabi.log.Logger;
import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.nio.charset.StandardCharsets;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.ParserConfigurationException;
import lombok.EqualsAndHashCode;
import lombok.ToString;
import org.w3c.dom.Document;
import org.xml.sax.SAXException;

/**
 * Convenient parser of XML to DOM.
 *
 * 

Objects of this class are immutable and thread-safe. * * @since 0.1 */ @ToString @EqualsAndHashCode(of = "xml") final class DomParser { /** * The XML as a text. */ private final transient byte[] xml; /** * Document builder factory to use for parsing. */ private final transient DocumentBuilderFactory factory; /** * Public ctor. * *

An {@link IllegalArgumentException} may be thrown if the parameter * passed is not in XML format. It doesn't perform a strict validation * and is not guaranteed that an exception will be thrown whenever * the parameter is not XML. * *

It is assumed that the text is in UTF-8. * * @param fct Document builder factory to use * @param txt The XML in text (in UTF-8) */ DomParser(final DocumentBuilderFactory fct, final String txt) { this(fct, txt.getBytes(StandardCharsets.UTF_8)); } /** * Public ctor. * *

An {@link IllegalArgumentException} may be thrown if the parameter * passed is not in XML format. It doesn't perform a strict validation * and is not guaranteed that an exception will be thrown whenever * the parameter is not XML. * * @param fct Document builder factory to use * @param bytes The XML in bytes */ @SuppressWarnings("PMD.ArrayIsStoredDirectly") DomParser(final DocumentBuilderFactory fct, final byte[] bytes) { this.xml = bytes; this.factory = fct; } /** * Get document of body. * @return The document */ public Document document() { final DocumentBuilder builder; try { builder = this.factory.newDocumentBuilder(); } catch (final ParserConfigurationException ex) { throw new IllegalArgumentException( String.format( "Failed to create document builder by %s", this.factory.getClass().getName() ), ex ); } final long start = System.nanoTime(); final Document doc; try { doc = builder.parse(new ByteArrayInputStream(this.xml)); } catch (final IOException | SAXException ex) { throw new IllegalArgumentException( String.format( "Can't parse by %s, most probably the XML is invalid", builder.getClass().getName() ), ex ); } if (Logger.isTraceEnabled(this)) { Logger.trace( this, "%s parsed %d bytes of XML in %[nano]s", builder.getClass().getName(), this.xml.length, System.nanoTime() - start ); } return doc; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy