2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: William Blake Galbreath <Blake.Galbreath@GMail.com>
|
|
|
|
Date: Sun, 5 Apr 2020 22:23:14 -0500
|
|
|
|
Subject: [PATCH] Add tick times API and /mspt command
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/MSPTCommand.java b/src/main/java/com/destroystokyo/paper/MSPTCommand.java
|
|
|
|
new file mode 100644
|
2022-06-03 06:26:56 +02:00
|
|
|
index 0000000000000000000000000000000000000000..874f0c2a071994c2145848886caa385e0e0bfb9b
|
2021-06-11 14:02:28 +02:00
|
|
|
--- /dev/null
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/MSPTCommand.java
|
2022-06-03 06:26:56 +02:00
|
|
|
@@ -0,0 +1,99 @@
|
2021-06-11 14:02:28 +02:00
|
|
|
+package com.destroystokyo.paper;
|
|
|
|
+
|
2022-06-03 06:26:56 +02:00
|
|
|
+import net.kyori.adventure.text.Component;
|
2021-06-11 14:02:28 +02:00
|
|
|
+import net.minecraft.server.MinecraftServer;
|
|
|
|
+import org.bukkit.Location;
|
|
|
|
+import org.bukkit.command.Command;
|
|
|
|
+import org.bukkit.command.CommandSender;
|
|
|
|
+
|
|
|
|
+import java.text.DecimalFormat;
|
|
|
|
+import java.util.ArrayList;
|
|
|
|
+import java.util.Arrays;
|
|
|
|
+import java.util.Collections;
|
|
|
|
+import java.util.List;
|
|
|
|
+
|
2022-06-03 06:26:56 +02:00
|
|
|
+import static net.kyori.adventure.text.Component.text;
|
|
|
|
+import static net.kyori.adventure.text.format.NamedTextColor.GOLD;
|
|
|
|
+import static net.kyori.adventure.text.format.NamedTextColor.GRAY;
|
|
|
|
+import static net.kyori.adventure.text.format.NamedTextColor.GREEN;
|
|
|
|
+import static net.kyori.adventure.text.format.NamedTextColor.RED;
|
|
|
|
+import static net.kyori.adventure.text.format.NamedTextColor.YELLOW;
|
|
|
|
+
|
2021-06-11 14:02:28 +02:00
|
|
|
+public class MSPTCommand extends Command {
|
|
|
|
+ private static final DecimalFormat DF = new DecimalFormat("########0.0");
|
2022-06-03 06:26:56 +02:00
|
|
|
+ private static final Component SLASH = text("/");
|
2021-06-11 14:02:28 +02:00
|
|
|
+
|
|
|
|
+ public MSPTCommand(String name) {
|
|
|
|
+ super(name);
|
|
|
|
+ this.description = "View server tick times";
|
|
|
|
+ this.usageMessage = "/mspt";
|
|
|
|
+ this.setPermission("bukkit.command.mspt");
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public List<String> tabComplete(CommandSender sender, String alias, String[] args, Location location) throws IllegalArgumentException {
|
|
|
|
+ return Collections.emptyList();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public boolean execute(CommandSender sender, String commandLabel, String[] args) {
|
|
|
|
+ if (!testPermission(sender)) return true;
|
|
|
|
+
|
|
|
|
+ MinecraftServer server = MinecraftServer.getServer();
|
|
|
|
+
|
2022-06-03 06:26:56 +02:00
|
|
|
+ List<Component> times = new ArrayList<>();
|
2021-06-11 14:02:28 +02:00
|
|
|
+ times.addAll(eval(server.tickTimes5s.getTimes()));
|
|
|
|
+ times.addAll(eval(server.tickTimes10s.getTimes()));
|
|
|
|
+ times.addAll(eval(server.tickTimes60s.getTimes()));
|
|
|
|
+
|
2022-06-03 06:26:56 +02:00
|
|
|
+ sender.sendMessage(text().content("Server tick times ").color(GOLD)
|
|
|
|
+ .append(text().color(YELLOW)
|
|
|
|
+ .append(
|
|
|
|
+ text("("),
|
|
|
|
+ text("avg", GRAY),
|
|
|
|
+ text("/"),
|
|
|
|
+ text("min", GRAY),
|
|
|
|
+ text("/"),
|
|
|
|
+ text("max", GRAY),
|
|
|
|
+ text(")")
|
|
|
|
+ )
|
|
|
|
+ ).append(
|
|
|
|
+ text(" from last 5s"),
|
|
|
|
+ text(",", GRAY),
|
|
|
|
+ text(" 10s"),
|
|
|
|
+ text(",", GRAY),
|
|
|
|
+ text(" 1m"),
|
|
|
|
+ text(":", YELLOW)
|
|
|
|
+ )
|
|
|
|
+ );
|
|
|
|
+ sender.sendMessage(text().content("◴ ").color(GOLD)
|
|
|
|
+ .append(text().color(GRAY)
|
|
|
|
+ .append(
|
|
|
|
+ times.get(0), SLASH, times.get(1), SLASH, times.get(2), text(", ", YELLOW),
|
|
|
|
+ times.get(3), SLASH, times.get(4), SLASH, times.get(5), text(", ", YELLOW),
|
|
|
|
+ times.get(6), SLASH, times.get(7), SLASH, times.get(8)
|
|
|
|
+ )
|
|
|
|
+ )
|
|
|
|
+ );
|
2021-06-11 14:02:28 +02:00
|
|
|
+ return true;
|
|
|
|
+ }
|
|
|
|
+
|
2022-06-03 06:26:56 +02:00
|
|
|
+ private static List<Component> eval(long[] times) {
|
2021-06-11 14:02:28 +02:00
|
|
|
+ long min = Integer.MAX_VALUE;
|
|
|
|
+ long max = 0L;
|
|
|
|
+ long total = 0L;
|
|
|
|
+ for (long value : times) {
|
|
|
|
+ if (value > 0L && value < min) min = value;
|
|
|
|
+ if (value > max) max = value;
|
|
|
|
+ total += value;
|
|
|
|
+ }
|
|
|
|
+ double avgD = ((double) total / (double) times.length) * 1.0E-6D;
|
|
|
|
+ double minD = ((double) min) * 1.0E-6D;
|
|
|
|
+ double maxD = ((double) max) * 1.0E-6D;
|
|
|
|
+ return Arrays.asList(getColor(avgD), getColor(minD), getColor(maxD));
|
|
|
|
+ }
|
|
|
|
+
|
2022-06-03 06:26:56 +02:00
|
|
|
+ private static Component getColor(double avg) {
|
|
|
|
+ return text(DF.format(avg), avg >= 50 ? RED : avg >= 40 ? YELLOW : GREEN);
|
2021-06-11 14:02:28 +02:00
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperConfig.java b/src/main/java/com/destroystokyo/paper/PaperConfig.java
|
2022-06-03 06:26:56 +02:00
|
|
|
index 0be8f68c3e61f132ada9381e36b743dd7477eece..8158a00821727104a23958a76e19cd8b01cb4e5a 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperConfig.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperConfig.java
|
|
|
|
@@ -69,6 +69,7 @@ public class PaperConfig {
|
|
|
|
|
|
|
|
commands = new HashMap<String, Command>();
|
|
|
|
commands.put("paper", new PaperCommand("paper"));
|
|
|
|
+ commands.put("mspt", new MSPTCommand("mspt"));
|
|
|
|
|
2022-05-07 18:47:28 +02:00
|
|
|
version = getInt("config-version", 27);
|
|
|
|
set("config-version", 27);
|
2021-06-11 14:02:28 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/MinecraftServer.java b/src/main/java/net/minecraft/server/MinecraftServer.java
|
2022-06-03 06:26:56 +02:00
|
|
|
index 632743678f8c65e078080fda7c8eeee9a2d5753c..03ebc2a0476aef9297cbbc7f358915703a469b02 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/MinecraftServer.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/MinecraftServer.java
|
2022-03-13 08:47:54 +01:00
|
|
|
@@ -244,6 +244,11 @@ public abstract class MinecraftServer extends ReentrantBlockableEventLoop<TickTa
|
2021-06-14 03:06:38 +02:00
|
|
|
private String motd;
|
2021-06-11 14:02:28 +02:00
|
|
|
private int playerIdleTimeout;
|
2021-06-14 03:06:38 +02:00
|
|
|
public final long[] tickTimes;
|
2021-06-11 14:02:28 +02:00
|
|
|
+ // Paper start
|
|
|
|
+ public final TickTimes tickTimes5s = new TickTimes(100);
|
|
|
|
+ public final TickTimes tickTimes10s = new TickTimes(200);
|
|
|
|
+ public final TickTimes tickTimes60s = new TickTimes(1200);
|
|
|
|
+ // Paper end
|
|
|
|
@Nullable
|
|
|
|
private KeyPair keyPair;
|
|
|
|
@Nullable
|
2022-03-13 08:47:54 +01:00
|
|
|
@@ -1401,6 +1406,12 @@ public abstract class MinecraftServer extends ReentrantBlockableEventLoop<TickTa
|
2021-06-11 14:02:28 +02:00
|
|
|
this.averageTickTime = this.averageTickTime * 0.8F + (float) l / 1000000.0F * 0.19999999F;
|
|
|
|
long i1 = Util.getNanos();
|
|
|
|
|
|
|
|
+ // Paper start
|
|
|
|
+ tickTimes5s.add(this.tickCount, l);
|
|
|
|
+ tickTimes10s.add(this.tickCount, l);
|
|
|
|
+ tickTimes60s.add(this.tickCount, l);
|
|
|
|
+ // Paper end
|
|
|
|
+
|
|
|
|
this.frameTimer.logFrameDuration(i1 - i);
|
|
|
|
this.profiler.pop();
|
|
|
|
org.spigotmc.WatchdogThread.tick(); // Spigot
|
2022-03-13 08:47:54 +01:00
|
|
|
@@ -2537,4 +2548,29 @@ public abstract class MinecraftServer extends ReentrantBlockableEventLoop<TickTa
|
2021-06-14 03:06:38 +02:00
|
|
|
};
|
|
|
|
}
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|
|
|
|
+ // Paper start
|
|
|
|
+ public static class TickTimes {
|
|
|
|
+ private final long[] times;
|
|
|
|
+
|
|
|
|
+ public TickTimes(int length) {
|
|
|
|
+ times = new long[length];
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ void add(int index, long time) {
|
|
|
|
+ times[index % times.length] = time;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public long[] getTimes() {
|
|
|
|
+ return times.clone();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public double getAverage() {
|
|
|
|
+ long total = 0L;
|
|
|
|
+ for (long value : times) {
|
|
|
|
+ total += value;
|
|
|
|
+ }
|
|
|
|
+ return ((double) total / (double) times.length) * 1.0E-6D;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/CraftServer.java b/src/main/java/org/bukkit/craftbukkit/CraftServer.java
|
2022-06-03 06:26:56 +02:00
|
|
|
index 3ff85d9d8518db712ca1d2977a5865daef86f021..e270d7786eb1eae8970ff2ed5896789e05ca6613 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/CraftServer.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/CraftServer.java
|
2022-04-16 10:29:50 +02:00
|
|
|
@@ -2461,6 +2461,16 @@ public final class CraftServer implements Server {
|
2021-06-11 14:02:28 +02:00
|
|
|
net.minecraft.server.MinecraftServer.getServer().tps15.getAverage()
|
|
|
|
};
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public long[] getTickTimes() {
|
|
|
|
+ return getServer().tickTimes5s.getTimes();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public double getAverageTickTime() {
|
|
|
|
+ return getServer().tickTimes5s.getAverage();
|
|
|
|
+ }
|
|
|
|
// Paper end
|
|
|
|
|
|
|
|
// Spigot start
|