1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390
|
/*
* Copyright (c) 2020, 2023, 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.
*
* 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.
*/
/**
* @test id=default
* @bug 8284161 8290562 8303242
* @summary Test java.lang.management.ThreadMXBean with virtual threads
* @modules java.base/java.lang:+open java.management
* @library /test/lib
* @run junit/othervm VirtualThreads
*/
/**
* @test id=no-vmcontinuations
* @requires vm.continuations
* @modules java.base/java.lang:+open java.management
* @library /test/lib
* @run junit/othervm -XX:+UnlockExperimentalVMOptions -XX:-VMContinuations VirtualThreads
*/
import java.lang.management.ManagementFactory;
import java.lang.management.ThreadInfo;
import java.lang.management.ThreadMXBean;
import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationTargetException;
import java.nio.channels.Selector;
import java.util.Arrays;
import java.util.Set;
import java.util.concurrent.Executor;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.atomic.AtomicReference;
import java.util.concurrent.locks.LockSupport;
import java.util.stream.Collectors;
import jdk.test.lib.thread.VThreadRunner;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.ValueSource;
import static org.junit.jupiter.api.Assertions.*;
import static org.junit.jupiter.api.Assumptions.*;
public class VirtualThreads {
/**
* Test that ThreadMXBean.dumpAllThreads does not include virtual threads.
*/
@ParameterizedTest
@ValueSource(ints = {0, Integer.MAX_VALUE})
void testDumpAllThreads(int maxDepth) {
Thread vthread = Thread.startVirtualThread(LockSupport::park);
try {
ThreadMXBean bean = ManagementFactory.getThreadMXBean();
ThreadInfo[] infos = bean.dumpAllThreads(false, false, maxDepth);
Set<Long> tids = Arrays.stream(infos)
.map(ThreadInfo::getThreadId)
.collect(Collectors.toSet());
// if current thread is a platform thread then it should be included
boolean expected = !Thread.currentThread().isVirtual();
assertEquals(expected, tids.contains(Thread.currentThread().threadId()));
// virtual thread should not be included
assertFalse(tids.contains(vthread.threadId()));
} finally {
LockSupport.unpark(vthread);
}
}
/**
* Test that ThreadMXBean::getAllThreadsIds does not include virtual threads.
*/
@Test
void testGetAllThreadIds() {
Thread vthread = Thread.startVirtualThread(LockSupport::park);
try {
long[] tids = ManagementFactory.getThreadMXBean().getAllThreadIds();
// if current thread is a platform thread then it should be included
boolean expected = !Thread.currentThread().isVirtual();
long currentTid = Thread.currentThread().threadId();
assertEquals(expected, Arrays.stream(tids).anyMatch(tid -> tid == currentTid));
// virtual thread should not be included
long vtid = vthread.threadId();
assertFalse(Arrays.stream(tids).anyMatch(tid -> tid == vtid));
} finally {
LockSupport.unpark(vthread);
}
}
/**
* Test that ThreadMXBean.getThreadInfo(long, maxDepth) returns null for a virtual
* thread.
*/
@ParameterizedTest
@ValueSource(ints = {0, Integer.MAX_VALUE})
void testGetThreadInfo1(int maxDepth) {
Thread vthread = Thread.startVirtualThread(LockSupport::park);
try {
long tid = vthread.threadId();
ThreadInfo info = ManagementFactory.getThreadMXBean().getThreadInfo(tid, maxDepth);
assertNull(info);
} finally {
LockSupport.unpark(vthread);
}
}
/**
* Test that ThreadMXBean.getThreadInfo(long, maxDepth) returns null when invoked
* by a virtual thread with its own thread id.
*/
@ParameterizedTest
@ValueSource(ints = {0, Integer.MAX_VALUE})
void testGetThreadInfo2(int maxDepth) throws Exception {
VThreadRunner.run(() -> {
long tid = Thread.currentThread().threadId();
ThreadInfo info = ManagementFactory.getThreadMXBean().getThreadInfo(tid, maxDepth);
assertNull(info);
});
}
/**
* Test that ThreadMXBean.getThreadInfo(long[], maxDepth) returns a null ThreadInfo
* for elements that correspond to a virtual thread.
*/
@ParameterizedTest
@ValueSource(ints = {0, Integer.MAX_VALUE})
void testGetThreadInfo3(int maxDepth) {
Thread vthread = Thread.startVirtualThread(LockSupport::park);
try {
long tid0 = Thread.currentThread().threadId();
long tid1 = vthread.threadId();
long[] tids = new long[] { tid0, tid1 };
ThreadInfo[] infos = ManagementFactory.getThreadMXBean().getThreadInfo(tids, maxDepth);
if (Thread.currentThread().isVirtual()) {
assertNull(infos[0]);
} else {
assertEquals(tid0, infos[0].getThreadId());
}
assertNull(infos[1]);
} finally {
LockSupport.unpark(vthread);
}
}
/**
* Test that ThreadMXBean.getThreadInfo(long[], boolean, boolean, maxDepth) returns
* a null ThreadInfo for elements that correspond to a virtual thread.
*/
@ParameterizedTest
@ValueSource(ints = {0, Integer.MAX_VALUE})
void testGetThreadInfo4(int maxDepth) {
Thread vthread = Thread.startVirtualThread(LockSupport::park);
try {
long tid0 = Thread.currentThread().threadId();
long tid1 = vthread.threadId();
long[] tids = new long[] { tid0, tid1 };
ThreadMXBean bean = ManagementFactory.getThreadMXBean();
ThreadInfo[] infos = bean.getThreadInfo(tids, false, false, maxDepth);
if (Thread.currentThread().isVirtual()) {
assertNull(infos[0]);
} else {
assertEquals(tid0, infos[0].getThreadId());
}
assertNull(infos[1]);
} finally {
LockSupport.unpark(vthread);
}
}
/**
* Test ThreadMXBean.getThreadInfo(long) with the thread id of a carrier thread.
* The stack frames of the virtual thread should not be returned.
*/
@Test
void testGetThreadInfoCarrierThread() throws Exception {
assumeTrue(supportsCustomScheduler(), "No support for custom schedulers");
try (ExecutorService pool = Executors.newFixedThreadPool(1)) {
var carrierRef = new AtomicReference<Thread>();
Executor scheduler = (task) -> {
pool.execute(() -> {
carrierRef.set(Thread.currentThread());
task.run();
});
};
// start virtual thread so carrier Thread can be captured
virtualThreadBuilder(scheduler).start(() -> { }).join();
Thread carrier = carrierRef.get();
assertTrue(carrier != null && !carrier.isVirtual());
try (Selector sel = Selector.open()) {
// start virtual thread that blocks in a native method
virtualThreadBuilder(scheduler).start(() -> {
try {
sel.select();
} catch (Exception e) { }
});
// invoke getThreadInfo get and check the stack trace
long tid = carrier.getId();
ThreadInfo info = ManagementFactory.getThreadMXBean().getThreadInfo(tid, 100);
// should only see carrier frames
StackTraceElement[] stack = info.getStackTrace();
assertTrue(contains(stack, "java.util.concurrent.ThreadPoolExecutor"));
assertFalse(contains(stack, "java.nio.channels.Selector"));
// carrier should not be holding any monitors
assertEquals(0, info.getLockedMonitors().length);
}
}
}
/**
* Test that ThreadMXBean.getThreadCpuTime(long) returns -1 for a virtual thread.
*/
@Test
void testGetThreadCpuTime1() {
ThreadMXBean bean = ManagementFactory.getThreadMXBean();
assumeTrue(bean.isThreadCpuTimeSupported(), "Thread CPU time measurement not supported");
Thread vthread = Thread.startVirtualThread(LockSupport::park);
try {
long tid = vthread.threadId();
long cpuTime = bean.getThreadCpuTime(tid);
assertEquals(-1L, cpuTime);
} finally {
LockSupport.unpark(vthread);
}
}
/**
* Test that ThreadMXBean.getThreadCpuTime(long) returns -1 when invoked by a
* virtual thread with its own thread id.
*/
@Test
void testGetThreadCpuTime2() throws Exception {
ThreadMXBean bean = ManagementFactory.getThreadMXBean();
assumeTrue(bean.isThreadCpuTimeSupported(), "Thread CPU time measurement not supported");
VThreadRunner.run(() -> {
long tid = Thread.currentThread().threadId();
long cpuTime = bean.getThreadCpuTime(tid);
assertEquals(-1L, cpuTime);
});
}
/**
* Test that ThreadMXBean.getThreadUserTime(long) returns -1 for a virtual thread.
*/
@Test
void testGetThreadUserTime1() {
ThreadMXBean bean = ManagementFactory.getThreadMXBean();
assumeTrue(bean.isThreadCpuTimeSupported(), "Thread CPU time measurement not supported");
Thread vthread = Thread.startVirtualThread(LockSupport::park);
try {
long tid = vthread.threadId();
long userTime = ManagementFactory.getThreadMXBean().getThreadUserTime(tid);
assertEquals(-1L, userTime);
} finally {
LockSupport.unpark(vthread);
}
}
/**
* Test that ThreadMXBean.getThreadUserTime(long) returns -1 when invoked by a
* virtual thread with its own thread id.
*/
@Test
void testGetThreadUserTime2() throws Exception {
ThreadMXBean bean = ManagementFactory.getThreadMXBean();
assumeTrue(bean.isThreadCpuTimeSupported(), "Thread CPU time measurement not supported");
VThreadRunner.run(() -> {
long tid = Thread.currentThread().threadId();
long userTime = ManagementFactory.getThreadMXBean().getThreadUserTime(tid);
assertEquals(-1L, userTime);
});
}
/**
* Test that ThreadMXBean::isCurrentThreadCpuTimeSupported returns true when
* CPU time measurement for the current thread is supported.
*/
@Test
void testIsCurrentThreadCpuTimeSupported() throws Exception {
ThreadMXBean bean = ManagementFactory.getThreadMXBean();
assumeTrue(bean.isCurrentThreadCpuTimeSupported(),
"Thread CPU time measurement for the current thread not supported");
VThreadRunner.run(() -> {
assertTrue(bean.isCurrentThreadCpuTimeSupported());
});
}
/**
* Test that ThreadMXBean::getCurrentThreadCpuTime returns -1 when invoked
* from a virtual thread.
*/
@Test
void testGetCurrentThreadCpuTime() throws Exception {
ThreadMXBean bean = ManagementFactory.getThreadMXBean();
assumeTrue(bean.isCurrentThreadCpuTimeSupported(),
"Thread CPU time measurement for the current thread not supported");
VThreadRunner.run(() -> {
assertEquals(-1L, bean.getCurrentThreadCpuTime());
});
}
/**
* Test that ThreadMXBean::getCurrentThreadUserTime returns -1 when invoked
* from a virtual thread.
*/
@Test
void testGetCurrentThreadUserTime() throws Exception {
ThreadMXBean bean = ManagementFactory.getThreadMXBean();
assumeTrue(bean.isCurrentThreadCpuTimeSupported(),
"Thread CPU time measurement for the current thread not supported");
VThreadRunner.run(() -> {
assertEquals(-1L, bean.getCurrentThreadUserTime());
});
}
private static boolean contains(StackTraceElement[] stack, String className) {
return Arrays.stream(stack)
.map(StackTraceElement::getClassName)
.anyMatch(className::equals);
}
/**
* Returns a builder to create virtual threads that use the given scheduler.
* @throws UnsupportedOperationException if there is no support for custom schedulers
*/
private static Thread.Builder.OfVirtual virtualThreadBuilder(Executor scheduler) {
Thread.Builder.OfVirtual builder = Thread.ofVirtual();
try {
Class<?> clazz = Class.forName("java.lang.ThreadBuilders$VirtualThreadBuilder");
Constructor<?> ctor = clazz.getDeclaredConstructor(Executor.class);
ctor.setAccessible(true);
return (Thread.Builder.OfVirtual) ctor.newInstance(scheduler);
} catch (InvocationTargetException e) {
Throwable cause = e.getCause();
if (cause instanceof RuntimeException re) {
throw re;
}
throw new RuntimeException(e);
} catch (Exception e) {
throw new RuntimeException(e);
}
}
/**
* Return true if custom schedulers are supported.
*/
private static boolean supportsCustomScheduler() {
try (var pool = Executors.newCachedThreadPool()) {
try {
virtualThreadBuilder(pool);
return true;
} catch (UnsupportedOperationException e) {
return false;
}
}
}
}
|