/* *************************************************************************************** * 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.lookup; import com.espertech.esper.client.EventBean; import com.espertech.esper.epl.expression.core.ExprEvaluatorContext; import com.espertech.esper.epl.join.exec.composite.CompositeIndexQuery; import com.espertech.esper.epl.join.table.PropertyCompositeEventTable; import com.espertech.esper.metrics.instrumentation.InstrumentationHelper; import java.util.ArrayList; import java.util.Collection; /** * Index lookup strategy for subqueries. */ public class SubordCompositeTableLookupStrategy implements SubordTableLookupStrategy { private final CompositeIndexQuery innerIndexQuery; private final PropertyCompositeEventTable index; private final LookupStrategyDesc strategyDesc; public SubordCompositeTableLookupStrategy(CompositeIndexQuery innerIndexQuery, PropertyCompositeEventTable index, LookupStrategyDesc strategyDesc) { this.innerIndexQuery = innerIndexQuery; this.index = index; this.strategyDesc = strategyDesc; } public Collection<EventBean> lookup(EventBean[] eventsPerStream, ExprEvaluatorContext context) { if (InstrumentationHelper.ENABLED) { InstrumentationHelper.get().qIndexSubordLookup(this, index, null); ArrayList<Object> keys = new ArrayList<Object>(2); // can collect nulls Collection<EventBean> result = innerIndexQuery.getCollectKeys(eventsPerStream, index.getIndex(), context, keys, index.getPostProcessor()); InstrumentationHelper.get().aIndexSubordLookup(result, keys.size() > 1 ? keys.toArray() : keys.get(0)); return result; } return innerIndexQuery.get(eventsPerStream, index.getIndex(), context, index.getPostProcessor()); } public String toQueryPlan() { return this.getClass().getSimpleName(); } public LookupStrategyDesc getStrategyDesc() { return strategyDesc; } }