/************************************************************************************** * 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.join.plan; import com.espertech.esper.client.EventType; import com.espertech.esper.epl.join.exec.base.JoinExecTableLookupStrategy; import com.espertech.esper.epl.join.exec.base.SortedTableLookupStrategy; import com.espertech.esper.epl.join.table.EventTable; import com.espertech.esper.epl.join.table.PropertySortedEventTable; import java.util.Collections; /** * Plan to perform an indexed table lookup. */ public class SortedTableLookupPlan extends TableLookupPlan { private QueryGraphValueEntryRange rangeKeyPair; private int lookupStream; /** * Ctor. * @param lookupStream - stream that generates event to look up for * @param indexedStream - stream to index table lookup * @param indexNum - index number for the table containing the full unindexed contents */ public SortedTableLookupPlan(int lookupStream, int indexedStream, String indexNum, QueryGraphValueEntryRange rangeKeyPair) { super(lookupStream, indexedStream, indexNum); this.rangeKeyPair = rangeKeyPair; this.lookupStream = lookupStream; } public TableLookupKeyDesc getKeyDescriptor() { return new TableLookupKeyDesc(Collections.<QueryGraphValueEntryHashKeyed>emptyList(), Collections.singletonList(rangeKeyPair)); } public JoinExecTableLookupStrategy makeStrategyInternal(EventTable eventTable, EventType[] eventTypes) { PropertySortedEventTable index = (PropertySortedEventTable) eventTable; return new SortedTableLookupStrategy(lookupStream, -1, rangeKeyPair, null, index); } public String toString() { return "SortedTableLookupPlan " + super.toString() + " keyProperties=" + rangeKeyPair.toQueryPlan(); } }