源码阅读过程当中,咱们使用下面这个简单的示例代码作参考;java
EventLoopGroup parentGroup = new NioEventLoopGroup(1);
EventLoopGroup childGroup = new NioEventLoopGroup();
try {
ServerBootstrap serverBootstrap = new ServerBootstrap();
serverBootstrap
.group(parentGroup, childGroup)
.channel(NioServerSocketChannel.class)
.handler(new LoggingHandler(LogLevel.INFO))
.childOption(ChannelOption.TCP_NODELAY, true)
.childAttr(AttributeKey.newInstance("childAttr"), "childAttrVal")
.childHandler(new ChannelInitializer<SocketChannel>() {
@Override
protected void initChannel(SocketChannel ch) {
ChannelPipeline pipeline = ch.pipeline();
pipeline.addLast("httpServerCodec", new HttpServerCodec());
pipeline.addLast("testHttpServerHandler", new TestHttpServerHandler());
pipeline.addLast(new LoggingHandler(LogLevel.INFO));
}
});
ChannelFuture channelFuture = serverBootstrap.bind(8080).sync();
channelFuture.channel().closeFuture().sync();
} catch (Exception e) {
e.printStackTrace();
} finally {
parentGroup.shutdownGracefully();
childGroup.shutdownGracefully();
}
复制代码
咱们从bind(port)开始阅读Netty服务端的建立初始化过程算法
serverBootstrap.bind(8080)
复制代码
顺着bind方法咱们一直跟到AbstractBootStrap.doBind(final SocketAddress localAddress)promise
private ChannelFuture doBind(final SocketAddress localAddress) {
// 初始化和注册
final ChannelFuture regFuture = initAndRegister();
...
}
复制代码
initAndRegister()bash
final ChannelFuture initAndRegister() {
Channel channel = null;
try {
// 建立NioServerChannel
channel = channelFactory.newChannel();
init(channel);
} catch (Throwable t) {
...
}
...
return regFuture;
}
复制代码
建立NioServerChannel的channelFactory是什么时候被初始化的呢?在事例代码中对启动引导类有以下设置:app
serverBootstrap
.channel(NioServerSocketChannel.class)
复制代码
看下channel(Class<? extends C> channelClass)方法作了什么socket
public B channel(Class<? extends C> channelClass) {
if (channelClass == null) {
throw new NullPointerException("channelClass");
}
// 返回一个建立channel的工厂
return channelFactory(new ReflectiveChannelFactory<C>(channelClass));
}
复制代码
咱们来看下ReflectiveChannelFactory类的实现ide
public class ReflectiveChannelFactory<T extends Channel> implements ChannelFactory<T> {
private final Constructor<? extends T> constructor;
public ReflectiveChannelFactory(Class<? extends T> clazz) {
ObjectUtil.checkNotNull(clazz, "clazz");
try {
// 设置传进来的Channel的构造器
this.constructor = clazz.getConstructor();
} catch (NoSuchMethodException e) {
throw new IllegalArgumentException("Class " + StringUtil.simpleClassName(clazz) +
" does not have a public non-arg constructor", e);
}
}
@Override
public T newChannel() {
try {
// 经过构造器实例化对象
return constructor.newInstance();
} catch (Throwable t) {
throw new ChannelException("Unable to create Channel from class " + constructor.getDeclaringClass(), t);
}
}
...
}
复制代码
跟到这咱们发现channelFactory.newChannel()实际上调用的就是NioServerSocketChannel的无参构造方法:oop
public class NioServerSocketChannel extends AbstractNioMessageChannel
implements io.netty.channel.socket.ServerSocketChannel {
....
private static final SelectorProvider DEFAULT_SELECTOR_PROVIDER = SelectorProvider.provider();
private final ServerSocketChannelConfig config;
private static ServerSocketChannel newSocket(SelectorProvider provider) {
...
return provider.openServerSocketChannel();
...
}
public NioServerSocketChannel() {
// 1.newSocket建立ServerSocketChannel
this(newSocket(DEFAULT_SELECTOR_PROVIDER));
}
public NioServerSocketChannel(ServerSocketChannel channel) {
// 2.调用父类构造器 赋值SelectionKey.OP_ACCEPT事件 初始化 id unsafe pipeline
super(null, channel, SelectionKey.OP_ACCEPT);
// 3.设置config
config = new NioServerSocketChannelConfig(this, javaChannel().socket());
}
...
}
复制代码
// 设置channel和readInterestOp以及把channel设置为非阻塞的读
protected AbstractNioChannel(Channel parent, SelectableChannel ch, int readInterestOp) {
super(parent);
this.ch = ch; // 之后javaChannel()获取到的serverSocketChannel
this.readInterestOp = readInterestOp;
try {
ch.configureBlocking(false);
} catch (IOException e) {
...
}
}
protected AbstractChannel(Channel parent) {
this.parent = parent;
id = newId();
// netty内部的对
unsafe = newUnsafe();
pipeline = newChannelPipeline();
}
// 初始化ChannelPipeline
protected DefaultChannelPipeline(Channel channel) {
...
tail = new TailContext(this);
head = new HeadContext(this);
head.next = tail;
tail.prev = head;
...
}
复制代码
void init(Channel channel) throws Exception {
// 1.1 设置ServerSocketChannel的options
final Map<ChannelOption<?>, Object> options = options0();
synchronized (options) {
setChannelOptions(channel, options, logger);
}
// 1.2 设置ServerSocketChannel的attrs
final Map<AttributeKey<?>, Object> attrs = attrs0();
synchronized (attrs) {
for (Entry<AttributeKey<?>, Object> e: attrs.entrySet()) {
@SuppressWarnings("unchecked")
AttributeKey<Object> key = (AttributeKey<Object>) e.getKey();
channel.attr(key).set(e.getValue());
}
}
ChannelPipeline p = channel.pipeline();
final EventLoopGroup currentChildGroup = childGroup;
final ChannelHandler currentChildHandler = childHandler;
final Entry<ChannelOption<?>, Object>[] currentChildOptions;
final Entry<AttributeKey<?>, Object>[] currentChildAttrs;
// 2.1 设置childoption 如ChannelOption.TCP_NODELAY
synchronized (childOptions) {
currentChildOptions = childOptions.entrySet().toArray(newOptionArray(0));
}
// 2.2 设置childAttrs
synchronized (childAttrs) {
currentChildAttrs = childAttrs.entrySet().toArray(newAttrArray(0));
}
// 3.初始化acceptor
p.addLast(new ChannelInitializer<Channel>() {
@Override
public void initChannel(final Channel ch) throws Exception {
final ChannelPipeline pipeline = ch.pipeline();
ChannelHandler handler = config.handler();
if (handler != null) {
pipeline.addLast(handler);
}
ch.eventLoop().execute(new Runnable() {
@Override
public void run() {
pipeline.addLast(new ServerBootstrapAcceptor(
ch, currentChildGroup, currentChildHandler, currentChildOptions, currentChildAttrs));
}
});
}
});
}
复制代码
public void channelRead(ChannelHandlerContext ctx, Object msg) {
// 获取到SocketChannel,也就是连结接入的客户端Channel
final Channel child = (Channel) msg;
...
try {
// 将child注册给其中一个childEventLoop的selector上。
childGroup.register(child).addListener(new ChannelFutureListener() {
...
});
} catch (Throwable t) {
forceClose(child, t);
}
}
复制代码
final ChannelFuture initAndRegister() {
...
ChannelFuture regFuture = config().group().register(channel);
...
return regFuture;
}
复制代码
private void register0(ChannelPromise promise) {
try {
...
// 1.doRegister() 调用jdk底层注册
doRegister();
// 2.invoke HandlerAddedIfNeeded
pipeline.invokeHandlerAddedIfNeeded();
// 3.调用ServerSocketChannle的fireChannelRegistered
pipeline.fireChannelRegistered();
...
} catch (Throwable t) {
...
}
}
复制代码
protected void doRegister() throws Exception {
...
for (;;) {
try {
// 将ServerSocketChannel注册给selector,这块0表明不关注任何事件,由于会在绑定的时候监听OP_ACCEPT
selectionKey = javaChannel().register(eventLoop().unwrappedSelector(), 0, this);
return;
} catch (CancelledKeyException e) {
...
}
}
}
复制代码
public final void bind(final SocketAddress localAddress, final ChannelPromise promise) {
...
// 这个时候channel并非active因此为false
boolean wasActive = isActive();
try {
// 1.jdk ServerSocketServer绑定端口
doBind(localAddress);
} catch (Throwable t) {
...
return;
}
// 由于上边已经完成端口绑定因此 isActive()此时为true
if (!wasActive && isActive()) {
invokeLater(new Runnable() {
@Override
public void run() {
// 2. 一直跟踪最后发现调用的是 HeadContext.readIfIsAutoRead()
pipeline.fireChannelActive();
}
});
}
...
}
复制代码
public boolean isActive() {
return javaChannel().socket().isBound();
}
public boolean isBound() {
// Before 1.3 ServerSockets were always bound during creation
return bound || oldImpl;
}
复制代码
protected void doBeginRead() throws Exception {
final SelectionKey selectionKey = this.selectionKey;
if (!selectionKey.isValid()) {
return;
}
readPending = true;
// interestOps 完成OP_ACCEPT事件绑定
final int interestOps = selectionKey.interestOps();
if ((interestOps & readInterestOp) == 0) {
selectionKey.interestOps(interestOps | readInterestOp);
}
}
复制代码
写到这,经过本文了解到了:ui