package net.minecraft.util; import com.google.common.hash.HashCode; import com.google.common.hash.HashFunction; import com.google.common.hash.Hasher; import com.google.common.hash.Hashing; import com.mojang.datafixers.util.Pair; import com.mojang.serialization.DataResult; import com.mojang.serialization.DynamicOps; import com.mojang.serialization.ListBuilder; import com.mojang.serialization.MapLike; import com.mojang.serialization.RecordBuilder; import com.mojang.serialization.RecordBuilder.AbstractUniversalBuilder; import java.nio.ByteBuffer; import java.util.ArrayList; import java.util.Comparator; import java.util.List; import java.util.Map; import java.util.Map.Entry; import java.util.function.BiConsumer; import java.util.function.Consumer; import java.util.function.Function; import java.util.stream.IntStream; import java.util.stream.LongStream; import java.util.stream.Stream; public class HashOps implements DynamicOps { private static final byte TAG_EMPTY = 1; private static final byte TAG_MAP_START = 2; private static final byte TAG_MAP_END = 3; private static final byte TAG_LIST_START = 4; private static final byte TAG_LIST_END = 5; private static final byte TAG_BYTE = 6; private static final byte TAG_SHORT = 7; private static final byte TAG_INT = 8; private static final byte TAG_LONG = 9; private static final byte TAG_FLOAT = 10; private static final byte TAG_DOUBLE = 11; private static final byte TAG_STRING = 12; private static final byte TAG_BOOLEAN = 13; private static final byte TAG_BYTE_ARRAY_START = 14; private static final byte TAG_BYTE_ARRAY_END = 15; private static final byte TAG_INT_ARRAY_START = 16; private static final byte TAG_INT_ARRAY_END = 17; private static final byte TAG_LONG_ARRAY_START = 18; private static final byte TAG_LONG_ARRAY_END = 19; private static final byte[] EMPTY_PAYLOAD = new byte[]{1}; private static final byte[] FALSE_PAYLOAD = new byte[]{13, 0}; private static final byte[] TRUE_PAYLOAD = new byte[]{13, 1}; public static final byte[] EMPTY_MAP_PAYLOAD = new byte[]{2, 3}; public static final byte[] EMPTY_LIST_PAYLOAD = new byte[]{4, 5}; private static final DataResult UNSUPPORTED_OPERATION_ERROR = DataResult.error(() -> "Unsupported operation"); private static final Comparator HASH_COMPARATOR = Comparator.comparingLong(HashCode::padToLong); private static final Comparator> MAP_ENTRY_ORDER = Entry.comparingByKey(HASH_COMPARATOR) .thenComparing(Entry.comparingByValue(HASH_COMPARATOR)); private static final Comparator> MAPLIKE_ENTRY_ORDER = Comparator.comparing(Pair::getFirst, HASH_COMPARATOR) .thenComparing(Pair::getSecond, HASH_COMPARATOR); public static final HashOps CRC32C_INSTANCE = new HashOps(Hashing.crc32c()); final HashFunction hashFunction; final HashCode empty; private final HashCode emptyMap; private final HashCode emptyList; private final HashCode trueHash; private final HashCode falseHash; public HashOps(HashFunction hashFunction) { this.hashFunction = hashFunction; this.empty = hashFunction.hashBytes(EMPTY_PAYLOAD); this.emptyMap = hashFunction.hashBytes(EMPTY_MAP_PAYLOAD); this.emptyList = hashFunction.hashBytes(EMPTY_LIST_PAYLOAD); this.falseHash = hashFunction.hashBytes(FALSE_PAYLOAD); this.trueHash = hashFunction.hashBytes(TRUE_PAYLOAD); } public HashCode empty() { return this.empty; } public HashCode emptyMap() { return this.emptyMap; } public HashCode emptyList() { return this.emptyList; } public HashCode createNumeric(Number i) { return switch (i) { case Byte byte_ -> this.createByte(byte_); case Short short_ -> this.createShort(short_); case Integer integer -> this.createInt(integer); case Long long_ -> this.createLong(long_); case Double double_ -> this.createDouble(double_); case Float float_ -> this.createFloat(float_); default -> this.createDouble(i.doubleValue()); }; } public HashCode createByte(byte value) { return this.hashFunction.newHasher(2).putByte((byte)6).putByte(value).hash(); } public HashCode createShort(short value) { return this.hashFunction.newHasher(3).putByte((byte)7).putShort(value).hash(); } public HashCode createInt(int value) { return this.hashFunction.newHasher(5).putByte((byte)8).putInt(value).hash(); } public HashCode createLong(long value) { return this.hashFunction.newHasher(9).putByte((byte)9).putLong(value).hash(); } public HashCode createFloat(float value) { return this.hashFunction.newHasher(5).putByte((byte)10).putFloat(value).hash(); } public HashCode createDouble(double value) { return this.hashFunction.newHasher(9).putByte((byte)11).putDouble(value).hash(); } public HashCode createString(String value) { return this.hashFunction.newHasher().putByte((byte)12).putInt(value.length()).putUnencodedChars(value).hash(); } public HashCode createBoolean(boolean value) { return value ? this.trueHash : this.falseHash; } private static Hasher hashMap(Hasher hasher, Map map) { hasher.putByte((byte)2); map.entrySet() .stream() .sorted(MAP_ENTRY_ORDER) .forEach(entry -> hasher.putBytes(((HashCode)entry.getKey()).asBytes()).putBytes(((HashCode)entry.getValue()).asBytes())); hasher.putByte((byte)3); return hasher; } static Hasher hashMap(Hasher hasher, Stream> map) { hasher.putByte((byte)2); map.sorted(MAPLIKE_ENTRY_ORDER).forEach(pair -> hasher.putBytes(((HashCode)pair.getFirst()).asBytes()).putBytes(((HashCode)pair.getSecond()).asBytes())); hasher.putByte((byte)3); return hasher; } public HashCode createMap(Stream> map) { return hashMap(this.hashFunction.newHasher(), map).hash(); } public HashCode createMap(Map map) { return hashMap(this.hashFunction.newHasher(), map).hash(); } public HashCode createList(Stream input) { Hasher hasher = this.hashFunction.newHasher(); hasher.putByte((byte)4); input.forEach(hashCode -> hasher.putBytes(hashCode.asBytes())); hasher.putByte((byte)5); return hasher.hash(); } public HashCode createByteList(ByteBuffer input) { Hasher hasher = this.hashFunction.newHasher(); hasher.putByte((byte)14); hasher.putBytes(input); hasher.putByte((byte)15); return hasher.hash(); } public HashCode createIntList(IntStream input) { Hasher hasher = this.hashFunction.newHasher(); hasher.putByte((byte)16); input.forEach(hasher::putInt); hasher.putByte((byte)17); return hasher.hash(); } public HashCode createLongList(LongStream input) { Hasher hasher = this.hashFunction.newHasher(); hasher.putByte((byte)18); input.forEach(hasher::putLong); hasher.putByte((byte)19); return hasher.hash(); } public HashCode remove(HashCode input, String key) { return input; } @Override public RecordBuilder mapBuilder() { return new HashOps.MapHashBuilder(); } @Override public ListBuilder listBuilder() { return new HashOps.ListHashBuilder(); } public String toString() { return "Hash " + this.hashFunction; } public U convertTo(DynamicOps ops, HashCode hashCode) { throw new UnsupportedOperationException("Can't convert from this type"); } public Number getNumberValue(HashCode hashCode, Number number) { return number; } public HashCode set(HashCode input, String key, HashCode value) { return input; } public HashCode update(HashCode input, String key, Function updater) { return input; } public HashCode updateGeneric(HashCode input, HashCode key, Function updater) { return input; } private static DataResult unsupported() { return (DataResult)UNSUPPORTED_OPERATION_ERROR; } public DataResult get(HashCode input, String key) { return unsupported(); } public DataResult getGeneric(HashCode input, HashCode key) { return unsupported(); } public DataResult getNumberValue(HashCode input) { return unsupported(); } public DataResult getBooleanValue(HashCode input) { return unsupported(); } public DataResult getStringValue(HashCode input) { return unsupported(); } public DataResult mergeToList(HashCode list, HashCode value) { return unsupported(); } public DataResult mergeToList(HashCode list, List values) { return unsupported(); } public DataResult mergeToMap(HashCode list, HashCode key, HashCode value) { return unsupported(); } public DataResult mergeToMap(HashCode list, Map values) { return unsupported(); } public DataResult mergeToMap(HashCode list, MapLike values) { return unsupported(); } public DataResult>> getMapValues(HashCode input) { return unsupported(); } public DataResult>> getMapEntries(HashCode input) { return unsupported(); } public DataResult> getStream(HashCode input) { return unsupported(); } public DataResult>> getList(HashCode input) { return unsupported(); } public DataResult> getMap(HashCode input) { return unsupported(); } public DataResult getByteBuffer(HashCode input) { return unsupported(); } public DataResult getIntStream(HashCode input) { return unsupported(); } public DataResult getLongStream(HashCode input) { return unsupported(); } class ListHashBuilder extends AbstractListBuilder { public ListHashBuilder() { super(HashOps.this); } protected Hasher initBuilder() { return HashOps.this.hashFunction.newHasher().putByte((byte)4); } protected Hasher append(Hasher hasher, HashCode hashCode) { return hasher.putBytes(hashCode.asBytes()); } protected DataResult build(Hasher hasher, HashCode hashCode) { assert hashCode.equals(HashOps.this.empty); hasher.putByte((byte)5); return DataResult.success(hasher.hash()); } } final class MapHashBuilder extends AbstractUniversalBuilder>> { public MapHashBuilder() { super(HashOps.this); } protected List> initBuilder() { return new ArrayList(); } protected List> append(HashCode hashCode, HashCode hashCode2, List> list) { list.add(Pair.of(hashCode, hashCode2)); return list; } protected DataResult build(List> list, HashCode hashCode) { assert hashCode.equals(HashOps.this.empty()); return DataResult.success(HashOps.hashMap(HashOps.this.hashFunction.newHasher(), list.stream()).hash()); } } }