2002-08-06 12:39:45 -04:00
|
|
|
#ifndef _NGX_CHUNK_H_INCLUDED_
|
|
|
|
#define _NGX_CHUNK_H_INCLUDED_
|
|
|
|
|
|
|
|
|
|
|
|
#include <ngx_config.h>
|
|
|
|
#include <ngx_types.h>
|
2002-08-20 10:48:28 -04:00
|
|
|
#include <ngx_file.h>
|
2002-08-06 12:39:45 -04:00
|
|
|
#include <ngx_alloc.h>
|
|
|
|
|
|
|
|
|
2002-08-15 13:20:26 -04:00
|
|
|
/* hunk type */
|
|
|
|
|
2003-03-11 16:38:13 -04:00
|
|
|
/* the hunk is in memory */
|
|
|
|
#define NGX_HUNK_IN_MEMORY 0x0001
|
|
|
|
/* the hunk's content can be changed */
|
|
|
|
#define NGX_HUNK_TEMP 0x0002
|
|
|
|
/* the hunk's content is in cache and can not be changed */
|
|
|
|
#define NGX_HUNK_MEMORY 0x0004
|
|
|
|
/* the hunk's content is mmap()ed and can not be changed */
|
|
|
|
#define NGX_HUNK_MMAP 0x0008
|
|
|
|
|
|
|
|
#define NGX_HUNK_RECYCLED 0x0010
|
|
|
|
|
|
|
|
/* the hunk is in file */
|
|
|
|
#define NGX_HUNK_FILE 0x0100
|
2002-08-06 12:39:45 -04:00
|
|
|
|
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-03-11 16:38:13 -04:00
|
|
|
#define NGX_HUNK_FLUSH 0x1000
|
2002-08-15 13:20:26 -04:00
|
|
|
/* last hunk */
|
2003-03-11 16:38:13 -04:00
|
|
|
#define NGX_HUNK_LAST 0x2000
|
2002-08-15 13:20:26 -04:00
|
|
|
|
|
|
|
|
2002-08-06 12:39:45 -04:00
|
|
|
|
|
|
|
typedef struct ngx_hunk_s ngx_hunk_t;
|
|
|
|
struct ngx_hunk_s {
|
2003-03-11 16:38:13 -04:00
|
|
|
char *pos;
|
|
|
|
char *last;
|
|
|
|
off_t file_pos;
|
|
|
|
off_t file_last;
|
|
|
|
|
2002-08-06 12:39:45 -04: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 10:48:24 -04:00
|
|
|
ngx_file_t *file;
|
2003-04-11 12:01:14 -04:00
|
|
|
ngx_hunk_t *shadow;
|
2002-08-06 12:39:45 -04:00
|
|
|
};
|
|
|
|
|
2003-02-11 13:42:23 -03:00
|
|
|
|
2002-08-06 12:39:45 -04:00
|
|
|
typedef struct ngx_chain_s ngx_chain_t;
|
|
|
|
struct ngx_chain_s {
|
|
|
|
ngx_hunk_t *hunk;
|
|
|
|
ngx_chain_t *next;
|
|
|
|
};
|
|
|
|
|
2002-09-02 10:48:24 -04: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)
|
|
|
|
|
|
|
|
|
2002-09-02 10:48:24 -04:00
|
|
|
ngx_hunk_t *ngx_create_temp_hunk(ngx_pool_t *pool, int size,
|
|
|
|
int before, int after);
|
|
|
|
|
|
|
|
#define ngx_create_chain_entry(pool) ngx_palloc(pool, sizeof(ngx_chain_t))
|
2002-08-29 12:59:54 -04:00
|
|
|
|
2002-08-22 11:24:03 -04:00
|
|
|
#define ngx_add_hunk_to_chain(chain, h, pool, error) \
|
|
|
|
do { \
|
|
|
|
ngx_test_null(chain, ngx_create_chain_entry(pool), error); \
|
|
|
|
chain->hunk = h; \
|
|
|
|
chain->next = NULL; \
|
|
|
|
} while (0);
|
|
|
|
|
|
|
|
|
2002-08-06 12:39:45 -04:00
|
|
|
#endif /* _NGX_CHUNK_H_INCLUDED_ */
|