Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Staticify all serialization helpers #878

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
package org.geysermc.mcprotocollib.network.example;

import io.netty.buffer.ByteBuf;
import org.geysermc.mcprotocollib.network.codec.PacketCodecHelper;
import org.geysermc.mcprotocollib.network.packet.Packet;
import org.geysermc.mcprotocollib.protocol.codec.MinecraftTypes;

public class PingPacket implements Packet {
private final String id;

public PingPacket(ByteBuf buf, PacketCodecHelper codecHelper) {
this.id = codecHelper.readString(buf);
public PingPacket(ByteBuf buf) {
this.id = MinecraftTypes.readString(buf);
}

public PingPacket(String id) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
import io.netty.buffer.ByteBuf;
import org.geysermc.mcprotocollib.network.Server;
import org.geysermc.mcprotocollib.network.Session;
import org.geysermc.mcprotocollib.network.codec.BasePacketCodecHelper;
import org.geysermc.mcprotocollib.network.codec.PacketCodecHelper;
import org.geysermc.mcprotocollib.network.codec.PacketDefinition;
import org.geysermc.mcprotocollib.network.codec.PacketSerializer;
import org.geysermc.mcprotocollib.network.crypt.AESEncryption;
Expand All @@ -13,6 +11,7 @@
import org.geysermc.mcprotocollib.network.packet.PacketHeader;
import org.geysermc.mcprotocollib.network.packet.PacketProtocol;
import org.geysermc.mcprotocollib.network.packet.PacketRegistry;
import org.geysermc.mcprotocollib.protocol.codec.MinecraftTypes;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

Expand All @@ -33,20 +32,16 @@ public TestProtocol(SecretKey key) {
this.setSecretKey(key);
}

public PacketCodecHelper createHelper() {
return new BasePacketCodecHelper();
}

public void setSecretKey(SecretKey key) {
registry.register(0, PingPacket.class, new PacketSerializer<>() {
@Override
public void serialize(ByteBuf buf, PacketCodecHelper helper, PingPacket packet) {
helper.writeString(buf, packet.getPingId());
public void serialize(ByteBuf buf, PingPacket packet) {
MinecraftTypes.writeString(buf, packet.getPingId());
}

@Override
public PingPacket deserialize(ByteBuf buf, PacketCodecHelper helper, PacketDefinition<PingPacket, PacketCodecHelper> definition) {
return new PingPacket(buf, helper);
public PingPacket deserialize(ByteBuf buf, PacketDefinition<PingPacket> definition) {
return new PingPacket(buf);
}
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import net.kyori.adventure.text.Component;
import org.checkerframework.checker.nullness.qual.NonNull;
import org.checkerframework.checker.nullness.qual.Nullable;
import org.geysermc.mcprotocollib.network.codec.PacketCodecHelper;
import org.geysermc.mcprotocollib.network.compression.CompressionConfig;
import org.geysermc.mcprotocollib.network.crypt.EncryptionConfig;
import org.geysermc.mcprotocollib.network.event.session.SessionEvent;
Expand Down Expand Up @@ -45,13 +44,6 @@ public interface Session {
*/
PacketProtocol getPacketProtocol();

/**
* Gets the session's {@link PacketCodecHelper}.
*
* @return The session's packet codec helper.
*/
PacketCodecHelper getCodecHelper();

/**
* Gets this session's set flags. If this session belongs to a server, the server's
* flags will be included in the results.
Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
*
* @param <T> the packet type
*/
public class PacketDefinition<T extends Packet, H extends PacketCodecHelper> {
public class PacketDefinition<T extends Packet> {
private final int id;
private final Class<T> packetClass;
private final PacketSerializer<T, H> serializer;
private final PacketSerializer<T> serializer;

public PacketDefinition(final int id, final Class<T> packetClass, final PacketSerializer<T, H> serializer) {
public PacketDefinition(final int id, final Class<T> packetClass, final PacketSerializer<T> serializer) {
this.id = id;
this.packetClass = packetClass;
this.serializer = serializer;
Expand Down Expand Up @@ -44,11 +44,11 @@ public Class<T> getPacketClass() {
*
* @return the packet serializer of the packet
*/
public PacketSerializer<T, H> getSerializer() {
public PacketSerializer<T> getSerializer() {
return this.serializer;
}

public T newInstance(ByteBuf buf, H helper) {
return this.serializer.deserialize(buf, helper, this);
public T newInstance(ByteBuf buf) {
return this.serializer.deserialize(buf, this);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
import io.netty.buffer.ByteBuf;
import org.geysermc.mcprotocollib.network.packet.Packet;

public interface PacketSerializer<T extends Packet, H extends PacketCodecHelper> {
public interface PacketSerializer<T extends Packet> {

void serialize(ByteBuf buf, H helper, T packet);
void serialize(ByteBuf buf, T packet);

T deserialize(ByteBuf buf, H helper, PacketDefinition<T, H> definition);
T deserialize(ByteBuf buf, PacketDefinition<T> definition);
}
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ protected void addHandlers(S session, Channel ch) {
pipeline.addLast("write-timeout", new WriteTimeoutHandler(session.getFlag(BuiltinFlags.WRITE_TIMEOUT, 0)));

pipeline.addLast("encryption", new PacketEncryptorCodec());
pipeline.addLast("sizer", new PacketSizerCodec(protocol.getPacketHeader(), session.getCodecHelper()));
pipeline.addLast("compression", new PacketCompressionCodec(session.getCodecHelper()));
pipeline.addLast("sizer", new PacketSizerCodec(protocol.getPacketHeader()));
pipeline.addLast("compression", new PacketCompressionCodec());

pipeline.addLast("flow-control", new AutoReadFlowControlHandler());
pipeline.addLast("codec", new PacketCodec(session, client));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
import io.netty.handler.codec.EncoderException;
import io.netty.handler.codec.MessageToMessageCodec;
import org.geysermc.mcprotocollib.network.Session;
import org.geysermc.mcprotocollib.network.codec.PacketCodecHelper;
import org.geysermc.mcprotocollib.network.codec.PacketDefinition;
import org.geysermc.mcprotocollib.network.event.session.PacketErrorEvent;
import org.geysermc.mcprotocollib.network.packet.Packet;
Expand Down Expand Up @@ -40,14 +39,13 @@ public void encode(ChannelHandlerContext ctx, Packet packet, List<Object> out) {

PacketProtocol packetProtocol = this.session.getPacketProtocol();
PacketRegistry packetRegistry = packetProtocol.getOutboundPacketRegistry();
PacketCodecHelper codecHelper = this.session.getCodecHelper();
try {
int packetId = this.client ? packetRegistry.getServerboundId(packet) : packetRegistry.getClientboundId(packet);
PacketDefinition definition = this.client ? packetRegistry.getServerboundDefinition(packetId) : packetRegistry.getClientboundDefinition(packetId);

ByteBuf buf = ctx.alloc().buffer();
packetProtocol.getPacketHeader().writePacketId(buf, codecHelper, packetId);
definition.getSerializer().serialize(buf, codecHelper, packet);
packetProtocol.getPacketHeader().writePacketId(buf, packetId);
definition.getSerializer().serialize(buf, packet);

out.add(buf);

Expand Down Expand Up @@ -76,18 +74,17 @@ protected void decode(ChannelHandlerContext ctx, ByteBuf buf, List<Object> out)

PacketProtocol packetProtocol = this.session.getPacketProtocol();
PacketRegistry packetRegistry = packetProtocol.getInboundPacketRegistry();
PacketCodecHelper codecHelper = this.session.getCodecHelper();
Packet packet = null;
try {
int id = packetProtocol.getPacketHeader().readPacketId(buf, codecHelper);
int id = packetProtocol.getPacketHeader().readPacketId(buf);
if (id == -1) {
buf.readerIndex(initial);
return;
}

log.trace(marker, "Decoding packet with id: {}", id);

packet = this.client ? packetRegistry.createClientboundPacket(id, buf, codecHelper) : packetRegistry.createServerboundPacket(id, buf, codecHelper);
packet = this.client ? packetRegistry.createClientboundPacket(id, buf) : packetRegistry.createServerboundPacket(id, buf);

if (buf.readableBytes() > 0) {
throw new IllegalStateException("Packet \"" + packet.getClass().getSimpleName() + "\" not fully read.");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,14 @@
import io.netty.handler.codec.MessageToMessageCodec;
import lombok.RequiredArgsConstructor;
import org.geysermc.mcprotocollib.network.NetworkConstants;
import org.geysermc.mcprotocollib.network.codec.PacketCodecHelper;
import org.geysermc.mcprotocollib.network.compression.CompressionConfig;
import org.geysermc.mcprotocollib.protocol.codec.MinecraftTypes;

import java.util.List;

@RequiredArgsConstructor
public class PacketCompressionCodec extends MessageToMessageCodec<ByteBuf, ByteBuf> {
private static final int MAX_UNCOMPRESSED_SIZE = 8 * 1024 * 1024; // 8MiB
private final PacketCodecHelper helper;

@Override
public void handlerRemoved(ChannelHandlerContext ctx) {
Expand Down Expand Up @@ -42,10 +41,10 @@ public void encode(ChannelHandlerContext ctx, ByteBuf msg, List<Object> out) {
ByteBuf outBuf = ctx.alloc().directBuffer(uncompressed);
if (uncompressed < config.threshold()) {
// Under the threshold, there is nothing to do.
this.helper.writeVarInt(outBuf, 0);
MinecraftTypes.writeVarInt(outBuf, 0);
outBuf.writeBytes(msg);
} else {
this.helper.writeVarInt(outBuf, uncompressed);
MinecraftTypes.writeVarInt(outBuf, uncompressed);
config.compression().deflate(msg, outBuf);
}

Expand All @@ -60,7 +59,7 @@ protected void decode(ChannelHandlerContext ctx, ByteBuf in, List<Object> out) {
return;
}

int claimedUncompressedSize = this.helper.readVarInt(in);
int claimedUncompressedSize = MinecraftTypes.readVarInt(in);
if (claimedUncompressedSize == 0) {
out.add(in.retain());
return;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,13 @@
import io.netty.handler.codec.ByteToMessageCodec;
import io.netty.handler.codec.CorruptedFrameException;
import lombok.RequiredArgsConstructor;
import org.geysermc.mcprotocollib.network.codec.PacketCodecHelper;
import org.geysermc.mcprotocollib.network.packet.PacketHeader;

import java.util.List;

@RequiredArgsConstructor
public class PacketSizerCodec extends ByteToMessageCodec<ByteBuf> {
private final PacketHeader header;
private final PacketCodecHelper codecHelper;

@Override
public void encode(ChannelHandlerContext ctx, ByteBuf in, ByteBuf out) {
Expand All @@ -26,7 +24,7 @@ public void encode(ChannelHandlerContext ctx, ByteBuf in, ByteBuf out) {

int length = in.readableBytes();
out.ensureWritable(header.getLengthSize(length) + length);
header.writeLength(out, codecHelper, length);
header.writeLength(out, length);
out.writeBytes(in);
}

Expand All @@ -48,7 +46,7 @@ protected void decode(ChannelHandlerContext ctx, ByteBuf buf, List<Object> out)

lengthBytes[index] = buf.readByte();
if ((header.isLengthVariable() && lengthBytes[index] >= 0) || index == size - 1) {
int length = header.readLength(Unpooled.wrappedBuffer(lengthBytes), codecHelper, buf.readableBytes());
int length = header.readLength(Unpooled.wrappedBuffer(lengthBytes), buf.readableBytes());
if (buf.readableBytes() < length) {
buf.resetReaderIndex();
return;
Expand Down
Loading
Loading