Netty的服务端怎么和java NIO联系起来的,一直很好奇这块内容,这里跟下代码,下篇文章看下Channel相关的知识。
finalChannelFuture initAndRegister(){
finalChannel channel = channelFactory().newChannel();//
try{
init(channel);
}catch(Throwable t){
channel.unsafe().closeForcibly();//立即关闭通道且不会触发事件
//因为这个通道还没有注册到EventLoop,所以我们需要强制GlobalEventExecutor的使用。
returnnewDefaultChannelPromise(channel,GlobalEventExecutor.INSTANCE).setFailure(t);
}
//注册一个EventLoop
ChannelFuture regFuture = group().register(channel);
//注册失败
if(regFuture.cause()!=null){
if(channel.isRegistered()){
channel.close();
}else{
channel.unsafe().closeForcibly();
}
}
// If we are here and the promise is not failed, it's one of the following cases:
// 程序运行到这里且promise没有失败,可能有如下几种情况
// 1) If we attempted registration from the event loop, the registration has been completed at this point.
// 如果试图注册到一个EventLoop,该注册完成,
// i.e. It's safe to attempt bind() or connect() now because the channel has been registered.
// 2) If we attempted registration from the other thread, the registration request has been successfully
// added to the event loop's task queue for later execution.
// 如果试图注册到其他线程,该注册已经成功,但是没有完成,添加一个事件到任务队列中,等会执行
// i.e. It's safe to attempt bind() or connect() now:
// because bind() or connect() will be executed *after* the scheduled registration task is executed
// because register(), bind(), and connect() are all bound to the same thread.
return regFuture;
}
注意这里的Channle的类型为NioServerSocketChannel类型,group()返回NioEventLoopGroup类型,他继承MultithreadEventLoopGroup,那么看下register的实现:
@Override
publicChannelFutureregister(Channel channel){
return next().register(channel);
}
跟进去是调用了SingleThreadEventLoop类的register方法。实现如下.
@Override
publicChannelFutureregister(finalChannel channel,finalChannelPromise promise){
if(channel ==null){
thrownewNullPointerException("channel");
}
if(promise ==null){
thrownewNullPointerException("promise");
}
channel.unsafe().register(this, promise);
return promise;
}
调用了NioServerSocketChannel的unsafe()的register方法。
@Override
publicfinalvoidregister(EventLoop eventLoop,finalChannelPromise promise){
if(eventLoop ==null){
thrownewNullPointerException("eventLoop");
}
if(isRegistered()){
promise.setFailure(newIllegalStateException("registered to an event loop already"));
return;
}
if(!isCompatible(eventLoop)){
promise.setFailure(
newIllegalStateException("incompatible event loop type: "+ eventLoop.getClass().getName()));
return;
}
AbstractChannel.this.eventLoop = eventLoop;
if(eventLoop.inEventLoop()){
register0(promise);
}else{
try{
eventLoop.execute(newOneTimeTask(){
@Override
publicvoid run(){
register0(promise);
}
});
}catch(Throwable t){
logger.warn(
"Force-closing a channel whose registration task was not accepted by an event loop: {}",
AbstractChannel.this, t);
closeForcibly();
closeFuture.setClosed();
safeSetFailure(promise, t);
}
}
}
对这个eventloop.inEventLoop的理解不是很深刻,有点像android开发里面费时的操作不要放到主线程里面。eventLoop.inEventLoop()表示不在主线程里面。
register的最终实现在,AbstractNioChannel类里面:
@Override
protectedvoid doRegister()throwsException{
boolean selected =false;
for(;;){
try{
selectionKey = javaChannel().register(eventLoop().selector,0,this);
return;
}catch(CancelledKeyException e){
if(!selected){
// Force the Selector to select now as the "canceled" SelectionKey may still be
// cached and not removed because no Select.select(..) operation was called yet.
eventLoop().selectNow();
selected =true;
}else{
// We forced a select operation on the selector before but the SelectionKey is still cached
// for whatever reason. JDK bug ?
throw e;
}
}
}
}
javaChannel()返回Java的Channel对象,eventLoop()返回NioEventLoop对象。里面包含一个selector对象。selectNow是个非阻塞的调用,调用此方法会清除所有以前调用
wakeup
方法所得的结果Netty的Channel是对JDK中Channel的包装和扩展。
注册成功后就需要绑定端口了,
privatestaticvoid doBind0(
finalChannelFuture regFuture,finalChannel channel,
finalSocketAddress localAddress,finalChannelPromise promise){
// This method is invoked before channelRegistered() is triggered. Give user handlers a chance to set up
// the pipeline in its channelRegistered() implementation.
channel.eventLoop().execute(newRunnable(){
@Override
publicvoid run(){
if(regFuture.isSuccess()){
channel.bind(localAddress, promise).addListener(ChannelFutureListener.CLOSE_ON_FAILURE);
}else{
promise.setFailure(regFuture.cause());
}
}
});
}
除了监听端口还不够,还要处理IO事件:
@Override
protectedvoid run(){
for(;;){
boolean oldWakenUp = wakenUp.getAndSet(false);
try{
if(hasTasks()){
selectNow();
}else{
select(oldWakenUp);
// 'wakenUp.compareAndSet(false, true)' is always evaluated
// before calling 'selector.wakeup()' to reduce the wake-up
// overhead. (Selector.wakeup() is an expensive operation.)
//
// However, there is a race condition in this approach.
// The race condition is triggered when 'wakenUp' is set to
// true too early.
//
// 'wakenUp' is set to true too early if:
// 1) Selector is waken up between 'wakenUp.set(false)' and
// 'selector.select(...)'. (BAD)
// 2) Selector is waken up between 'selector.select(...)' and
// 'if (wakenUp.get()) { ... }'. (OK)
//
// In the first case, 'wakenUp' is set to true and the
// following 'selector.select(...)' will wake up immediately.
// Until 'wakenUp' is set to false again in the next round,
// 'wakenUp.compareAndSet(false, true)' will fail, and therefore
// any attempt to wake up the Selector will fail, too, causing
// the following 'selector.select(...)' call to block
// unnecessarily.
//
// To fix this problem, we wake up the selector again if wakenUp
// is true immediately after selector.select(...).
// It is inefficient in that it wakes up the selector for both
// the first case (BAD - wake-up required) and the second case
// (OK - no wake-up required).
if(wakenUp.get()){
selector.wakeup();
}
}
cancelledKeys =0;
needsToSelectAgain =false;
finalint ioRatio =this.ioRatio;
if(ioRatio ==100){
processSelectedKeys();
runAllTasks();
}else{
finallong ioStartTime =System.nanoTime();
processSelectedKeys();
finallong ioTime =System.nanoTime()- ioStartTime;
runAllTasks(ioTime *(100- ioRatio)/ ioRatio);
}
if(isShuttingDown()){
closeAll();
if(confirmShutdown()){
break;
}
}
}catch(Throwable t){
logger.warn("Unexpected exception in the selector loop.", t);
// Prevent possible consecutive immediate failures that lead to
// excessive CPU consumption.
try{
Thread.sleep(1000);
}catch(InterruptedException e){
// Ignore.
}
}
}
}
该方法是NioEventLoop