/* *************************************************************************************** * 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.subquery; import com.espertech.esper.client.EventBean; import com.espertech.esper.client.EventType; import com.espertech.esper.epl.expression.core.ExprEvaluatorContext; import com.espertech.esper.epl.expression.core.ExprValidationContext; import com.espertech.esper.epl.expression.core.ExprValidationException; import com.espertech.esper.epl.spec.StatementSpecRaw; import com.espertech.esper.event.EventAdapterService; import com.espertech.esper.type.RelationalOpEnum; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.util.Collection; import java.util.LinkedHashMap; /** * Represents a subselect in an expression tree. */ public class ExprSubselectAllSomeAnyNode extends ExprSubselectNode { private static final Logger log = LoggerFactory.getLogger(ExprSubselectInNode.class); private final boolean isNot; private final boolean isAll; private final RelationalOpEnum relationalOp; private transient SubselectEvalStrategyNR evalStrategy; private static final long serialVersionUID = -3884694910286266280L; /** * Ctor. * * @param statementSpec is the lookup statement spec from the parser, unvalidated * @param not when NOT * @param all when ALL, false for ANY * @param relationalOpEnum operator */ public ExprSubselectAllSomeAnyNode(StatementSpecRaw statementSpec, boolean not, boolean all, RelationalOpEnum relationalOpEnum) { super(statementSpec); isNot = not; isAll = all; this.relationalOp = relationalOpEnum; } /** * Returns true for not. * * @return not indicator */ public boolean isNot() { return isNot; } /** * Returns true for all. * * @return all indicator */ public boolean isAll() { return isAll; } /** * Returns relational op. * * @return op */ public RelationalOpEnum getRelationalOp() { return relationalOp; } public Class getType() { return Boolean.class; } public void validateSubquery(ExprValidationContext validationContext) throws ExprValidationException { evalStrategy = SubselectEvalStrategyNRFactory.createStrategyAnyAllIn(this, isNot, isAll, !isAll, relationalOp); } public Object evaluate(EventBean[] eventsPerStream, boolean isNewData, Collection<EventBean> matchingEvents, ExprEvaluatorContext exprEvaluatorContext) { return evalStrategy.evaluate(eventsPerStream, isNewData, matchingEvents, exprEvaluatorContext, getSubselectAggregationService()); } public LinkedHashMap<String, Object> typableGetRowProperties() { return null; } public Object[] evaluateTypableSingle(EventBean[] eventsPerStream, boolean isNewData, Collection<EventBean> matchingEvents, ExprEvaluatorContext exprEvaluatorContext) { return null; } public Object[][] evaluateTypableMulti(EventBean[] eventsPerStream, boolean isNewData, Collection<EventBean> matchingEvents, ExprEvaluatorContext exprEvaluatorContext) { return null; } public Collection<EventBean> evaluateGetCollEvents(EventBean[] eventsPerStream, boolean isNewData, Collection<EventBean> matchingEvents, ExprEvaluatorContext context) { return null; } public Collection evaluateGetCollScalar(EventBean[] eventsPerStream, boolean isNewData, Collection<EventBean> matchingEvents, ExprEvaluatorContext exprEvaluatorContext) { return null; } public EventType getEventTypeCollection(EventAdapterService eventAdapterService, int statementId) { return null; } public Class getComponentTypeCollection() throws ExprValidationException { return null; } public EventBean evaluateGetEventBean(EventBean[] eventsPerStream, boolean isNewData, Collection<EventBean> matchingEvents, ExprEvaluatorContext exprEvaluatorContext) { return null; } public EventType getEventTypeSingle(EventAdapterService eventAdapterService, int statementId) throws ExprValidationException { return null; } public EventBean evaluateGetEventBean(EventBean[] eventsPerStream, boolean isNewData, ExprEvaluatorContext context) { return null; } @Override public boolean isAllowMultiColumnSelect() { return false; } }