blob: b0e0c1a297fd5c41e055279a2e9cfdc0869543e1 [file] [log] [blame]
Igor Sysoev9e4920b2003-04-14 17:04:58 +00001#ifndef _NGX_EVENT_PROXY_H_INCLUDED_
2#define _NGX_EVENT_PROXY_H_INCLUDED_
3
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
10typedef struct ngx_event_proxy_s ngx_event_proxy_t;
11
Igor Sysoev153d7432003-04-15 15:06:52 +000012typedef int (*ngx_event_proxy_input_filter_pt)(ngx_event_proxy_t *p,
13 ngx_chain_t *chain);
Igor Sysoev9e4920b2003-04-14 17:04:58 +000014typedef int (*ngx_event_proxy_output_filter_pt)(void *data, ngx_hunk_t *hunk);
15
16
17struct ngx_event_proxy_s {
18 ngx_chain_t *read_hunks;
19 ngx_chain_t *last_read_hunk;
Igor Sysoev6a7fd112003-04-17 17:59:35 +000020
Igor Sysoevb1ab5d02003-04-21 14:55:47 +000021 ngx_chain_t *file_hunks;
Igor Sysoev6a7fd112003-04-17 17:59:35 +000022
Igor Sysoev9e4920b2003-04-14 17:04:58 +000023 ngx_chain_t *in_hunks;
24 ngx_chain_t *last_in_hunk;
Igor Sysoev6a7fd112003-04-17 17:59:35 +000025
Igor Sysoev9e4920b2003-04-14 17:04:58 +000026 ngx_chain_t *out_hunks;
27 ngx_chain_t *last_out_hunk;
Igor Sysoev6a7fd112003-04-17 17:59:35 +000028
Igor Sysoev9e4920b2003-04-14 17:04:58 +000029 ngx_chain_t *free_hunks;
Igor Sysoev6a7fd112003-04-17 17:59:35 +000030#if 0
31 ngx_chain_t *last_free_hunk;
32#endif
33
Igor Sysoev9e4920b2003-04-14 17:04:58 +000034 ngx_hunk_t *busy_hunk;
35
36 ngx_event_proxy_input_filter_pt input_filter;
37 void *input_data;
38
39 ngx_event_proxy_output_filter_pt output_filter;
40 void *output_data;
41
42 unsigned cachable:1;
Igor Sysoevb1ab5d02003-04-21 14:55:47 +000043 unsigned fatal_error:1;
Igor Sysoev9e4920b2003-04-14 17:04:58 +000044 unsigned block_upstream:1;
45 unsigned upstream_eof:1;
46 unsigned upstream_error:1;
Igor Sysoev6a7fd112003-04-17 17:59:35 +000047 unsigned downstream_eof:1;
48 unsigned downstream_error:1;
Igor Sysoev9e4920b2003-04-14 17:04:58 +000049
Igor Sysoevb1ab5d02003-04-21 14:55:47 +000050 int upstream_level;
51 int downstream_level;
Igor Sysoev9e4920b2003-04-14 17:04:58 +000052
53 int allocated;
54 int block_size;
55 int max_block_size;
56
57 off_t temp_offset;
Igor Sysoev6a7fd112003-04-17 17:59:35 +000058 off_t max_temp_file_size;
59 int temp_file_write_size;
Igor Sysoev9e4920b2003-04-14 17:04:58 +000060
61 ngx_connection_t *upstream;
Igor Sysoev6a7fd112003-04-17 17:59:35 +000062 ngx_connection_t *downstream;
Igor Sysoev9e4920b2003-04-14 17:04:58 +000063
64 ngx_pool_t *pool;
65 ngx_log_t *log;
66
Igor Sysoev6a7fd112003-04-17 17:59:35 +000067 ngx_chain_t *preread_hunks;
68#if 0
69 ngx_chain_t *last_preread_hunk;
70#endif
71 int preread_size;
72
Igor Sysoev9e4920b2003-04-14 17:04:58 +000073 ngx_file_t *temp_file;
74 ngx_path_t *temp_path;
Igor Sysoev9e4920b2003-04-14 17:04:58 +000075 char *temp_file_warn;
76};
77
78
79int ngx_event_proxy_read_upstream(ngx_event_proxy_t *p);
Igor Sysoev6a7fd112003-04-17 17:59:35 +000080int ngx_event_proxy_write_to_downstream(ngx_event_proxy_t *p);
Igor Sysoev9e4920b2003-04-14 17:04:58 +000081int ngx_event_proxy_write_chain_to_temp_file(ngx_event_proxy_t *p);
82
83
84#endif /* _NGX_EVENT_PROXY_H_INCLUDED_ */