2021-06-16 13:07:43 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Mon, 16 May 2016 23:19:16 -0400
|
|
|
|
Subject: [PATCH] Avoid blocking on Network Manager creation
|
|
|
|
|
|
|
|
Per Paper issue 294
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/network/ServerConnectionListener.java b/src/main/java/net/minecraft/server/network/ServerConnectionListener.java
|
2023-09-21 22:35:39 +02:00
|
|
|
index dbbca784fe45b7099f683745b36f5c195ca4c2af..d870fbec236a3660f12e0f45cf9431067b18468b 100644
|
2021-06-16 13:07:43 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/network/ServerConnectionListener.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/network/ServerConnectionListener.java
|
2023-09-21 22:35:39 +02:00
|
|
|
@@ -61,6 +61,15 @@ public class ServerConnectionListener {
|
2021-06-16 13:07:43 +02:00
|
|
|
public volatile boolean running;
|
|
|
|
private final List<ChannelFuture> channels = Collections.synchronizedList(Lists.newArrayList());
|
|
|
|
final List<Connection> connections = Collections.synchronizedList(Lists.newArrayList());
|
|
|
|
+ // Paper start - prevent blocking on adding a new network manager while the server is ticking
|
|
|
|
+ private final java.util.Queue<Connection> pending = new java.util.concurrent.ConcurrentLinkedQueue<>();
|
|
|
|
+ private final void addPending() {
|
|
|
|
+ Connection manager = null;
|
|
|
|
+ while ((manager = pending.poll()) != null) {
|
|
|
|
+ connections.add(manager);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
|
|
|
|
public ServerConnectionListener(MinecraftServer server) {
|
|
|
|
this.server = server;
|
2023-09-21 22:35:39 +02:00
|
|
|
@@ -100,7 +109,8 @@ public class ServerConnectionListener {
|
2021-06-16 13:07:43 +02:00
|
|
|
int j = ServerConnectionListener.this.server.getRateLimitPacketsPerSecond();
|
2023-03-14 19:36:39 +01:00
|
|
|
Connection object = j > 0 ? new RateKickingConnection(j) : new Connection(PacketFlow.SERVERBOUND); // CraftBukkit - decompile error
|
2021-06-16 13:07:43 +02:00
|
|
|
|
2023-03-14 19:36:39 +01:00
|
|
|
- ServerConnectionListener.this.connections.add(object);
|
2023-09-21 22:35:39 +02:00
|
|
|
+ //ServerConnectionListener.this.connections.add(object); // Paper
|
2023-03-14 19:36:39 +01:00
|
|
|
+ pending.add(object); // Paper
|
2023-09-21 22:35:39 +02:00
|
|
|
((Connection) object).configurePacketHandler(channelpipeline);
|
|
|
|
((Connection) object).setListenerForServerboundHandshake(new ServerHandshakePacketListenerImpl(ServerConnectionListener.this.server, (Connection) object));
|
2021-06-16 13:07:43 +02:00
|
|
|
}
|
2023-09-21 22:35:39 +02:00
|
|
|
@@ -163,6 +173,7 @@ public class ServerConnectionListener {
|
2021-06-16 13:07:43 +02:00
|
|
|
|
|
|
|
synchronized (this.connections) {
|
|
|
|
// Spigot Start
|
|
|
|
+ this.addPending(); // Paper
|
|
|
|
// This prevents players from 'gaming' the server, and strategically relogging to increase their position in the tick order
|
|
|
|
if ( org.spigotmc.SpigotConfig.playerShuffle > 0 && MinecraftServer.currentTick % org.spigotmc.SpigotConfig.playerShuffle == 0 )
|
|
|
|
{
|