jdk/src/java.base/share/classes/java/util/stream/SortedOps.java
author martin
Tue, 15 Sep 2015 21:56:04 -0700
changeset 32649 2ee9017c7597
parent 25859 3317bb8137f4
permissions -rw-r--r--
8136583: Core libraries should use blessed modifier order Summary: Run blessed-modifier-order script (see bug) Reviewed-by: psandoz, chegar, alanb, plevart
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
     1
/*
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
     2
 * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
     4
 *
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    10
 *
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    15
 * accompanied this code).
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    16
 *
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    20
 *
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    23
 * questions.
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    24
 */
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    25
package java.util.stream;
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    26
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    27
import java.util.ArrayList;
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    28
import java.util.Arrays;
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    29
import java.util.Comparator;
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    30
import java.util.Objects;
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    31
import java.util.Spliterator;
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    32
import java.util.function.IntFunction;
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    33
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    34
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    35
/**
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    36
 * Factory methods for transforming streams into sorted streams.
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    37
 *
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    38
 * @since 1.8
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    39
 */
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    40
final class SortedOps {
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    41
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    42
    private SortedOps() { }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    43
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    44
    /**
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    45
     * Appends a "sorted" operation to the provided stream.
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    46
     *
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    47
     * @param <T> the type of both input and output elements
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    48
     * @param upstream a reference stream with element type T
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    49
     */
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    50
    static <T> Stream<T> makeRef(AbstractPipeline<?, T, ?> upstream) {
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    51
        return new OfRef<>(upstream);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    52
    }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    53
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    54
    /**
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    55
     * Appends a "sorted" operation to the provided stream.
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    56
     *
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    57
     * @param <T> the type of both input and output elements
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    58
     * @param upstream a reference stream with element type T
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    59
     * @param comparator the comparator to order elements by
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    60
     */
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    61
    static <T> Stream<T> makeRef(AbstractPipeline<?, T, ?> upstream,
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    62
                                Comparator<? super T> comparator) {
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    63
        return new OfRef<>(upstream, comparator);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    64
    }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    65
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    66
    /**
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    67
     * Appends a "sorted" operation to the provided stream.
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    68
     *
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    69
     * @param <T> the type of both input and output elements
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    70
     * @param upstream a reference stream with element type T
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    71
     */
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    72
    static <T> IntStream makeInt(AbstractPipeline<?, Integer, ?> upstream) {
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    73
        return new OfInt(upstream);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    74
    }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    75
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    76
    /**
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    77
     * Appends a "sorted" operation to the provided stream.
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    78
     *
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    79
     * @param <T> the type of both input and output elements
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    80
     * @param upstream a reference stream with element type T
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    81
     */
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    82
    static <T> LongStream makeLong(AbstractPipeline<?, Long, ?> upstream) {
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    83
        return new OfLong(upstream);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    84
    }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    85
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    86
    /**
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    87
     * Appends a "sorted" operation to the provided stream.
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    88
     *
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    89
     * @param <T> the type of both input and output elements
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    90
     * @param upstream a reference stream with element type T
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    91
     */
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    92
    static <T> DoubleStream makeDouble(AbstractPipeline<?, Double, ?> upstream) {
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    93
        return new OfDouble(upstream);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    94
    }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    95
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    96
    /**
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    97
     * Specialized subtype for sorting reference streams
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    98
     */
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
    99
    private static final class OfRef<T> extends ReferencePipeline.StatefulOp<T, T> {
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   100
        /**
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   101
         * Comparator used for sorting
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   102
         */
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   103
        private final boolean isNaturalSort;
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   104
        private final Comparator<? super T> comparator;
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   105
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   106
        /**
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   107
         * Sort using natural order of {@literal <T>} which must be
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   108
         * {@code Comparable}.
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   109
         */
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   110
        OfRef(AbstractPipeline<?, T, ?> upstream) {
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   111
            super(upstream, StreamShape.REFERENCE,
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   112
                  StreamOpFlag.IS_ORDERED | StreamOpFlag.IS_SORTED);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   113
            this.isNaturalSort = true;
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   114
            // Will throw CCE when we try to sort if T is not Comparable
22297
1c62c67d9dd2 8031373: Lint warnings in java.util.stream
briangoetz
parents: 22078
diff changeset
   115
            @SuppressWarnings("unchecked")
1c62c67d9dd2 8031373: Lint warnings in java.util.stream
briangoetz
parents: 22078
diff changeset
   116
            Comparator<? super T> comp = (Comparator<? super T>) Comparator.naturalOrder();
1c62c67d9dd2 8031373: Lint warnings in java.util.stream
briangoetz
parents: 22078
diff changeset
   117
            this.comparator = comp;
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   118
        }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   119
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   120
        /**
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   121
         * Sort using the provided comparator.
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   122
         *
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   123
         * @param comparator The comparator to be used to evaluate ordering.
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   124
         */
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   125
        OfRef(AbstractPipeline<?, T, ?> upstream, Comparator<? super T> comparator) {
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   126
            super(upstream, StreamShape.REFERENCE,
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   127
                  StreamOpFlag.IS_ORDERED | StreamOpFlag.NOT_SORTED);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   128
            this.isNaturalSort = false;
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   129
            this.comparator = Objects.requireNonNull(comparator);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   130
        }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   131
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   132
        @Override
19593
ce0cd954351c 8023681: Fix raw type warning caused by Sink
henryjen
parents: 19220
diff changeset
   133
        public Sink<T> opWrapSink(int flags, Sink<T> sink) {
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   134
            Objects.requireNonNull(sink);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   135
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   136
            // If the input is already naturally sorted and this operation
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   137
            // also naturally sorted then this is a no-op
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   138
            if (StreamOpFlag.SORTED.isKnown(flags) && isNaturalSort)
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   139
                return sink;
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   140
            else if (StreamOpFlag.SIZED.isKnown(flags))
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   141
                return new SizedRefSortingSink<>(sink, comparator);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   142
            else
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   143
                return new RefSortingSink<>(sink, comparator);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   144
        }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   145
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   146
        @Override
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   147
        public <P_IN> Node<T> opEvaluateParallel(PipelineHelper<T> helper,
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   148
                                                 Spliterator<P_IN> spliterator,
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   149
                                                 IntFunction<T[]> generator) {
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   150
            // If the input is already naturally sorted and this operation
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   151
            // naturally sorts then collect the output
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   152
            if (StreamOpFlag.SORTED.isKnown(helper.getStreamAndOpFlags()) && isNaturalSort) {
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   153
                return helper.evaluate(spliterator, false, generator);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   154
            }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   155
            else {
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   156
                // @@@ Weak two-pass parallel implementation; parallel collect, parallel sort
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   157
                T[] flattenedData = helper.evaluate(spliterator, true, generator).asArray(generator);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   158
                Arrays.parallelSort(flattenedData, comparator);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   159
                return Nodes.node(flattenedData);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   160
            }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   161
        }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   162
    }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   163
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   164
    /**
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   165
     * Specialized subtype for sorting int streams.
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   166
     */
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   167
    private static final class OfInt extends IntPipeline.StatefulOp<Integer> {
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   168
        OfInt(AbstractPipeline<?, Integer, ?> upstream) {
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   169
            super(upstream, StreamShape.INT_VALUE,
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   170
                  StreamOpFlag.IS_ORDERED | StreamOpFlag.IS_SORTED);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   171
        }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   172
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   173
        @Override
22297
1c62c67d9dd2 8031373: Lint warnings in java.util.stream
briangoetz
parents: 22078
diff changeset
   174
        public Sink<Integer> opWrapSink(int flags, Sink<Integer> sink) {
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   175
            Objects.requireNonNull(sink);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   176
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   177
            if (StreamOpFlag.SORTED.isKnown(flags))
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   178
                return sink;
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   179
            else if (StreamOpFlag.SIZED.isKnown(flags))
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   180
                return new SizedIntSortingSink(sink);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   181
            else
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   182
                return new IntSortingSink(sink);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   183
        }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   184
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   185
        @Override
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   186
        public <P_IN> Node<Integer> opEvaluateParallel(PipelineHelper<Integer> helper,
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   187
                                                       Spliterator<P_IN> spliterator,
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   188
                                                       IntFunction<Integer[]> generator) {
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   189
            if (StreamOpFlag.SORTED.isKnown(helper.getStreamAndOpFlags())) {
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   190
                return helper.evaluate(spliterator, false, generator);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   191
            }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   192
            else {
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   193
                Node.OfInt n = (Node.OfInt) helper.evaluate(spliterator, true, generator);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   194
18171
2725a30c1a02 8016251: Balanced spliterator for SpinedBuffer
psandoz
parents: 17182
diff changeset
   195
                int[] content = n.asPrimitiveArray();
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   196
                Arrays.parallelSort(content);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   197
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   198
                return Nodes.node(content);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   199
            }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   200
        }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   201
    }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   202
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   203
    /**
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   204
     * Specialized subtype for sorting long streams.
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   205
     */
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   206
    private static final class OfLong extends LongPipeline.StatefulOp<Long> {
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   207
        OfLong(AbstractPipeline<?, Long, ?> upstream) {
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   208
            super(upstream, StreamShape.LONG_VALUE,
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   209
                  StreamOpFlag.IS_ORDERED | StreamOpFlag.IS_SORTED);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   210
        }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   211
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   212
        @Override
19220
d3d40ccb544e 8022476: cleanup some raw types and unchecked warnings in java.util.stream
mduigou
parents: 18571
diff changeset
   213
        public Sink<Long> opWrapSink(int flags, Sink<Long> sink) {
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   214
            Objects.requireNonNull(sink);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   215
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   216
            if (StreamOpFlag.SORTED.isKnown(flags))
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   217
                return sink;
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   218
            else if (StreamOpFlag.SIZED.isKnown(flags))
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   219
                return new SizedLongSortingSink(sink);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   220
            else
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   221
                return new LongSortingSink(sink);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   222
        }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   223
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   224
        @Override
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   225
        public <P_IN> Node<Long> opEvaluateParallel(PipelineHelper<Long> helper,
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   226
                                                    Spliterator<P_IN> spliterator,
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   227
                                                    IntFunction<Long[]> generator) {
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   228
            if (StreamOpFlag.SORTED.isKnown(helper.getStreamAndOpFlags())) {
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   229
                return helper.evaluate(spliterator, false, generator);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   230
            }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   231
            else {
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   232
                Node.OfLong n = (Node.OfLong) helper.evaluate(spliterator, true, generator);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   233
18171
2725a30c1a02 8016251: Balanced spliterator for SpinedBuffer
psandoz
parents: 17182
diff changeset
   234
                long[] content = n.asPrimitiveArray();
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   235
                Arrays.parallelSort(content);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   236
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   237
                return Nodes.node(content);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   238
            }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   239
        }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   240
    }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   241
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   242
    /**
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   243
     * Specialized subtype for sorting double streams.
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   244
     */
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   245
    private static final class OfDouble extends DoublePipeline.StatefulOp<Double> {
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   246
        OfDouble(AbstractPipeline<?, Double, ?> upstream) {
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   247
            super(upstream, StreamShape.DOUBLE_VALUE,
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   248
                  StreamOpFlag.IS_ORDERED | StreamOpFlag.IS_SORTED);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   249
        }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   250
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   251
        @Override
19220
d3d40ccb544e 8022476: cleanup some raw types and unchecked warnings in java.util.stream
mduigou
parents: 18571
diff changeset
   252
        public Sink<Double> opWrapSink(int flags, Sink<Double> sink) {
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   253
            Objects.requireNonNull(sink);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   254
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   255
            if (StreamOpFlag.SORTED.isKnown(flags))
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   256
                return sink;
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   257
            else if (StreamOpFlag.SIZED.isKnown(flags))
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   258
                return new SizedDoubleSortingSink(sink);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   259
            else
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   260
                return new DoubleSortingSink(sink);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   261
        }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   262
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   263
        @Override
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   264
        public <P_IN> Node<Double> opEvaluateParallel(PipelineHelper<Double> helper,
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   265
                                                      Spliterator<P_IN> spliterator,
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   266
                                                      IntFunction<Double[]> generator) {
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   267
            if (StreamOpFlag.SORTED.isKnown(helper.getStreamAndOpFlags())) {
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   268
                return helper.evaluate(spliterator, false, generator);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   269
            }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   270
            else {
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   271
                Node.OfDouble n = (Node.OfDouble) helper.evaluate(spliterator, true, generator);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   272
18171
2725a30c1a02 8016251: Balanced spliterator for SpinedBuffer
psandoz
parents: 17182
diff changeset
   273
                double[] content = n.asPrimitiveArray();
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   274
                Arrays.parallelSort(content);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   275
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   276
                return Nodes.node(content);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   277
            }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   278
        }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   279
    }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   280
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   281
    /**
24258
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   282
     * Abstract {@link Sink} for implementing sort on reference streams.
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   283
     *
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   284
     * <p>
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   285
     * Note: documentation below applies to reference and all primitive sinks.
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   286
     * <p>
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   287
     * Sorting sinks first accept all elements, buffering then into an array
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   288
     * or a re-sizable data structure, if the size of the pipeline is known or
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   289
     * unknown respectively.  At the end of the sink protocol those elements are
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   290
     * sorted and then pushed downstream.
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   291
     * This class records if {@link #cancellationRequested} is called.  If so it
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   292
     * can be inferred that the source pushing source elements into the pipeline
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   293
     * knows that the pipeline is short-circuiting.  In such cases sub-classes
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   294
     * pushing elements downstream will preserve the short-circuiting protocol
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   295
     * by calling {@code downstream.cancellationRequested()} and checking the
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   296
     * result is {@code false} before an element is pushed.
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   297
     * <p>
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   298
     * Note that the above behaviour is an optimization for sorting with
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   299
     * sequential streams.  It is not an error that more elements, than strictly
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   300
     * required to produce a result, may flow through the pipeline.  This can
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   301
     * occur, in general (not restricted to just sorting), for short-circuiting
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   302
     * parallel pipelines.
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   303
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 25859
diff changeset
   304
    private abstract static class AbstractRefSortingSink<T> extends Sink.ChainedReference<T, T> {
24258
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   305
        protected final Comparator<? super T> comparator;
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   306
        // @@@ could be a lazy final value, if/when support is added
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   307
        protected boolean cancellationWasRequested;
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   308
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   309
        AbstractRefSortingSink(Sink<? super T> downstream, Comparator<? super T> comparator) {
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   310
            super(downstream);
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   311
            this.comparator = comparator;
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   312
        }
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   313
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   314
        /**
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   315
         * Records is cancellation is requested so short-circuiting behaviour
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   316
         * can be preserved when the sorted elements are pushed downstream.
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   317
         *
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   318
         * @return false, as this sink never short-circuits.
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   319
         */
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   320
        @Override
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   321
        public final boolean cancellationRequested() {
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   322
            cancellationWasRequested = true;
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   323
            return false;
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   324
        }
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   325
    }
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   326
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   327
    /**
20503
074dd13d9cdf 8025535: Unsafe typecast in java.util.stream.SortedOps
psandoz
parents: 19593
diff changeset
   328
     * {@link Sink} for implementing sort on SIZED reference streams.
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   329
     */
24258
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   330
    private static final class SizedRefSortingSink<T> extends AbstractRefSortingSink<T> {
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   331
        private T[] array;
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   332
        private int offset;
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   333
19593
ce0cd954351c 8023681: Fix raw type warning caused by Sink
henryjen
parents: 19220
diff changeset
   334
        SizedRefSortingSink(Sink<? super T> sink, Comparator<? super T> comparator) {
24258
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   335
            super(sink, comparator);
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   336
        }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   337
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   338
        @Override
22297
1c62c67d9dd2 8031373: Lint warnings in java.util.stream
briangoetz
parents: 22078
diff changeset
   339
        @SuppressWarnings("unchecked")
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   340
        public void begin(long size) {
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   341
            if (size >= Nodes.MAX_ARRAY_SIZE)
20507
8498104f92c3 8025534: Unsafe typecast in java.util.stream.Streams.Nodes
psandoz
parents: 20503
diff changeset
   342
                throw new IllegalArgumentException(Nodes.BAD_SIZE);
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   343
            array = (T[]) new Object[(int) size];
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   344
        }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   345
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   346
        @Override
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   347
        public void end() {
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   348
            Arrays.sort(array, 0, offset, comparator);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   349
            downstream.begin(offset);
24258
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   350
            if (!cancellationWasRequested) {
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   351
                for (int i = 0; i < offset; i++)
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   352
                    downstream.accept(array[i]);
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   353
            }
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   354
            else {
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   355
                for (int i = 0; i < offset && !downstream.cancellationRequested(); i++)
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   356
                    downstream.accept(array[i]);
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   357
            }
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   358
            downstream.end();
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   359
            array = null;
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   360
        }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   361
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   362
        @Override
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   363
        public void accept(T t) {
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   364
            array[offset++] = t;
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   365
        }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   366
    }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   367
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   368
    /**
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   369
     * {@link Sink} for implementing sort on reference streams.
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   370
     */
24258
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   371
    private static final class RefSortingSink<T> extends AbstractRefSortingSink<T> {
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   372
        private ArrayList<T> list;
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   373
19593
ce0cd954351c 8023681: Fix raw type warning caused by Sink
henryjen
parents: 19220
diff changeset
   374
        RefSortingSink(Sink<? super T> sink, Comparator<? super T> comparator) {
24258
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   375
            super(sink, comparator);
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   376
        }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   377
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   378
        @Override
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   379
        public void begin(long size) {
20503
074dd13d9cdf 8025535: Unsafe typecast in java.util.stream.SortedOps
psandoz
parents: 19593
diff changeset
   380
            if (size >= Nodes.MAX_ARRAY_SIZE)
20507
8498104f92c3 8025534: Unsafe typecast in java.util.stream.Streams.Nodes
psandoz
parents: 20503
diff changeset
   381
                throw new IllegalArgumentException(Nodes.BAD_SIZE);
22078
bdec5d53e98c 8030851: Update code in java.util to use newer language features
psandoz
parents: 20507
diff changeset
   382
            list = (size >= 0) ? new ArrayList<>((int) size) : new ArrayList<>();
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   383
        }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   384
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   385
        @Override
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   386
        public void end() {
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   387
            list.sort(comparator);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   388
            downstream.begin(list.size());
24258
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   389
            if (!cancellationWasRequested) {
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   390
                list.forEach(downstream::accept);
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   391
            }
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   392
            else {
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   393
                for (T t : list) {
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   394
                    if (downstream.cancellationRequested()) break;
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   395
                    downstream.accept(t);
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   396
                }
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   397
            }
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   398
            downstream.end();
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   399
            list = null;
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   400
        }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   401
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   402
        @Override
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   403
        public void accept(T t) {
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   404
            list.add(t);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   405
        }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   406
    }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   407
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   408
    /**
24258
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   409
     * Abstract {@link Sink} for implementing sort on int streams.
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   410
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 25859
diff changeset
   411
    private abstract static class AbstractIntSortingSink extends Sink.ChainedInt<Integer> {
24258
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   412
        protected boolean cancellationWasRequested;
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   413
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   414
        AbstractIntSortingSink(Sink<? super Integer> downstream) {
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   415
            super(downstream);
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   416
        }
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   417
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   418
        @Override
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   419
        public final boolean cancellationRequested() {
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   420
            cancellationWasRequested = true;
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   421
            return false;
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   422
        }
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   423
    }
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   424
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   425
    /**
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   426
     * {@link Sink} for implementing sort on SIZED int streams.
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   427
     */
24258
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   428
    private static final class SizedIntSortingSink extends AbstractIntSortingSink {
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   429
        private int[] array;
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   430
        private int offset;
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   431
19593
ce0cd954351c 8023681: Fix raw type warning caused by Sink
henryjen
parents: 19220
diff changeset
   432
        SizedIntSortingSink(Sink<? super Integer> downstream) {
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   433
            super(downstream);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   434
        }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   435
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   436
        @Override
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   437
        public void begin(long size) {
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   438
            if (size >= Nodes.MAX_ARRAY_SIZE)
20507
8498104f92c3 8025534: Unsafe typecast in java.util.stream.Streams.Nodes
psandoz
parents: 20503
diff changeset
   439
                throw new IllegalArgumentException(Nodes.BAD_SIZE);
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   440
            array = new int[(int) size];
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   441
        }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   442
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   443
        @Override
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   444
        public void end() {
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   445
            Arrays.sort(array, 0, offset);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   446
            downstream.begin(offset);
24258
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   447
            if (!cancellationWasRequested) {
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   448
                for (int i = 0; i < offset; i++)
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   449
                    downstream.accept(array[i]);
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   450
            }
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   451
            else {
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   452
                for (int i = 0; i < offset && !downstream.cancellationRequested(); i++)
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   453
                    downstream.accept(array[i]);
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   454
            }
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   455
            downstream.end();
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   456
            array = null;
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   457
        }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   458
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   459
        @Override
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   460
        public void accept(int t) {
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   461
            array[offset++] = t;
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   462
        }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   463
    }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   464
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   465
    /**
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   466
     * {@link Sink} for implementing sort on int streams.
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   467
     */
24258
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   468
    private static final class IntSortingSink extends AbstractIntSortingSink {
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   469
        private SpinedBuffer.OfInt b;
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   470
19593
ce0cd954351c 8023681: Fix raw type warning caused by Sink
henryjen
parents: 19220
diff changeset
   471
        IntSortingSink(Sink<? super Integer> sink) {
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   472
            super(sink);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   473
        }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   474
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   475
        @Override
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   476
        public void begin(long size) {
20503
074dd13d9cdf 8025535: Unsafe typecast in java.util.stream.SortedOps
psandoz
parents: 19593
diff changeset
   477
            if (size >= Nodes.MAX_ARRAY_SIZE)
20507
8498104f92c3 8025534: Unsafe typecast in java.util.stream.Streams.Nodes
psandoz
parents: 20503
diff changeset
   478
                throw new IllegalArgumentException(Nodes.BAD_SIZE);
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   479
            b = (size > 0) ? new SpinedBuffer.OfInt((int) size) : new SpinedBuffer.OfInt();
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   480
        }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   481
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   482
        @Override
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   483
        public void end() {
18171
2725a30c1a02 8016251: Balanced spliterator for SpinedBuffer
psandoz
parents: 17182
diff changeset
   484
            int[] ints = b.asPrimitiveArray();
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   485
            Arrays.sort(ints);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   486
            downstream.begin(ints.length);
24258
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   487
            if (!cancellationWasRequested) {
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   488
                for (int anInt : ints)
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   489
                    downstream.accept(anInt);
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   490
            }
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   491
            else {
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   492
                for (int anInt : ints) {
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   493
                    if (downstream.cancellationRequested()) break;
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   494
                    downstream.accept(anInt);
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   495
                }
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   496
            }
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   497
            downstream.end();
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   498
        }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   499
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   500
        @Override
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   501
        public void accept(int t) {
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   502
            b.accept(t);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   503
        }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   504
    }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   505
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   506
    /**
24258
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   507
     * Abstract {@link Sink} for implementing sort on long streams.
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   508
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 25859
diff changeset
   509
    private abstract static class AbstractLongSortingSink extends Sink.ChainedLong<Long> {
24258
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   510
        protected boolean cancellationWasRequested;
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   511
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   512
        AbstractLongSortingSink(Sink<? super Long> downstream) {
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   513
            super(downstream);
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   514
        }
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   515
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   516
        @Override
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   517
        public final boolean cancellationRequested() {
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   518
            cancellationWasRequested = true;
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   519
            return false;
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   520
        }
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   521
    }
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   522
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   523
    /**
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   524
     * {@link Sink} for implementing sort on SIZED long streams.
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   525
     */
24258
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   526
    private static final class SizedLongSortingSink extends AbstractLongSortingSink {
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   527
        private long[] array;
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   528
        private int offset;
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   529
19593
ce0cd954351c 8023681: Fix raw type warning caused by Sink
henryjen
parents: 19220
diff changeset
   530
        SizedLongSortingSink(Sink<? super Long> downstream) {
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   531
            super(downstream);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   532
        }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   533
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   534
        @Override
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   535
        public void begin(long size) {
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   536
            if (size >= Nodes.MAX_ARRAY_SIZE)
20507
8498104f92c3 8025534: Unsafe typecast in java.util.stream.Streams.Nodes
psandoz
parents: 20503
diff changeset
   537
                throw new IllegalArgumentException(Nodes.BAD_SIZE);
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   538
            array = new long[(int) size];
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   539
        }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   540
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   541
        @Override
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   542
        public void end() {
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   543
            Arrays.sort(array, 0, offset);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   544
            downstream.begin(offset);
24258
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   545
            if (!cancellationWasRequested) {
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   546
                for (int i = 0; i < offset; i++)
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   547
                    downstream.accept(array[i]);
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   548
            }
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   549
            else {
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   550
                for (int i = 0; i < offset && !downstream.cancellationRequested(); i++)
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   551
                    downstream.accept(array[i]);
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   552
            }
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   553
            downstream.end();
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   554
            array = null;
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   555
        }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   556
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   557
        @Override
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   558
        public void accept(long t) {
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   559
            array[offset++] = t;
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   560
        }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   561
    }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   562
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   563
    /**
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   564
     * {@link Sink} for implementing sort on long streams.
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   565
     */
24258
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   566
    private static final class LongSortingSink extends AbstractLongSortingSink {
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   567
        private SpinedBuffer.OfLong b;
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   568
19593
ce0cd954351c 8023681: Fix raw type warning caused by Sink
henryjen
parents: 19220
diff changeset
   569
        LongSortingSink(Sink<? super Long> sink) {
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   570
            super(sink);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   571
        }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   572
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   573
        @Override
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   574
        public void begin(long size) {
20503
074dd13d9cdf 8025535: Unsafe typecast in java.util.stream.SortedOps
psandoz
parents: 19593
diff changeset
   575
            if (size >= Nodes.MAX_ARRAY_SIZE)
20507
8498104f92c3 8025534: Unsafe typecast in java.util.stream.Streams.Nodes
psandoz
parents: 20503
diff changeset
   576
                throw new IllegalArgumentException(Nodes.BAD_SIZE);
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   577
            b = (size > 0) ? new SpinedBuffer.OfLong((int) size) : new SpinedBuffer.OfLong();
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   578
        }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   579
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   580
        @Override
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   581
        public void end() {
18171
2725a30c1a02 8016251: Balanced spliterator for SpinedBuffer
psandoz
parents: 17182
diff changeset
   582
            long[] longs = b.asPrimitiveArray();
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   583
            Arrays.sort(longs);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   584
            downstream.begin(longs.length);
24258
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   585
            if (!cancellationWasRequested) {
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   586
                for (long aLong : longs)
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   587
                    downstream.accept(aLong);
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   588
            }
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   589
            else {
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   590
                for (long aLong : longs) {
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   591
                    if (downstream.cancellationRequested()) break;
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   592
                    downstream.accept(aLong);
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   593
                }
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   594
            }
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   595
            downstream.end();
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   596
        }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   597
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   598
        @Override
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   599
        public void accept(long t) {
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   600
            b.accept(t);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   601
        }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   602
    }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   603
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   604
    /**
24258
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   605
     * Abstract {@link Sink} for implementing sort on long streams.
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   606
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 25859
diff changeset
   607
    private abstract static class AbstractDoubleSortingSink extends Sink.ChainedDouble<Double> {
24258
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   608
        protected boolean cancellationWasRequested;
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   609
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   610
        AbstractDoubleSortingSink(Sink<? super Double> downstream) {
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   611
            super(downstream);
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   612
        }
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   613
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   614
        @Override
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   615
        public final boolean cancellationRequested() {
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   616
            cancellationWasRequested = true;
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   617
            return false;
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   618
        }
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   619
    }
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   620
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   621
    /**
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   622
     * {@link Sink} for implementing sort on SIZED double streams.
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   623
     */
24258
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   624
    private static final class SizedDoubleSortingSink extends AbstractDoubleSortingSink {
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   625
        private double[] array;
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   626
        private int offset;
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   627
19593
ce0cd954351c 8023681: Fix raw type warning caused by Sink
henryjen
parents: 19220
diff changeset
   628
        SizedDoubleSortingSink(Sink<? super Double> downstream) {
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   629
            super(downstream);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   630
        }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   631
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   632
        @Override
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   633
        public void begin(long size) {
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   634
            if (size >= Nodes.MAX_ARRAY_SIZE)
20507
8498104f92c3 8025534: Unsafe typecast in java.util.stream.Streams.Nodes
psandoz
parents: 20503
diff changeset
   635
                throw new IllegalArgumentException(Nodes.BAD_SIZE);
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   636
            array = new double[(int) size];
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   637
        }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   638
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   639
        @Override
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   640
        public void end() {
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   641
            Arrays.sort(array, 0, offset);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   642
            downstream.begin(offset);
24258
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   643
            if (!cancellationWasRequested) {
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   644
                for (int i = 0; i < offset; i++)
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   645
                    downstream.accept(array[i]);
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   646
            }
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   647
            else {
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   648
                for (int i = 0; i < offset && !downstream.cancellationRequested(); i++)
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   649
                    downstream.accept(array[i]);
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   650
            }
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   651
            downstream.end();
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   652
            array = null;
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   653
        }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   654
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   655
        @Override
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   656
        public void accept(double t) {
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   657
            array[offset++] = t;
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   658
        }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   659
    }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   660
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   661
    /**
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   662
     * {@link Sink} for implementing sort on double streams.
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   663
     */
24258
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   664
    private static final class DoubleSortingSink extends AbstractDoubleSortingSink {
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   665
        private SpinedBuffer.OfDouble b;
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   666
19593
ce0cd954351c 8023681: Fix raw type warning caused by Sink
henryjen
parents: 19220
diff changeset
   667
        DoubleSortingSink(Sink<? super Double> sink) {
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   668
            super(sink);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   669
        }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   670
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   671
        @Override
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   672
        public void begin(long size) {
20503
074dd13d9cdf 8025535: Unsafe typecast in java.util.stream.SortedOps
psandoz
parents: 19593
diff changeset
   673
            if (size >= Nodes.MAX_ARRAY_SIZE)
20507
8498104f92c3 8025534: Unsafe typecast in java.util.stream.Streams.Nodes
psandoz
parents: 20503
diff changeset
   674
                throw new IllegalArgumentException(Nodes.BAD_SIZE);
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   675
            b = (size > 0) ? new SpinedBuffer.OfDouble((int) size) : new SpinedBuffer.OfDouble();
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   676
        }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   677
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   678
        @Override
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   679
        public void end() {
18171
2725a30c1a02 8016251: Balanced spliterator for SpinedBuffer
psandoz
parents: 17182
diff changeset
   680
            double[] doubles = b.asPrimitiveArray();
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   681
            Arrays.sort(doubles);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   682
            downstream.begin(doubles.length);
24258
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   683
            if (!cancellationWasRequested) {
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   684
                for (double aDouble : doubles)
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   685
                    downstream.accept(aDouble);
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   686
            }
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   687
            else {
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   688
                for (double aDouble : doubles) {
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   689
                    if (downstream.cancellationRequested()) break;
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   690
                    downstream.accept(aDouble);
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   691
                }
0e9ab834f44a 8042355: stream with sorted() causes downstream ops not to be lazy
psandoz
parents: 22297
diff changeset
   692
            }
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   693
            downstream.end();
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   694
        }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   695
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   696
        @Override
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   697
        public void accept(double t) {
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   698
            b.accept(t);
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   699
        }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   700
    }
b786c0de868c 8011920: Main streams implementation
mduigou
parents:
diff changeset
   701
}