net.sf.saxon.functions.Exists 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) 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.functions;
import net.sf.saxon.expr.*;
import net.sf.saxon.expr.elab.BooleanElaborator;
import net.sf.saxon.expr.elab.BooleanEvaluator;
import net.sf.saxon.expr.elab.Elaborator;
import net.sf.saxon.expr.elab.PullEvaluator;
import net.sf.saxon.expr.parser.ContextItemStaticInfo;
import net.sf.saxon.expr.parser.ExpressionVisitor;
import net.sf.saxon.expr.parser.Token;
import net.sf.saxon.om.Sequence;
import net.sf.saxon.om.SequenceIterator;
import net.sf.saxon.trans.XPathException;
import net.sf.saxon.tree.iter.LookaheadIterator;
import net.sf.saxon.value.BooleanValue;
/**
* Implementation of the fn:exists function
*/
public class Exists extends Aggregate {
@Override
public Expression makeOptimizedFunctionCall(
ExpressionVisitor visitor, ContextItemStaticInfo contextInfo, final Expression... arguments) throws XPathException {
// See if we can deduce the answer from the cardinality
int c = arguments[0].getCardinality();
if (c == StaticProperty.ALLOWS_ONE_OR_MORE) {
return Literal.makeLiteral(BooleanValue.TRUE, arguments[0]);
} else if (c == StaticProperty.ALLOWS_ZERO) {
return Literal.makeLiteral(BooleanValue.FALSE, arguments[0]);
}
// Don't sort the argument
Expression unorderedArg0 = arguments[0].unordered(false, visitor.isOptimizeForStreaming());
if (unorderedArg0 != arguments[0]) {
return makeFunctionCall(unorderedArg0);
}
// Rewrite
// exists(A|B) => exists(A) or exists(B)
if (arguments[0] instanceof VennExpression && !visitor.isOptimizeForStreaming()) {
VennExpression v = (VennExpression) arguments[0];
if (v.getOperator() == Token.UNION) {
Expression e0 = SystemFunction.makeCall("exists", getRetainedStaticContext(), v.getLhsExpression());
Expression e1 = SystemFunction.makeCall("exists", getRetainedStaticContext(), v.getRhsExpression());
return new OrExpression(e0, e1).optimize(visitor, contextInfo);
}
}
return null;
}
private static boolean exists(SequenceIterator iter) {
boolean result;
if (iter instanceof LookaheadIterator && ((LookaheadIterator) iter).supportsHasNext()) {
result = ((LookaheadIterator) iter).hasNext();
} else {
result = iter.next() != null;
}
iter.close();
return result;
}
/**
* Evaluate the expression
*
* @param context the dynamic evaluation context
* @param arguments the values of the arguments, supplied as SequenceIterators
* @return the result of the evaluation, in the form of a SequenceIterator
* @throws net.sf.saxon.trans.XPathException
* if a dynamic error occurs during the evaluation of the expression
*/
@Override
public BooleanValue call(XPathContext context, Sequence[] arguments) throws XPathException {
return BooleanValue.get(exists(arguments[0].iterate()));
}
@Override
public String getCompilerName() {
return "ExistsCompiler";
}
@Override
public String getStreamerName() {
return "Exists";
}
/**
* Make an elaborator for a system function call on this function
*
* @return a suitable elaborator; or null if no custom elaborator is available
*/
@Override
public Elaborator getElaborator() {
return new ExistsFnElaborator();
}
private static class ExistsFnElaborator extends BooleanElaborator {
public BooleanEvaluator elaborateForBoolean() {
SystemFunctionCall fnc = (SystemFunctionCall) getExpression();
Expression arg = fnc.getArg(0);
PullEvaluator puller = arg.makeElaborator().elaborateForPull();
return context -> exists(puller.iterate(context));
}
}
}