package net.sf.saxon.tinytree;
import net.sf.saxon.Configuration;
import net.sf.saxon.value.Value;
import net.sf.saxon.value.UntypedAtomicValue;
import net.sf.saxon.event.Receiver;
import net.sf.saxon.om.*;
import net.sf.saxon.pattern.NodeKindTest;
import net.sf.saxon.sort.IntHashMap;
import net.sf.saxon.trans.XPathException;
import net.sf.saxon.type.Type;
import java.util.*;
/**
* A node in the XML parse tree representing the Document itself (or equivalently, the root
* node of the Document).<P>
*/
public final class TinyDocumentImpl extends TinyParentNodeImpl
implements DocumentInfo {
private HashMap<String, NodeInfo> idTable = null;
private IntHashMap<List<TinyElementImpl>> elementList = null;
private HashMap<String, String[]> entityTable = null;
private String baseURI = null;
public TinyDocumentImpl(TinyTree tree) {
this.tree = tree;
nodeNr = tree.numberOfNodes;
}
/**
* Get the tree containing this node
*/
public TinyTree getTree() {
return tree;
}
/**
* Set the Configuration that contains this document
*/
public void setConfiguration(Configuration config) {
if (config != tree.getConfiguration()) {
throw new IllegalArgumentException(
"Configuration of document differs from that of the supporting TinyTree");
}
}
/**
* Get the configuration previously set using setConfiguration
*/
public Configuration getConfiguration() {
return tree.getConfiguration();
}
/**
* Set the system id of this node
*/
public void setSystemId(String uri) {
tree.setSystemId(nodeNr, uri);
}
/**
* Get the system id of this root node
*/
public String getSystemId() {
return tree.getSystemId(nodeNr);
}
/**
* Set the base URI of this document node
*/
public void setBaseURI(String uri) {
baseURI = uri;
}
/**
* Get the base URI of this root node.
*/
public String getBaseURI() {
if (baseURI != null) {
return baseURI;
}
return getSystemId();
}
/**
* Get the line number of this root node.
* @return 0 always
*/
public int getLineNumber() {
return 0;
}
/**
* Return the type of node.
* @return Type.DOCUMENT (always)
*/
public final int getNodeKind() {
return Type.DOCUMENT;
}
/**
* Find the parent node of this node.
* @return The Node object describing the containing element or root node.
*/
public NodeInfo getParent() {
return null;
}
/**
* Get the root node
* @return the NodeInfo that is the root of the tree - not necessarily a document node
*/
public NodeInfo getRoot() {
return this;
}
/**
* Get the root (document) node
* @return the DocumentInfo representing the document node, or null if the
* root of the tree is not a document node
*/
public DocumentInfo getDocumentRoot() {
return this;
}
/**
* Get a character string that uniquely identifies this node
* @param buffer to contain an identifier based on the document number
*/
public void generateId(FastStringBuffer buffer) {
buffer.append('d');
buffer.append(Long.toString(getDocumentNumber()));
}
/**
* Get the typed value. The result of this method will always be consistent with the method
* {@link net.sf.saxon.om.Item#getTypedValue()}. However, this method is often more convenient and may be
* more efficient, especially in the common case where the value is expected to be a singleton.
* @return the typed value. This will either be a single AtomicValue or a Value whose items are
* atomic values.
* @since 8.5
*/
public Value atomize() throws XPathException {
return new UntypedAtomicValue(getStringValueCS());
}
/**
* Get the typed value of the item.
* <p/>
* For a node, this is the typed value as defined in the XPath 2.0 data model. Since a node
* may have a list-valued data type, the typed value is in general a sequence, and it is returned
* in the form of a SequenceIterator.
* <p/>
* If the node has not been validated against a schema, the typed value
* will be the same as the string value, either as an instance of xs:string or as an instance
* of xs:untypedAtomic, depending on the node kind.
* <p/>
* For an atomic value, this method returns an iterator over a singleton sequence containing
* the atomic value itself.
* @return an iterator over the items in the typed value of the node or atomic value. The
* items returned by this iterator will always be atomic values.
* @throws net.sf.saxon.trans.XPathException
* where no typed value is available, for example in the case of
* an element with complex content
* @since 8.4
*/
public SequenceIterator getTypedValue() throws XPathException {
return SingletonIterator.makeIterator(new UntypedAtomicValue(getStringValueCS()));
}
/**
* Get a list of all elements with a given name. This is implemented
* as a memo function: the first time it is called for a particular
* element type, it remembers the result for next time.
*/
AxisIterator getAllElements(int fingerprint) {
if (elementList==null) {
elementList = new IntHashMap<List<TinyElementImpl>>(20);
}
List list = elementList.get(fingerprint);
if (list==null) {
list = getElementList(fingerprint);
elementList.put(fingerprint, list);
}
return new NodeListIterator(list);
}
/**
* Get a list containing all the elements with a given element name
* @param fingerprint the fingerprint of the element name
* @return list a List containing the TinyElementImpl objects
*/
List getElementList(int fingerprint) {
int size = tree.getNumberOfNodes()/20;
if (size > 100) {
size = 100;
}
if (size < 20) {
size = 20;
}
ArrayList list = new ArrayList(size);
int i = nodeNr+1;
try {
while (tree.depth[i] != 0) {
if (tree.nodeKind[i]==Type.ELEMENT &&
(tree.nameCode[i] & 0xfffff) == fingerprint) {
list.add(tree.getNode(i));
}
i++;
}
} catch (ArrayIndexOutOfBoundsException e) {
// this shouldn't happen. If it does happen, it means the tree wasn't properly closed
// during construction (there is no stopper node at the end). In this case, we'll recover
return list;
}
list.trimToSize();
return list;
}
/**
* Register a unique element ID. Fails if there is already an element with that ID.
* @param e The NodeInfo (always an element) having a particular unique ID value
* @param id The unique ID value. The caller is responsible for checking that this
* is a valid NCName.
*/
void registerID(NodeInfo e, String id) {
if (idTable==null) {
idTable = new HashMap<String, NodeInfo>(256);
}
// the XPath spec (5.2.1) says ignore the second ID if it's not unique
NodeInfo old = idTable.get(id);
if (old==null) {
idTable.put(id, e);
}
}
/**
* Get the element with a given ID.
* @param id The unique ID of the required element, previously registered using registerID()
* @param getParent
* @return The NodeInfo (always an Element) for the given ID if one has been registered,
* otherwise null.
*/
public NodeInfo selectID(String id, boolean getParent) {
if (idTable==null) {
return null; // no ID values found
}
NodeInfo node = idTable.get(id);
if (node != null && getParent && node.isId() && node.getStringValue().equals(id)) {
node = node.getParent();
}
return node;
}
/**
* Set an unparsed entity URI associated with this document. For system use only, while
* building the document.
*/
void setUnparsedEntity(String name, String uri, String publicId) {
if (entityTable==null) {
entityTable = new HashMap<String, String[]>(20);
}
String[] ids = new String[2];
ids[0] = uri;
ids[1] = publicId;
entityTable.put(name, ids);
}
/**
* 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
*/
public Iterator<String> getUnparsedEntityNames() {
if (entityTable == null) {
return Collections.EMPTY_LIST.iterator();
} else {
return entityTable.keySet().iterator();
}
}
/**
* Get the unparsed entity with a given nameID if there is one, or null if not. If the entity
* does not exist, return null.
* @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, the second holding the public
*/
public String[] getUnparsedEntity(String name) {
if (entityTable==null) {
return null;
}
return entityTable.get(name);
}
/**
* Get the type annotation of this node, if any.
* @return XS_UNTYPED if no validation has been done, XS_ANY_TYPE if the document has been validated
*/
public int getTypeAnnotation() {
AxisIterator children = iterateAxis(Axis.CHILD, NodeKindTest.ELEMENT);
NodeInfo node = (NodeInfo)children.next();
if (node == null || node.getTypeAnnotation() == StandardNames.XS_UNTYPED) {
return StandardNames.XS_UNTYPED;
} else {
return StandardNames.XS_ANY_TYPE;
}
}
/**
* Copy this node to a given outputter
*/
public void copy(Receiver out, int whichNamespaces, boolean copyAnnotations, int locationId) throws XPathException {
out.startDocument(0);
// output the children
AxisIterator children = iterateAxis(Axis.CHILD);
while (true) {
NodeInfo n = (NodeInfo)children.next();
if (n == null) {
break;
}
n.copy(out, whichNamespaces, copyAnnotations, locationId);
}
out.endDocument();
}
public void showSize() {
tree.showSize();
}
}
//
// The contents of this file are subject to the Mozilla Public License Version 1.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.mozilla.org/MPL/
//
// Software distributed under the License is distributed on an "AS IS" basis,
// WITHOUT WARRANTY OF ANY KIND, either express or implied.
// See the License for the specific language governing rights and limitations under the License.
//
// The Original Code is: all this file
//
// The Initial Developer of the Original Code is Michael H. Kay.
//
// Contributor(s):
//