/************************************************************************************** * Copyright (C) 2008 EsperTech, Inc. All rights reserved. * * http://esper.codehaus.org * * 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.client.EventPropertyGetter; import com.espertech.esper.epl.expression.ExprEvaluatorContext; import com.espertech.esper.epl.join.table.PropertyIndexedEventTableSingle; import java.util.Collection; /** * Index lookup strategy for subqueries. */ public class SubordIndexedTableLookupStrategySingleProp implements SubordTableLookupStrategy { /** * Stream numbers to get key values from. */ protected final int keyStreamNum; /** * Getters to use to get key values. */ protected final EventPropertyGetter propertyGetter; /** * Index to look up in. */ protected final PropertyIndexedEventTableSingle index; public SubordIndexedTableLookupStrategySingleProp(int keyStreamNum, EventPropertyGetter propertyGetter, PropertyIndexedEventTableSingle index) { this.keyStreamNum = keyStreamNum; this.propertyGetter = propertyGetter; this.index = index; } /** * Returns index to look up in. * @return index to use */ public PropertyIndexedEventTableSingle getIndex() { return index; } public Collection<EventBean> lookup(EventBean[] eventsPerStream, ExprEvaluatorContext context) { Object key = getKey(eventsPerStream); return index.lookup(key); } public Collection<EventBean> lookup(Object[] keys) { return index.lookup(keys[0]); } /** * Get the index lookup keys. * @param eventsPerStream is the events for each stream * @return key object */ protected Object getKey(EventBean[] eventsPerStream) { EventBean theEvent = eventsPerStream[keyStreamNum]; return propertyGetter.get(theEvent); } public String toString() { return toQueryPlan(); } public String toQueryPlan() { return this.getClass().getSimpleName() + " stream=" + keyStreamNum; } }