Package org.apache.druid.math.expr
Class ApplyFunction.MatchFunction
java.lang.Object
org.apache.druid.math.expr.ApplyFunction.MatchFunction
- All Implemented Interfaces:
ApplyFunction,NamedFunction
- Direct Known Subclasses:
ApplyFunction.AllMatchFunction,ApplyFunction.AnyMatchFunction
- Enclosing interface:
ApplyFunction
Base class for family of
ApplyFunction which evaluate elements elements of a single array input against
a LambdaExpr to evaluate to a final 'truthy' value-
Nested Class Summary
Nested classes/interfaces inherited from interface org.apache.druid.math.expr.ApplyFunction
ApplyFunction.AllMatchFunction, ApplyFunction.AnyMatchFunction, ApplyFunction.BaseFoldFunction, ApplyFunction.BaseMapFunction, ApplyFunction.CartesianFoldFunction, ApplyFunction.CartesianFoldLambdaBinding, ApplyFunction.CartesianMapFunction, ApplyFunction.CartesianMapLambdaBinding, ApplyFunction.FilterFunction, ApplyFunction.FoldFunction, ApplyFunction.FoldLambdaBinding, ApplyFunction.IndexableFoldLambdaBinding, ApplyFunction.IndexableMapLambdaObjectBinding, ApplyFunction.LambdaInputBindingInspector, ApplyFunction.MapFunction, ApplyFunction.MapLambdaBinding, ApplyFunction.MatchFunction, ApplyFunction.SettableLambdaBinding -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionapply(LambdaExpr lambdaExpr, List<Expr> argsExpr, Expr.ObjectBinding bindings) getArrayInputs(List<Expr> args) Get list of input arguments which must evaluate to an arrayExprTypegetOutputType(Expr.InputBindingInspector inspector, LambdaExpr expr, List<Expr> args) Compute the output type of this function for a given lambda and the argument expressions which will be applied as its inputs.abstract ExprEvalmatch(Object[] values, LambdaExpr expr, ApplyFunction.SettableLambdaBinding bindings) voidvalidateArguments(LambdaExpr lambdaExpr, List<Expr> args) Validate function arguments.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.druid.math.expr.ApplyFunction
asVectorProcessor, canVectorize, hasArrayOutputMethods inherited from interface org.apache.druid.math.expr.NamedFunction
name, processingFailed, processingFailed, validationFailed, validationFailed, validationHelperCheckAnyOfArgumentCount, validationHelperCheckArgIsLiteral, validationHelperCheckArgumentCount, validationHelperCheckArgumentCount, validationHelperCheckArgumentRange, validationHelperCheckLambaArgumentCount, validationHelperCheckMinArgumentCount, validationHelperCheckMinArgumentCount
-
Constructor Details
-
MatchFunction
public MatchFunction()
-
-
Method Details
-
apply
Description copied from interface:ApplyFunctionApplyLambdaExprto argument list ofExprgiven a set of outerExpr.ObjectBinding. These outer bindings will be used to form the scope for the bindings used to evaluate theLambdaExpr, which use the array inputs to supply scalar values to use as bindings forIdentifierExprin the lambda body.- Specified by:
applyin interfaceApplyFunction
-
getArrayInputs
Description copied from interface:ApplyFunctionGet list of input arguments which must evaluate to an arrayExprType- Specified by:
getArrayInputsin interfaceApplyFunction
-
validateArguments
Description copied from interface:ApplyFunctionValidate function arguments. This method is called whenever aApplyFunctionExpris created, and should validate everything that is feasible up front. Note that input type information is typically unavailable at the timeExprare parsed, and so this method is incapable of performing complete validation.- Specified by:
validateArgumentsin interfaceApplyFunction
-
getOutputType
@Nullable public ExpressionType getOutputType(Expr.InputBindingInspector inspector, LambdaExpr expr, List<Expr> args) Description copied from interface:ApplyFunctionCompute the output type of this function for a given lambda and the argument expressions which will be applied as its inputs.- Specified by:
getOutputTypein interfaceApplyFunction- See Also:
-
match
public abstract ExprEval match(Object[] values, LambdaExpr expr, ApplyFunction.SettableLambdaBinding bindings)
-