com.espertech.esper.epl.expression.funcs.ExprCoalesceNodeForge Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of esper Show documentation
Show all versions of esper Show documentation
Complex event processing and event series analysis component
/*
***************************************************************************************
* Copyright (C) 2006 EsperTech, Inc. All rights reserved. *
* http://www.espertech.com/esper *
* http://www.espertech.com *
* ---------------------------------------------------------------------------------- *
* The software in this package is published under the terms of the GPL license *
* a copy of which has been included with this distribution in the license.txt file. *
***************************************************************************************
*/
package com.espertech.esper.epl.expression.funcs;
import com.espertech.esper.codegen.base.CodegenClassScope;
import com.espertech.esper.codegen.base.CodegenMethodScope;
import com.espertech.esper.codegen.model.expression.CodegenExpression;
import com.espertech.esper.epl.expression.codegen.ExprForgeCodegenSymbol;
import com.espertech.esper.epl.expression.core.ExprEvaluator;
import com.espertech.esper.epl.expression.core.ExprForge;
import com.espertech.esper.epl.expression.core.ExprForgeComplexityEnum;
import com.espertech.esper.epl.expression.core.ExprNodeUtility;
public class ExprCoalesceNodeForge implements ExprForge {
private final ExprCoalesceNode parent;
private final Class resultType;
private final boolean[] isNumericCoercion;
public ExprCoalesceNodeForge(ExprCoalesceNode parent, Class resultType, boolean[] isNumericCoercion) {
this.parent = parent;
this.resultType = resultType;
this.isNumericCoercion = isNumericCoercion;
}
public ExprCoalesceNode getForgeRenderable() {
return parent;
}
public boolean[] getIsNumericCoercion() {
return isNumericCoercion;
}
public ExprEvaluator getExprEvaluator() {
return new ExprCoalesceNodeForgeEval(this, ExprNodeUtility.getEvaluatorsNoCompile(parent.getChildNodes()));
}
public Class getEvaluationType() {
return resultType;
}
public CodegenExpression evaluateCodegen(Class requiredType, CodegenMethodScope codegenMethodScope, ExprForgeCodegenSymbol exprSymbol, CodegenClassScope codegenClassScope) {
return ExprCoalesceNodeForgeEval.codegen(this, codegenMethodScope, exprSymbol, codegenClassScope);
}
public ExprForgeComplexityEnum getComplexity() {
return ExprForgeComplexityEnum.INTER;
}
}