/* *************************************************************************************** * 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.join.exec.sorted; import com.espertech.esper.client.EventBean; import com.espertech.esper.epl.expression.core.ExprEvaluator; import com.espertech.esper.epl.expression.core.ExprEvaluatorContext; import com.espertech.esper.epl.join.table.PropertySortedEventTable; import java.util.ArrayList; import java.util.Collection; import java.util.Set; public class SortedAccessStrategyRange extends SortedAccessStrategyRangeBase implements SortedAccessStrategy { // indicate whether "a between 60 and 50" should return no results (false, equivalent to a>= X and a <=Y) or should return results (true, equivalent to 'between' and 'in') private final boolean allowRangeReversal; public SortedAccessStrategyRange(boolean isNWOnTrigger, int lookupStream, int numStreams, ExprEvaluator start, boolean includeStart, ExprEvaluator end, boolean includeEnd, boolean allowRangeReversal) { super(isNWOnTrigger, lookupStream, numStreams, start, includeStart, end, includeEnd); this.allowRangeReversal = allowRangeReversal; } public Set<EventBean> lookup(EventBean theEvent, PropertySortedEventTable index, ExprEvaluatorContext context) { return index.lookupRange(super.evaluateLookupStart(theEvent, context), includeStart, super.evaluateLookupEnd(theEvent, context), includeEnd, allowRangeReversal); } public Set<EventBean> lookupCollectKeys(EventBean theEvent, PropertySortedEventTable index, ExprEvaluatorContext context, ArrayList<Object> keys) { Object start = super.evaluateLookupStart(theEvent, context); keys.add(start); Object end = super.evaluateLookupEnd(theEvent, context); keys.add(end); return index.lookupRange(start, includeStart, end, includeEnd, allowRangeReversal); } public Collection<EventBean> lookup(EventBean[] eventsPerStream, PropertySortedEventTable index, ExprEvaluatorContext context) { return index.lookupRangeColl(super.evaluatePerStreamStart(eventsPerStream, context), includeStart, super.evaluatePerStreamEnd(eventsPerStream, context), includeEnd, allowRangeReversal); } public Collection<EventBean> lookupCollectKeys(EventBean[] eventsPerStream, PropertySortedEventTable index, ExprEvaluatorContext context, ArrayList<Object> keys) { Object start = super.evaluatePerStreamStart(eventsPerStream, context); keys.add(start); Object end = super.evaluatePerStreamEnd(eventsPerStream, context); keys.add(end); return index.lookupRangeColl(start, includeStart, end, includeEnd, allowRangeReversal); } }