/* *************************************************************************************** * 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 stddev(...) aggregate function is an expression tree. */ public class ExprStddevNode extends ExprAggregateNodeBase { private static final long serialVersionUID = 4732757426203628783L; private boolean hasFilter; /** * Ctor. * * @param distinct - flag indicating unique or non-unique value aggregation */ public ExprStddevNode(boolean distinct) { super(distinct); } public AggregationMethodFactory validateAggregationChild(ExprValidationContext validationContext) throws ExprValidationException { hasFilter = positionalParams.length > 1; Class childType = super.validateNumericChildAllowFilter(hasFilter); return validationContext.getEngineImportService().getAggregationFactoryFactory().makeStddev(validationContext.getStatementExtensionSvcContext(), this, childType); } public boolean isHasFilter() { return hasFilter; } public final boolean equalsNodeAggregateMethodOnly(ExprAggregateNode node) { if (!(node instanceof ExprStddevNode)) { return false; } return true; } public String getAggregationFunctionName() { return "stddev"; } protected boolean isFilterExpressionAsLastParameter() { return true; } }