[Experimental] Update to netty CR3.

This commit is contained in:
md_5 2013-05-21 11:28:02 +10:00
parent e34a5fbdad
commit 950af1102e

View file

@ -1,4 +1,4 @@
From e601bddd1e85d063071799a2c78e0ad54ba5fe1c Mon Sep 17 00:00:00 2001 From 5581db959aa1fd81c518c0ff898c2bac0a82931d Mon Sep 17 00:00:00 2001
From: md_5 <md_5@live.com.au> From: md_5 <md_5@live.com.au>
Date: Tue, 23 Apr 2013 11:47:32 +1000 Date: Tue, 23 Apr 2013 11:47:32 +1000
Subject: [PATCH] Netty Subject: [PATCH] Netty
@ -32,7 +32,7 @@ Subject: [PATCH] Netty
Commons Attribution-ShareAlike 3.0 Unported license. Commons Attribution-ShareAlike 3.0 Unported license.
diff --git a/pom.xml b/pom.xml diff --git a/pom.xml b/pom.xml
index 274fd43..428f9ce 100644 index 274fd43..4022004 100644
--- a/pom.xml --- a/pom.xml
+++ b/pom.xml +++ b/pom.xml
@@ -132,6 +132,16 @@ @@ -132,6 +132,16 @@
@ -42,7 +42,7 @@ index 274fd43..428f9ce 100644
+ <dependency> + <dependency>
+ <groupId>io.netty</groupId> + <groupId>io.netty</groupId>
+ <artifactId>netty-all</artifactId> + <artifactId>netty-all</artifactId>
+ <version>4.0.0.CR1</version> + <version>4.0.0.CR3</version>
+ </dependency> + </dependency>
+ <dependency> + <dependency>
+ <groupId>org.javassist</groupId> + <groupId>org.javassist</groupId>
@ -471,7 +471,7 @@ index 0000000..aa8192e
+} +}
diff --git a/src/main/java/org/spigotmc/netty/NettyNetworkManager.java b/src/main/java/org/spigotmc/netty/NettyNetworkManager.java diff --git a/src/main/java/org/spigotmc/netty/NettyNetworkManager.java b/src/main/java/org/spigotmc/netty/NettyNetworkManager.java
new file mode 100644 new file mode 100644
index 0000000..97bf65e index 0000000..638a70e
--- /dev/null --- /dev/null
+++ b/src/main/java/org/spigotmc/netty/NettyNetworkManager.java +++ b/src/main/java/org/spigotmc/netty/NettyNetworkManager.java
@@ -0,0 +1,254 @@ @@ -0,0 +1,254 @@
@ -632,7 +632,7 @@ index 0000000..97bf65e
+ channel.pipeline().get(OutboundManager.class).flushNow = true; + channel.pipeline().get(OutboundManager.class).flushNow = true;
+ } + }
+ +
+ channel.write(packet); + channel.write(packet, channel.voidPromise());
+ if (packet instanceof Packet252KeyResponse) { + if (packet instanceof Packet252KeyResponse) {
+ Cipher encrypt = NettyServerConnection.getCipher(Cipher.ENCRYPT_MODE, secret); + Cipher encrypt = NettyServerConnection.getCipher(Cipher.ENCRYPT_MODE, secret);
+ channel.pipeline().addBefore("decoder", "encrypt", new CipherEncoder(encrypt)); + channel.pipeline().addBefore("decoder", "encrypt", new CipherEncoder(encrypt));
@ -1097,14 +1097,15 @@ index 0000000..7476074
+} +}
diff --git a/src/main/java/org/spigotmc/netty/PacketDecoder.java b/src/main/java/org/spigotmc/netty/PacketDecoder.java diff --git a/src/main/java/org/spigotmc/netty/PacketDecoder.java b/src/main/java/org/spigotmc/netty/PacketDecoder.java
new file mode 100644 new file mode 100644
index 0000000..2587a27 index 0000000..f7c4c65
--- /dev/null --- /dev/null
+++ b/src/main/java/org/spigotmc/netty/PacketDecoder.java +++ b/src/main/java/org/spigotmc/netty/PacketDecoder.java
@@ -0,0 +1,59 @@ @@ -0,0 +1,69 @@
+package org.spigotmc.netty; +package org.spigotmc.netty;
+ +
+import io.netty.buffer.ByteBuf; +import io.netty.buffer.ByteBuf;
+import io.netty.buffer.ByteBufInputStream; +import io.netty.buffer.ByteBufInputStream;
+import io.netty.buffer.MessageBuf;
+import io.netty.channel.ChannelHandlerContext; +import io.netty.channel.ChannelHandlerContext;
+import io.netty.handler.codec.ReplayingDecoder; +import io.netty.handler.codec.ReplayingDecoder;
+import java.io.DataInputStream; +import java.io.DataInputStream;
@ -1118,42 +1119,51 @@ index 0000000..2587a27
+ * backs the input {@link ByteBuf}. Reads an unsigned byte packet header and + * backs the input {@link ByteBuf}. Reads an unsigned byte packet header and
+ * then decodes the packet accordingly. + * then decodes the packet accordingly.
+ */ + */
+public class PacketDecoder extends ReplayingDecoder<ReadState> { +public class PacketDecoder extends ReplayingDecoder<ReadState>
+{
+ +
+ private DataInputStream input; + private DataInputStream input;
+ private Packet packet; + private Packet packet;
+ +
+ public PacketDecoder() { + public PacketDecoder()
+ {
+ super( ReadState.HEADER ); + super( ReadState.HEADER );
+ } + }
+ +
+ @Override + @Override
+ protected Packet decode(ChannelHandlerContext ctx, ByteBuf in) throws Exception { + protected void decode(ChannelHandlerContext ctx, ByteBuf in, MessageBuf<Object> out) throws Exception
+ if (input == null) { + {
+ if ( input == null )
+ {
+ input = new DataInputStream( new ByteBufInputStream( in ) ); + input = new DataInputStream( new ByteBufInputStream( in ) );
+ } + }
+ +
+ while (true) { + while ( true )
+ switch (state()) { + {
+ switch ( state() )
+ {
+ case HEADER: + case HEADER:
+ short packetId = in.readUnsignedByte(); + short packetId = in.readUnsignedByte();
+ packet = Packet.a( MinecraftServer.getServer().getLogger(), packetId ); + packet = Packet.a( MinecraftServer.getServer().getLogger(), packetId );
+ if (packet == null) { + if ( packet == null )
+ {
+ throw new IOException( "Bad packet id " + packetId ); + throw new IOException( "Bad packet id " + packetId );
+ } + }
+ checkpoint( ReadState.DATA ); + checkpoint( ReadState.DATA );
+ case DATA: + case DATA:
+ try { + try
+ {
+ packet.a( input ); + packet.a( input );
+ } catch (EOFException ex) { + } catch ( EOFException ex )
+ return null; + {
+ return;
+ } + }
+ +
+ checkpoint( ReadState.HEADER ); + checkpoint( ReadState.HEADER );
+ Packet ret = packet; + Packet ret = packet;
+ packet = null; + packet = null;
+ + out.add( ret );
+ return ret; + break;
+ default: + default:
+ throw new IllegalStateException(); + throw new IllegalStateException();
+ } + }
@ -1162,10 +1172,10 @@ index 0000000..2587a27
+} +}
diff --git a/src/main/java/org/spigotmc/netty/PacketEncoder.java b/src/main/java/org/spigotmc/netty/PacketEncoder.java diff --git a/src/main/java/org/spigotmc/netty/PacketEncoder.java b/src/main/java/org/spigotmc/netty/PacketEncoder.java
new file mode 100644 new file mode 100644
index 0000000..4683021 index 0000000..c21be9f
--- /dev/null --- /dev/null
+++ b/src/main/java/org/spigotmc/netty/PacketEncoder.java +++ b/src/main/java/org/spigotmc/netty/PacketEncoder.java
@@ -0,0 +1,48 @@ @@ -0,0 +1,55 @@
+package org.spigotmc.netty; +package org.spigotmc.netty;
+ +
+import io.netty.buffer.ByteBuf; +import io.netty.buffer.ByteBuf;
@ -1179,22 +1189,27 @@ index 0000000..4683021
+ * Netty encoder which takes a packet and encodes it, and adds a byte packet id + * Netty encoder which takes a packet and encodes it, and adds a byte packet id
+ * header. + * header.
+ */ + */
+public class PacketEncoder extends MessageToByteEncoder<Packet> { +public class PacketEncoder extends MessageToByteEncoder<Packet>
+{
+ +
+ private ByteBuf outBuf; + private ByteBuf outBuf;
+ private DataOutputStream dataOut; + private DataOutputStream dataOut;
+ private final NettyNetworkManager networkManager; + private final NettyNetworkManager networkManager;
+ +
+ public PacketEncoder(NettyNetworkManager networkManager) { + public PacketEncoder(NettyNetworkManager networkManager)
+ {
+ this.networkManager = networkManager; + this.networkManager = networkManager;
+ } + }
+ +
+ @Override + @Override
+ public void encode(ChannelHandlerContext ctx, Packet msg, ByteBuf out) throws Exception { + public void encode(ChannelHandlerContext ctx, Packet msg, ByteBuf out) throws Exception
+ if (outBuf == null) { + {
+ if ( outBuf == null )
+ {
+ outBuf = ctx.alloc().directBuffer(); + outBuf = ctx.alloc().directBuffer();
+ } + }
+ if (dataOut == null) { + if ( dataOut == null )
+ {
+ dataOut = new DataOutputStream( new ByteBufOutputStream( outBuf ) ); + dataOut = new DataOutputStream( new ByteBufOutputStream( outBuf ) );
+ } + }
+ +
@ -1207,8 +1222,10 @@ index 0000000..4683021
+ } + }
+ +
+ @Override + @Override
+ public void freeOutboundBuffer(ChannelHandlerContext ctx) throws Exception { + public void handlerRemoved(ChannelHandlerContext ctx) throws Exception
+ if (outBuf != null) { + {
+ if ( outBuf != null )
+ {
+ outBuf.release(); + outBuf.release();
+ outBuf = null; + outBuf = null;
+ } + }