comparison src/http/ngx_http_copy_filter_module.c @ 50:72eb30262aac NGINX_0_1_25

nginx 0.1.25 *) Bugfix: nginx did run on Linux parisc. *) Feature: nginx now does not start under FreeBSD if the sysctl kern.ipc.somaxconn value is too big. *) Bugfix: if a request was internally redirected by the ngx_http_index_module module to the ngx_http_proxy_module or ngx_http_fastcgi_module modules, then the index file was not closed after request completion. *) Feature: the "proxy_pass" can be used in location with regular expression. *) Feature: the ngx_http_rewrite_filter_module module supports the condition like "if ($HTTP_USER_AGENT ~ MSIE)". *) Bugfix: nginx started too slow if the large number of addresses and text values were used in the "geo" directive. *) Change: a variable name must be declared as "$name" in the "geo" directive. The previous variant without "$" is still supported, but will be removed soon. *) Feature: the "%{VARIABLE}v" logging parameter. *) Feature: the "set $name value" directive. *) Bugfix: gcc 4.0 compatibility. *) Feature: the --with-openssl-opt=OPTIONS autoconfiguration directive.
author Igor Sysoev <http://sysoev.ru>
date Sat, 19 Mar 2005 00:00:00 +0300
parents
children b55cbf18157e
comparison
equal deleted inserted replaced
49:93dabbc9efb9 50:72eb30262aac
1
2 /*
3 * Copyright (C) Igor Sysoev
4 */
5
6
7 #include <ngx_config.h>
8 #include <ngx_core.h>
9 #include <ngx_http.h>
10
11
12 typedef struct {
13 ngx_bufs_t bufs;
14 } ngx_http_copy_filter_conf_t;
15
16
17 static void *ngx_http_copy_filter_create_conf(ngx_conf_t *cf);
18 static char *ngx_http_copy_filter_merge_conf(ngx_conf_t *cf,
19 void *parent, void *child);
20 static ngx_int_t ngx_http_copy_filter_init(ngx_cycle_t *cycle);
21
22
23 static ngx_command_t ngx_http_copy_filter_commands[] = {
24
25 { ngx_string("output_buffers"),
26 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE2,
27 ngx_conf_set_bufs_slot,
28 NGX_HTTP_LOC_CONF_OFFSET,
29 offsetof(ngx_http_copy_filter_conf_t, bufs),
30 NULL },
31
32 ngx_null_command
33 };
34
35
36 static ngx_http_module_t ngx_http_copy_filter_module_ctx = {
37 NULL, /* pre conf */
38
39 NULL, /* create main configuration */
40 NULL, /* init main configuration */
41
42 NULL, /* create server configuration */
43 NULL, /* merge server configuration */
44
45 ngx_http_copy_filter_create_conf, /* create location configuration */
46 ngx_http_copy_filter_merge_conf /* merge location configuration */
47 };
48
49
50 ngx_module_t ngx_http_copy_filter_module = {
51 NGX_MODULE,
52 &ngx_http_copy_filter_module_ctx, /* module context */
53 ngx_http_copy_filter_commands, /* module directives */
54 NGX_HTTP_MODULE, /* module type */
55 ngx_http_copy_filter_init, /* init module */
56 NULL /* init process */
57 };
58
59
60 static ngx_http_output_body_filter_pt ngx_http_next_filter;
61
62
63 static ngx_int_t
64 ngx_http_copy_filter(ngx_http_request_t *r, ngx_chain_t *in)
65 {
66 ngx_output_chain_ctx_t *ctx;
67 ngx_http_copy_filter_conf_t *conf;
68
69 if (r->connection->write->error) {
70 return NGX_ERROR;
71 }
72
73 ctx = ngx_http_get_module_ctx(r->main ? r->main : r,
74 ngx_http_copy_filter_module);
75
76 if (ctx == NULL) {
77 conf = ngx_http_get_module_loc_conf(r->main ? r->main : r,
78 ngx_http_copy_filter_module);
79
80 ctx = ngx_pcalloc(r->pool, sizeof(ngx_output_chain_ctx_t));
81 if (ctx == NULL) {
82 return NGX_ERROR;
83 }
84
85 ngx_http_set_ctx(r, ctx, ngx_http_copy_filter_module);
86
87 ctx->sendfile = r->connection->sendfile;
88 ctx->need_in_memory = r->filter_need_in_memory;
89 ctx->need_in_temp = r->filter_need_temporary;
90
91 ctx->pool = r->pool;
92 ctx->bufs = conf->bufs;
93 ctx->tag = (ngx_buf_tag_t) &ngx_http_copy_filter_module;
94
95 ctx->output_filter = (ngx_output_chain_filter_pt) ngx_http_next_filter;
96 ctx->filter_ctx = r;
97
98 }
99
100 return ngx_output_chain(ctx, in);
101 }
102
103
104 static void *
105 ngx_http_copy_filter_create_conf(ngx_conf_t *cf)
106 {
107 ngx_http_copy_filter_conf_t *conf;
108
109 conf = ngx_palloc(cf->pool, sizeof(ngx_http_copy_filter_conf_t));
110 if (conf == NULL) {
111 return NULL;
112 }
113
114 conf->bufs.num = 0;
115
116 return conf;
117 }
118
119
120 static char *
121 ngx_http_copy_filter_merge_conf(ngx_conf_t *cf, void *parent, void *child)
122 {
123 ngx_http_copy_filter_conf_t *prev = parent;
124 ngx_http_copy_filter_conf_t *conf = child;
125
126 ngx_conf_merge_bufs_value(conf->bufs, prev->bufs, 1, 32768);
127
128 return NULL;
129 }
130
131
132 static ngx_int_t
133 ngx_http_copy_filter_init(ngx_cycle_t *cycle)
134 {
135 ngx_http_next_filter = ngx_http_top_body_filter;
136 ngx_http_top_body_filter = ngx_http_copy_filter;
137
138 return NGX_OK;
139 }
140