您的位置:首页 > 理论基础 > 计算机网络

Nginx编写HTTP模块:“Hello World”的第二种写法(HTTP模块介入阶段的2种方法)

2015-12-09 11:42 691 查看
一、“Hello World”两种写法的不同

1.1 HTTP阶段概述

        1. HTTP框架依据常见的处理流程将处理阶段划分为11个阶段 。

        2. 其中每个处理阶段可以由任意多个HTTP模块流水式的处理请求。 

        3. 两种“Hello World”的写法,是两种HTTP模块介入阶段的方法。

                第1种方法,只适用于NGX_HTTP_CONTENT_PHASE阶段;

                第2种方法,适用于各个阶段。

1.2 第1种写法

         1. 通过设置ngx_http_core_loc_conf_t结构体的handler指针来实现。

         2. 仅仅用于URL匹配了location的用户请求 。 

         参照:Nginx编写HTTP模块:第一个Nginx HTTP模块 “Hello World”:http://blog.csdn.net/guowenyan001/article/details/45422069

1.3 第2种写法

        1. 通过必定会被调用的postconfiguration方法,向全局的ngx_http_core_main_conf_t结构的phase[NGX_HTTP_CONTENT_PHASE]动态数组添加ngx_http_hadler_pt处理方法来完成 。

        2. 用于所有的用户请求。 

        3. 这也是HTTP模块介入其他10个阶段的唯一方式。 

二、代码

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

static ngx_int_t ngx_http_mytest_handler(ngx_http_request_t *r)
{
if (!(r->method & (NGX_HTTP_GET|NGX_HTTP_HEAD)))
return NGX_HTTP_NOT_ALLOWED;

ngx_int_t rc = ngx_http_discard_request_body(r);
if (rc != NGX_OK)
return rc;

ngx_str_t type = ngx_string("text/plain");
ngx_str_t response = ngx_string("Hello World!!");

r->headers_out.status = NGX_HTTP_OK;
r->headers_out.content_length_n = response.len;
r->headers_out.content_type = type;

rc = ngx_http_send_header(r);
if (rc == NGX_ERROR || rc > NGX_OK || r->header_only)
return rc;

ngx_buf_t *b = ngx_create_temp_buf(r->pool, response.len);
if (b == NULL)
return NGX_HTTP_INTERNAL_SERVER_ERROR;

ngx_memcpy(b->pos, response.data, response.len);
b->last = b->pos + response.len;
b->last_buf = 1;

ngx_chain_t out;
out.buf = b;
out.next = NULL;

return ngx_http_output_filter(r, &out);
}

//static char* ngx_http_mytest(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
//{
//    ngx_http_core_loc_conf_t *clcf;
//
//    clcf = ngx_http_conf_get_module_loc_conf(cf, ngx_http_core_module);
//
//    clcf->handler = ngx_http_mytest_handler;
//
//    return NGX_CONF_OK;
//}

//static ngx_command_t ngx_http_mytest_commands[] = {
//    {
//        ngx_string("mytest"),
//        NGX_HTTP_MAIN_CONF | NGX_HTTP_SRV_CONF | NGX_HTTP_LOC_CONF | NGX_HTTP_LMT_CONF | NGX_CONF_NOARGS,
//        ngx_http_mytest,
//        NGX_HTTP_LOC_CONF_OFFSET,
//        0,
//        NULL
//    },
//    ngx_null_command
//};

static ngx_int_t
ngx_http_mytest_init(ngx_conf_t *cf)
{
ngx_http_handler_pt        *h;
ngx_http_core_main_conf_t  *cmcf;

cmcf = ngx_http_conf_get_module_main_conf(cf, ngx_http_core_module);

h = ngx_array_push(&cmcf->phases[NGX_HTTP_CONTENT_PHASE].handlers);
if (h == NULL) {
return NGX_ERROR;
}

*h = ngx_http_mytest_handler;
return NGX_OK;
}

static ngx_command_t ngx_http_mytest_commands[] = {
{
ngx_string(""),
0,
NULL,
0,
0,
NULL
},
ngx_null_command
};

static ngx_http_module_t ngx_http_mytest_module_ctx = {
NULL,
ngx_http_mytest_init, /* postconfiguration */
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
};

ngx_module_t ngx_http_mytest_module = {
NGX_MODULE_V1,
&ngx_http_mytest_module_ctx,
ngx_http_mytest_commands,
NGX_HTTP_MODULE,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NGX_MODULE_V1_PADDING
};


三、编译、运行

        参照:Nginx编写HTTP模块:第一个Nginx HTTP模块 “Hello World”:http://blog.csdn.net/guowenyan001/article/details/45422069
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: