2003-06-03 11:42:58 -04:00
|
|
|
#ifndef _NGX_HUNK_H_INCLUDED_
|
|
|
|
#define _NGX_HUNK_H_INCLUDED_
|
2002-08-06 12:39:45 -04:00
|
|
|
|
|
|
|
|
|
|
|
#include <ngx_config.h>
|
2003-06-03 11:42:58 -04:00
|
|
|
#include <ngx_core.h>
|
2002-08-06 12:39:45 -04:00
|
|
|
|
|
|
|
|
2002-08-15 13:20:26 -04:00
|
|
|
/* hunk type */
|
|
|
|
|
2003-03-11 16:38:13 -04:00
|
|
|
/* the hunk is in memory */
|
2003-04-14 13:04:58 -04:00
|
|
|
#define NGX_HUNK_IN_MEMORY 0x0001
|
2003-03-11 16:38:13 -04:00
|
|
|
/* the hunk's content can be changed */
|
2003-04-14 13:04:58 -04:00
|
|
|
#define NGX_HUNK_TEMP 0x0002
|
2003-03-11 16:38:13 -04:00
|
|
|
/* the hunk's content is in cache and can not be changed */
|
2003-04-14 13:04:58 -04:00
|
|
|
#define NGX_HUNK_MEMORY 0x0004
|
2003-03-11 16:38:13 -04:00
|
|
|
/* the hunk's content is mmap()ed and can not be changed */
|
2003-04-14 13:04:58 -04:00
|
|
|
#define NGX_HUNK_MMAP 0x0008
|
2003-03-11 16:38:13 -04:00
|
|
|
|
2003-04-14 13:04:58 -04:00
|
|
|
#define NGX_HUNK_RECYCLED 0x0010
|
2003-03-11 16:38:13 -04:00
|
|
|
|
|
|
|
/* the hunk is in file */
|
2003-11-02 19:56:18 -03:00
|
|
|
#define NGX_HUNK_FILE 0x0020
|
2002-08-06 12:39:45 -04:00
|
|
|
|
2003-08-11 12:03:06 -04:00
|
|
|
#define NGX_HUNK_STORAGE (NGX_HUNK_IN_MEMORY \
|
|
|
|
|NGX_HUNK_TEMP|NGX_HUNK_MEMORY|NGX_HUNK_MMAP \
|
2003-08-10 12:14:37 -04:00
|
|
|
|NGX_HUNK_RECYCLED|NGX_HUNK_FILE)
|
|
|
|
|
2002-08-15 13:20:26 -04:00
|
|
|
/* hunk flags */
|
2002-08-06 12:39:45 -04:00
|
|
|
|
2002-08-15 13:20:26 -04:00
|
|
|
/* in thread state flush means to write the hunk completely before return */
|
|
|
|
/* in event state flush means to start to write the hunk */
|
2003-11-02 19:56:18 -03:00
|
|
|
#define NGX_HUNK_FLUSH 0x0100
|
2002-08-15 13:20:26 -04:00
|
|
|
/* last hunk */
|
2003-11-02 19:56:18 -03:00
|
|
|
#define NGX_HUNK_LAST 0x0200
|
|
|
|
|
|
|
|
|
|
|
|
#define NGX_HUNK_PREREAD 0x2000
|
2003-04-14 13:04:58 -04:00
|
|
|
#define NGX_HUNK_LAST_SHADOW 0x4000
|
2003-10-22 04:05:29 -03:00
|
|
|
#define NGX_HUNK_TEMP_FILE 0x8000
|
2002-08-15 13:20:26 -04:00
|
|
|
|
|
|
|
|
2003-10-22 04:05:29 -03:00
|
|
|
typedef void * ngx_hunk_tag_t;
|
2002-08-06 12:39:45 -04:00
|
|
|
|
2003-06-03 11:42:58 -04:00
|
|
|
typedef struct ngx_hunk_s ngx_hunk_t;
|
|
|
|
|
2002-08-06 12:39:45 -04:00
|
|
|
struct ngx_hunk_s {
|
2004-03-16 03:10:12 -04:00
|
|
|
u_char *pos;
|
|
|
|
u_char *last;
|
2003-10-22 04:05:29 -03:00
|
|
|
off_t file_pos;
|
|
|
|
off_t file_last;
|
|
|
|
|
|
|
|
int type;
|
2004-03-16 03:10:12 -04:00
|
|
|
u_char *start; /* start of hunk */
|
|
|
|
u_char *end; /* end of hunk */
|
2003-10-22 04:05:29 -03:00
|
|
|
ngx_hunk_tag_t tag;
|
|
|
|
ngx_file_t *file;
|
|
|
|
ngx_hunk_t *shadow;
|
|
|
|
/* STUB */ int num;
|
2002-08-06 12:39:45 -04:00
|
|
|
};
|
|
|
|
|
2003-02-11 13:42:23 -03:00
|
|
|
|
2003-06-03 11:42:58 -04:00
|
|
|
typedef struct ngx_chain_s ngx_chain_t;
|
|
|
|
|
2002-08-06 12:39:45 -04:00
|
|
|
struct ngx_chain_s {
|
|
|
|
ngx_hunk_t *hunk;
|
|
|
|
ngx_chain_t *next;
|
|
|
|
};
|
|
|
|
|
2002-09-02 10:48:24 -04:00
|
|
|
|
2003-10-08 11:32:54 -04:00
|
|
|
typedef struct {
|
2004-03-16 03:10:12 -04:00
|
|
|
ngx_int_t num;
|
2003-10-30 13:51:33 -03:00
|
|
|
size_t size;
|
2003-10-08 11:32:54 -04:00
|
|
|
} ngx_bufs_t;
|
|
|
|
|
|
|
|
|
2003-10-27 05:53:49 -03:00
|
|
|
typedef int (*ngx_output_chain_filter_pt)(void *ctx, ngx_chain_t *out);
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
ngx_hunk_t *hunk;
|
|
|
|
ngx_chain_t *in;
|
|
|
|
ngx_chain_t *free;
|
|
|
|
ngx_chain_t *busy;
|
|
|
|
|
|
|
|
unsigned sendfile;
|
|
|
|
unsigned need_in_memory;
|
|
|
|
unsigned need_in_temp;
|
|
|
|
|
|
|
|
ngx_pool_t *pool;
|
2004-03-16 03:10:12 -04:00
|
|
|
ngx_int_t hunks;
|
2003-10-27 05:53:49 -03:00
|
|
|
ngx_bufs_t bufs;
|
|
|
|
ngx_hunk_tag_t tag;
|
|
|
|
|
|
|
|
ngx_output_chain_filter_pt output_filter;
|
2004-03-23 02:01:52 -04:00
|
|
|
void *filter_ctx;
|
2003-10-27 05:53:49 -03:00
|
|
|
} ngx_output_chain_ctx_t;
|
|
|
|
|
|
|
|
|
2003-10-27 18:01:00 -03:00
|
|
|
typedef struct {
|
|
|
|
ngx_chain_t *out;
|
|
|
|
ngx_chain_t **last;
|
|
|
|
ngx_connection_t *connection;
|
|
|
|
ngx_pool_t *pool;
|
2003-10-30 05:51:06 -03:00
|
|
|
} ngx_chain_writer_ctx_t;
|
2003-10-27 18:01:00 -03:00
|
|
|
|
|
|
|
|
2003-02-11 13:42:23 -03:00
|
|
|
#define NGX_CHAIN_ERROR (ngx_chain_t *) NGX_ERROR
|
|
|
|
|
|
|
|
|
2003-03-11 16:38:13 -04:00
|
|
|
#define ngx_hunk_in_memory_only(h) \
|
|
|
|
((h->type & (NGX_HUNK_IN_MEMORY|NGX_HUNK_FILE)) == NGX_HUNK_IN_MEMORY)
|
2003-10-09 03:00:45 -04:00
|
|
|
/*
|
|
|
|
((h->type & (NGX_HUNK_TEMP|NGX_HUNK_MEMORY|NGX_HUNK_MMAP|NGX_HUNK_FILE)) \
|
|
|
|
== (h->type & (NGX_HUNK_TEMP|NGX_HUNK_MEMORY|NGX_HUNK_MMAP)))
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define ngx_hunk_special(h) \
|
|
|
|
(h->type == (h->type & (NGX_HUNK_FLUSH|NGX_HUNK_LAST)))
|
2003-03-11 16:38:13 -04:00
|
|
|
|
|
|
|
|
2003-10-16 17:19:16 -03:00
|
|
|
#define ngx_hunk_size(h) \
|
2003-10-30 13:51:33 -03:00
|
|
|
((h->type & NGX_HUNK_IN_MEMORY) ? (size_t) (h->last - h->pos): \
|
|
|
|
(size_t) (h->file_last - h->file_pos))
|
2003-10-14 12:06:38 -03:00
|
|
|
|
|
|
|
|
2003-11-21 03:30:49 -03:00
|
|
|
ngx_hunk_t *ngx_create_temp_hunk(ngx_pool_t *pool, size_t size);
|
2002-09-02 10:48:24 -04:00
|
|
|
|
2003-04-14 13:04:58 -04:00
|
|
|
#define ngx_alloc_hunk(pool) ngx_palloc(pool, sizeof(ngx_hunk_t))
|
2003-06-02 11:24:30 -04:00
|
|
|
#define ngx_calloc_hunk(pool) ngx_pcalloc(pool, sizeof(ngx_hunk_t))
|
2003-04-14 13:04:58 -04:00
|
|
|
|
2002-08-29 12:59:54 -04:00
|
|
|
|
2003-10-22 13:38:26 -03:00
|
|
|
#define ngx_alloc_chain_link(pool) ngx_palloc(pool, sizeof(ngx_chain_t))
|
|
|
|
|
|
|
|
|
|
|
|
#define ngx_alloc_link_and_set_hunk(chain, h, pool, error) \
|
2002-08-22 11:24:03 -04:00
|
|
|
do { \
|
2003-10-22 13:38:26 -03:00
|
|
|
ngx_test_null(chain, ngx_alloc_chain_link(pool), error); \
|
2002-08-22 11:24:03 -04:00
|
|
|
chain->hunk = h; \
|
|
|
|
chain->next = NULL; \
|
|
|
|
} while (0);
|
|
|
|
|
2003-10-13 13:32:29 -03:00
|
|
|
|
2003-10-22 13:38:26 -03:00
|
|
|
#define ngx_chain_add_link(chain, last, cl) \
|
2003-10-13 13:32:29 -03:00
|
|
|
if (chain) { \
|
2003-10-22 13:38:26 -03:00
|
|
|
*last = cl; \
|
2003-10-13 13:32:29 -03:00
|
|
|
} else { \
|
2003-10-22 13:38:26 -03:00
|
|
|
chain = cl; \
|
2003-10-13 13:32:29 -03:00
|
|
|
} \
|
2003-10-22 13:38:26 -03:00
|
|
|
last = &cl->next
|
2003-10-13 13:32:29 -03:00
|
|
|
|
|
|
|
|
2003-10-27 05:53:49 -03:00
|
|
|
int ngx_output_chain(ngx_output_chain_ctx_t *ctx, ngx_chain_t *in);
|
2003-10-30 05:51:06 -03:00
|
|
|
int ngx_chain_writer(void *data, ngx_chain_t *in);
|
2003-10-27 18:01:00 -03:00
|
|
|
|
2003-10-22 13:38:26 -03:00
|
|
|
int ngx_chain_add_copy(ngx_pool_t *pool, ngx_chain_t **chain, ngx_chain_t *in);
|
2003-09-26 01:45:21 -04:00
|
|
|
void ngx_chain_update_chains(ngx_chain_t **free, ngx_chain_t **busy,
|
2003-10-22 04:05:29 -03:00
|
|
|
ngx_chain_t **out, ngx_hunk_tag_t tag);
|
2003-09-26 01:45:21 -04:00
|
|
|
|
|
|
|
|
2003-06-03 11:42:58 -04:00
|
|
|
#endif /* _NGX_HUNK_H_INCLUDED_ */
|