mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 06:45:07 +02:00
8284161: Implementation of Virtual Threads (Preview)
Co-authored-by: Ron Pressler <rpressler@openjdk.org> Co-authored-by: Alan Bateman <alanb@openjdk.org> Co-authored-by: Erik Österlund <eosterlund@openjdk.org> Co-authored-by: Andrew Haley <aph@openjdk.org> Co-authored-by: Rickard Bäckman <rbackman@openjdk.org> Co-authored-by: Markus Grönlund <mgronlun@openjdk.org> Co-authored-by: Leonid Mesnik <lmesnik@openjdk.org> Co-authored-by: Serguei Spitsyn <sspitsyn@openjdk.org> Co-authored-by: Chris Plummer <cjplummer@openjdk.org> Co-authored-by: Coleen Phillimore <coleenp@openjdk.org> Co-authored-by: Robbin Ehn <rehn@openjdk.org> Co-authored-by: Stefan Karlsson <stefank@openjdk.org> Co-authored-by: Thomas Schatzl <tschatzl@openjdk.org> Co-authored-by: Sergey Kuksenko <skuksenko@openjdk.org> Reviewed-by: lancea, eosterlund, rehn, sspitsyn, stefank, tschatzl, dfuchs, lmesnik, dcubed, kevinw, amenkov, dlong, mchung, psandoz, bpb, coleenp, smarks, egahlin, mseledtsov, coffeys, darcy
This commit is contained in:
parent
5212535a27
commit
9583e3657e
1133 changed files with 95935 additions and 8335 deletions
359
src/java.base/share/classes/java/lang/ThreadBuilders.java
Normal file
359
src/java.base/share/classes/java/lang/ThreadBuilders.java
Normal file
|
@ -0,0 +1,359 @@
|
|||
/*
|
||||
* Copyright (c) 2021, 2022, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package java.lang;
|
||||
|
||||
import java.lang.Thread.Builder;
|
||||
import java.lang.Thread.Builder.OfPlatform;
|
||||
import java.lang.Thread.Builder.OfVirtual;
|
||||
import java.lang.Thread.UncaughtExceptionHandler;
|
||||
import java.lang.invoke.MethodHandles;
|
||||
import java.lang.invoke.VarHandle;
|
||||
import java.util.Objects;
|
||||
import java.util.concurrent.Executor;
|
||||
import java.util.concurrent.ThreadFactory;
|
||||
|
||||
/**
|
||||
* Defines static methods to create platform and virtual thread builders.
|
||||
*/
|
||||
class ThreadBuilders {
|
||||
|
||||
/**
|
||||
* Base implementation of ThreadBuilder.
|
||||
*/
|
||||
static abstract non-sealed
|
||||
class BaseThreadBuilder<T extends Builder> implements Builder {
|
||||
private String name;
|
||||
private long counter;
|
||||
private int characteristics;
|
||||
private UncaughtExceptionHandler uhe;
|
||||
|
||||
String name() {
|
||||
return name;
|
||||
}
|
||||
|
||||
long counter() {
|
||||
return counter;
|
||||
}
|
||||
|
||||
int characteristics() {
|
||||
return characteristics;
|
||||
}
|
||||
|
||||
UncaughtExceptionHandler uncaughtExceptionHandler() {
|
||||
return uhe;
|
||||
}
|
||||
|
||||
String nextThreadName() {
|
||||
if (name != null && counter >= 0) {
|
||||
return name + (counter++);
|
||||
} else {
|
||||
return name;
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
@SuppressWarnings("unchecked")
|
||||
public T name(String name) {
|
||||
this.name = Objects.requireNonNull(name);
|
||||
this.counter = -1;
|
||||
return (T) this;
|
||||
}
|
||||
|
||||
@Override
|
||||
@SuppressWarnings("unchecked")
|
||||
public T name(String prefix, long start) {
|
||||
Objects.requireNonNull(prefix);
|
||||
if (start < 0)
|
||||
throw new IllegalArgumentException("'start' is negative");
|
||||
this.name = prefix;
|
||||
this.counter = start;
|
||||
return (T) this;
|
||||
}
|
||||
|
||||
@Override
|
||||
@SuppressWarnings("unchecked")
|
||||
public T allowSetThreadLocals(boolean allow) {
|
||||
if (allow) {
|
||||
characteristics &= ~Thread.NO_THREAD_LOCALS;
|
||||
} else {
|
||||
characteristics |= Thread.NO_THREAD_LOCALS;
|
||||
}
|
||||
return (T) this;
|
||||
}
|
||||
|
||||
@Override
|
||||
@SuppressWarnings("unchecked")
|
||||
public T inheritInheritableThreadLocals(boolean inherit) {
|
||||
if (inherit) {
|
||||
characteristics &= ~Thread.NO_INHERIT_THREAD_LOCALS;
|
||||
} else {
|
||||
characteristics |= Thread.NO_INHERIT_THREAD_LOCALS;
|
||||
}
|
||||
return (T) this;
|
||||
}
|
||||
|
||||
@Override
|
||||
@SuppressWarnings("unchecked")
|
||||
public T uncaughtExceptionHandler(UncaughtExceptionHandler ueh) {
|
||||
this.uhe = Objects.requireNonNull(ueh);
|
||||
return (T) this;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* ThreadBuilder.OfPlatform implementation.
|
||||
*/
|
||||
static final class PlatformThreadBuilder
|
||||
extends BaseThreadBuilder<OfPlatform> implements OfPlatform {
|
||||
private ThreadGroup group;
|
||||
private boolean daemon;
|
||||
private boolean daemonChanged;
|
||||
private int priority;
|
||||
private long stackSize;
|
||||
|
||||
@Override
|
||||
String nextThreadName() {
|
||||
String name = super.nextThreadName();
|
||||
return (name != null) ? name : Thread.genThreadName();
|
||||
}
|
||||
|
||||
@Override
|
||||
public OfPlatform group(ThreadGroup group) {
|
||||
this.group = Objects.requireNonNull(group);
|
||||
return this;
|
||||
}
|
||||
|
||||
@Override
|
||||
public OfPlatform daemon(boolean on) {
|
||||
daemon = on;
|
||||
daemonChanged = true;
|
||||
return this;
|
||||
}
|
||||
|
||||
@Override
|
||||
public OfPlatform priority(int priority) {
|
||||
if (priority < Thread.MIN_PRIORITY || priority > Thread.MAX_PRIORITY)
|
||||
throw new IllegalArgumentException();
|
||||
this.priority = priority;
|
||||
return this;
|
||||
}
|
||||
|
||||
@Override
|
||||
public OfPlatform stackSize(long stackSize) {
|
||||
if (stackSize < 0L)
|
||||
throw new IllegalArgumentException();
|
||||
this.stackSize = stackSize;
|
||||
return this;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Thread unstarted(Runnable task) {
|
||||
Objects.requireNonNull(task);
|
||||
String name = nextThreadName();
|
||||
var thread = new Thread(group, name, characteristics(), task, stackSize, null);
|
||||
if (daemonChanged)
|
||||
thread.daemon(daemon);
|
||||
if (priority != 0)
|
||||
thread.priority(priority);
|
||||
UncaughtExceptionHandler uhe = uncaughtExceptionHandler();
|
||||
if (uhe != null)
|
||||
thread.uncaughtExceptionHandler(uhe);
|
||||
return thread;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Thread start(Runnable task) {
|
||||
Thread thread = unstarted(task);
|
||||
thread.start();
|
||||
return thread;
|
||||
}
|
||||
|
||||
@Override
|
||||
public ThreadFactory factory() {
|
||||
return new PlatformThreadFactory(group, name(), counter(), characteristics(),
|
||||
daemonChanged, daemon, priority, stackSize, uncaughtExceptionHandler());
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* ThreadBuilder.OfVirtual implementation.
|
||||
*/
|
||||
static final class VirtualThreadBuilder
|
||||
extends BaseThreadBuilder<OfVirtual> implements OfVirtual {
|
||||
private Executor scheduler; // set by tests
|
||||
|
||||
@Override
|
||||
public Thread unstarted(Runnable task) {
|
||||
Objects.requireNonNull(task);
|
||||
var thread = new VirtualThread(scheduler, nextThreadName(), characteristics(), task);
|
||||
UncaughtExceptionHandler uhe = uncaughtExceptionHandler();
|
||||
if (uhe != null)
|
||||
thread.uncaughtExceptionHandler(uhe);
|
||||
return thread;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Thread start(Runnable task) {
|
||||
Thread thread = unstarted(task);
|
||||
thread.start();
|
||||
return thread;
|
||||
}
|
||||
|
||||
@Override
|
||||
public ThreadFactory factory() {
|
||||
return new VirtualThreadFactory(scheduler, name(), counter(), characteristics(),
|
||||
uncaughtExceptionHandler());
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Base ThreadFactory implementation.
|
||||
*/
|
||||
private static abstract class BaseThreadFactory implements ThreadFactory {
|
||||
private static final VarHandle COUNT;
|
||||
static {
|
||||
try {
|
||||
MethodHandles.Lookup l = MethodHandles.lookup();
|
||||
COUNT = l.findVarHandle(BaseThreadFactory.class, "count", long.class);
|
||||
} catch (Exception e) {
|
||||
throw new InternalError(e);
|
||||
}
|
||||
}
|
||||
private final String name;
|
||||
private final int characteristics;
|
||||
private final UncaughtExceptionHandler uhe;
|
||||
|
||||
private final boolean hasCounter;
|
||||
private volatile long count;
|
||||
|
||||
BaseThreadFactory(String name,
|
||||
long start,
|
||||
int characteristics,
|
||||
UncaughtExceptionHandler uhe) {
|
||||
this.name = name;
|
||||
if (name != null && start >= 0) {
|
||||
this.hasCounter = true;
|
||||
this.count = start;
|
||||
} else {
|
||||
this.hasCounter = false;
|
||||
}
|
||||
this.characteristics = characteristics;
|
||||
this.uhe = uhe;
|
||||
}
|
||||
|
||||
int characteristics() {
|
||||
return characteristics;
|
||||
}
|
||||
|
||||
UncaughtExceptionHandler uncaughtExceptionHandler() {
|
||||
return uhe;
|
||||
}
|
||||
|
||||
String nextThreadName() {
|
||||
if (hasCounter) {
|
||||
return name + (long) COUNT.getAndAdd(this, 1);
|
||||
} else {
|
||||
return name;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* ThreadFactory for platform threads.
|
||||
*/
|
||||
private static class PlatformThreadFactory extends BaseThreadFactory {
|
||||
private final ThreadGroup group;
|
||||
private final boolean daemonChanged;
|
||||
private final boolean daemon;
|
||||
private final int priority;
|
||||
private final long stackSize;
|
||||
|
||||
PlatformThreadFactory(ThreadGroup group,
|
||||
String name,
|
||||
long start,
|
||||
int characteristics,
|
||||
boolean daemonChanged,
|
||||
boolean daemon,
|
||||
int priority,
|
||||
long stackSize,
|
||||
UncaughtExceptionHandler uhe) {
|
||||
super(name, start, characteristics, uhe);
|
||||
this.group = group;
|
||||
this.daemonChanged = daemonChanged;
|
||||
this.daemon = daemon;
|
||||
this.priority = priority;
|
||||
this.stackSize = stackSize;
|
||||
}
|
||||
|
||||
@Override
|
||||
String nextThreadName() {
|
||||
String name = super.nextThreadName();
|
||||
return (name != null) ? name : Thread.genThreadName();
|
||||
}
|
||||
|
||||
@Override
|
||||
public Thread newThread(Runnable task) {
|
||||
Objects.requireNonNull(task);
|
||||
String name = nextThreadName();
|
||||
Thread thread = new Thread(group, name, characteristics(), task, stackSize, null);
|
||||
if (daemonChanged)
|
||||
thread.daemon(daemon);
|
||||
if (priority != 0)
|
||||
thread.priority(priority);
|
||||
UncaughtExceptionHandler uhe = uncaughtExceptionHandler();
|
||||
if (uhe != null)
|
||||
thread.uncaughtExceptionHandler(uhe);
|
||||
return thread;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* ThreadFactory for virtual threads.
|
||||
*/
|
||||
private static class VirtualThreadFactory extends BaseThreadFactory {
|
||||
private final Executor scheduler;
|
||||
|
||||
VirtualThreadFactory(Executor scheduler,
|
||||
String name,
|
||||
long start,
|
||||
int characteristics,
|
||||
UncaughtExceptionHandler uhe) {
|
||||
super(name, start, characteristics, uhe);
|
||||
this.scheduler = scheduler;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Thread newThread(Runnable task) {
|
||||
Objects.requireNonNull(task);
|
||||
String name = nextThreadName();
|
||||
Thread thread = new VirtualThread(scheduler, name, characteristics(), task);
|
||||
UncaughtExceptionHandler uhe = uncaughtExceptionHandler();
|
||||
if (uhe != null)
|
||||
thread.uncaughtExceptionHandler(uhe);
|
||||
return thread;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue