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

com.itextpdf.styledxmlparser.jsoup.nodes.Document Maven / Gradle / Ivy

There is a newer version: 8.0.3
Show newest version
/*
    This file is part of the iText (R) project.
    Copyright (c) 1998-2019 iText Group NV
    Authors: iText Software.

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU Affero General Public License version 3
    as published by the Free Software Foundation with the addition of the
    following permission added to Section 15 as permitted in Section 7(a):
    FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY
    ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT
    OF THIRD PARTY RIGHTS

    This program is distributed in the hope that it will be useful, but
    WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
    or FITNESS FOR A PARTICULAR PURPOSE.
    See the GNU Affero General Public License for more details.
    You should have received a copy of the GNU Affero General Public License
    along with this program; if not, see http://www.gnu.org/licenses or write to
    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
    Boston, MA, 02110-1301 USA, or download the license from the following URL:
    http://itextpdf.com/terms-of-use/

    The interactive user interfaces in modified source and object code versions
    of this program must display Appropriate Legal Notices, as required under
    Section 5 of the GNU Affero General Public License.

    In accordance with Section 7(b) of the GNU Affero General Public License,
    a covered work must retain the producer line in every PDF that is created
    or manipulated using iText.

    You can be released from the requirements of the license by purchasing
    a commercial license. Buying such a license is mandatory as soon as you
    develop commercial activities involving the iText software without
    disclosing the source code of your own applications.
    These activities include: offering paid services to customers as an ASP,
    serving PDFs on the fly in a web application, shipping iText with a closed
    source product.

    For more information, please contact iText Software Corp. at this
    address: [email protected]
 */
package com.itextpdf.styledxmlparser.jsoup.nodes;

import com.itextpdf.styledxmlparser.jsoup.Jsoup;
import com.itextpdf.styledxmlparser.jsoup.helper.StringUtil;
import com.itextpdf.styledxmlparser.jsoup.helper.Validate;
import com.itextpdf.styledxmlparser.jsoup.select.Elements;
import com.itextpdf.styledxmlparser.jsoup.parser.Tag;

import java.nio.charset.Charset;
import java.nio.charset.CharsetEncoder;
import java.util.ArrayList;
import java.util.List;

/**
 A HTML Document.

 @author Jonathan Hedley, [email protected] */
public class Document extends Element {
    private OutputSettings outputSettings = new OutputSettings();
    private QuirksMode quirksMode = QuirksMode.noQuirks;
    private String location;
    private boolean updateMetaCharset = false;

    /**
     Create a new, empty Document.
     @param baseUri base URI of document
     @see Jsoup#parse
     @see #createShell
     */
    public Document(String baseUri) {
        super(Tag.valueOf("#root"), baseUri);
        this.location = baseUri;
    }

    /**
     Create a valid, empty shell of a document, suitable for adding more elements to.
     @param baseUri baseUri of document
     @return document with html, head, and body elements.
     */
    static public Document createShell(String baseUri) {
        Validate.notNull(baseUri);

        Document doc = new Document(baseUri);
        Element html = doc.appendElement("html");
        html.appendElement("head");
        html.appendElement("body");

        return doc;
    }

    /**
     * Get the URL this Document was parsed from. If the starting URL is a redirect,
     * this will return the final URL from which the document was served from.
     * @return location
     */
    public String location() {
     return location;
    }
    
    /**
     Accessor to the document's {@code head} element.
     @return {@code head}
     */
    public Element head() {
        return findFirstElementByTagName("head", this);
    }

    /**
     Accessor to the document's {@code body} element.
     @return {@code body}
     */
    public Element body() {
        return findFirstElementByTagName("body", this);
    }

    /**
     Get the string contents of the document's {@code title} element.
     @return Trimmed title, or empty string if none set.
     */
    public String title() {
        // title is a preserve whitespace tag (for document output), but normalised here
        Element titleEl = getElementsByTag("title").first();
        return titleEl != null ? StringUtil.normaliseWhitespace(titleEl.text()).trim() : "";
    }

    /**
     Set the document's {@code title} element. Updates the existing element, or adds {@code title} to {@code head} if
     not present
     @param title string to set as title
     */
    public void title(String title) {
        Validate.notNull(title);
        Element titleEl = getElementsByTag("title").first();
        if (titleEl == null) { // add to head
            head().appendElement("title").text(title);
        } else {
            titleEl.text(title);
        }
    }

    /**
     Create a new Element, with this document's base uri. Does not make the new element a child of this document.
     @param tagName element tag name (e.g. {@code a})
     @return new element
     */
    public Element createElement(String tagName) {
        return new Element(Tag.valueOf(tagName), this.baseUri());
    }

    /**
     Normalise the document. This happens after the parse phase so generally does not need to be called.
     Moves any text content that is not in the body element into the body.
     @return this document after normalisation
     */
    public Document normalise() {
        Element htmlEl = findFirstElementByTagName("html", this);
        if (htmlEl == null)
            htmlEl = appendElement("html");
        if (head() == null)
            htmlEl.prependElement("head");
        if (body() == null)
            htmlEl.appendElement("body");

        // pull text nodes out of root, html, and head els, and push into body. non-text nodes are already taken care
        // of. do in inverse order to maintain text order.
        normaliseTextNodes(head());
        normaliseTextNodes(htmlEl);
        normaliseTextNodes(this);

        normaliseStructure("head", htmlEl);
        normaliseStructure("body", htmlEl);
        
        ensureMetaCharsetElement();
        
        return this;
    }

    // does not recurse.
    private void normaliseTextNodes(Element element) {
        List toMove = new ArrayList();
        for (Node node: element.childNodes) {
            if (node instanceof TextNode) {
                TextNode tn = (TextNode) node;
                if (!tn.isBlank())
                    toMove.add(tn);
            }
        }

        for (int i = toMove.size()-1; i >= 0; i--) {
            Node node = toMove.get(i);
            element.removeChild(node);
            body().prependChild(new TextNode(" ", ""));
            body().prependChild(node);
        }
    }

    // merge multiple  or  contents into one, delete the remainder, and ensure they are owned by 
    private void normaliseStructure(String tag, Element htmlEl) {
        Elements elements = this.getElementsByTag(tag);
        Element master = elements.first(); // will always be available as created above if not existent
        if (elements.size() > 1) { // dupes, move contents to master
            List toMove = new ArrayList();
            for (int i = 1; i < elements.size(); i++) {
                Node dupe = elements.get(i);
                for (Node node : dupe.childNodes)
                    toMove.add(node);
                dupe.remove();
            }

            for (Node dupe : toMove)
                master.appendChild(dupe);
        }
        // ensure parented by 
        if (!master.parent().equals(htmlEl)) {
            htmlEl.appendChild(master); // includes remove()            
        }
    }

    // fast method to get first by tag name, used for html, head, body finders
    private Element findFirstElementByTagName(String tag, Node node) {
        if (node.nodeName().equals(tag))
            return (Element) node;
        else {
            for (Node child: node.childNodes) {
                Element found = findFirstElementByTagName(tag, child);
                if (found != null)
                    return found;
            }
        }
        return null;
    }

    @Override
    public String outerHtml() {
        return super.html(); // no outer wrapper tag
    }

    /**
     Set the text of the {@code body} of this document. Any existing nodes within the body will be cleared.
     @param text unencoded text
     @return this document
     */
    @Override
    public Element text(String text) {
        body().text(text); // overridden to not nuke doc structure
        return this;
    }

    @Override
    public String nodeName() {
        return "#document";
    }
    
    /**
     * Sets the charset used in this document. This method is equivalent
     * to {@link OutputSettings#charset(java.nio.charset.Charset)
     * OutputSettings.charset(Charset)} but in addition it updates the
     * charset / encoding element within the document.
     * 
     * 

This enables * {@link #updateMetaCharsetElement(boolean) meta charset update}.

* *

If there's no element with charset / encoding information yet it will * be created. Obsolete charset / encoding definitions are removed!

* *

Elements used:

* *
    *
  • Html: <meta charset="CHARSET">
  • *
  • Xml: <?xml version="1.0" encoding="CHARSET">
  • *
* * @param charset Charset * * @see #updateMetaCharsetElement(boolean) * @see OutputSettings#charset(java.nio.charset.Charset) */ public void charset(Charset charset) { updateMetaCharsetElement(true); outputSettings.charset(charset); ensureMetaCharsetElement(); } /** * Returns the charset used in this document. This method is equivalent * to {@link OutputSettings#charset()}. * * @return Current Charset * * @see OutputSettings#charset() */ public Charset charset() { return outputSettings.charset(); } /** * Sets whether the element with charset information in this document is * updated on changes through {@link #charset(java.nio.charset.Charset) * Document.charset(Charset)} or not. * *

If set to false (default) there are no elements * modified.

* * @param update If true the element updated on charset * changes, false if not * * @see #charset(java.nio.charset.Charset) */ public void updateMetaCharsetElement(boolean update) { this.updateMetaCharset = update; } /** * Returns whether the element with charset information in this document is * updated on changes through {@link #charset(java.nio.charset.Charset) * Document.charset(Charset)} or not. * * @return Returns true if the element is updated on charset * changes, false if not */ public boolean updateMetaCharsetElement() { return updateMetaCharset; } @Override public Object clone() { Document clone = (Document) super.clone(); clone.outputSettings = (OutputSettings) this.outputSettings.clone(); return clone; } /** * Ensures a meta charset (html) or xml declaration (xml) with the current * encoding used. This only applies with * {@link #updateMetaCharsetElement(boolean) updateMetaCharset} set to * true, otherwise this method does nothing. * *
    *
  • An exsiting element gets updated with the current charset
  • *
  • If there's no element yet it will be inserted
  • *
  • Obsolete elements are removed
  • *
* *

Elements used:

* *
    *
  • Html: <meta charset="CHARSET">
  • *
  • Xml: <?xml version="1.0" encoding="CHARSET">
  • *
*/ private void ensureMetaCharsetElement() { if (updateMetaCharset) { OutputSettings.Syntax syntax = outputSettings().syntax(); if (syntax == OutputSettings.Syntax.html) { Element metaCharset = select("meta[charset]").first(); if (metaCharset != null) { metaCharset.attr("charset", charset().displayName()); } else { Element head = head(); if (head != null) { head.appendElement("meta").attr("charset", charset().displayName()); } } // Remove obsolete elements select("meta[name=charset]").remove(); } else if (syntax == OutputSettings.Syntax.xml) { Node node = childNodes().get(0); if (node instanceof XmlDeclaration) { XmlDeclaration decl = (XmlDeclaration) node; if (decl.name().equals("xml")) { decl.attr("encoding", charset().displayName()); final String version = decl.attr("version"); if (version != null) { decl.attr("version", "1.0"); } } else { decl = new XmlDeclaration("xml", baseUri, false); decl.attr("version", "1.0"); decl.attr("encoding", charset().displayName()); prependChild(decl); } } else { XmlDeclaration decl = new XmlDeclaration("xml", baseUri, false); decl.attr("version", "1.0"); decl.attr("encoding", charset().displayName()); prependChild(decl); } } } } /** * A Document's output settings control the form of the text() and html() methods. */ public static class OutputSettings implements Cloneable { /** * The output serialization syntax. */ public enum Syntax {html, xml} private Entities.EscapeMode escapeMode = Entities.EscapeMode.base; private Charset charset = Charset.forName("UTF-8"); private CharsetEncoder charsetEncoder; private boolean prettyPrint = true; private boolean outline = false; private int indentAmount = 1; private Syntax syntax = Syntax.html; public OutputSettings() { charsetEncoder = charset.newEncoder(); } /** * Get the document's current HTML escape mode: base, which provides a limited set of named HTML * entities and escapes other characters as numbered entities for maximum compatibility; or extended, * which uses the complete set of HTML named entities. *

* The default escape mode is base. * @return the document's current escape mode */ public Entities.EscapeMode escapeMode() { return escapeMode; } /** * Set the document's escape mode, which determines how characters are escaped when the output character set * does not support a given character:- using either a named or a numbered escape. * @param escapeMode the new escape mode to use * @return the document's output settings, for chaining */ public OutputSettings escapeMode(Entities.EscapeMode escapeMode) { this.escapeMode = escapeMode; return this; } /** * Get the document's current output charset, which is used to control which characters are escaped when * generating HTML (via the html() methods), and which are kept intact. *

* Where possible (when parsing from a URL or File), the document's output charset is automatically set to the * input charset. Otherwise, it defaults to UTF-8. * @return the document's current charset. */ public Charset charset() { return charset; } /** * Update the document's output charset. * @param charset the new charset to use. * @return the document's output settings, for chaining */ public OutputSettings charset(Charset charset) { this.charset = charset; charsetEncoder = charset.newEncoder(); return this; } /** * Update the document's output charset. * @param charset the new charset (by name) to use. * @return the document's output settings, for chaining */ public OutputSettings charset(String charset) { charset(Charset.forName(charset)); return this; } CharsetEncoder encoder() { return charsetEncoder; } /** * Get the document's current output syntax. * @return current syntax */ public Syntax syntax() { return syntax; } /** * Set the document's output syntax. Either {@code html}, with empty tags and boolean attributes (etc), or * {@code xml}, with self-closing tags. * @param syntax serialization syntax * @return the document's output settings, for chaining */ public OutputSettings syntax(Syntax syntax) { this.syntax = syntax; return this; } /** * Get if pretty printing is enabled. Default is true. If disabled, the HTML output methods will not re-format * the output, and the output will generally look like the input. * @return if pretty printing is enabled. */ public boolean prettyPrint() { return prettyPrint; } /** * Enable or disable pretty printing. * @param pretty new pretty print setting * @return this, for chaining */ public OutputSettings prettyPrint(boolean pretty) { prettyPrint = pretty; return this; } /** * Get if outline mode is enabled. Default is false. If enabled, the HTML output methods will consider * all tags as block. * @return if outline mode is enabled. */ public boolean outline() { return outline; } /** * Enable or disable HTML outline mode. * @param outlineMode new outline setting * @return this, for chaining */ public OutputSettings outline(boolean outlineMode) { outline = outlineMode; return this; } /** * Get the current tag indent amount, used when pretty printing. * @return the current indent amount */ public int indentAmount() { return indentAmount; } /** * Set the indent amount for pretty printing * @param indentAmount number of spaces to use for indenting each level. Must be {@literal >=} 0. * @return this, for chaining */ public OutputSettings indentAmount(int indentAmount) { Validate.isTrue(indentAmount >= 0); this.indentAmount = indentAmount; return this; } @Override public Object clone() { OutputSettings clone; clone = (OutputSettings) partialClone(); clone.charset(charset.name()); // new charset and charset encoder clone.escapeMode = Entities.EscapeMode.valueOf(escapeMode.name()); // indentAmount, prettyPrint are primitives so object.clone() will handle return clone; } private Object partialClone() { try { return super.clone(); } catch (CloneNotSupportedException e) { throw new RuntimeException(e); } } } /** * Get the document's current output settings. * @return the document's current output settings. */ public OutputSettings outputSettings() { return outputSettings; } /** * Set the document's output settings. * @param outputSettings new output settings. * @return this document, for chaining. */ public Document outputSettings(OutputSettings outputSettings) { Validate.notNull(outputSettings); this.outputSettings = outputSettings; return this; } public enum QuirksMode { noQuirks, quirks, limitedQuirks } public QuirksMode quirksMode() { return quirksMode; } public Document quirksMode(QuirksMode quirksMode) { this.quirksMode = quirksMode; return this; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy