2021-11-24 23:50:33 +01:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Fri, 29 May 2020 20:29:02 -0400
|
2022-03-27 19:51:39 +02:00
|
|
|
Subject: [PATCH] Synchronize PalettedContainer instead of
|
|
|
|
ThreadingDetector/Semaphore
|
2021-11-24 23:50:33 +01:00
|
|
|
|
|
|
|
Mojang has flaws in their logic about chunks being concurrently
|
|
|
|
wrote to. So we constantly see crashes around multiple threads writing.
|
|
|
|
|
|
|
|
Additionally, java has optimized synchronization so well that its
|
2022-03-27 19:51:39 +02:00
|
|
|
in many times faster than trying to manage read write locks for low
|
2021-11-24 23:50:33 +01:00
|
|
|
contention situations.
|
|
|
|
|
|
|
|
And this is extremely a low contention situation.
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/level/chunk/PalettedContainer.java b/src/main/java/net/minecraft/world/level/chunk/PalettedContainer.java
|
2023-06-08 03:13:54 +02:00
|
|
|
index cd82985b0aa821dccc0484f328407381d58ec81f..a8dc502fffdce89c44ec16cb158b04c30fb1a9cf 100644
|
2021-11-24 23:50:33 +01:00
|
|
|
--- a/src/main/java/net/minecraft/world/level/chunk/PalettedContainer.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/level/chunk/PalettedContainer.java
|
2023-06-08 03:13:54 +02:00
|
|
|
@@ -31,14 +31,14 @@ public class PalettedContainer<T> implements PaletteResize<T>, PalettedContainer
|
|
|
|
public final IdMap<T> registry;
|
2022-03-27 19:51:39 +02:00
|
|
|
private volatile PalettedContainer.Data<T> data;
|
|
|
|
private final PalettedContainer.Strategy strategy;
|
|
|
|
- private final ThreadingDetector threadingDetector = new ThreadingDetector("PalettedContainer");
|
|
|
|
+ // private final ThreadingDetector threadingDetector = new ThreadingDetector("PalettedContainer"); // Paper - unused
|
2021-11-24 23:50:33 +01:00
|
|
|
|
|
|
|
public void acquire() {
|
|
|
|
- this.threadingDetector.checkAndLock();
|
|
|
|
+ // this.threadingDetector.checkAndLock(); // Paper - disable this - use proper synchronization
|
|
|
|
}
|
|
|
|
|
|
|
|
public void release() {
|
|
|
|
- this.threadingDetector.checkAndUnlock();
|
|
|
|
+ // this.threadingDetector.checkAndUnlock(); // Paper - disable this
|
|
|
|
}
|
|
|
|
|
2023-06-08 03:13:54 +02:00
|
|
|
public static <T> Codec<PalettedContainer<T>> codecRW(IdMap<T> idList, Codec<T> entryCodec, PalettedContainer.Strategy paletteProvider, T defaultValue) {
|
|
|
|
@@ -90,7 +90,7 @@ public class PalettedContainer<T> implements PaletteResize<T>, PalettedContainer
|
2021-11-24 23:50:33 +01:00
|
|
|
}
|
|
|
|
|
2022-03-27 19:51:39 +02:00
|
|
|
@Override
|
|
|
|
- public int onResize(int newBits, T object) {
|
|
|
|
+ public synchronized int onResize(int newBits, T object) { // Paper - synchronize
|
|
|
|
PalettedContainer.Data<T> data = this.data;
|
2023-06-08 03:13:54 +02:00
|
|
|
PalettedContainer.Data<T> data2 = this.createOrReuseData(data, newBits);
|
|
|
|
data2.copyFrom(data.palette, data.storage);
|
|
|
|
@@ -115,7 +115,7 @@ public class PalettedContainer<T> implements PaletteResize<T>, PalettedContainer
|
2022-03-27 19:51:39 +02:00
|
|
|
return this.getAndSet(this.strategy.getIndex(x, y, z), value);
|
2021-11-24 23:50:33 +01:00
|
|
|
}
|
|
|
|
|
2022-03-27 19:51:39 +02:00
|
|
|
- private T getAndSet(int index, T value) {
|
|
|
|
+ private synchronized T getAndSet(int index, T value) { // Paper - synchronize
|
|
|
|
int i = this.data.palette.idFor(value);
|
|
|
|
int j = this.data.storage.getAndSet(index, i);
|
|
|
|
return this.data.palette.valueFor(j);
|
2023-06-08 03:13:54 +02:00
|
|
|
@@ -132,7 +132,7 @@ public class PalettedContainer<T> implements PaletteResize<T>, PalettedContainer
|
2021-11-24 23:50:33 +01:00
|
|
|
|
2022-03-27 19:51:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
- private void set(int index, T value) {
|
|
|
|
+ private synchronized void set(int index, T value) { // Paper - synchronize
|
|
|
|
int i = this.data.palette.idFor(value);
|
|
|
|
this.data.storage.set(index, i);
|
|
|
|
}
|
2023-06-08 03:13:54 +02:00
|
|
|
@@ -157,7 +157,7 @@ public class PalettedContainer<T> implements PaletteResize<T>, PalettedContainer
|
2021-11-24 23:50:33 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
- public void read(FriendlyByteBuf buf) {
|
|
|
|
+ public synchronized void read(FriendlyByteBuf buf) { // Paper - synchronize
|
|
|
|
this.acquire();
|
|
|
|
|
|
|
|
try {
|
2023-06-08 03:13:54 +02:00
|
|
|
@@ -173,7 +173,7 @@ public class PalettedContainer<T> implements PaletteResize<T>, PalettedContainer
|
|
|
|
}
|
|
|
|
|
2022-07-18 12:30:31 +02:00
|
|
|
@Override
|
2023-06-08 03:13:54 +02:00
|
|
|
- public void write(FriendlyByteBuf buf) {
|
|
|
|
+ public synchronized void write(FriendlyByteBuf buf) { // Paper - synchronize
|
2021-11-24 23:50:33 +01:00
|
|
|
this.acquire();
|
|
|
|
|
|
|
|
try {
|
2023-06-08 03:13:54 +02:00
|
|
|
@@ -228,7 +228,7 @@ public class PalettedContainer<T> implements PaletteResize<T>, PalettedContainer
|
2021-11-24 23:50:33 +01:00
|
|
|
}
|
|
|
|
|
2022-06-08 11:31:06 +02:00
|
|
|
@Override
|
2022-07-27 23:19:52 +02:00
|
|
|
- public PalettedContainerRO.PackedData<T> pack(IdMap<T> idList, PalettedContainer.Strategy paletteProvider) {
|
|
|
|
+ public synchronized PalettedContainerRO.PackedData<T> pack(IdMap<T> idList, PalettedContainer.Strategy paletteProvider) { // Paper - synchronize
|
2021-11-24 23:50:33 +01:00
|
|
|
this.acquire();
|
|
|
|
|
2022-06-08 11:31:06 +02:00
|
|
|
PalettedContainerRO.PackedData var12;
|