Streams.java

  1. /*
  2.  * Licensed to the Apache Software Foundation (ASF) under one or more
  3.  * contributor license agreements.  See the NOTICE file distributed with
  4.  * this work for additional information regarding copyright ownership.
  5.  * The ASF licenses this file to You under the Apache License, Version 2.0
  6.  * (the "License"); you may not use this file except in compliance with
  7.  * the License.  You may obtain a copy of the License at
  8.  *
  9.  *      http://www.apache.org/licenses/LICENSE-2.0
  10.  *
  11.  * Unless required by applicable law or agreed to in writing, software
  12.  * distributed under the License is distributed on an "AS IS" BASIS,
  13.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14.  * See the License for the specific language governing permissions and
  15.  * limitations under the License.
  16.  */
  17. package org.apache.commons.lang3;

  18. import java.util.ArrayList;
  19. import java.util.Collection;
  20. import java.util.Collections;
  21. import java.util.List;
  22. import java.util.Set;
  23. import java.util.function.BiConsumer;
  24. import java.util.function.BinaryOperator;
  25. import java.util.function.Consumer;
  26. import java.util.function.Function;
  27. import java.util.function.Predicate;
  28. import java.util.function.Supplier;
  29. import java.util.stream.Collector;
  30. import java.util.stream.Collectors;
  31. import java.util.stream.Stream;

  32. import org.apache.commons.lang3.Functions.FailableConsumer;
  33. import org.apache.commons.lang3.Functions.FailableFunction;
  34. import org.apache.commons.lang3.Functions.FailablePredicate;

  35. /**
  36.  * Provides utility functions, and classes for working with the
  37.  * {@code java.util.stream} package, or more generally, with Java 8 lambdas. More
  38.  * specifically, it attempts to address the fact that lambdas are supposed
  39.  * not to throw Exceptions, at least not checked Exceptions, AKA instances
  40.  * of {@link Exception}. This enforces the use of constructs like
  41.  * <pre>{@code
  42.  *     Consumer<java.lang.reflect.Method> consumer = m -> {
  43.  *         try {
  44.  *             m.invoke(o, args);
  45.  *         } catch (Throwable t) {
  46.  *             throw Functions.rethrow(t);
  47.  *         }
  48.  *    };
  49.  *    stream.forEach(consumer);
  50.  * }</pre>
  51.  * Using a {@link FailableStream}, this can be rewritten as follows:
  52.  * <pre>{@code
  53.  *     Streams.failable(stream).forEach(m -> m.invoke(o, args));
  54.  * }</pre>
  55.  * Obviously, the second version is much more concise and the spirit of
  56.  * Lambda expressions is met better than in the first version.
  57.  *
  58.  * @see Stream
  59.  * @see Functions
  60.  * @since 3.10
  61.  * @deprecated Use {@link org.apache.commons.lang3.stream.Streams}.
  62.  */
  63. @Deprecated
  64. public class Streams {

  65.     /**
  66.      * A Collector type for arrays.
  67.      *
  68.      * @param <O> The array type.
  69.      * @deprecated Use {@link org.apache.commons.lang3.stream.Streams.ArrayCollector}.
  70.      */
  71.     @Deprecated
  72.     public static class ArrayCollector<O> implements Collector<O, List<O>, O[]> {
  73.         private static final Set<Characteristics> characteristics = Collections.emptySet();
  74.         private final Class<O> elementType;

  75.         /**
  76.          * Constructs a new instance for the given element type.
  77.          *
  78.          * @param elementType The element type.
  79.          */
  80.         public ArrayCollector(final Class<O> elementType) {
  81.             this.elementType = elementType;
  82.         }

  83.         @Override
  84.         public BiConsumer<List<O>, O> accumulator() {
  85.             return List::add;
  86.         }

  87.         @Override
  88.         public Set<Characteristics> characteristics() {
  89.             return characteristics;
  90.         }

  91.         @Override
  92.         public BinaryOperator<List<O>> combiner() {
  93.             return (left, right) -> {
  94.                 left.addAll(right);
  95.                 return left;
  96.             };
  97.         }

  98.         @Override
  99.         public Function<List<O>, O[]> finisher() {
  100.             return list -> list.toArray(ArrayUtils.newInstance(elementType, list.size()));
  101.         }

  102.         @Override
  103.         public Supplier<List<O>> supplier() {
  104.             return ArrayList::new;
  105.         }
  106.     }

  107.     /**
  108.      * A reduced, and simplified version of a {@link Stream} with
  109.      * failable method signatures.
  110.      * @param <O> The streams element type.
  111.      * @deprecated Use {@link org.apache.commons.lang3.stream.Streams.FailableStream}.
  112.      */
  113.     @Deprecated
  114.     public static class FailableStream<O> {

  115.         private Stream<O> stream;
  116.         private boolean terminated;

  117.         /**
  118.          * Constructs a new instance with the given {@code stream}.
  119.          * @param stream The stream.
  120.          */
  121.         public FailableStream(final Stream<O> stream) {
  122.             this.stream = stream;
  123.         }

  124.         /**
  125.          * Returns whether all elements of this stream match the provided predicate.
  126.          * May not evaluate the predicate on all elements if not necessary for
  127.          * determining the result.  If the stream is empty then {@code true} is
  128.          * returned and the predicate is not evaluated.
  129.          *
  130.          * <p>
  131.          * This is a short-circuiting terminal operation.
  132.          * </p>
  133.          *
  134.          * <p>
  135.          * Note
  136.          * This method evaluates the <em>universal quantification</em> of the
  137.          * predicate over the elements of the stream (for all x P(x)).  If the
  138.          * stream is empty, the quantification is said to be <em>vacuously
  139.          * satisfied</em> and is always {@code true} (regardless of P(x)).
  140.          * </p>
  141.          *
  142.          * @param predicate A non-interfering, stateless predicate to apply to
  143.          * elements of this stream
  144.          * @return {@code true} If either all elements of the stream match the
  145.          * provided predicate or the stream is empty, otherwise {@code false}.
  146.          */
  147.         public boolean allMatch(final FailablePredicate<O, ?> predicate) {
  148.             assertNotTerminated();
  149.             return stream().allMatch(Functions.asPredicate(predicate));
  150.         }

  151.         /**
  152.          * Returns whether any elements of this stream match the provided
  153.          * predicate.  May not evaluate the predicate on all elements if not
  154.          * necessary for determining the result.  If the stream is empty then
  155.          * {@code false} is returned and the predicate is not evaluated.
  156.          *
  157.          * <p>
  158.          * This is a short-circuiting terminal operation.
  159.          * </p>
  160.          *
  161.          * Note
  162.          * This method evaluates the <em>existential quantification</em> of the
  163.          * predicate over the elements of the stream (for some x P(x)).
  164.          *
  165.          * @param predicate A non-interfering, stateless predicate to apply to
  166.          * elements of this stream
  167.          * @return {@code true} if any elements of the stream match the provided
  168.          * predicate, otherwise {@code false}
  169.          */
  170.         public boolean anyMatch(final FailablePredicate<O, ?> predicate) {
  171.             assertNotTerminated();
  172.             return stream().anyMatch(Functions.asPredicate(predicate));
  173.         }

  174.         /**
  175.          * Throws IllegalStateException if this stream is already terminated.
  176.          *
  177.          * @throws IllegalStateException if this stream is already terminated.
  178.          */
  179.         protected void assertNotTerminated() {
  180.             if (terminated) {
  181.                 throw new IllegalStateException("This stream is already terminated.");
  182.             }
  183.         }

  184.         /**
  185.          * Performs a mutable reduction operation on the elements of this stream using a
  186.          * {@link Collector}.  A {@link Collector}
  187.          * encapsulates the functions used as arguments to
  188.          * {@link #collect(Supplier, BiConsumer, BiConsumer)}, allowing for reuse of
  189.          * collection strategies and composition of collect operations such as
  190.          * multiple-level grouping or partitioning.
  191.          *
  192.          * <p>
  193.          * If the underlying stream is parallel, and the {@link Collector}
  194.          * is concurrent, and either the stream is unordered or the collector is
  195.          * unordered, then a concurrent reduction will be performed
  196.          * (see {@link Collector} for details on concurrent reduction.)
  197.          * </p>
  198.          *
  199.          * <p>
  200.          * This is an intermediate operation.
  201.          * </p>
  202.          *
  203.          * <p>
  204.          * When executed in parallel, multiple intermediate results may be
  205.          * instantiated, populated, and merged so as to maintain isolation of
  206.          * mutable data structures.  Therefore, even when executed in parallel
  207.          * with non-thread-safe data structures (such as {@link ArrayList}), no
  208.          * additional synchronization is needed for a parallel reduction.
  209.          * </p>
  210.          * <p>
  211.          * Note
  212.          * The following will accumulate strings into an ArrayList:
  213.          * </p>
  214.          * <pre>{@code
  215.          *     List<String> asList = stringStream.collect(Collectors.toList());
  216.          * }</pre>
  217.          *
  218.          * <p>
  219.          * The following will classify {@code Person} objects by city:
  220.          * </p>
  221.          * <pre>{@code
  222.          *     Map<String, List<Person>> peopleByCity
  223.          *         = personStream.collect(Collectors.groupingBy(Person::getCity));
  224.          * }</pre>
  225.          *
  226.          * <p>
  227.          * The following will classify {@code Person} objects by state and city,
  228.          * cascading two {@link Collector}s together:
  229.          * </p>
  230.          * <pre>{@code
  231.          *     Map<String, Map<String, List<Person>>> peopleByStateAndCity
  232.          *         = personStream.collect(Collectors.groupingBy(Person::getState,
  233.          *                                                      Collectors.groupingBy(Person::getCity)));
  234.          * }</pre>
  235.          *
  236.          * @param <R> the type of the result
  237.          * @param <A> the intermediate accumulation type of the {@link Collector}
  238.          * @param collector the {@link Collector} describing the reduction
  239.          * @return the result of the reduction
  240.          * @see #collect(Supplier, BiConsumer, BiConsumer)
  241.          * @see Collectors
  242.          */
  243.         public <A, R> R collect(final Collector<? super O, A, R> collector) {
  244.             makeTerminated();
  245.             return stream().collect(collector);
  246.         }

  247.         /**
  248.          * Performs a mutable reduction operation on the elements of this FailableStream.
  249.          * A mutable reduction is one in which the reduced value is a mutable result
  250.          * container, such as an {@link ArrayList}, and elements are incorporated by updating
  251.          * the state of the result rather than by replacing the result. This produces a result equivalent to:
  252.          * <pre>{@code
  253.          *     R result = supplier.get();
  254.          *     for (T element : this stream)
  255.          *         accumulator.accept(result, element);
  256.          *     return result;
  257.          * }</pre>
  258.          *
  259.          * <p>
  260.          * Like {@link #reduce(Object, BinaryOperator)}, {@code collect} operations
  261.          * can be parallelized without requiring additional synchronization.
  262.          * </p>
  263.          *
  264.          * <p>
  265.          * This is an intermediate operation.
  266.          * </p>
  267.          *
  268.          * <p>
  269.          * Note There are many existing classes in the JDK whose signatures are
  270.          * well-suited for use with method references as arguments to {@code collect()}.
  271.          * For example, the following will accumulate strings into an {@link ArrayList}:
  272.          * </p>
  273.          * <pre>{@code
  274.          *     List<String> asList = stringStream.collect(ArrayList::new, ArrayList::add,
  275.          *                                                ArrayList::addAll);
  276.          * }</pre>
  277.          *
  278.          * <p>
  279.          * The following will take a stream of strings and concatenates them into a
  280.          * single string:
  281.          * </p>
  282.          * <pre>{@code
  283.          *     String concat = stringStream.collect(StringBuilder::new, StringBuilder::append,
  284.          *                                          StringBuilder::append)
  285.          *                                 .toString();
  286.          * }</pre>
  287.          *
  288.          * @param <R> type of the result
  289.          * @param <A> Type of the accumulator.
  290.          * @param supplier a function that creates a new result container. For a
  291.          *                 parallel execution, this function may be called
  292.          *                 multiple times and must return a fresh value each time.
  293.          * @param accumulator An associative, non-interfering, stateless function for
  294.          *   incorporating an additional element into a result
  295.          * @param combiner An associative, non-interfering, stateless
  296.          *   function for combining two values, which must be compatible with the
  297.          *   accumulator function
  298.          * @return The result of the reduction
  299.          */
  300.         public <A, R> R collect(final Supplier<R> supplier, final BiConsumer<R, ? super O> accumulator, final BiConsumer<R, R> combiner) {
  301.             makeTerminated();
  302.             return stream().collect(supplier, accumulator, combiner);
  303.         }

  304.         /**
  305.          * Returns a FailableStream consisting of the elements of this stream that match
  306.          * the given FailablePredicate.
  307.          *
  308.          * <p>
  309.          * This is an intermediate operation.
  310.          * </p>
  311.          *
  312.          * @param predicate a non-interfering, stateless predicate to apply to each
  313.          * element to determine if it should be included.
  314.          * @return the new stream
  315.          */
  316.         public FailableStream<O> filter(final FailablePredicate<O, ?> predicate) {
  317.             assertNotTerminated();
  318.             stream = stream.filter(Functions.asPredicate(predicate));
  319.             return this;
  320.         }

  321.         /**
  322.          * Performs an action for each element of this stream.
  323.          *
  324.          * <p>
  325.          * This is an intermediate operation.
  326.          * </p>
  327.          *
  328.          * <p>
  329.          * The behavior of this operation is explicitly nondeterministic.
  330.          * For parallel stream pipelines, this operation does <em>not</em>
  331.          * guarantee to respect the encounter order of the stream, as doing so
  332.          * would sacrifice the benefit of parallelism.  For any given element, the
  333.          * action may be performed at whatever time and in whatever thread the
  334.          * library chooses.  If the action accesses shared state, it is
  335.          * responsible for providing the required synchronization.
  336.          * </p>
  337.          *
  338.          * @param action a non-interfering action to perform on the elements
  339.          */
  340.         public void forEach(final FailableConsumer<O, ?> action) {
  341.             makeTerminated();
  342.             stream().forEach(Functions.asConsumer(action));
  343.         }

  344.         /**
  345.          * Marks this stream as terminated.
  346.          *
  347.          * @throws IllegalStateException if this stream is already terminated.
  348.          */
  349.         protected void makeTerminated() {
  350.             assertNotTerminated();
  351.             terminated = true;
  352.         }

  353.         /**
  354.          * Returns a stream consisting of the results of applying the given
  355.          * function to the elements of this stream.
  356.          *
  357.          * <p>
  358.          * This is an intermediate operation.
  359.          * </p>
  360.          *
  361.          * @param <R> The element type of the new stream
  362.          * @param mapper A non-interfering, stateless function to apply to each element
  363.          * @return the new stream
  364.          */
  365.         public <R> FailableStream<R> map(final FailableFunction<O, R, ?> mapper) {
  366.             assertNotTerminated();
  367.             return new FailableStream<>(stream.map(Functions.asFunction(mapper)));
  368.         }

  369.         /**
  370.          * Performs a reduction on the elements of this stream, using the provided
  371.          * identity value and an associative accumulation function, and returns
  372.          * the reduced value.  This is equivalent to:
  373.          * <pre>{@code
  374.          *     T result = identity;
  375.          *     for (T element : this stream)
  376.          *         result = accumulator.apply(result, element)
  377.          *     return result;
  378.          * }</pre>
  379.          *
  380.          * but is not constrained to execute sequentially.
  381.          *
  382.          * <p>
  383.          * The {@code identity} value must be an identity for the accumulator
  384.          * function. This means that for all {@code t},
  385.          * {@code accumulator.apply(identity, t)} is equal to {@code t}.
  386.          * The {@code accumulator} function must be an associative function.
  387.          * </p>
  388.          *
  389.          * <p>
  390.          * This is an intermediate operation.
  391.          * </p>
  392.          *
  393.          * Note Sum, min, max, average, and string concatenation are all special
  394.          * cases of reduction. Summing a stream of numbers can be expressed as:
  395.          *
  396.          * <pre>{@code
  397.          *     Integer sum = integers.reduce(0, (a, b) -> a+b);
  398.          * }</pre>
  399.          *
  400.          * or:
  401.          *
  402.          * <pre>{@code
  403.          *     Integer sum = integers.reduce(0, Integer::sum);
  404.          * }</pre>
  405.          *
  406.          * <p>
  407.          * While this may seem a more roundabout way to perform an aggregation
  408.          * compared to simply mutating a running total in a loop, reduction
  409.          * operations parallelize more gracefully, without needing additional
  410.          * synchronization and with greatly reduced risk of data races.
  411.          * </p>
  412.          *
  413.          * @param identity the identity value for the accumulating function
  414.          * @param accumulator an associative, non-interfering, stateless
  415.          *                    function for combining two values
  416.          * @return the result of the reduction
  417.          */
  418.         public O reduce(final O identity, final BinaryOperator<O> accumulator) {
  419.             makeTerminated();
  420.             return stream().reduce(identity, accumulator);
  421.         }

  422.         /**
  423.          * Converts the FailableStream into an equivalent stream.
  424.          * @return A stream, which will return the same elements, which this FailableStream would return.
  425.          */
  426.         public Stream<O> stream() {
  427.             return stream;
  428.         }
  429.     }

  430.     /**
  431.      * Converts the given {@link Collection} into a {@link FailableStream}.
  432.      * This is basically a simplified, reduced version of the {@link Stream}
  433.      * class, with the same underlying element stream, except that failable
  434.      * objects, like {@link FailablePredicate}, {@link FailableFunction}, or
  435.      * {@link FailableConsumer} may be applied, instead of
  436.      * {@link Predicate}, {@link Function}, or {@link Consumer}. The idea is
  437.      * to rewrite a code snippet like this:
  438.      * <pre>{@code
  439.      *     final List<O> list;
  440.      *     final Method m;
  441.      *     final Function<O,String> mapper = (o) -> {
  442.      *         try {
  443.      *             return (String) m.invoke(o);
  444.      *         } catch (Throwable t) {
  445.      *             throw Functions.rethrow(t);
  446.      *         }
  447.      *     };
  448.      *     final List<String> strList = list.stream()
  449.      *         .map(mapper).collect(Collectors.toList());
  450.      *  }</pre>
  451.      *  as follows:
  452.      *  <pre>{@code
  453.      *     final List<O> list;
  454.      *     final Method m;
  455.      *     final List<String> strList = Functions.stream(list.stream())
  456.      *         .map((o) -> (String) m.invoke(o)).collect(Collectors.toList());
  457.      *  }</pre>
  458.      *  While the second version may not be <em>quite</em> as
  459.      *  efficient (because it depends on the creation of additional,
  460.      *  intermediate objects, of type FailableStream), it is much more
  461.      *  concise, and readable, and meets the spirit of Lambdas better
  462.      *  than the first version.
  463.      * @param <O> The streams element type.
  464.      * @param stream The stream, which is being converted.
  465.      * @return The {@link FailableStream}, which has been created by
  466.      *   converting the stream.
  467.      */
  468.     public static <O> FailableStream<O> stream(final Collection<O> stream) {
  469.         return stream(stream.stream());
  470.     }

  471.     /**
  472.      * Converts the given {@link Stream stream} into a {@link FailableStream}.
  473.      * This is basically a simplified, reduced version of the {@link Stream}
  474.      * class, with the same underlying element stream, except that failable
  475.      * objects, like {@link FailablePredicate}, {@link FailableFunction}, or
  476.      * {@link FailableConsumer} may be applied, instead of
  477.      * {@link Predicate}, {@link Function}, or {@link Consumer}. The idea is
  478.      * to rewrite a code snippet like this:
  479.      * <pre>{@code
  480.      *     final List<O> list;
  481.      *     final Method m;
  482.      *     final Function<O,String> mapper = (o) -> {
  483.      *         try {
  484.      *             return (String) m.invoke(o);
  485.      *         } catch (Throwable t) {
  486.      *             throw Functions.rethrow(t);
  487.      *         }
  488.      *     };
  489.      *     final List<String> strList = list.stream()
  490.      *         .map(mapper).collect(Collectors.toList());
  491.      *  }</pre>
  492.      *  as follows:
  493.      *  <pre>{@code
  494.      *     final List<O> list;
  495.      *     final Method m;
  496.      *     final List<String> strList = Functions.stream(list.stream())
  497.      *         .map((o) -> (String) m.invoke(o)).collect(Collectors.toList());
  498.      *  }</pre>
  499.      *  While the second version may not be <em>quite</em> as
  500.      *  efficient (because it depends on the creation of additional,
  501.      *  intermediate objects, of type FailableStream), it is much more
  502.      *  concise, and readable, and meets the spirit of Lambdas better
  503.      *  than the first version.
  504.      * @param <O> The streams element type.
  505.      * @param stream The stream, which is being converted.
  506.      * @return The {@link FailableStream}, which has been created by
  507.      *   converting the stream.
  508.      */
  509.     public static <O> FailableStream<O> stream(final Stream<O> stream) {
  510.         return new FailableStream<>(stream);
  511.     }

  512.     /**
  513.      * Returns a {@link Collector} that accumulates the input elements into a
  514.      * new array.
  515.      *
  516.      * @param pElementType Type of an element in the array.
  517.      * @param <O> the type of the input elements
  518.      * @return a {@link Collector} which collects all the input elements into an
  519.      * array, in encounter order
  520.      */
  521.     public static <O> Collector<O, ?, O[]> toArray(final Class<O> pElementType) {
  522.         return new ArrayCollector<>(pElementType);
  523.     }

  524.     /**
  525.      * Constructs a new instance.
  526.      */
  527.     public Streams() {
  528.         // empty
  529.     }
  530. }