blob: aef80de037d7a39ccd5f7f70d9e7dffc0a67aec8 [file] [log] [blame]
Igor Sysoev419f9ac2003-10-21 16:49:56 +00001#ifndef _NGX_EVENT_PIPE_H_INCLUDED_
2#define _NGX_EVENT_PIPE_H_INCLUDED_
Igor Sysoev9e4920b2003-04-14 17:04:58 +00003
4
5#include <ngx_config.h>
6#include <ngx_core.h>
Igor Sysoev931a4002003-10-07 15:30:05 +00007#include <ngx_event.h>
Igor Sysoev9e4920b2003-04-14 17:04:58 +00008
9
Igor Sysoev419f9ac2003-10-21 16:49:56 +000010typedef struct ngx_event_pipe_s ngx_event_pipe_t;
Igor Sysoev9e4920b2003-04-14 17:04:58 +000011
Igor Sysoev419f9ac2003-10-21 16:49:56 +000012typedef int (*ngx_event_pipe_input_filter_pt)(ngx_event_pipe_t *p,
13 ngx_hunk_t *hunk);
14typedef int (*ngx_event_pipe_output_filter_pt)(void *data, ngx_chain_t *chain);
Igor Sysoev9e4920b2003-04-14 17:04:58 +000015
16
Igor Sysoev419f9ac2003-10-21 16:49:56 +000017struct ngx_event_pipe_s {
Igor Sysoevd404c972003-10-16 20:19:16 +000018 ngx_chain_t *free_raw_hunks;
19 ngx_chain_t *in;
20 ngx_chain_t **last_in;
Igor Sysoev6a7fd112003-04-17 17:59:35 +000021
Igor Sysoevd404c972003-10-16 20:19:16 +000022 ngx_chain_t *out;
23 ngx_chain_t **last_out;
Igor Sysoev6a7fd112003-04-17 17:59:35 +000024
Igor Sysoevd404c972003-10-16 20:19:16 +000025 ngx_chain_t *free;
26 ngx_chain_t *busy;
Igor Sysoev6a7fd112003-04-17 17:59:35 +000027
Igor Sysoevd404c972003-10-16 20:19:16 +000028 /*
29 * the input filter i.e. that moves HTTP/1.1 chunks
30 * from the raw hunks to an incoming chain
31 */
Igor Sysoev6a7fd112003-04-17 17:59:35 +000032
Igor Sysoev419f9ac2003-10-21 16:49:56 +000033 ngx_event_pipe_input_filter_pt input_filter;
Igor Sysoevd404c972003-10-16 20:19:16 +000034 void *input_ctx;
Igor Sysoev6a7fd112003-04-17 17:59:35 +000035
Igor Sysoev419f9ac2003-10-21 16:49:56 +000036 ngx_event_pipe_output_filter_pt output_filter;
Igor Sysoevd404c972003-10-16 20:19:16 +000037 void *output_ctx;
Igor Sysoev9e4920b2003-04-14 17:04:58 +000038
Igor Sysoev13829b72003-10-19 19:57:23 +000039 unsigned read:1;
Igor Sysoev9e4920b2003-04-14 17:04:58 +000040 unsigned cachable:1;
Igor Sysoevd404c972003-10-16 20:19:16 +000041 unsigned upstream_done:1;
Igor Sysoev9e4920b2003-04-14 17:04:58 +000042 unsigned upstream_eof:1;
43 unsigned upstream_error:1;
Igor Sysoevd404c972003-10-16 20:19:16 +000044 unsigned downstream_done:1;
Igor Sysoev6a7fd112003-04-17 17:59:35 +000045 unsigned downstream_error:1;
Igor Sysoev9e4920b2003-04-14 17:04:58 +000046
Igor Sysoev913d0d42003-10-13 16:32:29 +000047 int hunks;
48 ngx_bufs_t bufs;
Igor Sysoev9e4920b2003-04-14 17:04:58 +000049
Igor Sysoevd404c972003-10-16 20:19:16 +000050 size_t max_busy_len;
51
Igor Sysoev9e4920b2003-04-14 17:04:58 +000052 off_t temp_offset;
Igor Sysoev6a7fd112003-04-17 17:59:35 +000053 off_t max_temp_file_size;
54 int temp_file_write_size;
Igor Sysoev9e4920b2003-04-14 17:04:58 +000055
56 ngx_connection_t *upstream;
Igor Sysoev6a7fd112003-04-17 17:59:35 +000057 ngx_connection_t *downstream;
Igor Sysoev9e4920b2003-04-14 17:04:58 +000058
59 ngx_pool_t *pool;
60 ngx_log_t *log;
61
Igor Sysoev6a7fd112003-04-17 17:59:35 +000062 ngx_chain_t *preread_hunks;
Igor Sysoev6a7fd112003-04-17 17:59:35 +000063 int preread_size;
64
Igor Sysoev9e4920b2003-04-14 17:04:58 +000065 ngx_file_t *temp_file;
66 ngx_path_t *temp_path;
Igor Sysoev9e4920b2003-04-14 17:04:58 +000067 char *temp_file_warn;
68};
69
70
Igor Sysoev419f9ac2003-10-21 16:49:56 +000071int ngx_event_pipe(ngx_event_pipe_t *p, int do_write);
72int ngx_event_pipe_copy_input_filter(ngx_event_pipe_t *p, ngx_hunk_t *hunk);
Igor Sysoev9e4920b2003-04-14 17:04:58 +000073
74
Igor Sysoev419f9ac2003-10-21 16:49:56 +000075#endif /* _NGX_EVENT_PIPE_H_INCLUDED_ */