net.sf.saxon.expr.LastItemExpression 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.expr;
import net.sf.saxon.om.Item;
import net.sf.saxon.om.SequenceIterator;
import net.sf.saxon.trans.XPathException;
import net.sf.saxon.tree.iter.ReversibleIterator;
/**
* A LastItemExpression returns the last item in the sequence returned by a given
* base expression. The evaluation strategy is to read the input sequence with a one-item lookahead.
*/
public final class LastItemExpression extends SingleItemFilter {
/**
* Constructor
* @param base A sequence expression denoting sequence whose first item is to be returned
*/
public LastItemExpression(Expression base) {
operand = base;
adoptChildExpression(base);
//computeStaticProperties();
}
/**
* Copy an expression. This makes a deep copy.
*
* @return the copy of the original expression
*/
/*@NotNull*/
public Expression copy() {
return new LastItemExpression(getBaseExpression().copy());
}
/**
* Evaluate the expression
*/
/*@Nullable*/ public Item evaluateItem(XPathContext context) throws XPathException {
SequenceIterator forwards = operand.iterate(context);
if (forwards instanceof ReversibleIterator) {
return ((ReversibleIterator)forwards).getReverseIterator().next();
} else {
Item current = null;
while (true) {
Item item = forwards.next();
if (item == null) {
return current;
}
current = item;
}
}
}
public String getExpressionName() {
return "lastItem";
}
}