mina、netty消息边界问题

举报
风吹稻花香 发表于 2021/06/05 01:59:13 2021/06/05
【摘要】 mina、netty消息边界问题(采用换行符) 在TCP连接开始到结束连接,之间可能会多次传输数据,也就是服务器和客户端之间可能会在连接过程中互相传输多条消息。理想状况是一方每发送一条消息,另一方就立即接收到一条,也就是一次write对应一次read。但是,现实不总是按照剧本来走。 MINA官方文档节选: TCP guarantess delivery of ...

mina、netty消息边界问题(采用换行符)

在TCP连接开始到结束连接,之间可能会多次传输数据,也就是服务器和客户端之间可能会在连接过程中互相传输多条消息。理想状况是一方每发送一条消息,另一方就立即接收到一条,也就是一次write对应一次read。但是,现实不总是按照剧本来走。

MINA官方文档节选:

TCP guarantess delivery of all packets in the correct order. But there is no guarantee that one write operation on the sender-side will result in one read event on the receiving side. One call of IoSession.write(Object message) by the sender can result in multiple messageReceived(IoSession session, Object message) events on the receiver; and multiple calls of IoSession.write(Object message) can lead to a single messageReceived event.

Netty官方文档节选:

In a stream-based transport such as TCP/IP, received data is stored into a socket receive buffer. Unfortunately, the buffer of a stream-based transport is not a queue of packets but a queue of bytes. It means, even if you sent two messages as two independent packets, an operating system will not treat them as two messages but as just a bunch of bytes. Therefore, there is no guarantee that what you read is exactly what your remote peer wrote.

上面两段话表达的意思相同:TCP是基于字节流的协议,它只能保证一方发送和另一方接收到的数据的字节顺序一致,但是,并不能保证一方每发送一条消息,另一方就能完整的接收到一条信息。有可能发送了两条对方将其合并成一条,也有可能发送了一条对方将其拆分成两条。

 

对此,MINA的官方文档提供了以下几种解决方案:

1、use fixed length messages

使用固定长度的消息。比如每个长度4字节,那么接收的时候按每条4字节拆分就可以了。

2、use a fixed length header that indicates the length of the body

使用固定长度的Header,Header中指定Body的长度(字节数),将信息的内容放在Body中。例如Header中指定的Body长度是100字节,那么Header之后的100字节就是Body,也就是信息的内容,100字节的Body后面就是下一条信息的Header了。

3、using a delimiter; for example many text-based protocols append a newline (or CR LF pair) after every message

使用分隔符。例如许多文本内容的协议会在每条消息后面加上换行符(CR LF,即"\r\n"),也就是一行一条消息。当然也可以用其他特殊符号作为分隔符,例如逗号、分号等等。

 

mina server

 

1
2
3
4
5
6
7
8
IoAcceptor acceptor = new NioSocketAcceptor(); 
        
      // 添加一个Filter,用于接收、发送的内容按照"\r\n"分割 
      acceptor.getFilterChain().addLast( "codec" ,  
              new ProtocolCodecFilter((ProtocolCodecFactory) new TextLineCodecFactory(Charset.forName( "UTF-8" ), "\r\n" , "\r\n" ))); 
        
      acceptor.setHandler((IoHandler) new TcpServerHandle2()); 
      acceptor.bind( new InetSocketAddress( 8080 ));

netty server

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
ServerBootstrap b = new ServerBootstrap(); 
         b.group(bossGroup, workerGroup) 
                 .channel(NioServerSocketChannel. class
                 .childHandler( new ChannelInitializer<SocketChannel>() { 
                     @Override 
                     public void initChannel(SocketChannel ch) 
                             throws Exception { 
                         ChannelPipeline pipeline = ch.pipeline(); 
                           
                         // LineBasedFrameDecoder按行分割消息 
                         pipeline.addLast( new LineBasedFrameDecoder( 80 )); 
                         // 再按UTF-8编码转成字符串 
                         pipeline.addLast( new StringDecoder(CharsetUtil.UTF_8)); 
                           
                         pipeline.addLast( new TcpServerHandler2()); 
                    
                 }); 
         ChannelFuture f = b.bind( 8080 ).sync(); 
         f.channel().closeFuture().sync();

client

1
2
3
4
5
6
7
8
socket = new Socket( "localhost" , 8080 ); 
             out = socket.getOutputStream(); 
   
             // 请求服务器 
             String lines = "床前明月光\r\n疑是地上霜\r\n举头望明月\r\n低头思故乡\r\n"
             byte [] outputBytes = lines.getBytes( "UTF-8" ); 
             out.write(outputBytes); 
             out.flush(); 

  

但是这样是有问题的,如果消息内容本身就有换行符,这个肯定是不对的

  原文地址:http://www.cnblogs.com/wucao/p/3936559.html

文章来源: blog.csdn.net,作者:网奇,版权归原作者所有,如需转载,请联系作者。

原文链接:blog.csdn.net/jacke121/article/details/73500048

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。