netty学习系列六:服务端ServerSocketChannel绑定

零、 整体流程

整体执行流程图

1、用户在main线程启动执行ServerSocketChannel的初始化

1)初始化一个NioServerSocketChannel channel
包括初始化Channel关联的ch、pipeline、unsafe、config。

nio.ServerSocketChannel ch = nio.SelectorProvider.openServerSocketChannel();
ch.configBlocking(false);

2)将channel与ServerBootstrap的EventLoopGroup中的某个EventLoop child绑定
3)向child的任务执行队列中添加channel的register0事件
4)监听register0事件的完成状态,完成时向child的任务执行队列中添加channel的bind事件

2、EventLoop线程中执行register0事件

1)将NioServerSocketChannel的ch注册到NioEventLoop child的selector上

SelectionKey selectionKey = ch.register(eventLoop().selector, 0, this);

2)标识ChannelPromise状态为success,触发Listener将bind任务添加到EventLoop的执行任务队列
3)ServerSocketChannel channel产生ChannelRegisted事件

pipeline.fireChannelRegistered();

会导致ChannelInitialzer.channelRegisted()执行,将ServerBootstrapAcceptor添加到channel的pipeline中。

3、EventLoop线程中执行Channel.bind事件

1)ServerSocketChannel绑定对应服务端口,监听新的客户端连接

javaChannel().socket().bind(localAddress, config.getBacklog());

2)ServerSocketChannel channel产生ChannelActive事件

pipeline.fireChannelActive();

ChannelActive事件由HeadContext处理,向ch中添加OP_ACCEPT事件监听。

selectionKey.interestOps(OP_ACCEPT);


一、代码入口

ServerBootstrap b = new ServerBootstrap();
// Start the server.
ChannelFuture f = b.bind(port).sync();

服务端启动时都会执行上面的代码,用来启动ServerSocketChannel监听对应端口。
最终由AbstractBootstrap.doBind方法处理。

    private ChannelFuture doBind(final SocketAddress localAddress) {
        final ChannelFuture regFuture = initAndRegister();
        final Channel channel = regFuture.channel();
        if (regFuture.cause() != null) {
            return regFuture;
        }

        if (regFuture.isDone()) {
            // At this point we know that the registration was complete and successful.
            ChannelPromise promise = channel.newPromise();
            doBind0(regFuture, channel, localAddress, promise);
            return promise;
        } else {
            // Registration future is almost always fulfilled already, but just in case it's not.
            final PendingRegistrationPromise promise = new PendingRegistrationPromise(channel);
            regFuture.addListener(new ChannelFutureListener() {
                @Override
                public void operationComplete(ChannelFuture future) throws Exception {
                    Throwable cause = future.cause();
                    if (cause != null) {
                        // Registration on the EventLoop failed so fail the ChannelPromise directly to not cause an
                        // IllegalStateException once we try to access the EventLoop of the Channel.
                        promise.setFailure(cause);
                    } else {
                        // Registration was successful, so set the correct executor to use.
                        // See https://github.com/netty/netty/issues/2586
                        promise.registered();

                        doBind0(regFuture, channel, localAddress, promise);
                    }
                }
            });
            return promise;
        }
    }

二、用户线程初始化NioServerSocketChannel

final Channel channel = channelFactory.newChannel();

从此行代码开始,ReflectiveChannelFactory通过反射的方式调用NioServerSocketChannel的构造方法进行channel的初始化。

1、NioServerSocketChannel的实例化

** 1)创建一个nio.ServerSocketChannel**

newSocket(SelectorProvider provider);

使用nio.SelectorProvider.openServerSocketChannel()创建一个nio.ServerSocketChannel ch。
** 2)通过构造方法实例化NioServerSocketChannel,并初始化相关的field**
parent = null
unsafe = new NioMessageUnsafe()
pipeline = new DefaultChannelPipeline(this) ->此处初始化一个DefaultChannelPipeline,并将pipeline和channel互相绑定
ch = ch ->同时将ch设置为非阻塞模式
readInterestOp = OP_ACCEPT
config = new ServerSocketChannelConfig(this, javaChannel().socket())
3)向channel的pipeline中添加Inbound处理器ChannelInitializer

init(channel);

由其父类ServerBootstrap直接实现。

  • 设置channel的attr和options**
  • 添加ChannelInitializer到pipeline中**
        p.addLast(new ChannelInitializer<Channel>() {
            @Override
            public void initChannel(Channel ch) throws Exception {
                ChannelPipeline pipeline = ch.pipeline();
                ChannelHandler handler = config.handler();
                if (handler != null) {
                    pipeline.addLast(handler);
                }
                pipeline.addLast(new ServerBootstrapAcceptor(
                        currentChildGroup, currentChildHandler, currentChildOptions, currentChildAttrs));
            }
        }
该处理器的*channelRegisted事件*回调方法会将*ServerBootstrapAcceptor*加入channel的pipeline中,并将自己从pipeline中移除。

4)ServerBootstrapAcceptor

  • ServerBootstrapAcceptor也是一个Inbound处理器,用于在Server端accept新的客户端连接时,向新生成的socketChannel中添加用户定义的业务处理器。
  • channelRead事件回调方法会将业务方往ServerBootstrap中添加的childHandler添加到socketChannel对应的pipeline中。
  • 对于Server端,channelRead事件被定义为server端accept到了新的socket连接

2、将NioServerSocketChannel注册到ServerBootstrap的EventLoopGroup上

ChannelFuture regFuture = group().register(channel);

1)NioEventLoopGroup的chooser从其children中选出一个NioEventLoop child,调用其register()方法进行channel注册;
2)实际将NioEventLoop child传给NioServerSocketChannel的unsafe,调用其register(EventLoop eventLoop, final ChannelPromise promise)方法完成注册

  • 将channel.eventLoop绑定为当前NioEventLoop child;
  • 将AbstractUnsafe.register0(DefaultChannelPromise promise)任务加入EventLoop child的执行任务队列;

3、给标识“register0任务”完成状态ChannelFuture添加一个Listener

doBind0(regFuture, channel, localAddress, promise);

当ChannelFuture完成时,将NioServerSocketChannel.bind(SocketAddress localAddress, ChannelPromise promise)任务加入EventLoop child的执行任务队列

三、EventLoop线程中执行register0事件

AbstractUnsafe.register0(ChannelPromise promise);

1、将NioServerSocketChannel的ch注册到NioEventLoop child的selector上,同时将注册得到的SelectionKey绑定为NioServerSocketChannel的selectionKey

doRegister();

selectionKey = javaChannel().register(eventLoop().selector, 0, this);

netty的轮询注册机制其实是将AbstractNioChannel内部的jdk类对象SelectableChannel ch注册到jdk类对象Selector selector上去,并且将AbstractNioChannel channel作为SelectableChannel对象ch的一个attachment附属上,这样在jdk轮询出某个SelectableChannel有IO事件发生时,就可以直接取出AbstractNioChannel进行后续操作。

2、标识ChannelPromise状态为success,触发Listener将bind任务添加到EventLoop的执行任务队列

safeSetSuccess(promise);

3、ServerSocketChannel channel产生ChannelRegisted事件

pipeline.fireChannelRegistered();

会导致ChannelInitialzer.channelRegisted()执行,将ServerBootstrapAcceptor添加到channel的pipeline中。

四、EventLoop线程中执行Channel.bind事件

AbstractUnsafe.bind(final SocketAddress localAddress, final ChannelPromise promise);

1、ServerSocketChannel绑定对应服务端口,监听新的客户端连接

javaChannel().socket().bind(localAddress, config.getBacklog());

2、ServerSocketChannel channel产生ChannelActive事件

pipeline.fireChannelActive();

ChannelActive事件由HeadContext处理,最终调用了AbstractNioUnsafe.doBeginRead()方法,向ch中添加OP_READ事件监听。

selectionKey.interestOps(interestOps | readInterestOp);

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

推荐阅读更多精彩内容