Skip to content

Commit 458897d

Browse files
committedSep 4, 2020
Fix consistency issue in builder
1 parent 5a9f623 commit 458897d

File tree

2 files changed

+52
-43
lines changed

2 files changed

+52
-43
lines changed
 

‎src/java.base/share/classes/java/lang/Thread.java

+16-29
Original file line numberDiff line numberDiff line change
@@ -754,16 +754,11 @@ public static Builder builder() {
754754
public interface Builder {
755755

756756
/**
757-
* Sets the thread group.
758-
*
759-
* <p> The thread group for threads that are scheduled by the Java virtual
760-
* machine threads does not support all features of regular thread groups.
761-
* The thread group can only be set for threads that are scheduled by
762-
* the operating system.
763-
*
757+
* Sets the thread group. The thread group of a virtual thread cannot
758+
* be selected at build time. Setting the thread group of a virtual
759+
* thread has no effect.
764760
* @param group the thread group
765761
* @return this builder
766-
* @throws IllegalStateException if this is a builder for a virtual thread
767762
*/
768763
Builder group(ThreadGroup group);
769764

@@ -789,7 +784,6 @@ public interface Builder {
789784
* the operating system. The scheduler will be selected when the thread
790785
* is {@linkplain #build() created} or {@linkplain #start() started}.
791786
* @return this builder
792-
* @throws IllegalStateException if a thread group has been set
793787
*/
794788
Builder virtual();
795789

@@ -806,7 +800,6 @@ public interface Builder {
806800
* task on the <em>current thread</em>.
807801
* @param scheduler the scheduler or {@code null} for the default scheduler
808802
* @return this builder
809-
* @throws IllegalStateException if a thread group has been set
810803
*/
811804
Builder virtual(Executor scheduler);
812805

@@ -815,7 +808,6 @@ public interface Builder {
815808
* a thread-local with the {@link ThreadLocal#set(Object)} method then
816809
* {@code UnsupportedOperationException} is thrown.
817810
* @return this builder
818-
* @throws IllegalStateException if inheritThreadLocals has already been set
819811
* @see ThreadLocal#set(Object)
820812
*/
821813
Builder disallowThreadLocals();
@@ -824,16 +816,16 @@ public interface Builder {
824816
* Inherit threads-locals. Thread locals are inherited when the {@code Thread}
825817
* is created with the {@link #build() build} method or when the thread
826818
* factory {@link ThreadFactory#newThread(Runnable) newThread} method
827-
* is invoked.
819+
* is invoked. This method has no effect when thread locals are {@linkplain
820+
* #disallowThreadLocals() disallowed}.
828821
* @return this builder
829-
* @throws IllegalStateException if disallowThreadLocals has already been set
830822
*/
831823
Builder inheritThreadLocals();
832824

833825
/**
834826
* Sets the daemon status.
835827
* The {@link #isDaemon() daemon status} of virtual threads is always {@code true}.
836-
* Setting the daemon status at build time has no effect.
828+
* Setting the daemon status of a virtual thread has no effect.
837829
* @param on {@code true} to create daemon threads
838830
* @return this builder
839831
*/
@@ -842,7 +834,7 @@ public interface Builder {
842834
/**
843835
* Sets the thread priority.
844836
* The priority of virtual threads is always {@linkplain Thread#NORM_PRIORITY}.
845-
* Setting the priority of a virtual thread at build time has no effect.
837+
* Setting the priority of a virtual thread has no effect.
846838
* @param priority priority
847839
* @return this builder
848840
* @throws IllegalArgumentException if the priority is less than
@@ -977,9 +969,8 @@ private int characteristics() {
977969
@Override
978970
public Builder group(ThreadGroup group) {
979971
Objects.requireNonNull(group);
980-
if (virtual)
981-
throw new IllegalStateException();
982-
this.group = group;
972+
if (!virtual)
973+
this.group = group;
983974
return this;
984975
}
985976

@@ -1002,37 +993,33 @@ public Builder name(String prefix, int start) {
1002993

1003994
@Override
1004995
public Builder virtual() {
1005-
if (group != null)
1006-
throw new IllegalStateException();
1007-
this.virtual = true;
996+
this.group = null;
1008997
this.scheduler = null;
998+
this.virtual = true;
1009999
return this;
10101000
}
10111001

10121002
@Override
10131003
public Builder virtual(Executor scheduler) {
1014-
if (group != null)
1015-
throw new IllegalStateException();
10161004
if (scheduler == null)
10171005
scheduler = VirtualThread.defaultScheduler();
1018-
this.virtual = true;
1006+
this.group = null;
10191007
this.scheduler = scheduler;
1008+
this.virtual = true;
10201009
return this;
10211010
}
10221011

10231012
@Override
10241013
public Builder disallowThreadLocals() {
1025-
if (inheritThreadLocals)
1026-
throw new IllegalStateException();
10271014
this.disallowThreadLocals = true;
1015+
this.inheritThreadLocals = false;
10281016
return this;
10291017
}
10301018

10311019
@Override
10321020
public Builder inheritThreadLocals() {
1033-
if (disallowThreadLocals)
1034-
throw new IllegalStateException();
1035-
this.inheritThreadLocals = true;
1021+
if (!disallowThreadLocals)
1022+
this.inheritThreadLocals = true;
10361023
return this;
10371024
}
10381025

‎test/jdk/java/lang/Thread/BuilderTest.java

+36-14
Original file line numberDiff line numberDiff line change
@@ -222,15 +222,21 @@ public void testThreadGroup1() {
222222
LockSupport.unpark(thread2);
223223
}
224224
}
225-
public void testThreadGroup2() {
226-
ThreadGroup group = new ThreadGroup("groupies");
227225

228-
Thread.Builder builder1 = Thread.builder().virtual();
229-
assertThrows(IllegalStateException.class, () -> builder1.group(group));
226+
public void testThreadGroup2() {
227+
// thread group for virtual threads
228+
ThreadGroup vgroup = Thread.builder()
229+
.virtual()
230+
.task(() -> { })
231+
.build().getThreadGroup();
230232

231-
Thread.Builder builder2 = Thread.builder().group(group);
232-
assertThrows(IllegalStateException.class, () -> builder2.virtual());
233+
Thread thread = Thread.builder()
234+
.virtual()
235+
.group(new ThreadGroup("groupies"))
236+
.task(() -> { })
237+
.build();
233238

239+
assertTrue(thread.getThreadGroup() == vgroup);
234240
}
235241

236242
// Executor
@@ -404,7 +410,6 @@ class FooException extends RuntimeException { }
404410
assertTrue(exceptionRef.get() instanceof FooException);
405411
}
406412

407-
408413
static final ThreadLocal<Object> LOCAL = new ThreadLocal<>();
409414
static final ThreadLocal<Object> INHERITED_LOCAL = new InheritableThreadLocal<>();
410415

@@ -431,7 +436,6 @@ private void testThreadLocals(Thread.Builder builder) throws Exception {
431436
thread2.join();
432437
assertTrue(done.get());
433438

434-
435439
done.set(false);
436440
Thread thread3 = builder.factory().newThread(task);
437441
thread3.start();
@@ -514,7 +518,6 @@ private void testInheritedThreadLocals(Thread.Builder builder) throws Exception
514518
thread2.join();
515519
assertTrue(done.get());
516520

517-
518521
done.set(false);
519522
Thread thread3 = builder.factory().newThread(task);
520523
thread3.start();
@@ -543,7 +546,6 @@ private void testNoInheritedThreadLocals(Thread.Builder builder) throws Exceptio
543546
thread2.join();
544547
assertTrue(done.get());
545548

546-
547549
done.set(false);
548550
Thread thread3 = builder.factory().newThread(task);
549551
thread3.start();
@@ -557,17 +559,37 @@ public void testInheritedThreadLocals1() throws Exception {
557559
}
558560

559561
public void testInheritedThreadLocals2() throws Exception {
560-
Thread.Builder builder = Thread.builder().virtual().inheritThreadLocals();
561-
testInheritedThreadLocals(builder);
562+
Thread.Builder builder = Thread.builder()
563+
.inheritThreadLocals()
564+
.disallowThreadLocals();
565+
testNoInheritedThreadLocals(builder);
562566
}
563567

564568
public void testInheritedThreadLocals3() throws Exception {
565-
Thread.Builder builder = Thread.builder();
569+
Thread.Builder builder = Thread.builder()
570+
.disallowThreadLocals()
571+
.inheritThreadLocals();
566572
testNoInheritedThreadLocals(builder);
567573
}
568574

569575
public void testInheritedThreadLocals4() throws Exception {
570-
Thread.Builder builder = Thread.builder().virtual();
576+
Thread.Builder builder = Thread.builder().virtual().inheritThreadLocals();
577+
testInheritedThreadLocals(builder);
578+
}
579+
580+
public void testInheritedThreadLocals5() throws Exception {
581+
Thread.Builder builder = Thread.builder()
582+
.virtual()
583+
.inheritThreadLocals()
584+
.disallowThreadLocals();
585+
testNoInheritedThreadLocals(builder);
586+
}
587+
588+
public void testInheritedThreadLocals6() throws Exception {
589+
Thread.Builder builder = Thread.builder()
590+
.virtual()
591+
.disallowThreadLocals()
592+
.inheritThreadLocals();
571593
testNoInheritedThreadLocals(builder);
572594
}
573595

0 commit comments

Comments
 (0)
Please sign in to comment.