/
githubmirror
/
galahad
Обзор
Документация
Войти
/
githubmirror
/
galahad
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/jdk/java/lang/Thread/virtual/stress/GetStackTraceALotWhenParking.java
128 строк
4 KB
Alan Bateman
8336254: Virtual thread implementation + test updates
25 июл 2024, 07:59
25 июл 2024, 07:59
6e228ce
Код
Авторство
О чём код?
/* * Copyright (c) 2020, 2024, 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 * @summary Stress test asynchronous Thread.getStackTrace when parking * @requires vm.debug != true & vm.continuations * @modules java.base/java.lang:+open * @library /test/lib * @run main GetStackTraceALotWhenParking */ /** * @test * @requires vm.debug == true & vm.continuations * @modules java.base/java.lang:+open * @library /test/lib * @run main/timeout=300 GetStackTraceALotWhenParking 1000 */ import java.time.Duration; import java.time.Instant; import java.util.concurrent.Executor; import java.util.concurrent.Executors; import java.util.concurrent.ExecutorService; import java.util.concurrent.ThreadFactory; import java.util.concurrent.atomic.AtomicInteger; import java.util.concurrent.locks.LockSupport; import jdk.test.lib.thread.VThreadScheduler; public class GetStackTraceALotWhenParking { static class RoundRobinExecutor implements Executor, AutoCloseable { private final ExecutorService[] executors; private int next; RoundRobinExecutor() { var factory = Thread.ofPlatform().name("worker-", 1).daemon(true).factory(); var executors = new ExecutorService[2]; for (int i = 0; i < executors.length; i++) { executors[i] = Executors.newSingleThreadExecutor(factory); } this.executors = executors; } @Override public void execute(Runnable task) { executors[next].execute(task); next = (next + 1) % executors.length; } @Override public void close() { for (int i = 0; i < executors.length; i++) { executors[i].shutdown(); } } } public static void main(String[] args) throws Exception { int iterations = args.length > 0 ? Integer.parseInt(args[0]) : 10_000; final int ITERATIONS = iterations; final int SPIN_NANOS = 5000; AtomicInteger count = new AtomicInteger(); try (RoundRobinExecutor executor = new RoundRobinExecutor()) { ThreadFactory factory = VThreadScheduler.virtualThreadFactory(executor); Thread thread = factory.newThread(() -> { while (count.incrementAndGet() < ITERATIONS) { long start = System.nanoTime(); while ((System.nanoTime() - start) < SPIN_NANOS) { Thread.onSpinWait(); } LockSupport.parkNanos(500_000); } }); thread.start(); long start = System.nanoTime(); while (thread.isAlive()) { StackTraceElement[] stackTrace = thread.getStackTrace(); // printStackTrace(stackTrace); Thread.sleep(5); if ((System.nanoTime() - start) > 500_000_000) { System.out.format("%s => %d of %d%n", Instant.now(), count.get(), ITERATIONS); start = System.nanoTime(); } } int countValue = count.get(); if (countValue != ITERATIONS) { throw new RuntimeException("count = " + countValue); } } } static void printStackTrace(StackTraceElement[] stackTrace) { if (stackTrace == null) { System.out.println("NULL"); } else { for (var e : stackTrace) { System.out.println("\t" + e); } } } }