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
public abstract static class ApplyFunction.MatchFunction extends Object implements ApplyFunction
Base class for family ofApplyFunctionwhich evaluate elements elements of a single array input against aLambdaExprto 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 Constructor Description MatchFunction()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description ExprEvalapply(LambdaExpr lambdaExpr, List<Expr> argsExpr, Expr.ObjectBinding bindings)Set<Expr>getArrayInputs(List<Expr> args)Get list of input arguments which must evaluate to an arrayExprTypeExpressionTypegetOutputType(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, wait
-
Methods inherited from interface org.apache.druid.math.expr.ApplyFunction
asVectorProcessor, canVectorize, hasArrayOutput
-
Methods inherited from interface org.apache.druid.math.expr.NamedFunction
name, processingFailed, validationFailed, validationFailed, validationHelperCheckAnyOfArgumentCount, validationHelperCheckArgIsLiteral, validationHelperCheckArgumentCount, validationHelperCheckArgumentCount, validationHelperCheckArgumentRange, validationHelperCheckLambaArgumentCount, validationHelperCheckMinArgumentCount, validationHelperCheckMinArgumentCount
-
-
-
-
Method Detail
-
apply
public ExprEval apply(LambdaExpr lambdaExpr, List<Expr> argsExpr, Expr.ObjectBinding bindings)
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
public Set<Expr> getArrayInputs(List<Expr> args)
Description copied from interface:ApplyFunctionGet list of input arguments which must evaluate to an arrayExprType- Specified by:
getArrayInputsin interfaceApplyFunction
-
validateArguments
public void validateArguments(LambdaExpr lambdaExpr, List<Expr> args)
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:
Expr.getOutputType(org.apache.druid.math.expr.Expr.InputBindingInspector)
-
match
public abstract ExprEval match(Object[] values, LambdaExpr expr, ApplyFunction.SettableLambdaBinding bindings)
-
-