Netty——ChannelHandler的添加和删除

本文详细解析了Netty中ChannelHandler的添加和删除过程。在添加时,涉及判断是否重复、创建节点、添加到链表及回调事件。删除时,包括查找节点、从链表中移除节点和触发删除事件。ChannelInitializer作为特殊handler,用于添加childHandler。删除操作通过遍历链表找到节点并进行线程安全的删除。
摘要由CSDN通过智能技术生成

ChannelHandler的添加

ChannelHandler的添加在DefaultChannelPipeline#addLast方法里

public final ChannelPipeline addLast(ChannelHandler... handlers) {
    return addLast(null, handlers);
}

public final ChannelPipeline addLast(EventExecutorGroup executor, ChannelHandler... handlers) {
    ObjectUtil.checkNotNull(handlers, "handlers");

    for (ChannelHandler h: handlers) {
        if (h == null) {
            break;
        }
        addLast(executor, null, h);
    }

    return this;
}
复制代码

可以看到,这个函数能添加多个handler,继续跟进

public final ChannelPipeline addLast(EventExecutorGroup group, String name, ChannelHandler handler) {
    final AbstractChannelHandlerContext newCtx;
    synchronized (this) {
        //检查handler是否被重复添加
        checkMultiplicity(handler);

        //创建节点
        newCtx = newContext(group, filterName(name, handler), handler);

        //将节点添加到链表
        addLast0(newCtx);

        //省略部分代码

        EventExecutor executor = newCtx.executor();
        if (!executor.inEventLoop()) {
            //若不在当前eventLoop,把回调添加完成事件这个任务添加到异步任务队列
            callHandlerAddedInEventLoop(newCtx, executor);
            return this;
        }
    }
    //回调添加完成事件
    callHandlerAdded0(newCtx);
    return this;
}
复制代码

概括一下,添加ChannelHandler主要做了三件事

  • 判断是否重复添加

  • 创建节点并添加至链表

  • 回调添加完成事件

判断是否重复添加

来看看checkMultiplicity这个函数

private static void checkMultiplicity(ChannelHandler handler) {
    if (handler instanceof ChannelHandlerAdapter) {
        ChannelHandlerAdapter h = (ChannelHandlerAdapter) handler;
        if (!h.isSh
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值