blob: 887f8b7f265709c372d29e0a1c737a960bc9e31e [file] [log] [blame]
Igor Sysoevd90282d2004-09-28 08:34:51 +00001
2/*
Igor Sysoevff8da912004-09-29 16:00:49 +00003 * Copyright (C) Igor Sysoev
Igor Sysoevd90282d2004-09-28 08:34:51 +00004 */
5
6
Igor Sysoev419f9ac2003-10-21 16:49:56 +00007#ifndef _NGX_EVENT_PIPE_H_INCLUDED_
8#define _NGX_EVENT_PIPE_H_INCLUDED_
Igor Sysoev9e4920b2003-04-14 17:04:58 +00009
10
11#include <ngx_config.h>
12#include <ngx_core.h>
Igor Sysoev931a4002003-10-07 15:30:05 +000013#include <ngx_event.h>
Igor Sysoev9e4920b2003-04-14 17:04:58 +000014
15
Igor Sysoev419f9ac2003-10-21 16:49:56 +000016typedef struct ngx_event_pipe_s ngx_event_pipe_t;
Igor Sysoev9e4920b2003-04-14 17:04:58 +000017
Igor Sysoev369145c2004-05-28 15:49:23 +000018typedef ngx_int_t (*ngx_event_pipe_input_filter_pt)(ngx_event_pipe_t *p,
19 ngx_buf_t *buf);
20typedef ngx_int_t (*ngx_event_pipe_output_filter_pt)(void *data,
21 ngx_chain_t *chain);
Igor Sysoev9e4920b2003-04-14 17:04:58 +000022
23
Igor Sysoev419f9ac2003-10-21 16:49:56 +000024struct ngx_event_pipe_s {
Igor Sysoevd7fdb352003-11-17 16:15:03 +000025 ngx_connection_t *upstream;
26 ngx_connection_t *downstream;
27
Igor Sysoev369145c2004-05-28 15:49:23 +000028 ngx_chain_t *free_raw_bufs;
Igor Sysoevd404c972003-10-16 20:19:16 +000029 ngx_chain_t *in;
30 ngx_chain_t **last_in;
Igor Sysoev6a7fd112003-04-17 17:59:35 +000031
Igor Sysoevd404c972003-10-16 20:19:16 +000032 ngx_chain_t *out;
33 ngx_chain_t **last_out;
Igor Sysoev6a7fd112003-04-17 17:59:35 +000034
Igor Sysoevd404c972003-10-16 20:19:16 +000035 ngx_chain_t *free;
36 ngx_chain_t *busy;
Igor Sysoev6a7fd112003-04-17 17:59:35 +000037
Igor Sysoevd404c972003-10-16 20:19:16 +000038 /*
39 * the input filter i.e. that moves HTTP/1.1 chunks
Igor Sysoev369145c2004-05-28 15:49:23 +000040 * from the raw bufs to an incoming chain
Igor Sysoevd404c972003-10-16 20:19:16 +000041 */
Igor Sysoev6a7fd112003-04-17 17:59:35 +000042
Igor Sysoev419f9ac2003-10-21 16:49:56 +000043 ngx_event_pipe_input_filter_pt input_filter;
Igor Sysoev369145c2004-05-28 15:49:23 +000044 void *input_ctx;
Igor Sysoev6a7fd112003-04-17 17:59:35 +000045
Igor Sysoev419f9ac2003-10-21 16:49:56 +000046 ngx_event_pipe_output_filter_pt output_filter;
Igor Sysoev369145c2004-05-28 15:49:23 +000047 void *output_ctx;
Igor Sysoev9e4920b2003-04-14 17:04:58 +000048
Igor Sysoev13829b72003-10-19 19:57:23 +000049 unsigned read:1;
Igor Sysoev9e4920b2003-04-14 17:04:58 +000050 unsigned cachable:1;
Igor Sysoev68ee8f12003-10-30 08:51:06 +000051 unsigned single_buf:1;
Igor Sysoev219d44d2003-10-31 07:10:36 +000052 unsigned free_bufs:1;
Igor Sysoevd404c972003-10-16 20:19:16 +000053 unsigned upstream_done:1;
Igor Sysoev9e4920b2003-04-14 17:04:58 +000054 unsigned upstream_error:1;
Igor Sysoev5bf3d252003-10-22 07:05:29 +000055 unsigned upstream_eof:1;
56 unsigned upstream_blocked:1;
Igor Sysoevd404c972003-10-16 20:19:16 +000057 unsigned downstream_done:1;
Igor Sysoev6a7fd112003-04-17 17:59:35 +000058 unsigned downstream_error:1;
Igor Sysoev5bf3d252003-10-22 07:05:29 +000059 unsigned cyclic_temp_file:1;
Igor Sysoev9e4920b2003-04-14 17:04:58 +000060
Igor Sysoev369145c2004-05-28 15:49:23 +000061 ngx_int_t allocated;
Igor Sysoev913d0d42003-10-13 16:32:29 +000062 ngx_bufs_t bufs;
Igor Sysoev369145c2004-05-28 15:49:23 +000063 ngx_buf_tag_t tag;
Igor Sysoev9e4920b2003-04-14 17:04:58 +000064
Igor Sysoev42b12b32004-12-02 18:40:46 +000065 ssize_t busy_size;
Igor Sysoevd404c972003-10-16 20:19:16 +000066
Igor Sysoeve8732b02003-11-05 17:03:41 +000067 off_t read_length;
68
Igor Sysoev6a7fd112003-04-17 17:59:35 +000069 off_t max_temp_file_size;
Igor Sysoevbf880142004-06-18 06:09:25 +000070 ssize_t temp_file_write_size;
Igor Sysoev9e4920b2003-04-14 17:04:58 +000071
Igor Sysoevb5faed22003-10-29 08:30:44 +000072 ngx_msec_t read_timeout;
73 ngx_msec_t send_timeout;
74 ssize_t send_lowat;
75
Igor Sysoev9e4920b2003-04-14 17:04:58 +000076 ngx_pool_t *pool;
77 ngx_log_t *log;
78
Igor Sysoev369145c2004-05-28 15:49:23 +000079 ngx_chain_t *preread_bufs;
80 size_t preread_size;
81 ngx_buf_t *buf_to_file;
Igor Sysoev6a7fd112003-04-17 17:59:35 +000082
Igor Sysoev65977492003-11-02 22:56:18 +000083 ngx_temp_file_t *temp_file;
84
Igor Sysoev5bf3d252003-10-22 07:05:29 +000085 /* STUB */ int num;
Igor Sysoev9e4920b2003-04-14 17:04:58 +000086};
87
88
Igor Sysoev369145c2004-05-28 15:49:23 +000089ngx_int_t ngx_event_pipe(ngx_event_pipe_t *p, int do_write);
90ngx_int_t ngx_event_pipe_copy_input_filter(ngx_event_pipe_t *p, ngx_buf_t *buf);
Igor Sysoeve5a222c2005-01-25 12:27:35 +000091ngx_int_t ngx_event_pipe_add_free_buf(ngx_event_pipe_t *p, ngx_buf_t *b);
Igor Sysoev9e4920b2003-04-14 17:04:58 +000092
93
Igor Sysoev419f9ac2003-10-21 16:49:56 +000094#endif /* _NGX_EVENT_PIPE_H_INCLUDED_ */