Netty核心技术及源码剖析-Netty核心模块

Bootsrap、ServerBootstrap

1、Bootsrap意思是引导,一个Netty应用通常由一个Bootsrap开始,主要作用是配置整个Netty程序,串联各个组件,Netty中Bootstrap类是客户端程序的启动引导类,ServerBootstrap是服务器端启动引导类。
2、常见的方法有

  • public ServerBootstrap group(EventLoopGroup parentGroup, EventLoopGroup childGroup),该方法用于服务器端,用来设置两个EventLoop
  • public B group(EventLoopGroup group),该方法用于客户端,用来设置一个EventLoopGroup
  • public B channel(Class channelClass),该方法用来设置一个服务器端的通道实现
  • public B option(ChannelOption option, T value),用来给ServerChannel添加配置
  • public ServerBootstrap childOption(ChannelOption childOption, T value),用来给接收到的通道添加配置
  • public ServerBootstrap childHandler(ChannelHandler childHandler),该方法用来设置业务处理类(自定义的handler)
  • public ChannelFuture bind(int inetPort),该方法用于服务器端,用来设置占用的端口号
  • public ChannelFuture connect(String inetHost, int inetPort),该方法用于客户端,用来连接服务器

Future、ChannelFuture

1、Netty中所有的IO操作都是异步的,不能like得知消息是否被正确处理。但是可以过一会等它执行完成或者注册一个监听,具体的实现就是通过Future和ChannelFutures,它们可以注册一个监听,当操作执行成功或失败时监听会自动触发注册的监听事件。
2、常见的方法有

  • Channel channel(),返回当前正在进行IO操作的通道
  • ChannelFuture sync,等待异步操作执行完毕

Channel

1、Netty网络通信的组件,能够用于执行网络I/O操作
2、通过Channel可获得当前网络连接的通道的状态
3、通过Channel可获得网络连接的配置参数(例如接收缓冲区大小)
4、Channel提供异步的网络I/O操作(如建立连接,读写,绑定端口),异步调用意味着任何I/O调用都将立即返回,并且不找正在调用结束时锁请求的I/O操作已完成
5、调用立即返回一个ChannelFuture实例,通过注册监听器到ChannelFuture上,可以I/O操作成功、失败或取消时回调通知调用方
6、支持关联I/O操作与对应的处理程序
7、不同协议、不同的阻塞类型的连接都有不同的Channel类型与之对应的,常用的Channel类型

  • NioSocketChannel,异步的客户端TCP Socket连接。
  • NioServerSocketChannel,异步的服务器端TCP Socket连接。
  • NioDatagramChannel,异步的UDP连接。
  • NioSctpChannel,异步的客户端Sctp连接。
  • NioSctpServerChannel,异步的Sctp服务器端连接,这些通道涵盖了UDP和TCP网络IO以及文件IO。

Selector

1、Netty基于Selector对象实现I/O多路复用,通过Selector一个线程可以监听多个连接的Channel事件。
2、当向一个Selector中注册Channel后,Selector内部的机制就可以自动不断地查询(Select)这些注册的Channel是否有已就绪的I/O事件(例如可读,可写,网络连接完成等),这样程序就可以很简单地使用一个线程高效地管理多个Channel

ChannelHandler及其实现类

1、ChannelHandler是一个接口,处理I/O事件或拦截I/O操作,并将其转发到其ChannelPipeline(业务处理链)中的下一个处理程序。
2、ChannelHandler本身并没有提供很多方法,因为这个接口有许多的方法需要实现,方便使用期间,可以继承它的子类。
3、ChannelHandler及其实现类一览

ChannelInboundHandler 用于处理入站 I/O 事件。
ChannelOutboundHandler 用于处理出站 I/O 操作。
//适配器
ChannelInboundHandlerAdapter 用于处理入站 I/O 事件。
ChannelOutboundHandlerAdapter 用于处理出站 I/O 操作。
ChannelDuplexHandler 用于处理入站和出站事件。


4、我们经常需要自定义一个Handler类去继承ChannelInboundHandlerAdapter,然后通过重写相应方法实现业务逻辑

public class ChannelInboundHandlerAdapter extends ChannelHandlerAdapter implements ChannelInboundHandler {

    public ChannelInboundHandlerAdapter() {
    }
    public void channelRegistered(ChannelHandlerContext ctx) throws Exception 
    {
        ctx.fireChannelRegistered();
    }
    public void channelUnregistered(ChannelHandlerContext ctx) throws Exception {
        ctx.fireChannelUnregistered();
    }
    //通道就绪事件
    public void channelActive(ChannelHandlerContext ctx) throws Exception {
        ctx.fireChannelActive();
    }
    public void channelInactive(ChannelHandlerContext ctx) throws Exception {
        ctx.fireChannelInactive();
    }
    //通道读取数据事件
    public void channelRead(ChannelHandlerContext ctx, Object msg) throws Exception {
        ctx.fireChannelRead(msg);
    }
    //数据读取完毕事件
    public void channelReadComplete(ChannelHandlerContext ctx) throws Exception {
        ctx.fireChannelReadComplete();
    }
    public void userEventTriggered(ChannelHandlerContext ctx, Object evt) throws Exception {
        ctx.fireUserEventTriggered(evt);
    }
    public void channelWritabilityChanged(ChannelHandlerContext ctx) throws Exception {
        ctx.fireChannelWritabilityChanged();
    }
    //通道发生异常事件
    public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception {
        ctx.fireExceptionCaught(cause);
    }
}

你可能感兴趣的:(Netty核心技术及源码剖析-Netty核心模块)