/************************************************************************************** * 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.table; import com.espertech.esper.client.EventBean; import com.espertech.esper.collection.MultiKeyUntyped; import java.util.Iterator; import java.util.Map; import java.util.NoSuchElementException; import java.util.Set; /** * Iterator for use by {@link com.espertech.esper.epl.join.table.PropertyIndexedEventTable}. */ public final class PropertyIndexedEventTableIterator<T> implements Iterator<EventBean> { private final Map<T, Set<EventBean>> window; private final Iterator<T> keyIterator; private Iterator<EventBean> currentListIterator; /** * Ctor. * @param window - sorted map with events */ public PropertyIndexedEventTableIterator(Map<T, Set<EventBean>> window) { this.window = window; keyIterator = window.keySet().iterator(); if (keyIterator.hasNext()) { T initialKey = keyIterator.next(); currentListIterator = window.get(initialKey).iterator(); } } public final EventBean next() { if (currentListIterator == null) { throw new NoSuchElementException(); } EventBean eventBean = currentListIterator.next(); if (!currentListIterator.hasNext()) { currentListIterator = null; if (keyIterator.hasNext()) { T nextKey = keyIterator.next(); currentListIterator = window.get(nextKey).iterator(); } } return eventBean; } public final boolean hasNext() { if (currentListIterator == null) { return false; } if (currentListIterator.hasNext()) { return true; } currentListIterator = null; if (!keyIterator.hasNext()) { return false; } return true; } public final void remove() { throw new UnsupportedOperationException(); } }