net.sf.saxon.expr.instruct.BlockIterator 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
The XSLT and XQuery Processor
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2015 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.expr.instruct;
import net.sf.saxon.expr.Operand;
import net.sf.saxon.expr.XPathContext;
import net.sf.saxon.om.Item;
import net.sf.saxon.om.SequenceIterator;
import net.sf.saxon.trans.XPathException;
/**
* Iterate over the instructions in the Block, concatenating the result of each instruction
* into a single combined sequence.
*/
public class BlockIterator implements SequenceIterator {
private Operand[] operanda;
private int currentChildExpr = 0;
private SequenceIterator currentIter;
private XPathContext context;
private int position = 0;
public BlockIterator(Operand[] operanda, XPathContext context) {
this.operanda = operanda;
this.currentChildExpr = 0;
this.context = context;
}
/**
* Get the next item in the sequence.
*
* @return the next item, or null if there are no more items.
* @throws net.sf.saxon.trans.XPathException
* if an error occurs retrieving the next item
*/
public Item next() throws XPathException {
if (position < 0) {
return null;
}
while (true) {
if (currentIter == null) {
currentIter = operanda[currentChildExpr++].getChildExpression().iterate(context);
}
Item current = currentIter.next();
if (current != null) {
position++;
return current;
}
currentIter = null;
if (currentChildExpr >= operanda.length) {
position = -1;
return null;
}
}
}
public void close() {
if (currentIter != null) {
currentIter.close();
}
}
/**
* Get another SequenceIterator that iterates over the same items as the original,
* but which is repositioned at the start of the sequence.
*
* @return a SequenceIterator that iterates over the same items,
* positioned before the first item
* @throws net.sf.saxon.trans.XPathException
* if any error occurs
*/
/*@NotNull*/
public BlockIterator getAnother() throws XPathException {
return new BlockIterator(operanda, context);
}
/**
* Get properties of this iterator, as a bit-significant integer.
*
* @return the properties of this iterator. This will be some combination of
* properties such as {@link SequenceIterator#GROUNDED}, {@link SequenceIterator#LAST_POSITION_FINDER},
* and {@link SequenceIterator#LOOKAHEAD}. It is always
* acceptable to return the value zero, indicating that there are no known special properties.
* It is acceptable for the properties of the iterator to change depending on its state.
*/
public int getProperties() {
return 0;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy