2022-09-26 10:02:51 +02:00
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Shane Freeder <theboyetronic@gmail.com>
Date: Sun, 9 Jun 2019 03:53:22 +0100
2024-07-15 20:57:56 +02:00
Subject: [PATCH] Incremental chunk and player saving
2022-09-26 10:02:51 +02:00
2024-11-09 21:44:55 +01:00
Feature patch
2022-09-26 10:02:51 +02:00
diff --git a/src/main/java/net/minecraft/server/MinecraftServer.java b/src/main/java/net/minecraft/server/MinecraftServer.java
2024-11-09 21:44:55 +01:00
index 38b5eef0b5ff38f9a8dfa59822d7b41336108f49..b33b68649e67de08719b30e98650c84f4c3c18d6 100644
2022-09-26 10:02:51 +02:00
--- a/src/main/java/net/minecraft/server/MinecraftServer.java
+++ b/src/main/java/net/minecraft/server/MinecraftServer.java
2024-10-31 22:30:18 +01:00
@@ -1007,7 +1007,7 @@ public abstract class MinecraftServer extends ReentrantBlockableEventLoop<TickTa
2022-09-26 10:02:51 +02:00
try {
this.isSaving = true;
- this.getPlayerList().saveAll();
2024-01-20 23:13:41 +01:00
+ this.getPlayerList().saveAll(); // Paper - Incremental chunk and player saving; diff on change
2022-09-26 10:02:51 +02:00
flag3 = this.saveAllChunks(suppressLogs, flush, force);
} finally {
this.isSaving = false;
2024-10-31 22:30:18 +01:00
@@ -1655,9 +1655,29 @@ public abstract class MinecraftServer extends ReentrantBlockableEventLoop<TickTa
2022-09-26 10:02:51 +02:00
}
2023-12-06 04:00:14 +01:00
--this.ticksUntilAutosave;
2024-10-27 10:26:44 +01:00
- if (this.autosavePeriod > 0 && this.ticksUntilAutosave <= 0) { // CraftBukkit
- this.autoSave();
2024-01-20 23:13:41 +01:00
+ // Paper start - Incremental chunk and player saving
2024-10-27 10:26:44 +01:00
+ final ProfilerFiller profiler = Profiler.get();
2022-09-26 10:02:51 +02:00
+ int playerSaveInterval = io.papermc.paper.configuration.GlobalConfiguration.get().playerAutoSave.rate;
+ if (playerSaveInterval < 0) {
+ playerSaveInterval = autosavePeriod;
2024-07-15 20:57:56 +02:00
+ }
2024-10-27 10:26:44 +01:00
+ profiler.push("save");
2022-09-26 10:02:51 +02:00
+ final boolean fullSave = autosavePeriod > 0 && this.tickCount % autosavePeriod == 0;
+ try {
+ this.isSaving = true;
+ if (playerSaveInterval > 0) {
+ this.playerList.saveAll(playerSaveInterval);
+ }
2024-10-27 10:26:44 +01:00
+ for (final ServerLevel level : this.getAllLevels()) {
2022-09-26 10:02:51 +02:00
+ if (level.paperConfig().chunks.autoSaveInterval.value() > 0) {
+ level.saveIncrementally(fullSave);
+ }
+ }
+ } finally {
+ this.isSaving = false;
2024-07-15 20:57:56 +02:00
}
2024-10-27 10:26:44 +01:00
+ profiler.pop();
2024-01-20 23:13:41 +01:00
+ // Paper end - Incremental chunk and player saving
2024-10-27 10:26:44 +01:00
ProfilerFiller gameprofilerfiller = Profiler.get();
2022-09-26 10:02:51 +02:00
diff --git a/src/main/java/net/minecraft/server/level/ServerLevel.java b/src/main/java/net/minecraft/server/level/ServerLevel.java
Rework async chunk api implementation
Firstly, the old methods all routed to the CompletableFuture method.
However, the CF method could not guarantee that if the caller
was off-main that the future would be "completed" on-main. Since
the callback methods used the CF one, this meant that the callback
methods did not guarantee that the callbacks were to be called on
the main thread.
Now, all methods route to getChunkAtAsync(x, z, gen, urgent, cb)
so that the methods with the callback are guaranteed to invoke
the callback on the main thread. The CF behavior remains unchanged;
it may still appear to complete on main if invoked off-main.
Secondly, remove the scheduleOnMain invocation in the async
chunk completion. This unnecessarily delays the callback
by 1 tick.
Thirdly, add getChunksAtAsync(minX, minZ, maxX, maxZ, ...) which
will load chunks within an area. This method is provided as a helper
as keeping all chunks loaded within an area can be complicated to
implement for plugins (due to the lacking ticket API), and is
already implemented internally anyways.
Fourthly, remove the ticket addition that occured with getChunkAt
and getChunkAtAsync. The ticket addition may delay the unloading
of the chunk unnecessarily. It also fixes a very rare timing bug
where the future/callback would be completed after the chunk
unloads.
2024-11-19 07:34:32 +01:00
index ff79925649ac1ceb6121c4b74fdb65f5f138f689..5f244cafe6c3cfb4a3bd08f9ae0f1a5aeec9b359 100644
2022-09-26 10:02:51 +02:00
--- a/src/main/java/net/minecraft/server/level/ServerLevel.java
+++ b/src/main/java/net/minecraft/server/level/ServerLevel.java
Rework async chunk api implementation
Firstly, the old methods all routed to the CompletableFuture method.
However, the CF method could not guarantee that if the caller
was off-main that the future would be "completed" on-main. Since
the callback methods used the CF one, this meant that the callback
methods did not guarantee that the callbacks were to be called on
the main thread.
Now, all methods route to getChunkAtAsync(x, z, gen, urgent, cb)
so that the methods with the callback are guaranteed to invoke
the callback on the main thread. The CF behavior remains unchanged;
it may still appear to complete on main if invoked off-main.
Secondly, remove the scheduleOnMain invocation in the async
chunk completion. This unnecessarily delays the callback
by 1 tick.
Thirdly, add getChunksAtAsync(minX, minZ, maxX, maxZ, ...) which
will load chunks within an area. This method is provided as a helper
as keeping all chunks loaded within an area can be complicated to
implement for plugins (due to the lacking ticket API), and is
already implemented internally anyways.
Fourthly, remove the ticket addition that occured with getChunkAt
and getChunkAtAsync. The ticket addition may delay the unloading
of the chunk unnecessarily. It also fixes a very rare timing bug
where the future/callback would be completed after the chunk
unloads.
2024-11-19 07:34:32 +01:00
@@ -1353,6 +1353,30 @@ public class ServerLevel extends Level implements ServerEntityGetter, WorldGenLe
2022-09-26 10:02:51 +02:00
return !this.server.isUnderSpawnProtection(this, pos, player) && this.getWorldBorder().isWithinBounds(pos);
}
2024-01-20 23:13:41 +01:00
+ // Paper start - Incremental chunk and player saving
2022-09-26 10:02:51 +02:00
+ public void saveIncrementally(boolean doFull) {
+ ServerChunkCache chunkproviderserver = this.getChunkSource();
+
+ if (doFull) {
+ org.bukkit.Bukkit.getPluginManager().callEvent(new org.bukkit.event.world.WorldSaveEvent(getWorld()));
+ }
+
2024-10-27 18:11:15 +01:00
+ if (doFull) {
+ this.saveLevelData(true);
2022-09-26 10:02:51 +02:00
+ }
2024-10-27 18:11:15 +01:00
+ // chunk autosave is already called by the ChunkSystem during unload processing (ChunkMap#processUnloads)
+ // Copied from save()
+ // CraftBukkit start - moved from MinecraftServer.saveChunks
+ if (doFull) { // Paper
+ ServerLevel worldserver1 = this;
+ this.serverLevelData.setWorldBorder(worldserver1.getWorldBorder().createSettings());
+ this.serverLevelData.setCustomBossEvents(this.server.getCustomBossEvents().save(this.registryAccess()));
+ this.convertable.saveDataTag(this.server.registryAccess(), this.serverLevelData, this.server.getPlayerList().getSingleplayerData());
+ }
+ // CraftBukkit end
2022-09-26 10:02:51 +02:00
+ }
2024-01-20 23:13:41 +01:00
+ // Paper end - Incremental chunk and player saving
2022-09-26 10:02:51 +02:00
+
public void save(@Nullable ProgressListener progressListener, boolean flush, boolean savingDisabled) {
2024-06-15 14:12:22 +02:00
// Paper start - add close param
2024-01-24 22:13:08 +01:00
this.save(progressListener, flush, savingDisabled, false);
2022-09-26 10:02:51 +02:00
diff --git a/src/main/java/net/minecraft/server/level/ServerPlayer.java b/src/main/java/net/minecraft/server/level/ServerPlayer.java
2024-11-18 21:09:44 +01:00
index dda53c52fab7c02f39451335fe0bfe36852ac994..167ab6346edb8f29c29a7327f031c0f5df71acf1 100644
2022-09-26 10:02:51 +02:00
--- a/src/main/java/net/minecraft/server/level/ServerPlayer.java
+++ b/src/main/java/net/minecraft/server/level/ServerPlayer.java
2024-10-27 10:26:44 +01:00
@@ -221,6 +221,7 @@ import org.bukkit.inventory.MainHand;
2024-06-15 14:12:22 +02:00
public class ServerPlayer extends net.minecraft.world.entity.player.Player implements ca.spottedleaf.moonrise.patches.chunk_system.player.ChunkSystemServerPlayer { // Paper - rewrite chunk system
2022-09-26 10:02:51 +02:00
private static final Logger LOGGER = LogUtils.getLogger();
2024-01-20 23:13:41 +01:00
+ public long lastSave = MinecraftServer.currentTick; // Paper - Incremental chunk and player saving
2022-09-26 10:02:51 +02:00
private static final int NEUTRAL_MOB_DEATH_NOTIFICATION_RADII_XZ = 32;
private static final int NEUTRAL_MOB_DEATH_NOTIFICATION_RADII_Y = 10;
2023-12-06 04:00:14 +01:00
private static final int FLY_STAT_RECORDING_SPEED = 25;
2022-09-26 10:02:51 +02:00
diff --git a/src/main/java/net/minecraft/server/players/PlayerList.java b/src/main/java/net/minecraft/server/players/PlayerList.java
2024-11-09 21:44:55 +01:00
index 47664c545e3f58719f55366bac05732dbfe3c00a..a03ff473a683611670ee274b0eec5a395ee6981a 100644
2022-09-26 10:02:51 +02:00
--- a/src/main/java/net/minecraft/server/players/PlayerList.java
+++ b/src/main/java/net/minecraft/server/players/PlayerList.java
2024-10-27 18:11:15 +01:00
@@ -518,6 +518,7 @@ public abstract class PlayerList {
2022-12-19 11:46:55 +01:00
2022-09-26 10:02:51 +02:00
protected void save(ServerPlayer player) {
if (!player.getBukkitEntity().isPersistent()) return; // CraftBukkit
2024-01-20 23:13:41 +01:00
+ player.lastSave = MinecraftServer.currentTick; // Paper - Incremental chunk and player saving
2022-09-26 10:02:51 +02:00
this.playerIo.save(player);
ServerStatsCounter serverstatisticmanager = (ServerStatsCounter) player.getStats(); // CraftBukkit
2024-10-31 12:44:02 +01:00
@@ -1152,9 +1153,21 @@ public abstract class PlayerList {
2022-09-26 10:02:51 +02:00
}
public void saveAll() {
2024-01-20 23:13:41 +01:00
+ // Paper start - Incremental chunk and player saving
2022-09-26 10:02:51 +02:00
+ this.saveAll(-1);
+ }
+
+ public void saveAll(int interval) {
2022-10-24 21:43:46 +02:00
io.papermc.paper.util.MCUtil.ensureMain("Save Players" , () -> { // Paper - Ensure main
2022-09-26 10:02:51 +02:00
+ int numSaved = 0;
+ long now = MinecraftServer.currentTick;
for (int i = 0; i < this.players.size(); ++i) {
2024-10-27 18:11:15 +01:00
- this.save((ServerPlayer) this.players.get(i));
+ final ServerPlayer player = this.players.get(i);
+ if (interval == -1 || now - player.lastSave >= interval) {
+ this.save(player);
2023-05-27 20:34:33 +02:00
+ if (interval != -1 && ++numSaved >= io.papermc.paper.configuration.GlobalConfiguration.get().playerAutoSave.maxPerTick()) { break; }
2022-09-26 10:02:51 +02:00
+ }
2024-01-20 23:13:41 +01:00
+ // Paper end - Incremental chunk and player saving
2022-09-26 10:02:51 +02:00
}
2024-10-27 18:11:15 +01:00
2022-09-26 10:02:51 +02:00
return null; }); // Paper - ensure main