com.espertech.esper.epl.enummethod.eval.ExprDotForgeAggregate 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
The newest version!
/*
***************************************************************************************
* 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.enummethod.eval;
import com.espertech.esper.client.EventType;
import com.espertech.esper.epl.core.engineimport.EngineImportService;
import com.espertech.esper.epl.core.streamtype.StreamTypeService;
import com.espertech.esper.epl.enummethod.dot.ExprDotEvalParam;
import com.espertech.esper.epl.enummethod.dot.ExprDotEvalParamLambda;
import com.espertech.esper.epl.enummethod.dot.ExprDotForgeEnumMethodBase;
import com.espertech.esper.epl.expression.core.ExprForge;
import com.espertech.esper.epl.expression.dot.ExprDotNodeUtility;
import com.espertech.esper.epl.rettype.EPTypeHelper;
import com.espertech.esper.event.EventAdapterService;
import com.espertech.esper.event.arr.ObjectArrayEventType;
import com.espertech.esper.util.JavaClassHelper;
import java.util.List;
public class ExprDotForgeAggregate extends ExprDotForgeEnumMethodBase {
public EventType[] getAddStreamTypes(String enumMethodUsedName, List goesToNames, EventType inputEventType, Class collectionComponentType, List bodiesAndParameters, EventAdapterService eventAdapterService) {
EventType evalEventType;
if (inputEventType == null) {
evalEventType = ExprDotNodeUtility.makeTransientOAType(enumMethodUsedName, goesToNames.get(1), collectionComponentType, eventAdapterService);
} else {
evalEventType = inputEventType;
}
Class initializationType = bodiesAndParameters.get(0).getBodyForge().getEvaluationType();
EventType typeResult = ExprDotNodeUtility.makeTransientOAType(enumMethodUsedName, goesToNames.get(0), initializationType, eventAdapterService);
return new EventType[]{typeResult, evalEventType};
}
public EnumForge getEnumForge(EngineImportService engineImportService, EventAdapterService eventAdapterService, StreamTypeService streamTypeService, int statementId, String enumMethodUsedName, List bodiesAndParameters, EventType inputEventType, Class collectionComponentType, int numStreamsIncoming, boolean disablePropertyExpressionEventCollCache) {
ExprDotEvalParam initValueParam = bodiesAndParameters.get(0);
ExprForge initValueEval = initValueParam.getBodyForge();
super.setTypeInfo(EPTypeHelper.singleValue(JavaClassHelper.getBoxedType(initValueEval.getEvaluationType())));
ExprDotEvalParamLambda resultAndAdd = (ExprDotEvalParamLambda) bodiesAndParameters.get(1);
if (inputEventType != null) {
return new EnumAggregateEventsForge(initValueEval,
resultAndAdd.getBodyForge(), resultAndAdd.getStreamCountIncoming(),
(ObjectArrayEventType) resultAndAdd.getGoesToTypes()[0]);
} else {
return new EnumAggregateScalarForge(initValueEval,
resultAndAdd.getBodyForge(), resultAndAdd.getStreamCountIncoming(),
(ObjectArrayEventType) resultAndAdd.getGoesToTypes()[0],
(ObjectArrayEventType) resultAndAdd.getGoesToTypes()[1]);
}
}
}