2020-04-30 16:59:24 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Mariell Hoversholm <proximyst@proximyst.com>
|
|
|
|
Date: Thu, 30 Apr 2020 16:56:54 +0200
|
|
|
|
Subject: [PATCH] Add Raw Byte ItemStack Serialization
|
|
|
|
|
|
|
|
Serializes using NBT which is safer for server data migrations than bukkits format.
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/DataConverterRegistry.java b/src/main/java/net/minecraft/server/DataConverterRegistry.java
|
2020-08-25 04:22:08 +02:00
|
|
|
index 08c11270c0409f3af9ba9b3a64488a2381b2a423..48e31e9142ffeb2725af6b1f483de67410e25694 100644
|
2020-04-30 16:59:24 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/DataConverterRegistry.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/DataConverterRegistry.java
|
2020-06-26 03:53:21 +02:00
|
|
|
@@ -24,6 +24,7 @@ public class DataConverterRegistry {
|
2020-04-30 16:59:24 +02:00
|
|
|
return datafixerbuilder.build(SystemUtils.e());
|
|
|
|
}
|
|
|
|
|
|
|
|
+ public static DataFixer getDataFixer() { return a(); } // Paper - OBFHELPER
|
|
|
|
public static DataFixer a() {
|
|
|
|
return DataConverterRegistry.c;
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/ItemStack.java b/src/main/java/net/minecraft/server/ItemStack.java
|
2020-08-25 04:22:08 +02:00
|
|
|
index b6703378e21a6cd7e140fd35756a20d47f49ed31..8c82f80bb21611b54a35e61c04f5ba3ee9efbd7d 100644
|
2020-04-30 16:59:24 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/ItemStack.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/ItemStack.java
|
2020-06-26 03:53:21 +02:00
|
|
|
@@ -144,6 +144,7 @@ public final class ItemStack {
|
2020-04-30 16:59:24 +02:00
|
|
|
this.checkEmpty();
|
|
|
|
}
|
|
|
|
|
|
|
|
+ public static ItemStack fromCompound(NBTTagCompound nbttagcompound) { return a(nbttagcompound); } // Paper - OBFHELPER
|
|
|
|
public static ItemStack a(NBTTagCompound nbttagcompound) {
|
|
|
|
try {
|
|
|
|
return new ItemStack(nbttagcompound);
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/NBTCompressedStreamTools.java b/src/main/java/net/minecraft/server/NBTCompressedStreamTools.java
|
2020-08-25 04:22:08 +02:00
|
|
|
index 6e6cabc03bc3822ee973bdafef8f4adb61b6c263..0282dcb68fa185b342f59c5aaafe8f42c632cac3 100644
|
2020-04-30 16:59:24 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/NBTCompressedStreamTools.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/NBTCompressedStreamTools.java
|
2020-08-25 04:22:08 +02:00
|
|
|
@@ -47,6 +47,7 @@ public class NBTCompressedStreamTools {
|
|
|
|
return nbttagcompound;
|
|
|
|
}
|
2020-04-30 16:59:24 +02:00
|
|
|
|
|
|
|
+ public static NBTTagCompound readNBT(InputStream inputstream) throws IOException { return a(inputstream); } // Paper - OBFHELPER
|
|
|
|
public static NBTTagCompound a(InputStream inputstream) throws IOException {
|
|
|
|
DataInputStream datainputstream = new DataInputStream(new BufferedInputStream(new GZIPInputStream(inputstream)));
|
|
|
|
Throwable throwable = null;
|
2020-08-25 04:22:08 +02:00
|
|
|
@@ -102,6 +103,7 @@ public class NBTCompressedStreamTools {
|
|
|
|
|
2020-04-30 16:59:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
+ public static void writeNBT(NBTTagCompound nbttagcompound, OutputStream outputstream) throws IOException { a(nbttagcompound, outputstream); } // Paper - OBFHELPER
|
|
|
|
public static void a(NBTTagCompound nbttagcompound, OutputStream outputstream) throws IOException {
|
|
|
|
DataOutputStream dataoutputstream = new DataOutputStream(new BufferedOutputStream(new GZIPOutputStream(outputstream)));
|
|
|
|
Throwable throwable = null;
|
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/util/CraftMagicNumbers.java b/src/main/java/org/bukkit/craftbukkit/util/CraftMagicNumbers.java
|
2020-11-03 03:22:15 +01:00
|
|
|
index 8e0da1d1441a5065a64c64d5cc4dcc0d275fcf76..22d41555ddc8c79609bea9f8dc510ab8a02e7872 100644
|
2020-04-30 16:59:24 +02:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/util/CraftMagicNumbers.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/util/CraftMagicNumbers.java
|
2020-09-14 11:57:06 +02:00
|
|
|
@@ -353,6 +353,46 @@ public final class CraftMagicNumbers implements UnsafeValues {
|
2020-04-30 16:59:24 +02:00
|
|
|
public boolean isSupportedApiVersion(String apiVersion) {
|
|
|
|
return apiVersion != null && SUPPORTED_API.contains(apiVersion);
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public byte[] serializeItem(ItemStack item) {
|
|
|
|
+ Preconditions.checkNotNull(item, "null cannot be serialized");
|
|
|
|
+ Preconditions.checkArgument(item.getType() != Material.AIR, "air cannot be serialized");
|
|
|
|
+
|
|
|
|
+ java.io.ByteArrayOutputStream outputStream = new java.io.ByteArrayOutputStream();
|
|
|
|
+ NBTTagCompound compound = (item instanceof CraftItemStack ? ((CraftItemStack) item).getHandle() : CraftItemStack.asNMSCopy(item)).save(new NBTTagCompound());
|
|
|
|
+ compound.setInt("DataVersion", getDataVersion());
|
|
|
|
+ try {
|
|
|
|
+ net.minecraft.server.NBTCompressedStreamTools.writeNBT(
|
|
|
|
+ compound,
|
|
|
|
+ outputStream
|
|
|
|
+ );
|
|
|
|
+ } catch (IOException ex) {
|
|
|
|
+ throw new RuntimeException(ex);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return outputStream.toByteArray();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public ItemStack deserializeItem(byte[] data) {
|
|
|
|
+ Preconditions.checkNotNull(data, "null cannot be deserialized");
|
|
|
|
+ Preconditions.checkArgument(data.length > 0, "cannot deserialize nothing");
|
|
|
|
+
|
|
|
|
+ try {
|
|
|
|
+ NBTTagCompound compound = net.minecraft.server.NBTCompressedStreamTools.readNBT(
|
|
|
|
+ new java.io.ByteArrayInputStream(data)
|
|
|
|
+ );
|
|
|
|
+ int dataVersion = compound.getInt("DataVersion");
|
|
|
|
+
|
2020-05-18 19:24:06 +02:00
|
|
|
+ Preconditions.checkArgument(dataVersion <= getDataVersion(), "Newer version! Server downgrades are not supported!");
|
2020-05-22 07:08:18 +02:00
|
|
|
+ Dynamic<NBTBase> converted = DataConverterRegistry.getDataFixer().update(DataConverterTypes.ITEM_STACK, new Dynamic<NBTBase>(DynamicOpsNBT.a, compound), dataVersion, getDataVersion());
|
2020-04-30 16:59:24 +02:00
|
|
|
+ return CraftItemStack.asCraftMirror(net.minecraft.server.ItemStack.fromCompound((NBTTagCompound) converted.getValue()));
|
|
|
|
+ } catch (IOException ex) {
|
|
|
|
+ com.destroystokyo.paper.util.SneakyThrow.sneaky(ex);
|
|
|
|
+ throw new RuntimeException();
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
// Paper end
|
|
|
|
|
|
|
|
/**
|