-
Notifications
You must be signed in to change notification settings - Fork 148
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
250 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
153 changes: 153 additions & 0 deletions
153
actor/src/main/scala/org/apache/pekko/dispatch/NewVirtualThreadPerTaskExecutor.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,153 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.apache.pekko.dispatch | ||
|
||
import java.util | ||
import java.util.Collections | ||
import java.util.concurrent._ | ||
import java.util.concurrent.atomic.AtomicInteger | ||
import java.util.concurrent.locks.ReentrantLock | ||
|
||
private[dispatch] class NewVirtualThreadPerTaskExecutor(threadFactory: ThreadFactory) extends AbstractExecutorService { | ||
import NewVirtualThreadPerTaskExecutor._ | ||
|
||
/** | ||
* 0 RUNNING | ||
* 1 SHUTDOWN | ||
* 2 TERMINATED | ||
*/ | ||
private val state = new AtomicInteger(RUNNING) | ||
private val virtualThreads = ConcurrentHashMap.newKeySet[Thread]() | ||
private val terminateLock = new ReentrantLock() | ||
private val terminatedCondition = terminateLock.newCondition() | ||
|
||
override def shutdown(): Unit = { | ||
shutdown(false) | ||
} | ||
|
||
private def shutdown(interrupt: Boolean): Unit = { | ||
if (!isShutdown) { | ||
terminateLock.lock() | ||
try { | ||
if (isTerminated) { | ||
() | ||
} else { | ||
if (state.compareAndSet(RUNNING, SHUTDOWN) && interrupt) { | ||
virtualThreads.forEach(thread => { | ||
if (!thread.isInterrupted) { | ||
thread.interrupt() | ||
} | ||
}) | ||
} | ||
tryTerminateAndSignal() | ||
} | ||
} finally { | ||
terminateLock.unlock() | ||
} | ||
} | ||
} | ||
|
||
private def tryTerminateAndSignal(): Unit = { | ||
if (isTerminated) { | ||
() | ||
} | ||
terminateLock.lock() | ||
try { | ||
if (isTerminated) { | ||
return | ||
} | ||
if (virtualThreads.isEmpty && state.compareAndSet(SHUTDOWN, TERMINATED)) { | ||
terminatedCondition.signalAll() | ||
} | ||
} finally { | ||
terminateLock.unlock() | ||
} | ||
} | ||
|
||
override def shutdownNow(): util.List[Runnable] = { | ||
shutdown(true) | ||
Collections.emptyList() | ||
} | ||
|
||
override def isShutdown: Boolean = state.get() >= SHUTDOWN | ||
|
||
override def isTerminated: Boolean = state.get() >= TERMINATED | ||
|
||
private def isRunning: Boolean = state.get() == RUNNING | ||
|
||
override def awaitTermination(timeout: Long, unit: TimeUnit): Boolean = { | ||
if (isTerminated) { | ||
return true | ||
} | ||
terminateLock.lock() | ||
try { | ||
var nanosRemaining = unit.toNanos(timeout) | ||
while (!isTerminated && nanosRemaining > 0) { | ||
nanosRemaining = terminatedCondition.awaitNanos(nanosRemaining) | ||
} | ||
} finally { | ||
terminateLock.unlock() | ||
} | ||
isTerminated | ||
} | ||
|
||
// TODO AS only this execute method is been used in `Dispatcher.scala`, so `submit` and other methods is not override. | ||
override def execute(command: Runnable): Unit = { | ||
if (state.get() >= SHUTDOWN) { | ||
throw new RejectedExecutionException("Shutdown") | ||
} | ||
var started = false; | ||
try { | ||
val thread = threadFactory.newThread(Task(this, command)) | ||
virtualThreads.add(thread) | ||
if (isRunning) { | ||
thread.start() | ||
started = true | ||
} else { | ||
onThreadExit(thread) | ||
} | ||
} finally { | ||
if (!started) { | ||
throw new RejectedExecutionException("Shutdown") | ||
} | ||
} | ||
} | ||
|
||
private def onThreadExit(thread: Thread): Unit = { | ||
virtualThreads.remove(thread) | ||
if (state.get() == SHUTDOWN) { | ||
tryTerminateAndSignal() | ||
} | ||
} | ||
} | ||
|
||
private[dispatch] object NewVirtualThreadPerTaskExecutor { | ||
private final val RUNNING = 0 | ||
private final val SHUTDOWN = 1 | ||
private final val TERMINATED = 2 | ||
|
||
private case class Task(executor: NewVirtualThreadPerTaskExecutor, runnable: Runnable) extends Runnable { | ||
override def run(): Unit = { | ||
try { | ||
runnable.run() | ||
} finally { | ||
executor.onThreadExit(Thread.currentThread()) | ||
} | ||
} | ||
} | ||
} |
50 changes: 50 additions & 0 deletions
50
actor/src/main/scala/org/apache/pekko/dispatch/VirtualThreadSupport.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.apache.pekko.dispatch | ||
|
||
import java.lang.invoke.{ MethodHandles, MethodType } | ||
|
||
|
||
import java.util.concurrent.ThreadFactory | ||
|
||
private[dispatch] object VirtualThreadSupport { | ||
|
||
/** | ||
* Returns if the current Runtime supports virtual threads. | ||
*/ | ||
def isSupported: Boolean = create("testIsSupported") ne null | ||
|
||
/** | ||
* Create a virtual thread factory, returns null when failed. | ||
*/ | ||
def create(prefix: String): ThreadFactory = | ||
try { | ||
val builderClass = ClassLoader.getSystemClassLoader.loadClass("java.lang.Thread$Builder") | ||
val ofVirtualClass = ClassLoader.getSystemClassLoader.loadClass("java.lang.Thread$Builder$OfVirtual") | ||
val lookup = MethodHandles.lookup | ||
val ofVirtualMethod = lookup.findStatic(classOf[Thread], "ofVirtual", MethodType.methodType(ofVirtualClass)) | ||
var builder = ofVirtualMethod.invoke() | ||
val nameMethod = lookup.findVirtual(ofVirtualClass, "name", | ||
MethodType.methodType(ofVirtualClass, classOf[String], classOf[Long])) | ||
val factoryMethod = lookup.findVirtual(builderClass, "factory", MethodType.methodType(classOf[ThreadFactory])) | ||
builder = nameMethod.invoke(builder, prefix + "-virtual-thread-", 0L) | ||
factoryMethod.invoke(builder).asInstanceOf[ThreadFactory] | ||
} catch { | ||
case _: Throwable => null | ||
} | ||
} |