From ecd4cec8545460a4fc4ca65b911c2503a00cd8e7 Mon Sep 17 00:00:00 2001 From: Luck Date: Tue, 16 Apr 2019 21:37:59 +0100 Subject: Lots of refactoring, add tps command --- .../java/me/lucko/spark/util/ThreadFinder.java | 60 ---------------------- 1 file changed, 60 deletions(-) delete mode 100644 spark-common/src/main/java/me/lucko/spark/util/ThreadFinder.java (limited to 'spark-common/src/main/java/me/lucko/spark/util/ThreadFinder.java') diff --git a/spark-common/src/main/java/me/lucko/spark/util/ThreadFinder.java b/spark-common/src/main/java/me/lucko/spark/util/ThreadFinder.java deleted file mode 100644 index 8ba7b10..0000000 --- a/spark-common/src/main/java/me/lucko/spark/util/ThreadFinder.java +++ /dev/null @@ -1,60 +0,0 @@ -/* - * This file is part of spark. - * - * Copyright (c) lucko (Luck) - * Copyright (c) contributors - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program 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 for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -package me.lucko.spark.util; - -import java.util.Arrays; -import java.util.Objects; -import java.util.stream.Stream; - -/** - * Utility to find active threads. - */ -public final class ThreadFinder { - - private static final ThreadGroup ROOT_THREAD_GROUP; - static { - ThreadGroup rootGroup = Thread.currentThread().getThreadGroup(); - ThreadGroup parentGroup; - while ((parentGroup = rootGroup.getParent()) != null) { - rootGroup = parentGroup; - } - ROOT_THREAD_GROUP = rootGroup; - } - - // cache the approx active count at the time of construction. - // the usages of this class are likely to be somewhat short-lived, so it's good - // enough to just cache a value on init. - private final int approxActiveCount = ROOT_THREAD_GROUP.activeCount(); - - /** - * Gets a stream of all known active threads. - * - * @return a stream of threads - */ - public Stream getThreads() { - Thread[] threads = new Thread[this.approxActiveCount + 20]; // +20 to allow a bit of growth for newly created threads - while (ROOT_THREAD_GROUP.enumerate(threads, true) == threads.length) { - threads = new Thread[threads.length * 2]; - } - return Arrays.stream(threads).filter(Objects::nonNull); - } - -} -- cgit