Home > Java > javaTutorial > body text

Getty-Detailed explanation of implementing Java NIO framework design

黄舟
Release: 2017-03-24 10:46:01
Original
1900 people have browsed it

Preface

Getty is a NIO framework I wrote to learn Java NIO. During the implementation process, I referred to the design of Netty and used Groovy to implement it. Although it is just a toy, the sparrow is small and has all the internal organs. During the implementation process, I not only became familiar with the use of NIO, but also learned a lot of Netty's design ideas, improving my coding and design capabilities.

As for why I use Groovy to write it, because I just learned Groovy and just used it to practice. In addition, Groovy is compatible with Java, so the difference is only in syntax. The underlying implementation is still based on Java APIof.

Getty’s core code lines do not exceed 500 lines. On the one hand, it benefits from Groovy’s concise syntax, and on the other hand, because I only implemented the core logic. The most complicated thing is actually the decoder implementation. Scaffolding is easy to build, but building a skyscraper is not that easy, but it is enough for learning NIO.

ThreadingModel

Getty uses Reactor multi-threaded model

Getty-Detailed explanation of implementing Java NIO framework design

  1. ##There is a dedicated NIO thread - the Acceptor thread is used to monitor the server, receive the client's TCP connection request, and then assign the connection to the worker thread, which monitors the read and write

    Getty-Detailed explanation of implementing Java NIO framework designs .

  2. Network IO operations - reading/writing, etc. are responsible for multiple worker threads, and these worker threads are responsible for reading, decoding, encoding and sending messages.

  3. 1 worker thread can process N links at the same time, but 1 link only corresponds to 1 worker thread to prGetty-Detailed explanation of implementing Java NIO framework design concurrent operation problems.

Event-driven model

The entire server-side process processing is based on the Getty-Detailed explanation of implementing Java NIO framework design mechanism. In the process of [Accept connection -> Read -> Business processing -> Write -> Close connection], the

trigger will trigger the corresponding Getty-Detailed explanation of implementing Java NIO framework design, and the Getty-Detailed explanation of implementing Java NIO framework design handler will handle the corresponding Getty-Detailed explanation of implementing Java NIO framework design respectively. Response to complete the server-side business processing.

Event definition

  1. onRead: This Getty-Detailed explanation of implementing Java NIO framework design is triggered when the client sends data and has been correctly read by the worker thread. This Getty-Detailed explanation of implementing Java NIO framework design notifies each Getty-Detailed explanation of implementing Java NIO framework design handler that the data sent by the client can be actually processed.

  2. onWrite: This Getty-Detailed explanation of implementing Java NIO framework design is triggered when the client can start to accept data sent by the server. Through this Getty-Detailed explanation of implementing Java NIO framework design, we can send response data to the client. (Write Getty-Detailed explanation of implementing Java NIO framework designs are not used in the current implementation)

  3. onClosed: This Getty-Detailed explanation of implementing Java NIO framework design is triggered when the client disconnects from the server.

Implementation of Getty-Detailed explanation of implementing Java NIO framework design callback mechanism

In this model, Getty-Detailed explanation of implementing Java NIO framework designs are broadcast, that is, all registered Getty-Detailed explanation of implementing Java NIO framework design handlers can receive Getty-Detailed explanation of implementing Java NIO framework design notifications. In this way, business processing of different natures can be implemented using different processors, making the function of each processor as single as possible.

As shown below: The entire Getty-Detailed explanation of implementing Java NIO framework design model consists of listeners, Getty-Detailed explanation of implementing Java NIO framework design adapters, Getty-Detailed explanation of implementing Java NIO framework design triggers (HandlerChain, PipeLine), and Getty-Detailed explanation of implementing Java NIO framework design processors.

Getty-Detailed explanation of implementing Java NIO framework design

  • ##ServerListener

    : This is an Getty-Detailed explanation of implementing Java NIO framework designinterface, which defines the server Getty-Detailed explanation of implementing Java NIO framework designs to be listened to

  • EventAdapter

    : Implement an adapter (EventAdapter) for the Serverlistener interface. The advantage of this is that the final Getty-Detailed explanation of implementing Java NIO framework design processor can only handle the Getty-Detailed explanation of implementing Java NIO framework designs of concern. <div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:java;toolbar:false;">class EventAdapter implements ServerListener { //下个处理器的引用 protected next void onRead(Object ctx) { } void onWrite(Object ctx) { } void onClosed(Object ctx) { } }</pre><div class="contentsignin">Copy after login</div></div>

  • Not

    ifier<a href="http://www.php.cn/wiki/109.html" target="_blank">: Used to notify the registered Getty-Detailed explanation of implementing Java NIO framework design handler to respond to the Getty-Detailed explanation of implementing Java NIO framework design by triggering server Getty-Detailed explanation of implementing Java NIO framework designs at the appropriate time. response. </a><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:java;toolbar:false;">interface Notifier extends Serializable{ /** * 触发所有可读事件回调 */ void fireOnRead(ctx) /** * 触发所有可写事件回调 */ void fireOnWrite(ctx) /** * 触发所有连接关闭事件回调 */ void fireOnClosed(ctx) }</pre><div class="contentsignin">Copy after login</div></div>

  • HandlerChain

    : Implements the Notifier interface to maintain an orderly Getty-Detailed explanation of implementing Java NIO framework design handler chain, starting from the first handler each time trigger. <div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:java;toolbar:false;">class HandlerChain implements Notifier{ EventAdapter head EventAdapter tail /** * 添加处理器到执行链的最后 * @param handler */ void addLast(handler) { if (tail != null) { tail.next = handler tail = tail.next } else { head = handler tail = head } } void fireOnRead(ctx) { head.onRead(ctx) } void fireOnWrite(ctx) { head.onWrite(ctx) } void fireOnClosed(ctx) { head.onClosed(ctx) } }</pre><div class="contentsignin">Copy after login</div></div>

  • PipeLine

    : Implements the Notifier interface as an Getty-Detailed explanation of implementing Java NIO framework design bus to maintain a list of Getty-Detailed explanation of implementing Java NIO framework design chains. <div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:java;toolbar:false;">class PipeLine implements Notifier{ static logger = LoggerFactory.getLogger(PipeLine.name) //监听器队列 def listOfChain = [] PipeLine(){} /** * 添加监听器到监听队列中 * @param chain */ void addChain(chain) { synchronized (listOfChain) { if (!listOfChain.contains(chain)) { listOfChain.add(chain) } } } /** * 触发所有可读事件回调 */ void fireOnRead(ctx) { logger.debug(&quot;fireOnRead&quot;) listOfChain.each { chain -&gt; chain.fireOnRead(ctx) } } /** * 触发所有可写事件回调 */ void fireOnWrite(ctx) { listOfChain.each { chain -&gt; chain.fireOnWrite(ctx) } } /** * 触发所有连接关闭事件回调 */ void fireOnClosed(ctx) { listOfChain.each { chain -&gt; chain.fireOnClosed(ctx) } } }</pre><div class="contentsignin">Copy after login</div></div>

  • Event processing process

Getty-Detailed explanation of implementing Java NIO framework designProgramming model

Event processing adopts the chain of responsibility model, each processor After processing the data, it is decided whether to continue executing the next processor. If the processor does not hand over the task to the thread pool for processing, then the entire processing process is processed in the same thread. And each connection has a separate

PipeLine

. The worker thread can switch between multiple connection contexts, but one connection context will only be processed by one thread. <h2>核心类</h2><h3>ConnectionCtx</h3><p>连接上下文<code>ConnectionCtx

class ConnectionCtx {
    /**socket连接*/
    SocketChannel channel
    /**用于携带额外参数*/
    Object attachment
    /**处理当前连接的工作线程*/
    Worker worker
    /**连接超时时间*/
    Long timeout
    /**每个连接拥有自己的pipeline*/
    PipeLine pipeLine
}
Copy after login

NioServer

主线程负责监听端口,持有工作线程的引用(使用轮转法分配连接),每次有连接到来时,将连接放入工作线程的连接队列,并唤醒线程selector.wakeup()(线程可能阻塞在selector上)。

class NioServer extends Thread {
    /**服务端的套接字通道*/
    ServerSocketChannel ssc
    /**选择器*/
    Selector selector
    /**事件总线*/
    PipeLine pipeLine
    /**工作线程列表*/
    def workers = []
    /**当前工作线程索引*/
    int index
}
Copy after login

Worker

工作线程,负责注册server传递过来的socket连接。主要监听读事件,管理socket,处理写操作。

class Worker extends Thread {
    /**选择器*/
    Selector selector
    /**读缓冲区*/
    ByteBuffer buffer
    /**主线程分配的连接队列*/
    def queue = []
    /**存储按超时时间从小到大的连接*/
    TreeMap<Long, ConnectionCtx> ctxTreeMap

    void run() {
        while (true) {
            selector.select()
            //注册主线程发送过来的连接
            registerCtx()
            //关闭超时的连接
            closeTimeoutCtx()
            //处理事件
            dispatchEvent()
        }
    }
}
Copy after login

运行一个简单的 Web 服务器

我实现了一系列处理HTTP请求的处理器,具体实现看代码。

  • LineBasedDecoder:行解码器,按行解析数据

  • HttpRequestDecoder:HTTP请求解析,目前只支持GET请求

  • HttpRequestHandler:Http 请求处理器,目前只支持GET方法

  • HttpResponseHandler:Http响应处理器

下面是写在test中的例子

class WebServerTest {
    static void main(args) {
        def pipeLine = new PipeLine()

        def readChain = new HandlerChain()
        readChain.addLast(new LineBasedDecoder())
        readChain.addLast(new HttpRequestDecoder())
        readChain.addLast(new HttpRequestHandler())
        readChain.addLast(new HttpResponseHandler())

        def closeChain = new HandlerChain()
        closeChain.addLast(new ClosedHandler())

        pipeLine.addChain(readChain)
        pipeLine.addChain(closeChain)

        NioServer nioServer = new NioServer(pipeLine)
        nioServer.start()
    }
}
Copy after login

另外,还可以使用配置文件getty.properties设置程序的运行参数。

#用于拼接消息时使用的二进制数组的缓存区
common_buffer_size=1024
#工作线程读取tcp数据的缓存大小
worker_rcv_buffer_size=1024
#监听的端口
port=4399
#工作线程的数量
worker_num=1
#连接超时自动断开时间
timeout=900
#根目录
root=.
Copy after login

总结

Getty是我造的第二个小轮子,第一个是RedisHttpSession。都说不要重复造轮子。这话我是认同的,但是掌握一门技术最好的方法就是实践,在没有合适项目可以使用新技术的时候,造一个简单的轮子是不错的实践手段。

Getty 的缺点或者说还可以优化的点:

  1. 线程的使用直接用了Thread类,看起来有点low。等以后水平提升了再来抽象一下。

  2. 目前只有读事件是异步的,写事件是同步的。未来将写事件也改为异步的。

The above is the detailed content of Getty-Detailed explanation of implementing Java NIO framework design. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!