From 0debb81392a70f33781756198133414eed5ba7f1 Mon Sep 17 00:00:00 2001 From: Andrew Steinborn Date: Mon, 3 May 2021 20:08:16 -0400 Subject: [PATCH] I was nagged to make it more consistent --- .../proxy/protocol/ProtocolUtils.java | 16 ++++++++-------- .../proxy/protocol/ProtocolUtilsTest.java | 10 +++++----- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/proxy/src/main/java/com/velocitypowered/proxy/protocol/ProtocolUtils.java b/proxy/src/main/java/com/velocitypowered/proxy/protocol/ProtocolUtils.java index 6fbecf2bc..2591da8cc 100644 --- a/proxy/src/main/java/com/velocitypowered/proxy/protocol/ProtocolUtils.java +++ b/proxy/src/main/java/com/velocitypowered/proxy/protocol/ProtocolUtils.java @@ -61,17 +61,17 @@ public enum ProtocolUtils { private static final int DEFAULT_MAX_STRING_SIZE = 65536; // 64KiB private static final QuietDecoderException BAD_VARINT_CACHED = - new QuietDecoderException("Bad varint decoded"); - private static final int[] VAR_INT_BYTE_LENGTHS = new int[33]; + new QuietDecoderException("Bad VarInt decoded"); + private static final int[] VARINT_BYTE_LENGTHS = new int[33]; static { // Inspired by https://richardstartin.github.io/posts/dont-use-protobuf-for-telemetry // This has been slightly modified in that we reduce the length to 32-bit only, since Velocity // doesn't look at any part of the Minecraft protocol that requires us to look at VarLongs. for (int i = 0; i <= 32; ++i) { - VAR_INT_BYTE_LENGTHS[i] = (int) Math.ceil((31d - (i - 1)) / 7d); + VARINT_BYTE_LENGTHS[i] = (int) Math.ceil((31d - (i - 1)) / 7d); } - VAR_INT_BYTE_LENGTHS[32] = 1; // Special case for the number 0. + VARINT_BYTE_LENGTHS[32] = 1; // Special case for the number 0. } /** @@ -82,7 +82,7 @@ public enum ProtocolUtils { public static int readVarInt(ByteBuf buf) { int read = readVarIntSafely(buf); if (read == Integer.MIN_VALUE) { - throw MinecraftDecoder.DEBUG ? new CorruptedFrameException("Bad varint decoded") + throw MinecraftDecoder.DEBUG ? new CorruptedFrameException("Bad VarInt decoded") : BAD_VARINT_CACHED; } return read; @@ -108,8 +108,8 @@ public enum ProtocolUtils { return Integer.MIN_VALUE; } - public static int varintBytes(int value) { - return VAR_INT_BYTE_LENGTHS[Integer.numberOfLeadingZeros(value)]; + public static int varIntBytes(int value) { + return VARINT_BYTE_LENGTHS[Integer.numberOfLeadingZeros(value)]; } /** @@ -118,7 +118,7 @@ public enum ProtocolUtils { * @param value the integer to write */ public static void writeVarInt(ByteBuf buf, int value) { - int length = varintBytes(value); + int length = varIntBytes(value); for (int i = 0; i < length; ++i) { buf.writeByte(((byte) ((value & 0x7F) | 0x80))); value >>>= 7; diff --git a/proxy/src/test/java/com/velocitypowered/proxy/protocol/ProtocolUtilsTest.java b/proxy/src/test/java/com/velocitypowered/proxy/protocol/ProtocolUtilsTest.java index d48be3742..40800935d 100644 --- a/proxy/src/test/java/com/velocitypowered/proxy/protocol/ProtocolUtilsTest.java +++ b/proxy/src/test/java/com/velocitypowered/proxy/protocol/ProtocolUtilsTest.java @@ -25,21 +25,21 @@ public class ProtocolUtilsTest { @Test void negativeVarIntBytes() { - assertEquals(5, ProtocolUtils.varintBytes(-1)); - assertEquals(5, ProtocolUtils.varintBytes(Integer.MIN_VALUE)); + assertEquals(5, ProtocolUtils.varIntBytes(-1)); + assertEquals(5, ProtocolUtils.varIntBytes(Integer.MIN_VALUE)); } @Test void zeroVarIntBytes() { - assertEquals(1, ProtocolUtils.varintBytes(0)); - assertEquals(1, ProtocolUtils.varintBytes(1)); + assertEquals(1, ProtocolUtils.varIntBytes(0)); + assertEquals(1, ProtocolUtils.varIntBytes(1)); } @Test void ensureConsistencyAcrossNumberBits() { for (int i = 0; i <= 31; i++) { int number = (1 << i) - 1; - assertEquals(conventionalWrittenBytes(number), ProtocolUtils.varintBytes(number), + assertEquals(conventionalWrittenBytes(number), ProtocolUtils.varIntBytes(number), "mismatch with " + i + "-bit number"); } }