2025-11-24 22:52:51 +03:00

71 lines
1.9 KiB
Java

/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* com.google.common.annotations.VisibleForTesting
*/
package net.minecraft.nbt;
import com.google.common.annotations.VisibleForTesting;
import net.minecraft.nbt.NbtAccounterException;
public class NbtAccounter {
private static final int MAX_STACK_DEPTH = 512;
private final long quota;
private long usage;
private final int maxDepth;
private int depth;
public NbtAccounter(long quota, int maxDepth) {
this.quota = quota;
this.maxDepth = maxDepth;
}
public static NbtAccounter create(long quota) {
return new NbtAccounter(quota, 512);
}
public static NbtAccounter unlimitedHeap() {
return new NbtAccounter(Long.MAX_VALUE, 512);
}
public void accountBytes(long bytesPerEntry, long count) {
this.accountBytes(bytesPerEntry * count);
}
public void accountBytes(long size) {
if (size < 0L) {
throw new IllegalArgumentException("Tried to account NBT tag with negative size: " + size);
}
if (this.usage + size > this.quota) {
throw new NbtAccounterException("Tried to read NBT tag that was too big; tried to allocate: " + this.usage + " + " + size + " bytes where max allowed: " + this.quota);
}
this.usage += size;
}
public void pushDepth() {
if (this.depth >= this.maxDepth) {
throw new NbtAccounterException("Tried to read NBT tag with too high complexity, depth > " + this.maxDepth);
}
++this.depth;
}
public void popDepth() {
if (this.depth <= 0) {
throw new NbtAccounterException("NBT-Accounter tried to pop stack-depth at top-level");
}
--this.depth;
}
@VisibleForTesting
public long getUsage() {
return this.usage;
}
@VisibleForTesting
public int getDepth() {
return this.depth;
}
}