net.sf.saxon.tree.tiny.DescendantEnumeration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of saxon-he Show documentation
Show all versions of saxon-he Show documentation
An OSGi bundle for Saxon-HE
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2013 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.tree.tiny;
import net.sf.saxon.om.NodeInfo;
import net.sf.saxon.pattern.NodeTest;
import net.sf.saxon.tree.iter.AxisIterator;
import net.sf.saxon.tree.iter.AxisIteratorImpl;
/**
* This class supports both the descendant:: and descendant-or-self:: axes, which are
* identical except for the route to the first candidate node.
* It enumerates descendants of the specified node.
* The calling code must ensure that the start node is not an attribute or namespace node.
*/
final class DescendantEnumeration extends AxisIteratorImpl {
private TinyTree tree;
private TinyNodeImpl startNode;
private boolean includeSelf;
private int nextNodeNr;
private int startDepth;
private NodeTest test;
/**
* Create an iterator over the descendant axis
* @param doc the containing TinyTree
* @param node the node whose descendants are required
* @param nodeTest test to be satisfied by each returned node
* @param includeSelf true if the start node is to be included
*/
DescendantEnumeration(/*@NotNull*/ TinyTree doc, /*@NotNull*/ TinyNodeImpl node, NodeTest nodeTest, boolean includeSelf) {
tree = doc;
startNode = node;
this.includeSelf = includeSelf;
test = nodeTest;
nextNodeNr = node.nodeNr;
startDepth = doc.depth[nextNodeNr];
}
/*@Nullable*/ public NodeInfo next() {
if (position==0 && includeSelf && test.matches(startNode)) {
current = startNode;
position++;
return current;
}
do {
nextNodeNr++;
try {
if (tree.depth[nextNodeNr] <= startDepth) {
nextNodeNr = -1;
current = null;
position = -1;
return null;
}
} 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
// by returning end-of sequence
//System.err.println("********* no stopper node **********");
nextNodeNr = -1;
current = null;
position = -1;
return null;
}
} while (!test.matches(tree, nextNodeNr));
position++;
current = tree.getNode(nextNodeNr);
return current;
}
/**
* Get another enumeration of the same nodes
*/
/*@NotNull*/ public AxisIterator getAnother() {
return new DescendantEnumeration(tree, startNode, test, includeSelf);
}
}