All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.openhft.chronicle.wire.domestic.stream.Streams Maven / Gradle / Ivy

There is a newer version: 2.27ea1
Show newest version
/*
 * Copyright 2016-2022 chronicle.software
 *
 *       https://chronicle.software
 *
 * Licensed 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 net.openhft.chronicle.wire.domestic.stream;

import net.openhft.chronicle.wire.MarshallableIn;
import net.openhft.chronicle.wire.domestic.extractor.DocumentExtractor;
import net.openhft.chronicle.wire.domestic.extractor.ToDoubleDocumentExtractor;
import net.openhft.chronicle.wire.domestic.extractor.ToLongDocumentExtractor;
import net.openhft.chronicle.wire.internal.stream.StreamsUtil;
import org.jetbrains.annotations.NotNull;

import java.util.Iterator;
import java.util.PrimitiveIterator;
import java.util.Spliterator;
import java.util.stream.DoubleStream;
import java.util.stream.LongStream;
import java.util.stream.Stream;
import java.util.stream.StreamSupport;

import static net.openhft.chronicle.core.util.ObjectUtils.requireNonNull;

/**
 * Factories to create standard {@link Stream} and related objects from Chronicle Queues and other MarshallableIn types.
 * 

* If the provided {@code extractor } is reusing objects, then care must be taken in the * returned objects (e.g. Streams, Spliterators and Iterators) to account for this. *

* Generally, these objects will create underlying objects and should not be used in JVMs running * deterministic low-latency code. Instead, they are suitable for convenient off-line analysis of queue content. */ public final class Streams { // Suppresses default constructor, ensuring non-instantiability. private Streams() { } /** * Creates and returns a new sequential ordered {@link Stream} whose elements are obtained * by successively applying the provided {@code extractor} on excerpts from the * provided {@code documentProvider}. *

* The Stream does not contain any {@code null} elements. *

* Tailers are handled in a thread-safe way and if a parallel stream is to be used, thread * safety checks must be turned off using the {@code ExcerptTailer#disableThreadSafetyCheck(boolean)} method or * else an Exception might be thrown during Stream evaluation. * * @param the type of stream elements * @param documentProvider from which excerpts are obtained * @param extractor used to extract elements of type T from excerpts * @return the new stream * @throws NullPointerException if any of the provided parameters are {@code null} */ @NotNull public static Stream of(@NotNull final MarshallableIn documentProvider, @NotNull final DocumentExtractor extractor) { requireNonNull(documentProvider); requireNonNull(extractor); return StreamSupport.stream(spliterator(documentProvider, extractor), false); } /** * Creates and returns a new sequential ordered {@link LongStream} whose elements are obtained * by successively applying the provided {@code extractor} on excerpts from the * provided {@code documentProvider}. *

* The Stream does not contain any {@link Long#MIN_VALUE} elements. *

* Tailers are handled in a thread-safe way and if a parallel stream is to be used, thread * safety checks must be turned off using the {@code ExcerptTailer#disableThreadSafetyCheck(boolean)} method or * else an Exception might be thrown during Stream evaluation. * * @param documentProvider from which excerpts are obtained * @param extractor used to extract elements of type long from excerpts * @return the new stream * @throws NullPointerException if any of the provided parameters are {@code null} */ @NotNull public static LongStream ofLong(@NotNull final MarshallableIn documentProvider, @NotNull final ToLongDocumentExtractor extractor) { requireNonNull(documentProvider); requireNonNull(extractor); return StreamSupport.longStream(spliteratorOfLong(documentProvider, extractor), false); } /** * Creates and returns a new sequential ordered {@link DoubleStream} whose elements are obtained * by successively applying the provided {@code extractor} on excerpts from the * provided {@code documentProvider}. *

* The Stream does not contain any {@link Double#NaN} elements. *

* Tailers are handled in a thread-safe way and if a parallel stream is to be used, thread * safety checks must be turned off using the {@code ExcerptTailer#disableThreadSafetyCheck(boolean)} method or * else an Exception might be thrown during Stream evaluation. * * @param documentProvider from which excerpts are obtained * @param extractor used to extract elements of type double from excerpts * @return the new stream * @throws NullPointerException if any of the provided parameters are {@code null} */ @NotNull public static DoubleStream ofDouble(@NotNull final MarshallableIn documentProvider, @NotNull final ToDoubleDocumentExtractor extractor) { requireNonNull(documentProvider); requireNonNull(extractor); return StreamSupport.doubleStream(spliteratorOfDouble(documentProvider, extractor), false); } /** * Creates and returns a new ordered {@link Spliterator } whose elements are obtained * by successively applying the provided {@code extractor} on excerpts from the * provided {@code documentProvider}, with no initial size estimate. *

* The Spliterator does not contain any {@code null} elements. *

* The Spliterator implements {@code trySplit} to permit limited parallelism. *

* Tailers are handled in a thread-safe way and if a Spliterator splits are anticipated, thread * safety checks must be turned off using the {@code ExcerptTailer#disableThreadSafetyCheck(boolean)} method or * else an Exception might be thrown during splits. * * @param the type of stream elements * @param documentProvider from which excerpts are obtained * @param extractor used to extract elements of type T from excerpts * @return the new Spliterator * @throws NullPointerException if any of the provided parameters are {@code null} */ @NotNull public static Spliterator spliterator(@NotNull final MarshallableIn documentProvider, @NotNull final DocumentExtractor extractor) { requireNonNull(documentProvider); requireNonNull(extractor); return new StreamsUtil.VanillaSpliterator<>(iterator(documentProvider, extractor)); } /** * Creates and returns a new ordered {@link java.util.Spliterator.OfLong } whose elements are obtained * by successively applying the provided {@code extractor} on excerpts from the * provided {@code documentProvider}, with no initial size estimate. *

* The Spliterator does not contain any {@link Long#MIN_VALUE} elements. *

* The Spliterator implements {@code trySplit} to permit limited parallelism. *

* Tailers are handled in a thread-safe way and if a Spliterator splits are anticipated, thread * safety checks must be turned off using the {@code ExcerptTailer#disableThreadSafetyCheck(boolean)} method or * else an Exception might be thrown during splits. * * @param documentProvider from which excerpts are obtained * @param extractor used to extract elements of type long from excerpts * @return the new Spliterator.OfLong * @throws NullPointerException if any of the provided parameters are {@code null} */ @NotNull public static Spliterator.OfLong spliteratorOfLong(@NotNull final MarshallableIn documentProvider, @NotNull final ToLongDocumentExtractor extractor) { requireNonNull(documentProvider); requireNonNull(extractor); return new StreamsUtil.VanillaSpliteratorOfLong(iteratorOfLong(documentProvider, extractor)); } /** * Creates and returns a new ordered {@link java.util.Spliterator.OfDouble } whose elements are obtained * by successively applying the provided {@code extractor} on excerpts from the * provided {@code documentProvider}, with no initial size estimate. *

* The Spliterator does not contain any {@link Double#NaN} elements. *

* The Spliterator implements {@code trySplit} to permit limited parallelism. *

* Tailers are handled in a thread-safe way and if a Spliterator splits are anticipated, thread * safety checks must be turned off using the {@code ExcerptTailer#disableThreadSafetyCheck(boolean)} method or * else an Exception might be thrown during splits. * * @param documentProvider from which excerpts are obtained * @param extractor used to extract elements of type double from excerpts * @return the new Spliterator.OfDouble * @throws NullPointerException if any of the provided parameters are {@code null} */ @NotNull public static Spliterator.OfDouble spliteratorOfDouble(@NotNull final MarshallableIn documentProvider, @NotNull final ToDoubleDocumentExtractor extractor) { requireNonNull(documentProvider); requireNonNull(extractor); return new StreamsUtil.VanillaSpliteratorOfDouble(iteratorOfDouble(documentProvider, extractor)); } /** * Creates and returns a new {@link Iterator } whose elements are obtained * by successively applying the provided {@code extractor} on excerpts from the * provided {@code documentProvider}. *

* The Iterator does not contain any {@code null} elements. *

* The returned iterator is confined to a single thread. * * @param the type of stream elements * @param documentProvider from which excerpts are obtained * @param extractor used to extract elements of type T from excerpts * @return the new Iterator * @throws NullPointerException if any of the provided parameters are {@code null} */ @NotNull public static Iterator iterator(@NotNull final MarshallableIn documentProvider, @NotNull final DocumentExtractor extractor) { requireNonNull(documentProvider); requireNonNull(extractor); return new StreamsUtil.ExcerptIterator<>(documentProvider, extractor); } /** * Creates and returns a new {@link java.util.PrimitiveIterator.OfLong } whose elements are obtained * by successively applying the provided {@code extractor} on excerpts from the * provided {@code documentProvider}. *

* The Iterator does not contain any {@link Long#MIN_VALUE} elements. *

* The returned iterator is confined to a single thread. * * @param documentProvider from which excerpts are obtained * @param extractor used to extract elements of type long from excerpts * @return the new iterator * @throws NullPointerException if any of the provided parameters are {@code null} */ @NotNull public static PrimitiveIterator.OfLong iteratorOfLong(@NotNull final MarshallableIn documentProvider, @NotNull final ToLongDocumentExtractor extractor) { requireNonNull(documentProvider); requireNonNull(extractor); return new StreamsUtil.ExcerptIteratorOfLong(documentProvider, extractor); } /** * Creates and returns a new {@link java.util.PrimitiveIterator.OfDouble } whose elements are obtained * by successively applying the provided {@code extractor} on excerpts from the * provided {@code documentProvider}. *

* The Iterator does not contain any {@link Double#NaN} elements. *

* The returned iterator is confined to a single thread. * * @param documentProvider from which excerpts are obtained * @param extractor used to extract elements of type double from excerpts * @return the new iterator * @throws NullPointerException if any of the provided parameters are {@code null} */ @NotNull public static PrimitiveIterator.OfDouble iteratorOfDouble(@NotNull final MarshallableIn documentProvider, @NotNull final ToDoubleDocumentExtractor extractor) { requireNonNull(documentProvider); requireNonNull(extractor); return new StreamsUtil.ExcerptIteratorOfDouble(documentProvider, extractor); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy