2003-06-03 23:42:58 +08:00
|
|
|
#ifndef _NGX_HUNK_H_INCLUDED_
|
|
|
|
#define _NGX_HUNK_H_INCLUDED_
|
2002-08-07 00:39:45 +08:00
|
|
|
|
|
|
|
|
|
|
|
#include <ngx_config.h>
|
2003-06-03 23:42:58 +08:00
|
|
|
#include <ngx_core.h>
|
2002-08-07 00:39:45 +08:00
|
|
|
|
|
|
|
|
2002-08-16 01:20:26 +08:00
|
|
|
/* hunk type */
|
|
|
|
|
2003-03-12 04:38:13 +08:00
|
|
|
/* the hunk is in memory */
|
2003-04-15 01:04:58 +08:00
|
|
|
#define NGX_HUNK_IN_MEMORY 0x0001
|
2003-03-12 04:38:13 +08:00
|
|
|
/* the hunk's content can be changed */
|
2003-04-15 01:04:58 +08:00
|
|
|
#define NGX_HUNK_TEMP 0x0002
|
2003-03-12 04:38:13 +08:00
|
|
|
/* the hunk's content is in cache and can not be changed */
|
2003-04-15 01:04:58 +08:00
|
|
|
#define NGX_HUNK_MEMORY 0x0004
|
2003-03-12 04:38:13 +08:00
|
|
|
/* the hunk's content is mmap()ed and can not be changed */
|
2003-04-15 01:04:58 +08:00
|
|
|
#define NGX_HUNK_MMAP 0x0008
|
2003-03-12 04:38:13 +08:00
|
|
|
|
2003-04-15 01:04:58 +08:00
|
|
|
#define NGX_HUNK_RECYCLED 0x0010
|
2003-03-12 04:38:13 +08:00
|
|
|
|
|
|
|
/* the hunk is in file */
|
2003-04-15 01:04:58 +08:00
|
|
|
#define NGX_HUNK_FILE 0x0100
|
2002-08-07 00:39:45 +08:00
|
|
|
|
2003-08-12 00:03:06 +08:00
|
|
|
#define NGX_HUNK_STORAGE (NGX_HUNK_IN_MEMORY \
|
|
|
|
|NGX_HUNK_TEMP|NGX_HUNK_MEMORY|NGX_HUNK_MMAP \
|
2003-08-11 00:14:37 +08:00
|
|
|
|NGX_HUNK_RECYCLED|NGX_HUNK_FILE)
|
|
|
|
|
2002-08-16 01:20:26 +08:00
|
|
|
/* hunk flags */
|
2002-08-07 00:39:45 +08:00
|
|
|
|
2002-08-16 01:20:26 +08: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-04-15 01:04:58 +08:00
|
|
|
#define NGX_HUNK_FLUSH 0x1000
|
2002-08-16 01:20:26 +08:00
|
|
|
/* last hunk */
|
2003-04-15 01:04:58 +08:00
|
|
|
#define NGX_HUNK_LAST 0x2000
|
|
|
|
#define NGX_HUNK_LAST_SHADOW 0x4000
|
2002-08-16 01:20:26 +08:00
|
|
|
|
|
|
|
|
2002-08-07 00:39:45 +08:00
|
|
|
|
2003-06-03 23:42:58 +08:00
|
|
|
typedef struct ngx_hunk_s ngx_hunk_t;
|
|
|
|
|
2002-08-07 00:39:45 +08:00
|
|
|
struct ngx_hunk_s {
|
2003-03-12 04:38:13 +08:00
|
|
|
char *pos;
|
|
|
|
char *last;
|
|
|
|
off_t file_pos;
|
|
|
|
off_t file_last;
|
|
|
|
|
2002-08-07 00:39:45 +08:00
|
|
|
int type;
|
|
|
|
char *start; /* start of hunk */
|
|
|
|
char *end; /* end of hunk */
|
|
|
|
char *pre_start; /* start of pre-allocated hunk */
|
|
|
|
char *post_end; /* end of post-allocated hunk */
|
|
|
|
int tag;
|
2002-09-02 22:48:24 +08:00
|
|
|
ngx_file_t *file;
|
2003-04-12 00:01:14 +08:00
|
|
|
ngx_hunk_t *shadow;
|
2002-08-07 00:39:45 +08:00
|
|
|
};
|
|
|
|
|
2003-02-12 00:42:23 +08:00
|
|
|
|
2003-06-03 23:42:58 +08:00
|
|
|
typedef struct ngx_chain_s ngx_chain_t;
|
|
|
|
|
2002-08-07 00:39:45 +08:00
|
|
|
struct ngx_chain_s {
|
|
|
|
ngx_hunk_t *hunk;
|
|
|
|
ngx_chain_t *next;
|
|
|
|
};
|
|
|
|
|
2002-09-02 22:48:24 +08:00
|
|
|
|
2003-10-08 23:32:54 +08:00
|
|
|
typedef struct {
|
|
|
|
int num;
|
|
|
|
ssize_t size;
|
|
|
|
} ngx_bufs_t;
|
|
|
|
|
|
|
|
|
2003-02-12 00:42:23 +08:00
|
|
|
#define NGX_CHAIN_ERROR (ngx_chain_t *) NGX_ERROR
|
|
|
|
|
|
|
|
|
2003-03-12 04:38:13 +08:00
|
|
|
#define ngx_hunk_in_memory_only(h) \
|
|
|
|
((h->type & (NGX_HUNK_IN_MEMORY|NGX_HUNK_FILE)) == NGX_HUNK_IN_MEMORY)
|
2003-10-09 15:00:45 +08: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-12 04:38:13 +08:00
|
|
|
|
|
|
|
|
2002-09-02 22:48:24 +08:00
|
|
|
ngx_hunk_t *ngx_create_temp_hunk(ngx_pool_t *pool, int size,
|
|
|
|
int before, int after);
|
|
|
|
|
2003-04-15 01:04:58 +08:00
|
|
|
#define ngx_alloc_hunk(pool) ngx_palloc(pool, sizeof(ngx_hunk_t))
|
2003-06-02 23:24:30 +08:00
|
|
|
#define ngx_calloc_hunk(pool) ngx_pcalloc(pool, sizeof(ngx_hunk_t))
|
2003-04-15 01:04:58 +08:00
|
|
|
|
2003-06-02 23:24:30 +08:00
|
|
|
#define ngx_alloc_chain_entry(pool) ngx_palloc(pool, sizeof(ngx_chain_t))
|
2002-08-30 00:59:54 +08:00
|
|
|
|
2002-08-22 23:24:03 +08:00
|
|
|
#define ngx_add_hunk_to_chain(chain, h, pool, error) \
|
|
|
|
do { \
|
2003-04-15 23:06:52 +08:00
|
|
|
ngx_test_null(chain, ngx_alloc_chain_entry(pool), error); \
|
2002-08-22 23:24:03 +08:00
|
|
|
chain->hunk = h; \
|
|
|
|
chain->next = NULL; \
|
|
|
|
} while (0);
|
|
|
|
|
2003-10-14 00:32:29 +08:00
|
|
|
#define ngx_alloc_ce_and_set_hunk ngx_add_hunk_to_chain
|
|
|
|
|
|
|
|
|
|
|
|
#define ngx_chain_add_ce(ngx_chain_t *chain, ngx_chain_t **last, \
|
|
|
|
ngx_chain_t *ce) \
|
|
|
|
if (chain) { \
|
|
|
|
last->next = ce; \
|
|
|
|
} else { \
|
|
|
|
chain = ce; \
|
|
|
|
} \
|
|
|
|
last = ce;
|
|
|
|
|
|
|
|
|
2003-09-26 13:45:21 +08:00
|
|
|
int ngx_chain_add_copy(ngx_pool_t *pool, ngx_chain_t **ch, ngx_chain_t *in);
|
|
|
|
void ngx_chain_update_chains(ngx_chain_t **free, ngx_chain_t **busy,
|
|
|
|
ngx_chain_t **out);
|
|
|
|
|
|
|
|
|
2002-08-22 23:24:03 +08:00
|
|
|
|
2003-06-03 23:42:58 +08:00
|
|
|
#endif /* _NGX_HUNK_H_INCLUDED_ */
|