`
Poechant
  • 浏览: 227392 次
博客专栏
Bebe66e7-3a30-3fc9-aeea-cfa3b474b591
Nginx高性能Web服务...
浏览量:24238
5738817b-23a1-3a32-86de-632d7da73b1e
Cumulus实时媒体服务...
浏览量:22041
社区版块
存档分类
最新评论

Nginx源码完全注释(4)ngx_queue.h / ngx_queue.c

 
阅读更多

Nginx源码完全注释(4)ngx_queue.h / ngx_queue.c

  • 作者:柳大·Poechant(钟超)
  • 邮箱:zhongchao.ustc#gmail.com(# -> @)
  • 博客:Blog.CSDN.net/Poechant
  • 日期:August 17th, 2012

Nginx 中的队列是有头的,头节点和队列中的节点都是 ngx_queue_t。头节点不用于存储数据,数据是从头节点的 next 节点开始存储的。

队列头文件ngx_queue.h


#include <ngx_config.h>
#include <ngx_core.h>

#ifndef _NGX_QUEUE_H_INCLUDED_
#define _NGX_QUEUE_H_INCLUDED_


typedef struct ngx_queue_s  ngx_queue_t;

// 队列的节点,也直接表示队列。注意这是一个双向循环队列
struct ngx_queue_s {
    ngx_queue_t  *prev;
    ngx_queue_t  *next;
};

// 初始化队列 q 所指向的指针,prev 和 next 都是自己
#define ngx_queue_init(q)                                                     \
    (q)->prev = q;                                                            \
    (q)->next = q

// 如果表 h == h 的上一个,那么就是一个空队列,其实用 next 也可以的
#define ngx_queue_empty(h)                                                    \
    (h == (h)->prev)

// 向 h 后面插入一个 x
#define ngx_queue_insert_head(h, x)                                           \
    (x)->next = (h)->next;                                                    \
    (x)->next->prev = x;                                                      \
    (x)->prev = h;                                                            \
    (h)->next = x

// 在后面插入 insert after,就是 insert head
#define ngx_queue_insert_after   ngx_queue_insert_head

// 向 h 前面插入一个 x
#define ngx_queue_insert_tail(h, x)                                           \
    (x)->prev = (h)->prev;                                                    \
    (x)->prev->next = x;                                                      \
    (x)->next = h;                                                            \
    (h)->prev = x

// h 表示队列,第一个元素为 h->next
#define ngx_queue_head(h)                                                     \
    (h)->next

// h 是头,h 的上一个就是尾
#define ngx_queue_last(h)                                                     \
    (h)->prev


#define ngx_queue_sentinel(h)                                                 \
    (h)

// 返回节点 q 的下一个
#define ngx_queue_next(q)                                                     \
    (q)->next

// 返回节点 q 的上一个
#define ngx_queue_prev(q)                                                     \
    (q)->prev


#if (NGX_DEBUG)

// debug 模式下要把 x 的 prev、next 成员置为 0,release 版可以省去此两句
#define ngx_queue_remove(x)                                                   \
    (x)->next->prev = (x)->prev;                                              \
    (x)->prev->next = (x)->next;                                              \
    (x)->prev = NULL;                                                         \
    (x)->next = NULL

#else

// 删除一个节点
#define ngx_queue_remove(x)                                                   \
    (x)->next->prev = (x)->prev;                                              \
    (x)->prev->next = (x)->next

#endif

//
// split 作用如下图所示:
//
//  ________________________________________________
//  ||--------------------------------------------||
//  ||                                            ||
// |---| => |---| => … => |---| => |---| => … => |---|   |---|
// | h |    |   |         | q |    |   |         |   |   | n |
// |---| <= |---| <= … <= |---| <= |---| <= … <= |---|   |---|
//
//  __________________________      __________________________________
//  ||----------------------||      ||------------------------------||
//  ||                      ||      ||                              ||
// |---| => |---| => … => |---|    |---| => |---| => … => |---| => |---|
// | h |    |   |         |   |    | q |    |   |         |   |    | n |
// |---| <= |---| <= … => |---|    |---| <= |---| <= … <= |---| <= |---|
//
#define ngx_queue_split(h, q, n)                                              \
    (n)->prev = (h)->prev;                                                    \
    (n)->prev->next = n;                                                      \
    (n)->next = q;                                                            \
    (h)->prev = (q)->prev;                                                    \
    (h)->prev->next = h;                                                      \
    (q)->prev = n;

// 将 n 代表的队列(n 为队列头)接到 h 表示的队列后面
//
//  _________________________      _________________________
//  ||---------------------||      ||---------------------||
//  ||                     ||      ||                     ||
// |---| => |---| => … => |---|   |---| => |---| => … => |---|
// | h |    |   |         |   |   | n |    |n1 |         |   |
// |---| <= |---| <= … <= |---|   |---| <= |---| <= … <= |---|
//
//  ________________________________________________________
//  ||----------------------------------------------------||
//  ||                                                    ||
// |---| => |---| => … => |---| =========> |---| => … => |---|
// | h |    |   |         |   |            |n1 |         |   |
// |---| <= |---| <= … <= |---| <========= |---| <= … <= |---|
//
#define ngx_queue_add(h, n)                                                   \
    (h)->prev->next = (n)->next;                                              \
    (n)->next->prev = (h)->prev;                                              \
    (h)->prev = (n)->prev;                                                    \
    (h)->prev->next = h;

// 一般type如下:
// typedef struct {
//    …
//    LINK q
// } TYPE
// 所以这个宏可以通过 q 找到其所在的结构体 TYPE 变量的地址
#define ngx_queue_data(q, type, link)                                         \
    (type *) ((u_char *) q - offsetof(type, link))


ngx_queue_t *ngx_queue_middle(ngx_queue_t *queue);

void ngx_queue_sort(ngx_queue_t *queue,
    ngx_int_t (*cmp)(const ngx_queue_t *, const ngx_queue_t *));


#endif /* _NGX_QUEUE_H_INCLUDED_ */

队列源文件ngx_queue.c


#include <ngx_config h=""><span class="preprocessor" style="color: rgb(136, 0, 0); ">#include </span><ngx_core h=""><span class="comment" style="color: rgb(136, 136, 136); ">/*
 * find the middle queue element if the queue has odd number of elements
 * or the first element of the queue's second part otherwise
 */</span>

<span class="comment" style="color: rgb(136, 136, 136); ">//</span>
<span class="comment" style="color: rgb(136, 136, 136); ">// 这是用两个指针来找链表中点的典型应用,在很多技巧性问答中常出现。</span>
<span class="comment" style="color: rgb(136, 136, 136); ">//</span>
ngx_queue_t *
ngx_queue_middle(ngx_queue_t *<span class="built_in" style="font-weight: bold; ">queue</span>)
{
    ngx_queue_t  *middle, *next;

    <span class="comment" style="color: rgb(136, 136, 136); ">// middle 从第一个节点开始</span>
    middle = ngx_queue_head(<span class="built_in" style="font-weight: bold; ">queue</span>);

    <span class="comment" style="color: rgb(136, 136, 136); ">// 如果队列只有一个节点,或者为空</span>
    <span class="keyword" style="font-weight: bold; ">if</span> (middle == ngx_queue_last(<span class="built_in" style="font-weight: bold; ">queue</span>)) {
        <span class="keyword" style="font-weight: bold; ">return</span> middle;
    }

    <span class="comment" style="color: rgb(136, 136, 136); ">// next 也从第一个节点开始</span>
    next = ngx_queue_head(<span class="built_in" style="font-weight: bold; ">queue</span>);

    <span class="keyword" style="font-weight: bold; ">for</span> ( ;; ) {
        middle = ngx_queue_next(middle);

        next = ngx_queue_next(next);

        <span class="comment" style="color: rgb(136, 136, 136); ">// 偶数个的情况是在这里返回</span>
        <span class="keyword" style="font-weight: bold; ">if</span> (next == ngx_queue_last(<span class="built_in" style="font-weight: bold; ">queue</span>)) {
            <span class="keyword" style="font-weight: bold; ">return</span> middle;
        }

        next = ngx_queue_next(next);

        <span class="comment" style="color: rgb(136, 136, 136); ">// 奇数个是在这里返回</span>
        <span class="keyword" style="font-weight: bold; ">if</span> (next == ngx_queue_last(<span class="built_in" style="font-weight: bold; ">queue</span>)) {
            <span class="keyword" style="font-weight: bold; ">return</span> middle;
        }
    }
}


<span class="comment" style="color: rgb(136, 136, 136); ">/* the stable insertion sort */</span>
<span class="comment" style="color: rgb(136, 136, 136); ">//</span>
<span class="comment" style="color: rgb(136, 136, 136); ">// 这是一个稳定就地排序(Stable In-place Sorting)。算法的三个性能指标(时间复杂度,空间复杂度,稳定性)</span>
<span class="comment" style="color: rgb(136, 136, 136); ">// 相比之下,quick sort 和 merge sort 更快。但 quick sort 是非稳定的,merge sort 使用 O(n) 额外空间</span>
<span class="comment" style="color: rgb(136, 136, 136); ">//</span>
<span class="keyword" style="font-weight: bold; ">void</span>
ngx_queue_sort(ngx_queue_t *<span class="built_in" style="font-weight: bold; ">queue</span>,
    ngx_int_t (*cmp)(<span class="keyword" style="font-weight: bold; ">const</span> ngx_queue_t *, <span class="keyword" style="font-weight: bold; ">const</span> ngx_queue_t *))
{
    ngx_queue_t  *q, *prev, *next;

    q = ngx_queue_head(<span class="built_in" style="font-weight: bold; ">queue</span>);

    <span class="comment" style="color: rgb(136, 136, 136); ">// 空队列</span>
    <span class="keyword" style="font-weight: bold; ">if</span> (q == ngx_queue_last(<span class="built_in" style="font-weight: bold; ">queue</span>)) {
        <span class="keyword" style="font-weight: bold; ">return</span>;
    }

    <span class="keyword" style="font-weight: bold; ">for</span> (q = ngx_queue_next(q); q != ngx_queue_sentinel(<span class="built_in" style="font-weight: bold; ">queue</span>); q = next) {

        prev = ngx_queue_prev(q);
        next = ngx_queue_next(q);

        ngx_queue_remove(q);

        <span class="comment" style="color: rgb(136, 136, 136); ">// 在已排好序的节点中,向前找比 q 的内容小的。比较的标准由 cmp 确定</span>
        <span class="keyword" style="font-weight: bold; ">do</span> {
            <span class="keyword" style="font-weight: bold; ">if</span> (cmp(prev, q) &lt;= <span class="number" style="color: rgb(0, 136, 0); ">0</span>) {
                <span class="keyword" style="font-weight: bold; ">break</span>;
            }

            prev = ngx_queue_prev(prev);

        } <span class="keyword" style="font-weight: bold; ">while</span> (prev != ngx_queue_sentinel(<span class="built_in" style="font-weight: bold; ">queue</span>));

        <span class="comment" style="color: rgb(136, 136, 136); ">// 找到 prev 是比 q 的内容小的,在 prev 后面插入</span>
        ngx_queue_insert_after(prev, q);
    }
}
</ngx_core></ngx_config>

从上面可以看出,create 是从 pool 分配定义 list 结构的内存,分配表头节点的内存。init 是初始化已有的 list。

Reference

  1. 非传统的稳定插入排序和就地归并排序
  2. 阿牛的爸爸的博客-Nginx队列源码分析

-

转载请注明来自柳大Poechant(钟超Michael)的CSDN博客:

钟超Michael的博客:Blog.CSDN.net/Poechant

钟超Michael的微博:钟超Michael的新浪微博

-

分享到:
评论

相关推荐

    nginx的ngx_queue_t的使用demo

    在本资源中,通过将ngx_queue.c和ngx_queue.h这两个源码文件单独提取出来,我们可以更专注于理解ngx_queue_t的使用方法。 首先,让我们了解ngx_queue_t的基本结构。在ngx_queue.h中,定义了一个结构体`ngx_queue_t`...

    nginx-source-code-analysis:nginx源码解析-源码解析

    mygit核心nginx.c mygit核心nginx.h 提交记录 汽车 [add] have [add] init [add] options [add] sources 核 [add] nginx.c [add] nginx.h [add] ngx_array.c [add] ngx_array.h [add] ngx_list.c [add] ngx_list.h ...

    ngx_lua_php_queue, nginx lua php redis实现单业务排队系统架构.zip

    ngx_lua_php_queue是一个开源项目,它利用Nginx的lua模块、PHP以及Redis来构建一个单业务排队系统架构。这个架构旨在解决高并发场景下,确保请求按序处理,防止资源争抢,优化服务性能的问题。以下是这个系统架构的...

    Nginx源码研究.pdf

    《Nginx源码研究》深入探讨了这款高性能Web服务器的核心技术,对于理解其高效运行机制具有重要价值。本文将围绕内存池、ARRAY、QUEUE和HASH TABLE等关键概念进行详细阐述。 首先,内存池是Nginx实现高效内存管理的...

    Nginx开发从入门到精通.pdf

    - ngx_queue_t:用于实现无锁队列操作的结构体。 Nginx的配置系统是管理员和开发人员调整Nginx行为和性能的关键部分,书中介绍了配置指令的概述、参数和上下文。 Nginx的模块化体系结构讲解了Nginx模块的组成和...

    nginx源码分析线程池详解

    nginx源码中thread_pool模块的实现包含在核心代码中,位于`ngx_thread_pool.c`文件。该文件中定义了`ngx_thread_pool_t`结构体,用于保存线程池的相关信息,如线程数量、队列指针等。同时,`ngx_thread_pool_init`...

    ngx-stomp:STOMP是nginx上的STOMP上游模块,是简单(或流式)面向文本的消息协议

    ngx-stomp 是nginx上的STOMP上游模块,是简单(或流式)面向文本的消息传递协议。 目录 介绍 ngx-stomp是一个nginx第三方模块,它允许使用给定的预定义/动态帧将http请求和代理发送到stomp amqp协议服务器。 用法 0...

    【java面试系列】服务的限流.pdf

    - **Nginx限流**:可以通过`ngx_http_limit_conn_module`模块限制连接数,通过`ngx_http_limit_req_module`模块限制请求速率。 - **Spring Cloud Gateway**:支持多种方式实现限流,如: - 使用`RedisRateLimiter`...

    套接字选择器:根据环境选择套接字

    "套接字选择器:根据环境选择套接字"这一主题,主要探讨的是如何在NGX、CQueue和Lua套接字等不同的套接字实现之间进行灵活的选择和切换,以满足不同应用的需求。 首先,NGX套接字通常与Nginx服务器关联,Nginx是一...

Global site tag (gtag.js) - Google Analytics