2004-09-28 04:34:51 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2002-2004 Igor Sysoev
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2002-09-02 10:48:24 -04:00
|
|
|
#ifndef _NGX_FILE_H_INCLUDED_
|
|
|
|
#define _NGX_FILE_H_INCLUDED_
|
|
|
|
|
|
|
|
|
2003-06-03 11:42:58 -04:00
|
|
|
#include <ngx_config.h>
|
|
|
|
#include <ngx_core.h>
|
2002-09-02 10:48:24 -04:00
|
|
|
|
2003-11-18 18:34:08 -03:00
|
|
|
typedef struct ngx_path_s ngx_path_t;
|
|
|
|
|
|
|
|
#include <ngx_garbage_collector.h>
|
|
|
|
|
2002-09-02 10:48:24 -04:00
|
|
|
|
|
|
|
struct ngx_file_s {
|
2002-12-15 03:25:09 -03:00
|
|
|
ngx_fd_t fd;
|
|
|
|
ngx_str_t name;
|
|
|
|
ngx_file_info_t info;
|
|
|
|
|
2002-12-21 14:14:50 -03:00
|
|
|
off_t offset;
|
2003-11-18 18:34:08 -03:00
|
|
|
off_t sys_offset;
|
2002-12-21 14:14:50 -03:00
|
|
|
|
2002-12-15 03:25:09 -03:00
|
|
|
ngx_log_t *log;
|
|
|
|
|
|
|
|
unsigned info_valid:1;
|
2002-09-02 10:48:24 -04:00
|
|
|
};
|
|
|
|
|
2003-11-14 13:52:04 -03:00
|
|
|
#define NGX_MAX_PATH_LEVEL 3
|
2002-09-02 10:48:24 -04:00
|
|
|
|
2003-11-18 18:34:08 -03:00
|
|
|
struct ngx_path_s {
|
|
|
|
ngx_str_t name;
|
2003-11-21 03:30:49 -03:00
|
|
|
u_int len;
|
|
|
|
u_int level[3];
|
2003-11-18 18:34:08 -03:00
|
|
|
ngx_gc_handler_pt gc_handler;
|
|
|
|
};
|
2003-04-11 12:01:14 -04:00
|
|
|
|
|
|
|
|
2003-10-27 05:53:49 -03:00
|
|
|
typedef struct {
|
|
|
|
ngx_file_t file;
|
2003-11-02 19:56:18 -03:00
|
|
|
off_t offset;
|
|
|
|
ngx_path_t *path;
|
2003-10-27 05:53:49 -03:00
|
|
|
ngx_pool_t *pool;
|
|
|
|
char *warn;
|
|
|
|
|
|
|
|
unsigned persistent:1;
|
|
|
|
} ngx_temp_file_t;
|
|
|
|
|
|
|
|
|
|
|
|
int ngx_write_chain_to_temp_file(ngx_temp_file_t *tf, ngx_chain_t *chain);
|
2003-04-11 12:01:14 -04:00
|
|
|
int ngx_create_temp_file(ngx_file_t *file, ngx_path_t *path,
|
2003-04-28 11:06:39 -04:00
|
|
|
ngx_pool_t *pool, int persistent);
|
2003-04-11 12:01:14 -04:00
|
|
|
void ngx_create_hashed_filename(ngx_file_t *file, ngx_path_t *path);
|
|
|
|
int ngx_create_path(ngx_file_t *file, ngx_path_t *path);
|
|
|
|
|
2003-04-28 11:06:39 -04:00
|
|
|
void ngx_init_temp_number();
|
2004-03-16 03:10:12 -04:00
|
|
|
ngx_uint_t ngx_next_temp_number(ngx_uint_t collision);
|
2003-04-11 12:01:14 -04:00
|
|
|
|
2003-10-22 13:38:26 -03:00
|
|
|
char *ngx_conf_set_path_slot(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
|
|
|
|
|
|
|
|
|
|
|
|
#define ngx_conf_merge_path_value(conf, prev, path, l1, l2, l3, pool) \
|
|
|
|
if (conf == NULL) { \
|
|
|
|
if (prev == NULL) { \
|
|
|
|
ngx_test_null(conf, ngx_palloc(pool, sizeof(ngx_path_t)), NULL); \
|
|
|
|
conf->name.len = sizeof(path) - 1; \
|
2004-03-16 17:26:01 -04:00
|
|
|
conf->name.data = (u_char *) path; \
|
2003-10-22 13:38:26 -03:00
|
|
|
conf->level[0] = l1; \
|
|
|
|
conf->level[1] = l2; \
|
|
|
|
conf->level[2] = l3; \
|
2003-10-27 05:53:49 -03:00
|
|
|
conf->len = l1 + l2 + l3 + (l1 ? 1:0) + (l2 ? 1:0) + (l3 ? 1:0); \
|
2003-10-22 13:38:26 -03:00
|
|
|
} else { \
|
|
|
|
conf = prev; \
|
|
|
|
} \
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-04-11 12:01:14 -04:00
|
|
|
|
2003-02-06 14:21:13 -03:00
|
|
|
#endif /* _NGX_FILE_H_INCLUDED_ */
|