嗯,Mina的社区不够活跃,我转投Netty了。
翻看Netty的源码有一些时间了,但卡在了一个点上,它是在哪个逻辑里面注册
SelectionKey#OP_ACCEPT的呢?经过我断断续续的努力,各种debug断点调试,
终于取得了突破。
最终调用的代码在io.netty.channel.nio.AbstractNioChannel#doBeginRead()
里面,其中有句selectionKey.interestOps(interestOps | readInterestOp),就
是通过这个interestOps来完成注册SelectionKey#OP_ACCEPT的。
以前翻看代码时没在意readInterestOp这个变量,完全按字面意思去理解它,以
为它最多只是注册SelectionKey#OP_READ,多次忽略了这里的逻辑。后来翻看
io.netty.channel.socket.nio.NioServerSocketChannel.NioServerSocketChannel
的构造方法可以看到它传了SelectionKey.OP_ACCEPT进去的(见下面的代码),
传进去后被赋值到readInterestOp变量里面。这个变量如果叫做acceptOrReadInterestOp
就更好了,我可以少走一些弯路。。。
public NioServerSocketChannel(ServerSocketChannel channel) {
super(null, channel, SelectionKey.OP_ACCEPT);
config = new NioServerSocketChannelConfig(this, javaChannel().socket());
}
好了,知道在哪里注册SelectionKey.OP_ACCEPT之后,又是由哪里触发这个注册呢?
我debug追踪io.netty.example.echo.EchoServer这个经典的例子来看了一把,得到的流程:
-> io.netty.bootstrap.ServerBootstrap#bind(xxx)
-> io.netty.bootstrap.AbstractBootstrap#doBind0(xxx)
-> io.netty.channel.AbstractChannel#bind(xxx)
-> io.netty.channel.DefaultChannelPipeline#bind(xxx)
-> io.netty.channel.DefaultChannelPipeline#invokeBind(xxx)
-> io.netty.channel.DefaultChannelPipeline.HeadHandler#bind(xxx)
-> io.netty.channel.AbstractChannel.AbstractUnsafe#bind(xxx)
在上面这个AbstractUnsafe#bind里面有段关键代码(见下面的代码),之前也是一直被我忽略,最终需要执行里面的pipeline.fireChannelActive():
if (!wasActive && isActive()) {
invokeLater(new OneTimeTask() {
@Override
public void run() {
pipeline.fireChannelActive();
}
});
}
通过继续追踪fireChannelActive()就可以看到io.netty.channel.nio.AbstractNioChannel#doBeginRead()的执行了,然后就是selectionKey.interestOps(interestOps | readInterestOp)来完成注册SelectionKey#OP_ACCEPT。
发布在 http://auzll.iteye.com
分享到:
相关推荐
在使用netty做 openssl 中使用 netty-tcnative-boringssl-static 在 linux-x86_64/osx-x86_64/windows-x86_64 分别对cpu 不同平台支持,但是在鲲鹏arm 处理上缺没有相关支持,导致在arm64 服务器上,没法运行比如 ...
netty-transport-native-epoll-4.0.27.Final.jar
赠送jar包:transport-netty4-client-5.5.1.jar; 赠送原API文档:transport-netty4-client-5.5.1-javadoc.jar; 赠送源代码:transport-netty4-client-5.5.1-sources.jar; 赠送Maven依赖信息文件:transport-netty...
java运行依赖jar包
赠送jar包:reactor-netty-core-1.0.15.jar; 赠送原API文档:reactor-netty-core-1.0.15-javadoc.jar; 赠送源代码:reactor-netty-core-1.0.15-sources.jar; 赠送Maven依赖信息文件:reactor-netty-core-1.0.15....
netty-socketio-netty-socketio-2.0.6 ,Socket.IO 是一个库,可以在客户端和服务器之间实现低延迟, 双向和基于事件的通信:netty-socketio-netty-socketio-2.0.6.tar.gznetty-socketio-netty-socketio-2.0.6.zip
赠送jar包:netty-transport-native-unix-common-4.1.73.Final.jar; 赠送原API文档:netty-transport-native-unix-common-4.1.73.Final-javadoc.jar; 赠送源代码:netty-transport-native-unix-common-4.1.73....
netty-buffer-4.1.32.Final-sources.jar netty-buffer-4.1.32.Final.jar netty-build-22-sources.jar netty-build-22.jar netty-codec-4.1.32.Final-sources.jar netty-codec-4.1.32.Final.jar netty-codec-...
赠送jar包:reactor-netty-http-1.0.11.jar; 赠送原API文档:reactor-netty-http-1.0.11-javadoc.jar; 赠送源代码:reactor-netty-http-1.0.11-sources.jar; 赠送Maven依赖信息文件:reactor-netty-...
赠送jar包:netty-transport-native-unix-common-4.1.68.Final.jar; 赠送原API文档:netty-transport-native-unix-common-4.1.68.Final-javadoc.jar; 赠送源代码:netty-transport-native-unix-common-4.1.68....
netty源码netty-netty-4.1.36.Final.rarnetty源码netty-netty-4.1.36.Final.rarnetty源码netty-netty-4.1.36.Final.rarnetty源码netty-netty-4.1.36.Final.rarnetty源码netty-netty-4.1.36.Final.rarnetty源码netty-...
赠送jar包:netty-transport-classes-epoll-4.1.73.Final.jar; 赠送原API文档:netty-transport-classes-epoll-4.1.73.Final-javadoc.jar; 赠送源代码:netty-transport-classes-epoll-4.1.73.Final-sources.jar;...
赠送jar包:netty-resolver-dns-4.1.73.Final.jar; 赠送原API文档:netty-resolver-dns-4.1.73.Final-javadoc.jar; 赠送源代码:netty-resolver-dns-4.1.73.Final-sources.jar; 赠送Maven依赖信息文件:netty-...
赠送jar包:netty-transport-native-unix-common-4.1.74.Final.jar; 赠送原API文档:netty-transport-native-unix-common-4.1.74.Final-javadoc.jar; 赠送源代码:netty-transport-native-unix-common-4.1.74....
赠送jar包:netty-transport-classes-epoll-4.1.74.Final.jar; 赠送原API文档:netty-transport-classes-epoll-4.1.74.Final-javadoc.jar; 赠送源代码:netty-transport-classes-epoll-4.1.74.Final-sources.jar;...
赠送jar包:netty-transport-classes-epoll-4.1.73.Final.jar; 赠送原API文档:netty-transport-classes-epoll-4.1.73.Final-javadoc.jar; 赠送源代码:netty-transport-classes-epoll-4.1.73.Final-sources.jar;...
《Netty与Spring MVC整合应用深度解析》 在现代的高性能网络编程中,Netty以其高效、灵活的特点,成为许多开发者首选的异步事件驱动网络应用框架。而在企业级应用开发中,Spring MVC则以其强大的MVC架构和依赖注入...