/* *************************************************************************************** * 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.methodagg; import com.espertech.esper.epl.agg.service.AggregationMethodFactory; import com.espertech.esper.epl.expression.baseagg.ExprAggregateNode; import com.espertech.esper.epl.expression.baseagg.ExprAggregateNodeBase; import com.espertech.esper.epl.expression.core.ExprValidationContext; import com.espertech.esper.epl.expression.core.ExprValidationException; /** * Represents the sum(...) aggregate function is an expression tree. */ public class ExprSumNode extends ExprAggregateNodeBase { private static final long serialVersionUID = 208249604168283643L; private boolean hasFilter; /** * Ctor. * * @param distinct - flag indicating unique or non-unique value aggregation */ public ExprSumNode(boolean distinct) { super(distinct); } public AggregationMethodFactory validateAggregationChild(ExprValidationContext validationContext) throws ExprValidationException { hasFilter = positionalParams.length > 1; Class childType = super.validateNumericChildAllowFilter(hasFilter); return validationContext.getEngineImportService().getAggregationFactoryFactory().makeSum(validationContext.getStatementExtensionSvcContext(), this, childType); } public String getAggregationFunctionName() { return "sum"; } public final boolean equalsNodeAggregateMethodOnly(ExprAggregateNode node) { if (!(node instanceof ExprSumNode)) { return false; } return true; } public boolean isHasFilter() { return hasFilter; } protected boolean isFilterExpressionAsLastParameter() { return true; } }