Netty入门笔记

知识点:Reactor模式

一、Linux网络I/O模型简介

        1.阻塞I/O模型:开始I/O操作时直到数据包到达且被复制到应用进程的缓冲区中或者发生错误才返回。进程开始执行I/O操作到它返回的整段               时间内都是被阻塞的。
        2.非阻塞I/O模型:轮询检查是否有数据到来有的话就将数据报拷贝到用户空间(程序的空间中)并处理数据报
        3.I/O复用模型:linux提供一个select/poll,进程将多个fd传递给select或者poll给系统调用,select/poll帮我们检查是否有fd处于就绪状态。
        4.信号驱动I/O模型
        5.异步I/O

二、I/O多路复用技术 

三、NIO

        a.服务器端
            1.打开ServerSocketChannel
            2.绑定监听地址InetSocketAddress
            3.创建Selector,启动线程
            4.将ServerSocketChannel注册到Selector中并选择被关系的状态(Connect、Accept、read、write)
            5.如果有客户端接入则创建SocketChannel并将SocketChannel注册到Selector中并监听Read状态
            6.将SocketChannel中读取到的消息放入到Buffer中
            7.从Buffer中获取到数据并将响应数据放入到Buffer中,将Buffer中的数据通过管道传给客户端
            8.如果监听到接受连接状态时,则创建SocketChannel并设置SocketChannel的非阻塞模式,并将SocketChannel注册到Selector中并监听                 Read状态

public class Main { public static void main(String[] args) { int port = 8080; if (args != null && args.length > 0) { port = Integer.valueOf(args[0]); } MultiplexerTimeServer timeServer = new MultiplexerTimeServer(port); new Thread(timeServer,"NIO-MultiplexerTimeServer-001").start(); }}

public class MultiplexerTimeServer implements Runnable { private Selector selector; private ServerSocketChannel servChannel; private volatile boolean stop; public MultiplexerTimeServer(int port) { try { selector = Selector.open(); servChannel = ServerSocketChannel.open(); servChannel.configureBlocking(false); servChannel.socket().bind(new InetSocketAddress(port), 1024); //将服务器绑定到selector中 并且选择器只会检查通道的是否接受到连接 servChannel.register(selector, SelectionKey.OP_ACCEPT); System.out.println("The time server is start in port : " + port); } catch (IOException e) { e.printStackTrace(); } } public void stop() { this.stop = true; } @Override public void run() { while (!stop) { try { //清空集合里的键重新依次询问已经注册的通道是否准备好选择器所感兴趣的某种操作,发现了则重新加入到集合中 selector.select(1000); Set<SelectionKey> selectionKeys = selector.selectedKeys(); Iterator<SelectionKey> it = selectionKeys.iterator(); SelectionKey key = null; while (it.hasNext()) { key = it.next(); it.remove(); try { handleInput(key); } catch (Exception e) { if (key != null) { key.cancel(); if (key.channel() != null) { key.channel().close(); } } } } } catch (IOException e) { e.printStackTrace(); } } if (selector != null) { try { selector.close(); } catch (IOException e) { e.printStackTrace(); } } } private void handleInput(SelectionKey key) throws IOException { if (key.isValid()) { //判断该键是否已经准备好接受连接 if (key.isAcceptable()) { ServerSocketChannel ssc = (ServerSocketChannel) key.channel(); SocketChannel sc = ssc.accept(); sc.configureBlocking(false); sc.register(selector, SelectionKey.OP_READ); } //判断该键是否已经准备好读取数据 if (key.isReadable()) { SocketChannel sc = (SocketChannel) key.channel(); ByteBuffer readBuffer = ByteBuffer.allocate(1024); int readBytes = sc.read(readBuffer); if (readBytes > 0) { readBuffer.flip(); byte[] bytes = new byte[readBuffer.remaining()]; readBuffer.get(bytes); String body = new String(bytes, "UTF-8"); System.out.println("The time server receive order : " + body); String currentTime = "QUERY TIME ORDER".equalsIgnoreCase(body) ? new Date(System.currentTimeMillis()).toString() : "BAD ORDER"; doWrite(sc, currentTime); } else if (readBytes < 0) { key.cancel(); sc.close(); } else { ; } } } } private void doWrite(SocketChannel sc, String response) throws IOException { if (response != null && response.trim().length() > 0) { byte[] bytes = response.getBytes(); ByteBuffer writeBuffer = ByteBuffer.allocate(bytes.length); writeBuffer.put(bytes); writeBuffer.flip(); sc.write(writeBuffer); } }}

 b.客户端
            1.打开SocketChannel并设置非阻塞模式,同时设置TCP参数
            2.异步连接服务器
            3.如果还未连接成功则将SocketChannel注册到Selector中并监听Connect状态
            4.如果连接成功则将SocketChannel注册到Selector中并监听Read状态并发送数据给客户端
            5.当监听到连接状态时则判断是否已经完成连接如果未完成连接则发送数据给服务器
            6.如果连接已经完成则将数据发送给客户端并将SocketChannel注册进Selector并监听Read状态
            7.如果监听到读取状态则将服务器传过来的数据读取到buffer中再从Buffer将数据读取出来        

public class ClientMain { public static void main(String[] args) { int port = 8080; new Thread(new TimeClientHandle("127.0.0.1",port),"TimeClient-001").start(); }}

public class TimeClientHandle implements Runnable { private String host; private int port; private Selector selector; private SocketChannel socketChannel; private volatile boolean stop; public TimeClientHandle(String host, int port) { this.host = host; this.port = port; try { selector = Selector.open(); socketChannel = SocketChannel.open(); socketChannel.configureBlocking(false); } catch (IOException e) { e.printStackTrace(); } } @Override public void run() { try { doConnect(); } catch (IOException e) { e.printStackTrace(); } while (!stop) { try { selector.select(1000); Set<SelectionKey> selectedKeys = selector.selectedKeys(); Iterator<SelectionKey> it = selectedKeys.iterator(); SelectionKey key = null; while (it.hasNext()) { key = it.next(); it.remove(); try { handleInput(key); } catch (Exception e) { if (key != null) { key.cancel(); if (key.channel() != null) { key.channel().close(); } } } } } catch (IOException e) { e.printStackTrace(); } } if (selector != null) { try { selector.close(); } catch (IOException e) { e.printStackTrace(); } } } private void handleInput(SelectionKey key) throws IOException { if(key.isValid()){ SocketChannel sc = (SocketChannel) key.channel(); if(key.isConnectable()){ if(sc.finishConnect()){ sc.register(selector,SelectionKey.OP_READ); doWrite(sc); } else{ System.exit(1); } } if(key.isReadable()){ ByteBuffer readByteBuffer = ByteBuffer.allocate(1024); int readBytes = sc.read(readByteBuffer); if(readBytes>0){ readByteBuffer.flip(); byte[] bytes = new byte[readByteBuffer.remaining()]; readByteBuffer.get(bytes); String body = new String(bytes,"UTF-8"); System.out.println("Now is : "+body); this.stop = stop; } else if(readBytes<0){ key.cancel(); sc.close(); } else{ ; } } } } private void doWrite(SocketChannel sc) throws IOException { byte[] req = "QUERY TIME ORDER".getBytes(); ByteBuffer writeBuffer = ByteBuffer.allocate(req.length); writeBuffer.put(req); writeBuffer.flip(); sc.write(writeBuffer); if(!writeBuffer.hasRemaining()) System.out.println("Send order 2 server succed."); } private void doConnect() throws IOException { if (socketChannel.connect(new InetSocketAddress(host, port))) { socketChannel.register(selector, SelectionKey.OP_READ); doWrite(socketChannel); } else { socketChannel.register(selector, SelectionKey.OP_CONNECT); } }}

四、Netty应用

五、TCP的粘包和拆包

六、Netty解决TCP的粘包和拆包的问题

        1.什么是粘包和拆包
            一个完整的数据包可能会由于数据量过大导致数据包被TCP拆成多个包发送,同时也有可能因为数据量过小而将多个包封装成一个大的数              据包发送,这就是所谓的TCP粘包和拆包问题
        2.TCP粘包和拆包发生的原因
            a.应用程序write写入的字节大小大于套接口发送缓冲区的大小;
            b.进行MSS大小的TCP分段;
            c.以太网帧的payload大于MTU进行IP分片;
        3.通过netty解决TCP粘包和拆包的问题
            a.使用LineBasedFrameDecoder解决TCP粘包和拆包问题
            b.使用DelimiterBasedFrameDecoder解决TCP粘包和拆包问题
            c.使用FiexedLengthFrameDecoder解决TCP粘包和拆包问题

七、编解码技术

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,904评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,581评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,527评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,463评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,546评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,572评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,582评论 3 414
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,330评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,776评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,087评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,257评论 1 344
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,923评论 5 338
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,571评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,192评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,436评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,145评论 2 366
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,127评论 2 352

推荐阅读更多精彩内容