/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.kafka.streams.state.internals; import org.apache.kafka.streams.KeyValue; import org.apache.kafka.streams.errors.InvalidStateStoreException; import org.apache.kafka.streams.state.QueryableStoreType; import org.apache.kafka.streams.state.ReadOnlyWindowStore; import org.apache.kafka.streams.state.WindowStoreIterator; import java.util.List; import java.util.NoSuchElementException; /** * Wrapper over the underlying {@link ReadOnlyWindowStore}s found in a {@link * org.apache.kafka.streams.processor.internals.ProcessorTopology} */ public class CompositeReadOnlyWindowStore<K, V> implements ReadOnlyWindowStore<K, V> { private final QueryableStoreType<ReadOnlyWindowStore<K, V>> windowStoreType; private final String storeName; private final StateStoreProvider provider; public CompositeReadOnlyWindowStore(final StateStoreProvider provider, final QueryableStoreType<ReadOnlyWindowStore<K, V>> windowStoreType, final String storeName) { this.provider = provider; this.windowStoreType = windowStoreType; this.storeName = storeName; } @Override public WindowStoreIterator<V> fetch(final K key, final long timeFrom, final long timeTo) { final List<ReadOnlyWindowStore<K, V>> stores = provider.stores(storeName, windowStoreType); for (ReadOnlyWindowStore<K, V> windowStore : stores) { try { final WindowStoreIterator<V> result = windowStore.fetch(key, timeFrom, timeTo); if (!result.hasNext()) { result.close(); } else { return result; } } catch (InvalidStateStoreException e) { throw new InvalidStateStoreException("State store is not available anymore and may have been migrated to another instance; please re-discover its location from the state metadata."); } } return new WindowStoreIterator<V>() { @Override public void close() { } @Override public Long peekNextKey() { throw new NoSuchElementException(); } @Override public boolean hasNext() { return false; } @Override public KeyValue<Long, V> next() { throw new NoSuchElementException(); } @Override public void remove() { } }; } }