2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Mon, 16 May 2016 20:47:41 -0400
|
|
|
|
Subject: [PATCH] Optimize UserCache / Thread Safe
|
|
|
|
|
|
|
|
Because Techable keeps complaining about how this isn't thread safe,
|
|
|
|
easier to do this than replace the entire thing.
|
|
|
|
|
|
|
|
Additionally, move Saving of the User cache to be done async, incase
|
|
|
|
the user never changed the default setting for Spigot's save on stop only.
|
|
|
|
|
2021-06-12 07:20:08 +02:00
|
|
|
1.17: TODO does this need the synchronized blocks anymore?
|
|
|
|
|
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
|
2021-06-13 07:13:07 +02:00
|
|
|
index 45bcdf2e644999910784432d8f369e775ce6506d..3e2955013ce75034170b5eeae60482e1c174769d 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
|
2021-06-13 07:13:07 +02:00
|
|
|
@@ -964,7 +964,7 @@ public abstract class MinecraftServer extends ReentrantBlockableEventLoop<TickTa
|
2021-06-11 14:02:28 +02:00
|
|
|
} catch (java.lang.InterruptedException ignored) {} // Paper
|
|
|
|
if (org.spigotmc.SpigotConfig.saveUserCacheOnStopOnly) {
|
2021-06-12 07:20:08 +02:00
|
|
|
MinecraftServer.LOGGER.info("Saving usercache.json");
|
2021-06-11 14:02:28 +02:00
|
|
|
- this.getProfileCache().save();
|
2021-06-12 07:20:08 +02:00
|
|
|
+ this.getProfileCache().save(false); // Paper
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|
|
|
|
// Spigot end
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/dedicated/DedicatedServer.java b/src/main/java/net/minecraft/server/dedicated/DedicatedServer.java
|
2021-06-12 07:20:08 +02:00
|
|
|
index 566390d02b2af4a0f2c867b7ff8116a8301e8497..e2095308a8ec8471b04acce929d314fd828bc3de 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/dedicated/DedicatedServer.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/dedicated/DedicatedServer.java
|
2021-06-12 07:20:08 +02:00
|
|
|
@@ -256,7 +256,7 @@ public class DedicatedServer extends MinecraftServer implements ServerInterface
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (this.convertOldUsers()) {
|
|
|
|
- this.getProfileCache().save();
|
2021-06-12 07:20:08 +02:00
|
|
|
+ this.getProfileCache().save(false); // Paper
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!OldUsersConverter.serverReadyAfterUserconversion(this)) {
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/players/GameProfileCache.java b/src/main/java/net/minecraft/server/players/GameProfileCache.java
|
2021-06-12 09:30:37 +02:00
|
|
|
index 1dd9b362384543e17b537dd209665d956214916d..c70b4727fe0ae9ff7b9db08a9711272994159b96 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/players/GameProfileCache.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/players/GameProfileCache.java
|
2021-06-12 07:20:08 +02:00
|
|
|
@@ -117,7 +117,7 @@ public class GameProfileCache {
|
2021-06-11 14:02:28 +02:00
|
|
|
return GameProfileCache.usesAuthentication;
|
|
|
|
}
|
|
|
|
|
2021-06-12 07:20:08 +02:00
|
|
|
- public void add(GameProfile profile) {
|
|
|
|
+ public synchronized void add(GameProfile profile) { // Paper - synchronize
|
2021-06-11 14:02:28 +02:00
|
|
|
Calendar calendar = Calendar.getInstance();
|
|
|
|
|
|
|
|
calendar.setTime(new Date());
|
2021-06-12 07:20:08 +02:00
|
|
|
@@ -126,7 +126,7 @@ public class GameProfileCache {
|
|
|
|
GameProfileCache.GameProfileInfo usercache_usercacheentry = new GameProfileCache.GameProfileInfo(profile, date);
|
2021-06-11 14:02:28 +02:00
|
|
|
|
|
|
|
this.safeAdd(usercache_usercacheentry);
|
|
|
|
- if( !org.spigotmc.SpigotConfig.saveUserCacheOnStopOnly ) this.save(); // Spigot - skip saving if disabled
|
2021-06-12 07:20:08 +02:00
|
|
|
+ if( !org.spigotmc.SpigotConfig.saveUserCacheOnStopOnly ) this.save(true); // Spigot - skip saving if disabled // Paper - async
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private long getNextOperation() {
|
2021-06-12 07:20:08 +02:00
|
|
|
@@ -134,7 +134,7 @@ public class GameProfileCache {
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Nullable
|
2021-06-12 09:30:37 +02:00
|
|
|
- public GameProfile get(String name) {
|
|
|
|
+ public synchronized GameProfile get(String name) { // Paper - synchronize
|
|
|
|
String s1 = name.toLowerCase(Locale.ROOT);
|
2021-06-11 14:02:28 +02:00
|
|
|
GameProfileCache.GameProfileInfo usercache_usercacheentry = (GameProfileCache.GameProfileInfo) this.profilesByName.get(s1);
|
|
|
|
boolean flag = false;
|
2021-06-12 07:20:08 +02:00
|
|
|
@@ -160,7 +160,7 @@ public class GameProfileCache {
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (flag && !org.spigotmc.SpigotConfig.saveUserCacheOnStopOnly) { // Spigot - skip saving if disabled
|
|
|
|
- this.save();
|
2021-06-12 07:20:08 +02:00
|
|
|
+ this.save(true); // Paper
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return gameprofile;
|
2021-06-12 07:20:08 +02:00
|
|
|
@@ -273,7 +273,7 @@ public class GameProfileCache {
|
2021-06-11 14:02:28 +02:00
|
|
|
return arraylist;
|
|
|
|
}
|
|
|
|
|
|
|
|
- public void save() {
|
2021-06-12 07:20:08 +02:00
|
|
|
+ public void save(boolean asyncSave) { // Paper
|
2021-06-11 14:02:28 +02:00
|
|
|
JsonArray jsonarray = new JsonArray();
|
2021-06-12 07:20:08 +02:00
|
|
|
DateFormat dateformat = GameProfileCache.createDateFormat();
|
2021-06-11 14:02:28 +02:00
|
|
|
|
2021-06-12 07:20:08 +02:00
|
|
|
@@ -281,6 +281,7 @@ public class GameProfileCache {
|
|
|
|
jsonarray.add(GameProfileCache.writeGameProfile(usercache_usercacheentry, dateformat));
|
2021-06-11 14:02:28 +02:00
|
|
|
});
|
|
|
|
String s = this.gson.toJson(jsonarray);
|
|
|
|
+ Runnable save = () -> { // Paper
|
|
|
|
|
|
|
|
try {
|
|
|
|
BufferedWriter bufferedwriter = Files.newWriter(this.file, StandardCharsets.UTF_8);
|
2021-06-12 07:20:08 +02:00
|
|
|
@@ -305,6 +306,14 @@ public class GameProfileCache {
|
2021-06-11 14:02:28 +02:00
|
|
|
} catch (IOException ioexception) {
|
|
|
|
;
|
|
|
|
}
|
|
|
|
+ // Paper start
|
|
|
|
+ };
|
|
|
|
+ if (asyncSave) {
|
2021-06-12 07:20:08 +02:00
|
|
|
+ net.minecraft.server.MCUtil.scheduleAsyncTask(save);
|
2021-06-11 14:02:28 +02:00
|
|
|
+ } else {
|
|
|
|
+ save.run();
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
|
|
|
|
}
|
|
|
|
|