Skip to content

Commit ef0dc25

Browse files
author
Viktor Klang
committedNov 11, 2024
8342707: Prepare Gatherers for graduation from Preview
Reviewed-by: alanb, liach
1 parent 889f906 commit ef0dc25

24 files changed

+31
-50
lines changed
 

‎src/java.base/share/classes/java/util/stream/Gatherer.java

+4-9
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
*/
2525
package java.util.stream;
2626

27-
import jdk.internal.javac.PreviewFeature;
2827
import jdk.internal.vm.annotation.ForceInline;
2928

3029
import java.util.*;
@@ -195,9 +194,8 @@
195194
* @param <A> the potentially mutable state type of the gatherer operation
196195
* (often hidden as an implementation detail)
197196
* @param <R> the type of output elements from the gatherer operation
198-
* @since 22
197+
* @since 24
199198
*/
200-
@PreviewFeature(feature = PreviewFeature.Feature.STREAM_GATHERERS)
201199
public interface Gatherer<T, A, R> {
202200
/**
203201
* A function that produces an instance of the intermediate state used for
@@ -481,10 +479,9 @@ static <T, A, R> Gatherer<T, A, R> of(
481479
* A Downstream object is the next stage in a pipeline of operations,
482480
* to which elements can be sent.
483481
* @param <T> the type of elements this downstream accepts
484-
* @since 22
482+
* @since 24
485483
*/
486484
@FunctionalInterface
487-
@PreviewFeature(feature = PreviewFeature.Feature.STREAM_GATHERERS)
488485
interface Downstream<T> {
489486

490487
/**
@@ -524,10 +521,9 @@ interface Downstream<T> {
524521
* @param <A> the type of state used by this integrator
525522
* @param <T> the type of elements this integrator consumes
526523
* @param <R> the type of results this integrator can produce
527-
* @since 22
524+
* @since 24
528525
*/
529526
@FunctionalInterface
530-
@PreviewFeature(feature = PreviewFeature.Feature.STREAM_GATHERERS)
531527
interface Integrator<A, T, R> {
532528
/**
533529
* Performs an action given: the current state, the next element, and
@@ -584,10 +580,9 @@ static <A, T, R> Greedy<A, T, R> ofGreedy(Greedy<A, T, R> greedy) {
584580
* @param <A> the type of state used by this integrator
585581
* @param <T> the type of elements this greedy integrator receives
586582
* @param <R> the type of results this greedy integrator can produce
587-
* @since 22
583+
* @since 24
588584
*/
589585
@FunctionalInterface
590-
@PreviewFeature(feature = PreviewFeature.Feature.STREAM_GATHERERS)
591586
interface Greedy<A, T, R> extends Integrator<A, T, R> { }
592587
}
593588
}

‎src/java.base/share/classes/java/util/stream/GathererOp.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
* The performance-critical code below contains some more complicated encodings:
4646
* therefore, make sure to run benchmarks to verify changes to prevent regressions.
4747
*
48-
* @since 22
48+
* @since 24
4949
*/
5050
final class GathererOp<T, A, R> extends ReferencePipeline<T, R> {
5151
@SuppressWarnings("unchecked")

‎src/java.base/share/classes/java/util/stream/Gatherers.java

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2023, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -25,7 +25,6 @@
2525
package java.util.stream;
2626

2727
import jdk.internal.access.SharedSecrets;
28-
import jdk.internal.javac.PreviewFeature;
2928
import jdk.internal.vm.annotation.ForceInline;
3029

3130
import java.util.ArrayDeque;
@@ -48,9 +47,8 @@
4847
* operations, such as windowing functions, folding functions,
4948
* transforming elements concurrently, etc.
5049
*
51-
* @since 22
50+
* @since 24
5251
*/
53-
@PreviewFeature(feature = PreviewFeature.Feature.STREAM_GATHERERS)
5452
public final class Gatherers {
5553
private Gatherers() { } // This class is not intended to be instantiated
5654

‎src/java.base/share/classes/java/util/stream/Stream.java

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2012, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2012, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -24,8 +24,6 @@
2424
*/
2525
package java.util.stream;
2626

27-
import jdk.internal.javac.PreviewFeature;
28-
2927
import java.nio.file.Files;
3028
import java.nio.file.Path;
3129
import java.util.*;
@@ -1096,9 +1094,8 @@ <U> U reduce(U identity,
10961094
* @param <R> The element type of the new stream
10971095
* @param gatherer a gatherer
10981096
* @return the new stream
1099-
* @since 22
1097+
* @since 24
11001098
*/
1101-
@PreviewFeature(feature = PreviewFeature.Feature.STREAM_GATHERERS)
11021099
default <R> Stream<R> gather(Gatherer<? super T, ?, R> gatherer) {
11031100
return StreamSupport.stream(spliterator(), isParallel())
11041101
.gather(gatherer)

‎src/java.base/share/classes/jdk/internal/javac/PreviewFeature.java

-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ public enum Feature {
7676
STRUCTURED_CONCURRENCY,
7777
@JEP(number=466, title="ClassFile API", status="Second Preview")
7878
CLASSFILE_API,
79-
@JEP(number=473, title="Stream Gatherers", status="Second Preview")
8079
STREAM_GATHERERS,
8180
@JEP(number=476, title="Module Import Declarations", status="Preview")
8281
MODULE_IMPORTS,

‎test/jdk/java/util/stream/GathererAPITest.java

-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@
3535
/**
3636
* @test
3737
* @summary Testing public API of Gatherer
38-
* @enablePreview
3938
* @run junit GathererAPITest
4039
*/
4140

‎test/jdk/java/util/stream/GathererShortCircuitTest.java

-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
* @test
3333
* @bug 8328316
3434
* @summary Testing Gatherer behavior under short circuiting
35-
* @enablePreview
3635
* @run junit GathererShortCircuitTest
3736
*/
3837

‎test/jdk/java/util/stream/GathererTest.java

-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@
3737
/**
3838
* @test
3939
* @summary Testing the Gatherer contract
40-
* @enablePreview
4140
* @library /lib/testlibrary/bootlib
4241
* @build java.base/java.util.stream.DefaultMethodStreams
4342
* @run junit GathererTest

‎test/jdk/java/util/stream/GatherersFoldTest.java

-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@
3434
/**
3535
* @test
3636
* @summary Tests the API and contract of Gatherers.fold
37-
* @enablePreview
3837
* @run junit GatherersFoldTest
3938
*/
4039

‎test/jdk/java/util/stream/GatherersMapConcurrentTest.java

-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@
3838
/**
3939
* @test
4040
* @summary Tests the API and contract of Gatherers.mapConcurrent
41-
* @enablePreview
4241
* @run junit GatherersMapConcurrentTest
4342
*/
4443

‎test/jdk/java/util/stream/GatherersScanTest.java

-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@
3535
/**
3636
* @test
3737
* @summary Tests the API and contract of Gatherers.scan
38-
* @enablePreview
3938
* @run junit GatherersScanTest
4039
*/
4140

‎test/jdk/java/util/stream/GatherersWindowFixedTest.java

-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
/**
3737
* @test
3838
* @summary Tests the API and contract of Gatherers.windowFixed
39-
* @enablePreview
4039
* @run junit GatherersWindowFixedTest
4140
*/
4241

‎test/jdk/java/util/stream/GatherersWindowSlidingTest.java

-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
/**
3737
* @test
3838
* @summary Tests the API and contract of Gatherers.windowSliding
39-
* @enablePreview
4039
* @run junit GatherersWindowSlidingTest
4140
*/
4241

‎test/micro/org/openjdk/bench/java/util/stream/ops/ref/GatherFMRPar.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2023, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -49,7 +49,7 @@
4949
@BenchmarkMode(Mode.Throughput)
5050
@Warmup(iterations = 4, time = 5, timeUnit = TimeUnit.SECONDS)
5151
@Measurement(iterations = 7, time = 5, timeUnit = TimeUnit.SECONDS)
52-
@Fork(jvmArgs = "--enable-preview", value = 1)
52+
@Fork(value = 1)
5353
@OutputTimeUnit(TimeUnit.SECONDS)
5454
@State(Scope.Thread)
5555
public class GatherFMRPar {

‎test/micro/org/openjdk/bench/java/util/stream/ops/ref/GatherFMRSeq.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2023, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -49,7 +49,7 @@
4949
@BenchmarkMode(Mode.Throughput)
5050
@Warmup(iterations = 4, time = 5, timeUnit = TimeUnit.SECONDS)
5151
@Measurement(iterations = 7, time = 5, timeUnit = TimeUnit.SECONDS)
52-
@Fork(jvmArgs = "--enable-preview", value = 1)
52+
@Fork(value = 1)
5353
@OutputTimeUnit(TimeUnit.SECONDS)
5454
@State(Scope.Thread)
5555
public class GatherFMRSeq {

‎test/micro/org/openjdk/bench/java/util/stream/ops/ref/GatherFlatMapInfinitySeq.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2023, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -48,7 +48,7 @@
4848
@BenchmarkMode(Mode.Throughput)
4949
@Warmup(iterations = 4, time = 5, timeUnit = TimeUnit.SECONDS)
5050
@Measurement(iterations = 7, time = 5, timeUnit = TimeUnit.SECONDS)
51-
@Fork(jvmArgs = "--enable-preview", value = 1)
51+
@Fork(value = 1)
5252
@OutputTimeUnit(TimeUnit.SECONDS)
5353
@State(Scope.Thread)
5454
public class GatherFlatMapInfinitySeq {

‎test/micro/org/openjdk/bench/java/util/stream/ops/ref/GatherFlatMapSeq.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2023, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -48,7 +48,7 @@
4848
@BenchmarkMode(Mode.Throughput)
4949
@Warmup(iterations = 4, time = 5, timeUnit = TimeUnit.SECONDS)
5050
@Measurement(iterations = 7, time = 5, timeUnit = TimeUnit.SECONDS)
51-
@Fork(jvmArgs = "--enable-preview", value = 1)
51+
@Fork(value = 1)
5252
@OutputTimeUnit(TimeUnit.SECONDS)
5353
@State(Scope.Thread)
5454
public class GatherFlatMapSeq {

‎test/micro/org/openjdk/bench/java/util/stream/ops/ref/GatherMapPar.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2023, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -48,7 +48,7 @@
4848
@BenchmarkMode(Mode.Throughput)
4949
@Warmup(iterations = 4, time = 5, timeUnit = TimeUnit.SECONDS)
5050
@Measurement(iterations = 7, time = 5, timeUnit = TimeUnit.SECONDS)
51-
@Fork(jvmArgs = "--enable-preview", value = 1)
51+
@Fork(value = 1)
5252
@OutputTimeUnit(TimeUnit.SECONDS)
5353
@State(Scope.Thread)
5454
public class GatherMapPar {

‎test/micro/org/openjdk/bench/java/util/stream/ops/ref/GatherMapSeq.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2023, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -48,7 +48,7 @@
4848
@BenchmarkMode(Mode.Throughput)
4949
@Warmup(iterations = 4, time = 5, timeUnit = TimeUnit.SECONDS)
5050
@Measurement(iterations = 7, time = 5, timeUnit = TimeUnit.SECONDS)
51-
@Fork(jvmArgs = "--enable-preview", value = 1)
51+
@Fork(value = 1)
5252
@OutputTimeUnit(TimeUnit.SECONDS)
5353
@State(Scope.Thread)
5454
public class GatherMapSeq {

‎test/micro/org/openjdk/bench/java/util/stream/ops/ref/GatherMiscPar.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2023, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -49,7 +49,7 @@
4949
@BenchmarkMode(Mode.Throughput)
5050
@Warmup(iterations = 4, time = 5, timeUnit = TimeUnit.SECONDS)
5151
@Measurement(iterations = 7, time = 5, timeUnit = TimeUnit.SECONDS)
52-
@Fork(jvmArgs = "--enable-preview", value = 1)
52+
@Fork(value = 1)
5353
@OutputTimeUnit(TimeUnit.SECONDS)
5454
@State(Scope.Thread)
5555
public class GatherMiscPar {

‎test/micro/org/openjdk/bench/java/util/stream/ops/ref/GatherMiscSeq.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2023, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -51,7 +51,7 @@
5151
@BenchmarkMode(Mode.Throughput)
5252
@Warmup(iterations = 4, time = 5, timeUnit = TimeUnit.SECONDS)
5353
@Measurement(iterations = 7, time = 5, timeUnit = TimeUnit.SECONDS)
54-
@Fork(jvmArgs = "--enable-preview", value = 1)
54+
@Fork(value = 1)
5555
@OutputTimeUnit(TimeUnit.SECONDS)
5656
@State(Scope.Thread)
5757
public class GatherMiscSeq {

‎test/micro/org/openjdk/bench/java/util/stream/ops/ref/GatherReducePar.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2023, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -49,7 +49,7 @@
4949
@BenchmarkMode(Mode.Throughput)
5050
@Warmup(iterations = 4, time = 5, timeUnit = TimeUnit.SECONDS)
5151
@Measurement(iterations = 7, time = 5, timeUnit = TimeUnit.SECONDS)
52-
@Fork(jvmArgs = "--enable-preview", value = 1)
52+
@Fork(value = 1)
5353
@OutputTimeUnit(TimeUnit.SECONDS)
5454
@State(Scope.Thread)
5555
public class GatherReducePar {

‎test/micro/org/openjdk/bench/java/util/stream/ops/ref/GatherReduceSeq.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2023, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -51,7 +51,7 @@
5151
@BenchmarkMode(Mode.Throughput)
5252
@Warmup(iterations = 4, time = 5, timeUnit = TimeUnit.SECONDS)
5353
@Measurement(iterations = 7, time = 5, timeUnit = TimeUnit.SECONDS)
54-
@Fork(jvmArgs = "--enable-preview", value = 1)
54+
@Fork(value = 1)
5555
@OutputTimeUnit(TimeUnit.SECONDS)
5656
@State(Scope.Thread)
5757
public class GatherReduceSeq {

‎test/micro/org/openjdk/bench/java/util/stream/ops/ref/GatherWhileOrdered.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2023, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -49,7 +49,7 @@
4949
@BenchmarkMode(Mode.Throughput)
5050
@Warmup(iterations = 4, time = 5, timeUnit = TimeUnit.SECONDS)
5151
@Measurement(iterations = 7, time = 5, timeUnit = TimeUnit.SECONDS)
52-
@Fork(jvmArgs = "--enable-preview", value = 1)
52+
@Fork(value = 1)
5353
@OutputTimeUnit(TimeUnit.SECONDS)
5454
@State(Scope.Thread)
5555
public class GatherWhileOrdered {

0 commit comments

Comments
 (0)
Please sign in to comment.