bl双性强迫侵犯h_国产在线观看人成激情视频_蜜芽188_被诱拐的少孩全彩啪啪漫画

netty5alph1源碼分析(服務端創(chuàng)建過程)

參照《Netty系列之Netty 服務端創(chuàng)建》,研究了netty的服務端創(chuàng)建過程。至于netty的優(yōu)勢,可以參照網絡其他文章。《Netty系列之Netty 服務端創(chuàng)建》是 李林鋒撰寫的netty源碼分析的一篇好文,絕對是技術干貨。但拋開技術來說,也存在一些瑕疵。

為湘潭等地區(qū)用戶提供了全套網頁設計制作服務,及湘潭網站建設行業(yè)解決方案。主營業(yè)務為成都網站制作、網站建設、湘潭網站設計,以傳統方式定制建設網站,并提供域名空間備案等一條龍服務,秉承以專業(yè)、用心的態(tài)度為用戶提供真誠的服務。我們深信只要達到每一位用戶的要求,就會得到認可,從而選擇與我們長期合作。這樣,我們也可以走得更遠!

缺點如下

  1. 代碼銜接不連貫,上下不連貫。

  2. 代碼片段是截圖,對閱讀代理不便(可能和閱讀習慣有關)

本篇主要內容,參照《Netty系列之Netty 服務端創(chuàng)建》,梳理出自己喜歡的閱讀風格。

1.整體邏輯圖

整體將服務端創(chuàng)建分為2部分:(1)綁定端口,提供服務過程;(2)輪詢網絡請求

netty 5 alph1源碼分析(服務端創(chuàng)建過程)

1.1 綁定端口序列圖

netty 5 alph1源碼分析(服務端創(chuàng)建過程)

1.2 類圖

netty 5 alph1源碼分析(服務端創(chuàng)建過程)

類圖僅僅涵蓋了綁定過程中比較重要的幾個組件

1.3 代碼分析

step 2 doBind 綁定本地端口,啟動服務

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

    final ChannelPromise promise;
    if (regFuture.isDone()) {
        promise = channel.newPromise();
        doBind0(regFuture, channel, localAddress, promise);//2
    } else {
        // Registration future is almost always fulfilled already, but just in case it's not.
        promise = new DefaultChannelPromise(channel, GlobalEventExecutor.INSTANCE);
        regFuture.addListener(new ChannelFutureListener() {
            @Override
            public void operationComplete(ChannelFuture future) throws Exception {
                doBind0(regFuture, channel, localAddress, promise);//2
            }
        });
    }

    return promise;
}
主要分為2個處理單元

step3 initAndRegister

final ChannelFuture initAndRegister() {
    Channel channel;
    try {
        channel = createChannel();
    } catch (Throwable t) {
        return VoidChannel.INSTANCE.newFailedFuture(t);
    }

    try {
        init(channel);
    } catch (Throwable t) {
        channel.unsafe().closeForcibly();
        return channel.newFailedFuture(t);
    }
//注冊NioServerSocketChannel到Reactor線程的多路復用器上
    ChannelPromise regFuture = channel.newPromise();
    channel.unsafe().register(regFuture);
    if (regFuture.cause() != null) {
        if (channel.isRegistered()) {
            channel.close();
        } else {
            channel.unsafe().closeForcibly();
        }
    }

    return regFuture;
}

createChannel由子類ServerBootstrap實現,創(chuàng)建新的NioServerSocketChannel,并完成Channel初始化,以及注冊。

4.ServerBootstrap.createChannel

Channel createChannel() {
    EventLoop eventLoop = group().next();
    return channelFactory().newChannel(eventLoop, childGroup);
}

它有兩個參數,參數1是從父類的NIO線程池中順序獲取一個NioEventLoop,它就是服務端用于監(jiān)聽和接收客戶端連接的Reactor線程。第二個參數就是所謂的workerGroup線程池,它就是處理IO讀寫的Reactor線程組。

5.ServerBootstrap.init

void init(Channel channel) throws Exception {
//設置Socket參數和NioServerSocketChannel的附加屬性
    final Map<ChannelOption<?>, Object> options = options();
    synchronized (options) {
        channel.config().setOptions(options);
    }
    final Map<AttributeKey<?>, Object> attrs = attrs();
    synchronized (attrs) {
        for (Entry<AttributeKey<?>, Object> e: attrs.entrySet()) {
            @SuppressWarnings("unchecked")
            AttributeKey<Object> key = (AttributeKey<Object>) e.getKey();
            channel.attr(key).set(e.getValue());
        }
    }
//將AbstractBootstrap的Handler添加到NioServerSocketChannel的ChannelPipeline中
    ChannelPipeline p = channel.pipeline();
    if (handler() != null) {
        p.addLast(handler());
    }

    final ChannelHandler currentChildHandler = childHandler;
    final Entry<ChannelOption<?>, Object>[] currentChildOptions;
    final Entry<AttributeKey<?>, Object>[] currentChildAttrs;
    synchronized (childOptions) {
        currentChildOptions = childOptions.entrySet().toArray(newOptionArray(childOptions.size()));
    }
    synchronized (childAttrs) {
        currentChildAttrs = childAttrs.entrySet().toArray(newAttrArray(childAttrs.size()));
    }
//將用于服務端注冊的Handler ServerBootstrapAcceptor添加到ChannelPipeline中
    p.addLast(new ChannelInitializer<Channel>() {
        @Override
        public void initChannel(Channel ch) throws Exception {
            ch.pipeline().addLast(new ServerBootstrapAcceptor(currentChildHandler, currentChildOptions,
                    currentChildAttrs));
        }
    });
}

到此處,Netty服務端監(jiān)聽的相關資源已經初始化完畢。

6.AbstractChannel.AbstractUnsafe.register

public final void register(final ChannelPromise promise) {
//首先判斷是否是NioEventLoop自身發(fā)起的操作,如果是,則不存在并發(fā)操作,直接執(zhí)行Channel注冊;
    if (eventLoop.inEventLoop()) {
        register0(promise);
    } else {//如果由其它線程發(fā)起,則封裝成一個Task放入消息隊列中異步執(zhí)行。
        try {
            eventLoop.execute(new Runnable() {
                @Override
                public void 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();
            promise.setFailure(t);
        }
    }
}

7.register0

private void register0(ChannelPromise promise) {
    try {
        // check if the channel is still open as it could be closed in the mean time when the register
        // call was outside of the eventLoop
        if (!ensureOpen(promise)) {
            return;
        }
        doRegister();
        registered = true;
        promise.setSuccess();
        pipeline.fireChannelRegistered();
        
        if (isActive()) {//完成綁定時,不會調用該代碼段
            pipeline.fireChannelActive();
        }
    } catch (Throwable t) {
        // Close the channel directly to avoid FD leak.
        closeForcibly();
        closeFuture.setClosed();
        if (!promise.tryFailure(t)) {
            logger.warn(
                    "Tried to fail the registration promise, but it is complete already. " +
                            "Swallowing the cause of the registration failure:", t);
        }
    }
}

觸發(fā)事件

8.doRegister

protected void doRegister() throws Exception {
    boolean selected = false;
    for (;;) {
        try {
        //將NioServerSocketChannel注冊到NioEventLoop的Selector上
            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;
            }
        }
    }
}

大伙兒可能會很詫異,應該注冊OP_ACCEPT(16)到多路復用器上,怎么注冊0呢?0表示只注冊,不監(jiān)聽任何網絡操作。這樣做的原因如下:

  1. 注冊方法是多態(tài)的,它既可以被NioServerSocketChannel用來監(jiān)聽客戶端的連接接入,也可以用來注冊SocketChannel,用來監(jiān)聽網絡讀或者寫操作;

  2. 通過SelectionKey的interestOps(int ops)方法可以方便的修改監(jiān)聽操作位。所以,此處注冊需要獲取SelectionKey并給AbstractNioChannel的成員變量selectionKey賦值。

網頁名稱:netty5alph1源碼分析(服務端創(chuàng)建過程)
鏈接URL:http://vcdvsql.cn/article48/peiphp.html

成都網站建設公司_創(chuàng)新互聯,為您提供建站公司云服務器自適應網站App設計響應式網站網站導航

廣告

聲明:本網站發(fā)布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯

商城網站建設