nginx/src/core/ngx_conf_file.h

231 lines
7.4 KiB
C
Raw Normal View History

2002-12-28 00:22:50 +08:00
#ifndef _NGX_HTTP_CONF_FILE_H_INCLUDED_
#define _NGX_HTTP_CONF_FILE_H_INCLUDED_
2002-12-19 15:08:55 +08:00
#include <ngx_config.h>
2003-06-03 23:42:58 +08:00
#include <ngx_core.h>
2002-12-19 15:08:55 +08:00
2002-12-26 15:24:21 +08:00
2003-05-15 01:13:13 +08:00
/*
2003-05-15 23:42:53 +08:00
* AAAA number of agruments
* FF command flags
* TT command type, i.e. HTTP "location" or "server" command
2003-05-15 01:13:13 +08:00
*/
2003-05-16 23:27:48 +08:00
#define NGX_CONF_NOARGS 0x00000001
#define NGX_CONF_TAKE1 0x00000002
#define NGX_CONF_TAKE2 0x00000004
2003-10-23 00:38:26 +08:00
#define NGX_CONF_TAKE3 0x00000008
#define NGX_CONF_TAKE4 0x00000010
#define NGX_CONF_TAKE5 0x00000020
#define NGX_CONF_TAKE6 0x00000040
#define NGX_CONF_TAKE7 0x00000080
#define NGX_CONF_TAKE8 0x00000100
#define NGX_CONF_TAKE9 0x00000200
#define NGX_CONF_TAKE10 0x00000400
#define NGX_CONF_TAKE1234 (NGX_CONF_TAKE1|NGX_CONF_TAKE2|NGX_CONF_TAKE3 \
|NGX_CONF_TAKE4)
2003-05-16 23:27:48 +08:00
#define NGX_CONF_ARGS_NUMBER 0x0000ffff
#define NGX_CONF_ANY 0x00010000
2003-06-02 23:24:30 +08:00
#define NGX_CONF_1MORE 0x00020000
2003-05-30 22:27:59 +08:00
#define NGX_CONF_BLOCK 0x00040000
#define NGX_CONF_FLAG 0x00080000
2002-12-19 15:08:55 +08:00
2003-05-16 23:27:48 +08:00
#define NGX_MAIN_CONF 0x01000000
2003-05-15 01:13:13 +08:00
2002-12-19 15:08:55 +08:00
2002-12-28 00:22:50 +08:00
#define NGX_CONF_UNSET -1
2002-12-19 15:08:55 +08:00
2003-01-09 13:36:00 +08:00
#define NGX_CONF_OK NULL
#define NGX_CONF_ERROR (void *) -1
2002-12-28 00:22:50 +08:00
2002-12-26 15:24:21 +08:00
#define NGX_CONF_BLOCK_DONE 1
#define NGX_CONF_FILE_DONE 2
2003-05-27 20:18:54 +08:00
#define NGX_MODULE 0, 0
2002-12-26 15:24:21 +08:00
2003-05-27 20:18:54 +08:00
#define NGX_CORE_MODULE 0x45524F43 /* "CORE" */
#define NGX_CONF_MODULE 0x464E4F43 /* "CONF" */
2002-12-27 15:27:47 +08:00
2002-12-27 00:26:23 +08:00
struct ngx_command_s {
2002-12-26 15:24:21 +08:00
ngx_str_t name;
int type;
2003-05-27 20:18:54 +08:00
char *(*set)(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
2002-12-27 00:26:23 +08:00
int conf;
int offset;
2003-04-28 23:06:39 +08:00
void *bounds;
2002-12-27 00:26:23 +08:00
};
2002-12-26 15:24:21 +08:00
2003-05-27 20:18:54 +08:00
#define ngx_null_command {ngx_null_string, 0, NULL, 0, 0, NULL}
2002-12-26 15:24:21 +08:00
2003-06-03 23:42:58 +08:00
2003-07-02 22:41:17 +08:00
struct ngx_open_file_s {
ngx_fd_t fd;
ngx_str_t name;
2003-07-21 05:15:59 +08:00
#if 0
/* e.g. append mode, error_log */
int flags;
/* e.g. reopen db file */
int (*handler)(void *data, ngx_open_file_t *file);
void *data;
#endif
2003-07-02 22:41:17 +08:00
};
struct ngx_cycle_s {
2003-07-07 14:11:50 +08:00
void ****conf_ctx;
ngx_pool_t *pool;
ngx_log_t *log;
ngx_array_t listening;
ngx_array_t open_files;
2003-07-02 22:41:17 +08:00
2003-07-07 14:11:50 +08:00
int connection_n;
ngx_connection_t *connections;
ngx_event_t *read_events;
ngx_event_t *write_events;
ngx_cycle_t *cycle;
ngx_cycle_t *old_cycle;
unsigned one_process:1;
2003-07-02 22:41:17 +08:00
};
2003-06-03 23:42:58 +08:00
struct ngx_module_s {
2003-05-27 20:18:54 +08:00
int ctx_index;
2003-05-16 23:27:48 +08:00
int index;
2003-05-27 20:18:54 +08:00
void *ctx;
2002-12-26 15:24:21 +08:00
ngx_command_t *commands;
int type;
2003-07-04 23:10:33 +08:00
int (*init_module)(ngx_cycle_t *cycle);
int (*init_child)(ngx_cycle_t *cycle);
2003-06-03 23:42:58 +08:00
};
2002-12-23 14:29:22 +08:00
2002-12-19 15:08:55 +08:00
typedef struct {
ngx_file_t file;
ngx_hunk_t *hunk;
int line;
} ngx_conf_file_t;
2002-12-26 15:24:21 +08:00
2003-05-15 01:13:13 +08:00
typedef char *(*ngx_conf_handler_pt)(ngx_conf_t *cf,
2003-05-30 22:27:59 +08:00
ngx_command_t *dummy, void *conf);
2003-05-15 01:13:13 +08:00
2002-12-19 15:08:55 +08:00
struct ngx_conf_s {
2003-05-15 01:13:13 +08:00
char *name;
ngx_array_t *args;
2002-12-19 15:08:55 +08:00
2003-07-01 23:00:03 +08:00
ngx_cycle_t *cycle;
2003-05-15 01:13:13 +08:00
ngx_pool_t *pool;
ngx_conf_file_t *conf_file;
ngx_log_t *log;
2002-12-19 15:08:55 +08:00
2003-05-15 01:13:13 +08:00
void *ctx;
int module_type;
int cmd_type;
ngx_conf_handler_pt handler;
char *handler_conf;
2002-12-19 15:08:55 +08:00
};
2003-07-04 23:10:33 +08:00
#define ngx_get_conf(conf_ctx, module) conf_ctx[module.index]
2003-05-20 00:39:14 +08:00
2003-07-18 22:44:05 +08:00
2003-05-20 00:39:14 +08:00
#define ngx_conf_init_value(conf, default) \
if (conf == NGX_CONF_UNSET) { \
conf = default; \
}
2003-06-16 02:32:13 +08:00
#define ngx_conf_init_unsigned_value(conf, default) \
if (conf == (unsigned) NGX_CONF_UNSET) { \
conf = default; \
}
2003-05-20 00:39:14 +08:00
#define ngx_conf_init_size_value(conf, default) \
if (conf == NGX_CONF_UNSET) { \
conf = default; \
}
#define ngx_conf_init_msec_value(conf, default) \
if (conf == NGX_CONF_UNSET) { \
conf = default; \
}
#define ngx_conf_merge_value(conf, prev, default) \
2003-01-09 13:36:00 +08:00
if (conf == NGX_CONF_UNSET) { \
conf = (prev == NGX_CONF_UNSET) ? default : prev; \
}
2002-12-25 01:30:59 +08:00
2003-05-20 00:39:14 +08:00
#define ngx_conf_merge_msec_value(conf, prev, default) \
2003-05-15 23:42:53 +08:00
if (conf == (ngx_msec_t) NGX_CONF_UNSET) { \
conf = (prev == (ngx_msec_t) NGX_CONF_UNSET) ? default : prev; \
2003-05-15 01:13:13 +08:00
}
2002-12-25 01:30:59 +08:00
2003-05-20 00:39:14 +08:00
#define ngx_conf_merge_size_value(conf, prev, default) \
2003-06-11 23:28:34 +08:00
if (conf == (ssize_t) NGX_CONF_UNSET) { \
conf = (prev == (ssize_t) NGX_CONF_UNSET) ? default : prev; \
2003-02-07 01:21:13 +08:00
}
2003-05-27 20:18:54 +08:00
#define ngx_conf_merge_str_value(conf, prev, default) \
if (conf.len == 0) { \
if (prev.len) { \
conf.len = prev.len; \
conf.data = prev.data; \
} else { \
conf.len = sizeof(default) - 1; \
conf.data = default; \
} \
}
2003-10-08 23:32:54 +08:00
#define ngx_conf_merge_bufs_value(conf, prev, default_num, default_size) \
if (conf.num == 0) { \
if (prev.num) { \
conf.num = prev.num; \
conf.size = prev.size; \
} else { \
conf.num = default_num; \
conf.size = default_size; \
} \
}
2003-02-07 01:21:13 +08:00
2003-03-04 14:33:48 +08:00
#define addressof(addr) ((int) &addr)
2003-01-09 13:36:00 +08:00
char *ngx_conf_parse(ngx_conf_t *cf, ngx_str_t *filename);
2003-07-21 05:15:59 +08:00
ngx_open_file_t *ngx_conf_open_file(ngx_cycle_t *cycle, ngx_str_t *name);
2003-07-18 22:44:05 +08:00
void ngx_conf_log_error(int level, ngx_conf_t *cf, ngx_err_t err,
char *fmt, ...);
2003-05-27 20:18:54 +08:00
char *ngx_conf_set_flag_slot(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
char *ngx_conf_set_str_slot(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
char *ngx_conf_set_num_slot(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
char *ngx_conf_set_size_slot(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
char *ngx_conf_set_msec_slot(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
char *ngx_conf_set_time_slot(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
2003-10-08 23:32:54 +08:00
char *ngx_conf_set_bufs_slot(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
2002-12-27 00:26:23 +08:00
2003-07-11 23:17:50 +08:00
char *ngx_conf_set_core_flag_slot(ngx_conf_t *cf, ngx_command_t *cmd,
2003-07-18 22:44:05 +08:00
void *conf);
2002-12-27 00:26:23 +08:00
2003-07-21 05:15:59 +08:00
2003-05-20 00:39:14 +08:00
extern ngx_module_t *ngx_modules[];
2003-07-07 14:11:50 +08:00
extern ngx_cycle_t *ngx_cycle;
extern ngx_array_t ngx_old_cycles;
2002-12-19 15:08:55 +08:00
2003-07-21 05:15:59 +08:00
2003-02-07 01:21:13 +08:00
#endif /* _NGX_HTTP_CONF_FILE_H_INCLUDED_ */