search
HomeBackend DevelopmentPHP Tutorial'In-depth understanding of Nginx' notes: ngx_event_pipe_s structure

ngx_event_pipe_s

<code><span>typedef</span><span>struct</span> ngx_event_pipe_s  ngx_event_pipe_t;

<span>// 处理接收自上游的包体的回调函数原型</span><span>typedef</span> ngx_int_t (*ngx_event_pipe_input_filter_pt)(ngx_event_pipe_t *p,
                                                    ngx_buf_t *buf);

<span>// 向下游发送响应的回调函数原型</span><span>typedef</span> ngx_int_t (*ngx_event_pipe_output_filter_pt)(<span>void</span> *data,
                                                     ngx_chain_t *chain);



<span>struct</span> ngx_event_pipe_s {
     <span>// Nginx与上游服务器之间的连接</span>
    ngx_connection_t  *upstream;

    <span>// Nginx与下游客户端之间的连接</span>
    ngx_connection_t  *downstream;

     <span>/* 直接接收自上游服务器的缓冲区链表,保存的是未经任何处理的数据。这个链表是逆序的,后接受的响应插在链表头处 */</span>
    ngx_chain_t       *free_raw_bufs;

    <span>// 表示接收到的上游响应缓冲区,其数据是经过input_filter处理的</span>
    ngx_chain_t       *in;

    <span>// 指向刚收到的一个缓冲区</span>
    ngx_chain_t      **last_in;

     <span>// 保存着将要发给客户端的缓冲区链表。在写入临时文件成功时,会把in中的缓冲区添加到out中</span>
    ngx_chain_t       *out;

    <span>// 等待释放的缓冲区</span>
    ngx_chain_t       *<span>free</span>;

    <span>// 表示上次调用ngx_http_output_filter函数发送响应时没有发送完的缓冲区链表</span>
    ngx_chain_t       *busy;

    <span>/*
     * the input filter i.e. that moves HTTP/1.1 chunks
     * from the raw bufs to an incoming chain
     */</span><span>// 处理接收到的、来自上游服务器的数据</span>
    ngx_event_pipe_input_filter_pt    input_filter;

    <span>// 用于input_filter的的参数,一般是ngx_http_request_t的地址</span><span>void</span>                             *input_ctx;

     <span>// 向下游发送响应的函数</span>
    ngx_event_pipe_output_filter_pt   output_filter;

    <span>// output_filter的参数,指向ngx_http_request_t</span><span>void</span>                             *output_ctx;

     <span>// 1:表示当前已读取到上游的响应</span><span>unsigned</span>           read:<span>1</span>;

    <span>// 1:启用文件缓存</span><span>unsigned</span>           cacheable:<span>1</span>;

    <span>// 1:表示接收上游响应时,一次只能接收一个ngx_buf_t缓冲区</span><span>unsigned</span>           single_buf:<span>1</span>;

    <span>// 1:一旦不再接收上游包体,将尽可能地释放缓冲区</span><span>unsigned</span>           free_bufs:<span>1</span>;

    <span>// 1:表示Nginx与上游交互已经结束</span><span>unsigned</span>           upstream_done:<span>1</span>;

    <span>// 1:Nginx与上游服务器的连接出现错误</span><span>unsigned</span>           upstream_error:<span>1</span>;

    <span>// 1:表示与上游服务器的连接已关闭</span><span>unsigned</span>           upstream_eof:<span>1</span>;

    <span>/* 1:表示暂时阻塞读取上游响应的的流程。此时会先调用ngx_event_pipe_write_to_downstream
    函数发送缓冲区中的数据给下游,从而腾出缓冲区空间,再调用ngx_event_pipe_read_upstream
    函数读取上游信息 */</span><span>unsigned</span>           upstream_blocked:<span>1</span>;

    <span>// 1:与下游的交互已结束</span><span>unsigned</span>           downstream_done:<span>1</span>;

    <span>// 1:与下游的连接出现错误</span><span>unsigned</span>           downstream_error:<span>1</span>;

    <span>// 1:复用临时文件。它是由ngx_http_upstream_conf_t中的同名成员赋值的</span><span>unsigned</span>           cyclic_temp_file:<span>1</span>;

     <span>// 已分配的缓冲区数据</span>
    ngx_int_t          allocated;

    <span>// 记录了接收上游响应的内存缓冲区大小,bufs.size表示每个内存缓冲区大小,bufs.num表示最多可以有num个缓冲区</span>
    ngx_bufs_t         bufs;

    <span>// 用于设置、比较缓冲区链表中的ngx_buf_t结构体的tag标志位</span>
    ngx_buf_tag_t      tag;

     <span>/* busy缓冲区中待发送响应长度的最大值,当到达busy_size时,必须等待busy缓冲区发送了足够的数据,
     才能继续发送out和in中的内容 */</span>
    ssize_t            busy_size;

     <span>// 已经接收到来自上游响应包体的长度</span>
    off_t              read_length;
    off_t              length;

     <span>// 表示临时文件的最大长度</span>
    off_t              max_temp_file_size;

    <span>// 表示一次写入文件时数据的最大长度</span>
    ssize_t            temp_file_write_size;

     <span>// 读取上游响应的超时时间</span>
    ngx_msec_t         read_timeout;

    <span>// 向下游发送响应的超时时间</span>
    ngx_msec_t         send_timeout;

    <span>// 向下游发送响应时,TCP连接中设置的send_lowat“水位”</span>
    ssize_t            send_lowat;

     <span>// 连接池</span>
    ngx_pool_t        *pool;

    <span>// 日志</span>
    ngx_log_t         *<span>log</span>;

     <span>// 表示在接收上游服务器响应头部阶段,已经读取到响应包体</span>
    ngx_chain_t       *preread_bufs;

    <span>// 表示在接收上游服务器响应头部阶段,已经读取到响应包体长度</span>
    size_t             preread_size;

    <span>// 用于缓存文件</span>
    ngx_buf_t         *buf_to_file;
    size_t             limit_rate;
    time_t             start_sec;

     <span>// 存放上游响应的临时文件</span>
    ngx_temp_file_t   *temp_file;

     <span>// 已使用的ngx_buf_t缓冲区数目</span><span>/* STUB */</span><span>int</span>     num;
};
</code>

Copyright Statement: Pain is just in your mind.

The above introduces the ngx_event_pipe_s structure of the notes of "In-depth Understanding of Nginx", including the relevant content. I hope it will be helpful to friends who are interested in PHP tutorials.

Statement
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
解决“[Vue warn]: Failed to resolve filter”错误的方法解决“[Vue warn]: Failed to resolve filter”错误的方法Aug 19, 2023 pm 03:33 PM

解决“[Vuewarn]:Failedtoresolvefilter”错误的方法在使用Vue进行开发的过程中,我们有时候会遇到一个错误提示:“[Vuewarn]:Failedtoresolvefilter”。这个错误提示通常出现在我们在模板中使用了一个未定义的过滤器的情况下。本文将介绍如何解决这个错误并给出相应的代码示例。当我们在Vue的

PHP8.0中的事件处理库:EventPHP8.0中的事件处理库:EventMay 14, 2023 pm 05:40 PM

PHP8.0中的事件处理库:Event随着互联网的不断发展,PHP作为一门流行的后台编程语言,被广泛应用于各种Web应用程序的开发中。在这个过程中,事件驱动机制成为了非常重要的一环。PHP8.0中的事件处理库Event将为我们提供一个更加高效和灵活的事件处理方式。什么是事件处理在Web应用程序的开发中,事件处理是一个非常重要的概念。事件可以是任何一种用户行

Steam Summer Sale - Valve teases 95% off AAA games, confirms discounts for viral games Palworld and Content WarningSteam Summer Sale - Valve teases 95% off AAA games, confirms discounts for viral games Palworld and Content WarningJun 26, 2024 pm 03:40 PM

Steam's Summer Sale has previously played host to some of the best game discounts, and this year seems to be stacking up for another home run by Valve. A trailer (watch below) teasing some of the Steam Summer Sale discounted games was just released i

Springboot中filter的原理与注册方法是什么Springboot中filter的原理与注册方法是什么May 11, 2023 pm 08:28 PM

1、filter先看下web服务器的filter所处的位置。filter是一个前后连接的链,前面处理完成之后传递给下一个filter处理。1.1filter的接口定义publicinterfaceFilter{//初始化方法,整个生命周期中只执行一次。//在init方法成功(失败如抛异常等)执行完前,不能提供过滤服务。//参数FilterConfig用于获取初始化参数publicvoidinit(FilterConfigfilterConfig)throwsServletException;//

Python之Pygame的Event事件模块怎么使用Python之Pygame的Event事件模块怎么使用May 18, 2023 am 11:58 AM

Pygame的Event事件模块事件(Event)是Pygame的重要模块之一,它是构建整个游戏程序的核心,比如常用的鼠标点击、键盘敲击、游戏窗口移动、调整窗口大小、触发特定的情节、退出游戏等,这些都可以看做是“事件”。事件类型Pygame定义了一个专门用来处理事件的结构,即事件队列,该结构遵循遵循队列“先到先处理”的基本原则,通过事件队列,我们可以有序的、逐一的处理用户的操作(触发事件)。下述表格列出了Pygame中常用的游戏事件:名称说明QUIT用户按下窗口的关闭按钮ATIVEEVENTPy

Filter在java中如何过滤Filter在java中如何过滤Apr 18, 2023 pm 11:04 PM

说明1、如果Lambda参数生成true值,则filter(能够生成boolean结果的Lambda)将生成元素;2、生成false时,就不再使用此元素。实例创建一个List集合:ListstringCollection=newArrayList();stringCollection.add("ddd2");stringCollection.add("aaa2");stringCollection.add("bbb1");stringC

CSS 视觉属性解析:box-shadow,text-shadow 和 filterCSS 视觉属性解析:box-shadow,text-shadow 和 filterOct 20, 2023 pm 12:51 PM

CSS视觉属性解析:box-shadow,text-shadow和filter引言:在网页设计和开发中,使用CSS可以为元素添加各种视觉效果。本文将重点介绍CSS中的box-shadow,text-shadow和filter这三个重要属性,包括其使用方法和效果展示。下面我们分别详细解析这三个属性。一、box-shadow(盒子阴影)box-shado

CSS 模糊属性详解:filter 和 backdrop-filterCSS 模糊属性详解:filter 和 backdrop-filterOct 20, 2023 pm 04:48 PM

CSS模糊属性详解:filter和backdrop-filter导语:在设计网页时,我们常常需要一些特效来增加页面的视觉吸引力。而模糊效果是其中一种常见的特效之一。CSS提供了两种模糊属性:filter和backdrop-filter,它们分别用于对元素内容以及背景内容进行模糊处理。本文将详细介绍这两个属性,并提供一些具体的代码示例。一、filt

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools