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

net.sf.saxon.om.GenericTreeInfo Maven / Gradle / Ivy

There is a newer version: 12.5
Show newest version
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2018-2023 Saxonica Limited
// This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
// If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
// This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0.
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

package net.sf.saxon.om;

import net.sf.saxon.Configuration;
import net.sf.saxon.tree.util.DocumentNumberAllocator;

import javax.xml.transform.Source;
import java.util.Collections;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;

/**
 * A generic (model-independent) implementation of the TreeInfo interface, suitable for use with all
 * tree models where the object representing the document node does not itself act as the TreeInfo
 * implementation
 */

public class GenericTreeInfo implements TreeInfo
    , Source
{
    private Configuration config;
    protected NodeInfo root;
    private String systemId;
    private Map userData;
    private long documentNumber = -1;
    private SpaceStrippingRule spaceStrippingRule = NoElementsSpaceStrippingRule.getInstance();
    private Durability durability;

    /**
     * Create the TreeInfo
     * @param config the Saxon Configuration
     */

    public GenericTreeInfo(Configuration config) {
        this.config = config;
    }

    /**
     * Create the TreeInfo
     * @param config the Saxon Configuration
     * @param root the root node
     * @throws java.lang.IllegalArgumentException if the supplied node is not parentless
     */

    public GenericTreeInfo(Configuration config, NodeInfo root) {
        this.config = config;
        setRootNode(root);
    }

    /**
     * Set the configuration (containing the name pool used for all names in this tree)
     *
     * @param config the configuration
     */

    public void setConfiguration(Configuration config) {
        this.config = config;
    }

    /**
     * Get the Configuration to which this tree belongs
     *
     * @return the configuration
     */
    @Override
    public Configuration getConfiguration() {
        return config;
    }

    /**
     * Set the root node of the tree
     * @param root the root node (not necessarily a document node)
     * @throws java.lang.IllegalArgumentException if the supplied node is not parentless
     */

    public void setRootNode(NodeInfo root) {
        if (root.getParent() != null) {
            throw new IllegalArgumentException("The root node of a tree must be parentless");
        }
        this.root = root;
    }

    /**
     * Get the NodeInfo object representing the root of the tree (not necessarily a document node)
     *
     * @return the root node
     */
    @Override
    public NodeInfo getRootNode() {
        return root;
    }

    /**
     * Set the systemId of the document node (for most implementations, this is likely to be the systemId
     * of the entire tree)
     * @param systemId the system ID
     */

    public void setSystemId(String systemId) {
        this.systemId = systemId;
    }

    /**
     * Get the systemId of the document node
     * @return the system ID
     */

    public String getSystemId() {
        return systemId;
    }

    /**
     * Get the Public ID of the entity containing the node.
     *
     * @return null (always)
     * @since 9.7
     */
    public String getPublicId() {
        return null;
    }

//    /**
//     * Deliver the content of the source to a supplied Receiver
//     *
//     * @param receiver the receiver to which events representing the parsed XML document will be sent
//     * @param options  options for parsing the source
//     * @throws XPathException if parsing fails for any reason. The detailed diagnostics will
//     *                        have been sent to the error reporter.
//     */
//
//    public void deliver(Receiver receiver, ParseOptions options) throws XPathException {
//        getRootNode().deliver(receiver, options);
//    }

    /**
     * Get the document number, which identifies this tree uniquely within a Configuration
     * @return the document number
     */

    @Override
    public long getDocumentNumber() {
        if (documentNumber == -1) {
            DocumentNumberAllocator dna = config.getDocumentNumberAllocator();
            synchronized (this) {
                if (documentNumber == -1) {
                    documentNumber = dna.allocateDocumentNumber();
                }
            }
        }
        return documentNumber;
    }

    /**
     * Set the document number, which identifies this tree uniquely within a Configuration
     * @param documentNumber the document number allocated to this tree
     */

    public synchronized void setDocumentNumber(long documentNumber) {
        this.documentNumber = documentNumber;
    }

    /**
     * Get the element with a given ID, if any
     *
     * @param id        the required ID value
     * @param getParent true if running the element-with-id() function rather than the id()
     *                  function; the difference is that in the case of an element of type xs:ID, the parent of
     *                  the element should be returned, not the element itself.
     * @return the element with the given ID, or null if there is no such ID
     * present (or if the parser has not notified attributes as being of
     * type ID)
     * @since 8.4. Second argument added in 9.2.
     */
    @Override
    public NodeInfo selectID(String id, boolean getParent) {
        return null;
    }

    public void setDurability(Durability durability) {
        this.durability = durability;
    }

    public Durability getDurability() {
        return durability;
    }

    public boolean isMutable() {
        return durability == Durability.MUTABLE;
    }

    /**
     * Get the list of unparsed entities defined in this document
     *
     * @return an Iterator, whose items are of type String, containing the names of all
     * unparsed entities defined in this document. If there are no unparsed entities or if the
     * information is not available then an empty iterator is returned
     * @since 9.1
     */
    @Override
    public Iterator getUnparsedEntityNames() {
        return Collections.emptyIterator();
    }

    /**
     * Get the unparsed entity with a given name
     *
     * @param name the name of the entity
     * @return if the entity exists, return an array of two Strings, the first
     * holding the system ID of the entity (as an absolute URI if possible),
     * the second holding the public ID if there is one, or null if not.
     * If the entity does not exist, the method returns null.
     * Applications should be written on the assumption that this array may
     * be extended in the future to provide additional information.
     * @since 8.4
     */
    @Override
    public String[] getUnparsedEntity(String name) {
        return null;
    }

    /**
     * Set details of space stripping action that was applied to this document during
     * construction. This ensures that space stripping is not applied twice to the same
     * document.
     *
     * @param rule details of the space stripping rules that have been applied to this
     *             document during its construction.
     * @since 9.9
     */
    @Override
    public void setSpaceStrippingRule(SpaceStrippingRule rule) {
        this.spaceStrippingRule = rule;
    }

    /**
     * Get details of space stripping action that was applied to this document during
     * construction. This ensures that space stripping is not applied twice to the same
     * document.
     *
     * @return details of the space stripping rules that have been applied to this
     * document during its construction. By default, returns {@link NoElementsSpaceStrippingRule},
     * indicating that no space stripping has been applied
     * @since 9.9
     */
    @Override
    public SpaceStrippingRule getSpaceStrippingRule() {
        return spaceStrippingRule;
    }

    /**
     * Set user data on the tree. The user data can be retrieved subsequently
     * using {@link #getUserData}
     *
     * @param key   A string giving the name of the property to be set. Clients are responsible
     *              for choosing a key that is likely to be unique. Must not be null. Keys used internally
     *              by Saxon are prefixed "saxon:".
     * @param value The value to be set for the property. May be null, which effectively
     */
    @Override
    public void setUserData(String key, Object value) {
        if (userData == null) {
            userData = new HashMap();
        }
        userData.put(key, value);
    }

    /**
     * Get user data held in the tree. This retrieves properties previously set using
     * {@link #setUserData}
     *
     * @param key A string giving the name of the property to be retrieved.
     * @return the value of the property, or null if the property has not been defined.
     */
    @Override
    public Object getUserData(String key) {
        if (userData == null) {
            return userData;
        } else {
            return userData.get(key);
        }
    }

    public boolean isStreamed() {
        return false;
    }


}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy