nginx/src/core/ngx_conf_file.h

131 lines
3.3 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>
#include <ngx_files.h>
#include <ngx_log.h>
#include <ngx_file.h>
2002-12-26 15:24:21 +08:00
#include <ngx_string.h>
2002-12-19 15:08:55 +08:00
#include <ngx_alloc.h>
#include <ngx_hunk.h>
#include <ngx_array.h>
2002-12-26 15:24:21 +08:00
2003-05-15 01:13:13 +08:00
/*
* AAAA number of agruments
* TT command flags
* LL command location
*/
2002-12-28 00:22:50 +08:00
#define NGX_CONF_NOARGS 1
#define NGX_CONF_TAKE1 2
#define NGX_CONF_TAKE2 4
2003-01-09 13:36:00 +08:00
#define NGX_CONF_ARGS_NUMBER 0x00ffff
#define NGX_CONF_ANY 0x010000
#define NGX_CONF_BLOCK 0x020000
2003-03-04 14:33:48 +08:00
#define NGX_CONF_FLAG 0x040000
2002-12-19 15:08:55 +08:00
2003-05-15 01:13:13 +08:00
#define NGX_MAIN_CONF 0x1000000
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-04-08 23:40:10 +08:00
#define NGX_CORE_MODULE_TYPE 0x45524F43 /* "CORE" */
#define NGX_CONF_MODULE_TYPE 0x464E4F43 /* "CONF" */
2002-12-28 00:22:50 +08:00
2002-12-27 15:27:47 +08:00
2002-12-26 15:24:21 +08:00
typedef struct ngx_conf_s ngx_conf_t;
2002-12-27 00:26:23 +08:00
typedef struct ngx_command_s ngx_command_t;
struct ngx_command_s {
2002-12-26 15:24:21 +08:00
ngx_str_t name;
int type;
2002-12-27 00:26:23 +08:00
char *(*set)(ngx_conf_t *cf, ngx_command_t *cmd, char *conf);
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
typedef struct {
2003-01-09 13:36:00 +08:00
int index;
2002-12-26 15:24:21 +08:00
void *ctx;
ngx_command_t *commands;
int type;
int (*init_module)(ngx_pool_t *p);
} ngx_module_t;
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,
ngx_command_t *dummy, char *conf);
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-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-01-09 13:36:00 +08:00
#define ngx_conf_merge(conf, prev, default) \
if (conf == NGX_CONF_UNSET) { \
conf = (prev == NGX_CONF_UNSET) ? default : prev; \
}
2002-12-25 01:30:59 +08:00
2003-05-15 01:13:13 +08:00
#define ngx_conf_msec_merge(conf, prev, default) \
if (conf == NGX_CONF_UNSET) { \
conf = (prev == NGX_CONF_UNSET) ? default : prev; \
}
2002-12-25 01:30:59 +08:00
2003-02-07 01:21:13 +08:00
#define ngx_conf_size_merge(conf, prev, default) \
if (conf == (size_t) NGX_CONF_UNSET) { \
conf = (prev == (size_t) NGX_CONF_UNSET) ? default : prev; \
}
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-03-04 14:33:48 +08:00
char *ngx_conf_set_flag_slot(ngx_conf_t *cf, ngx_command_t *cmd, char *conf);
2003-01-09 13:36:00 +08:00
char *ngx_conf_set_str_slot(ngx_conf_t *cf, ngx_command_t *cmd, char *conf);
2002-12-27 00:26:23 +08:00
char *ngx_conf_set_size_slot(ngx_conf_t *cf, ngx_command_t *cmd, char *conf);
2003-05-07 01:03:16 +08:00
char *ngx_conf_set_msec_slot(ngx_conf_t *cf, ngx_command_t *cmd, char *conf);
2002-12-27 00:26:23 +08:00
char *ngx_conf_set_time_slot(ngx_conf_t *cf, ngx_command_t *cmd, char *conf);
extern ngx_module_t *ngx_modules[];
2002-12-19 15:08:55 +08:00
2003-02-07 01:21:13 +08:00
#endif /* _NGX_HTTP_CONF_FILE_H_INCLUDED_ */