21_Netty_Tcp粘包拆包原理
TCP粘包和拆包基本介绍
-
TCP是面向连接的,面向流的,提供高可靠性服务。收发两端(客户端和服务器端)都要有一一成对的Socket,因此,发送端为了将多个发给接收端的包更有效的发给对方,使用了优化方法(Nagle算法),将多次间隔较小且数据量小的数据合并成一个大的数据块,然后进行封包,这样做虽然提高了效率,但是接收端就难于分辨出完整的数据包了,因为面向流的通信是无消息保护边界的;
-
由于TCP无消息保护边界,需要在接收端处理消息边界问题,也就是我们所说的粘包,拆包问题;
-
TCP粘包、拆包图解:
假设客户端分别发送了两个数据包D1和D2给服务端,由于服务端一次性读取到的字节数是不确定的,所以可能存在下面几种情况:
- 服务端分两次读取到了两个独立的数据包,分别是D1和D2,没有粘包和拆包;
- 服务端一次性接收到了两个数据包,D1和D2粘合在一起,称之为TCP粘包;
- 服务端分两次读取到了数据包,第一次读取到了完整的D1包和D2包的部分内容,第二次读取到了D2包的剩余内容,这称之为TCP拆包;
- 服务端分两次读取到了数据包,第一次读取到了D1包的部分内容D1_1,第二次读取到了D1包的剩余部分内容D1_2和完整的D2包;
TCP粘包和拆包现象实例
编写Netty程序,如果没有做处理,就会发生粘包和拆包的现象:
客户端:
public class MyClient {
public static void main(String[] args) {
NioEventLoopGroup group = new NioEventLoopGroup(1);
try {
Bootstrap bootstrap = new Bootstrap();
bootstrap.group(group)
.channel(NioSocketChannel.class)
.handler(new MyClientInitializer());
ChannelFuture channelFuture = bootstrap.connect("localhost", 7000).sync();
channelFuture.channel().closeFuture().sync();
} catch (Exception e) {
e.printStackTrace();
} finally {
group.shutdownGracefully();
}
}
}
public class MyClientHandler extends SimpleChannelInboundHandler<ByteBuf> {
private AtomicInteger count = new AtomicInteger(0);
@Override
protected void channelRead0(ChannelHandlerContext ctx, ByteBuf msg) throws Exception {
byte[] buffer = new byte[msg.readableBytes()];
msg.readBytes(buffer);
String msgStr = new String(buffer, Charset.forName("utf-8"));
System.out.println("客户端接收到消息:" + msgStr);
System.out.println("客户端接收到消息量:" + count.incrementAndGet());
}
@Override
public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception {
cause.printStackTrace();
ctx.close();
}
@Override
public void channelActive(ChannelHandlerContext ctx) throws Exception {
// 使用客户端发送10条数据
for (int i = 0; i < 10; i++) {
ByteBuf buffer = Unpooled.copiedBuffer("hello,server" + i, CharsetUtil.UTF_8);
ctx.writeAndFlush(buffer);
}
}
}
public class MyClientInitializer extends ChannelInitializer<SocketChannel> {
@Override
protected void initChannel(SocketChannel ch) throws Exception {
ch.pipeline().addLast(new MyClientHandler());
}
}
服务器端:
public class MyServer {
public static void main(String[] args) {
NioEventLoopGroup bossGroup = new NioEventLoopGroup(1);
NioEventLoopGroup workerGroup = new NioEventLoopGroup(8);
try {
ServerBootstrap serverBootstrap = new ServerBootstrap();
serverBootstrap.group(bossGroup, workerGroup)
.channel(NioServerSocketChannel.class)
.childHandler(new MyServerInitializer());
ChannelFuture channelFuture = serverBootstrap.bind(7000).sync();
channelFuture.channel().closeFuture().sync();
} catch (Exception e) {
e.printStackTrace();
} finally {
bossGroup.shutdownGracefully();
workerGroup.shutdownGracefully();
}
}
}
public class MyServerHandler extends SimpleChannelInboundHandler<ByteBuf> {
private AtomicInteger count = new AtomicInteger(0);
@Override
protected void channelRead0(ChannelHandlerContext ctx, ByteBuf msg) throws Exception {
// msg->byteArr
byte[] buffer = new byte[msg.readableBytes()];
msg.readBytes(buffer);
// 将buffer转字符串
String msgStr = new String(buffer, Charset.forName("utf-8"));
System.out.println("服务器接收到数据:" + msgStr);
System.out.println("服务器接收到消息量 = " + count.incrementAndGet());
// 服务器回送数据给客户端,回送随机id
ByteBuf responseByteBuf = Unpooled.copiedBuffer(UUID.randomUUID().toString(), Charset.forName("utf-8"));
ctx.writeAndFlush(responseByteBuf);
}
@Override
public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception {
cause.printStackTrace();
ctx.close();
}
}
public class MyServerInitializer extends ChannelInitializer<SocketChannel> {
@Override
protected void initChannel(SocketChannel ch) throws Exception {
ch.pipeline()
.addLast(new MyServerHandler());
}
}
现象:
多启动几个客户端会发现出现粘包以及拆包问题,这会影响正常的业务逻辑,比如代码中是向客户端回送一个UUID,但是如果发生粘包、拆包的情况,会导致发送多个UUID到客户端,与实际的业务逻辑不符合;
TCP粘包和拆包解决方案
- 使用自定义协议+编解码器来解决
- 关键就是要解决服务端每次读取长度的问题,这个问题如果解决,就不会出现服务器多读或者少读数据的问题,从而避免了TCP粘包、拆包;
具体实例:
- 要求客户端发送5个Message对象,客户端每次发送一个Message对象;
- 服务器每次接收一个Message,分5次解码,每读到一个Message,就会回复一个Message对象给客户端;
代码:
协议:
public class MessageProtocol {
private int len;
private byte[] content;
public MessageProtocol() {
}
public int getLen() {
return len;
}
public void setLen(int len) {
this.len = len;
}
public byte[] getContent() {
return content;
}
public void setContent(byte[] content) {
this.content = content;
}
}
编解码器:
public class MyMessageEncode extends MessageToByteEncoder<MessageProtocol> {
@Override
protected void encode(ChannelHandlerContext ctx, MessageProtocol msg, ByteBuf out) throws Exception {
System.out.println("MyMessageEncode.encode编码器调用");
out.writeInt(msg.getLen());
out.writeBytes(msg.getContent());
}
}
public class MyMessageDecode extends ReplayingDecoder<Void> {
@Override
protected void decode(ChannelHandlerContext ctx, ByteBuf in, List<Object> out) throws Exception {
System.out.println("MyMessageDecode.decode解码调用");
// 字节码->MessageProtocol
int len = in.readInt();
byte[] content = new byte[len];
in.readBytes(content);
// 封装成MessageProtocol对象,放入out传递给下一个handler处理
MessageProtocol messageProtocol = new MessageProtocol();
messageProtocol.setLen(len);
messageProtocol.setContent(content);
out.add(messageProtocol);
}
}
服务器端:
public class MyServer {
public static void main(String[] args) {
NioEventLoopGroup bossGroup = new NioEventLoopGroup(1);
NioEventLoopGroup workerGroup = new NioEventLoopGroup(8);
try {
ServerBootstrap serverBootstrap = new ServerBootstrap();
serverBootstrap.group(bossGroup, workerGroup)
.channel(NioServerSocketChannel.class)
.childHandler(new MyServerInitializer());
ChannelFuture channelFuture = serverBootstrap.bind(7000).sync();
channelFuture.channel().closeFuture().sync();
} catch (Exception e) {
e.printStackTrace();
} finally {
bossGroup.shutdownGracefully();
workerGroup.shutdownGracefully();
}
}
}
public class MyServerInitializer extends ChannelInitializer<SocketChannel> {
@Override
protected void initChannel(SocketChannel ch) throws Exception {
ch.pipeline()
// 解码器
.addLast(new MyMessageDecode())
// 编码器
.addLast(new MyMessageEncode())
.addLast(new MyServerHandler());
}
}
public class MyServerHandler extends SimpleChannelInboundHandler<MessageProtocol> {
private AtomicInteger count = new AtomicInteger(0);
@Override
public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception {
cause.printStackTrace();
ctx.close();
}
@Override
protected void channelRead0(ChannelHandlerContext ctx, MessageProtocol msg) throws Exception {
// 接收到解码器解码后的数据并处理
int len = msg.getLen();
byte[] content = msg.getContent();
System.out.println("服务端接收到信息如下:");
System.out.println("长度=" + len);
System.out.println("内容=" + new String(content, CharsetUtil.UTF_8));
System.out.println("服务器接收到消息包数量=" + count.incrementAndGet());
// 回复消息
byte[] responseContent = UUID.randomUUID().toString().getBytes("utf-8");
int responseLen = responseContent.length;
// 构建一个协议包
MessageProtocol messageProtocol = new MessageProtocol();
messageProtocol.setContent(responseContent);
messageProtocol.setLen(responseLen);
ctx.writeAndFlush(messageProtocol);
}
}
客户端:
public class MyClient {
public static void main(String[] args) {
NioEventLoopGroup group = new NioEventLoopGroup(1);
try {
Bootstrap bootstrap = new Bootstrap();
bootstrap.group(group)
.channel(NioSocketChannel.class)
.handler(new MyClientInitializer());
ChannelFuture channelFuture = bootstrap.connect("localhost", 7000).sync();
channelFuture.channel().closeFuture().sync();
} catch (Exception e) {
e.printStackTrace();
} finally {
group.shutdownGracefully();
}
}
}
public class MyClientInitializer extends ChannelInitializer<SocketChannel> {
@Override
protected void initChannel(SocketChannel ch) throws Exception {
ch.pipeline()
.addLast(new MyMessageEncode())
.addLast(new MyMessageDecode())
.addLast(new MyClientHandler());
}
}
public class MyClientHandler extends SimpleChannelInboundHandler<MessageProtocol> {
private AtomicInteger count = new AtomicInteger(0);
@Override
protected void channelRead0(ChannelHandlerContext ctx, MessageProtocol msg) throws Exception {
int len = msg.getLen();
String content = new String(msg.getContent(), CharsetUtil.UTF_8);
System.out.println("客户端接收到消息如下:");
System.out.println("消息长度:" + len);
System.out.println("消息内容:" + content);
System.out.println("客户端接收消息数量:" + count.incrementAndGet());
}
@Override
public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception {
cause.printStackTrace();
ctx.close();
}
@Override
public void channelActive(ChannelHandlerContext ctx) throws Exception {
// 使用客户端发送10条 "天气冷,吃火锅" 数据
for (int i = 0; i < 5; i++) {
String msg = "天气冷,吃火锅";
byte[] content = msg.getBytes(CharsetUtil.UTF_8);
int length = content.length;
// 创建协议包对象
MessageProtocol messageProtocol = new MessageProtocol();
messageProtocol.setContent(content);
messageProtocol.setLen(length);
ctx.writeAndFlush(messageProtocol);
}
}
}
评论区