1 | /* $Id: tw_module.h 39 2024-09-17 12:20:48Z nishi $ */
|
---|
2 |
|
---|
3 | #ifndef __TW_MODULE_H__
|
---|
4 | #define __TW_MODULE_H__
|
---|
5 |
|
---|
6 | #include "tw_config.h"
|
---|
7 | #include "tw_http.h"
|
---|
8 |
|
---|
9 | struct tw_tool {
|
---|
10 | void (*log)(const char* name, const char* log, ...);
|
---|
11 | void (*add_version)(const char* string);
|
---|
12 | };
|
---|
13 |
|
---|
14 | enum TW_MODULE_RETURN {
|
---|
15 | _TW_MODULE_PASS = 0, /* Pass to the next module. */
|
---|
16 | _TW_MODULE_STOP, /* Do not pass to the next module. */
|
---|
17 | _TW_MODULE_ERROR, /* Error, and do not pass to the next module. */
|
---|
18 |
|
---|
19 | _TW_CONFIG_PARSED, /* Got parsed */
|
---|
20 | _TW_CONFIG_NOTME, /* Did not parse */
|
---|
21 | _TW_CONFIG_ERROR /* Error */
|
---|
22 | };
|
---|
23 |
|
---|
24 | #define TW_MODULE_PASS _TW_MODULE_PASS
|
---|
25 | #define TW_MODULE_STOP _TW_MODULE_STOP
|
---|
26 | #define TW_MODULE_ERROR(x) (_TW_MODULE_ERROR | ((x) << 8))
|
---|
27 |
|
---|
28 | #define TW_CONFIG_PARSED _TW_CONFIG_PARSED
|
---|
29 | #define TW_CONFIG_NOTME _TW_CONFIG_NOTME
|
---|
30 | #define TW_CONFIG_ERROR _TW_CONFIG_ERROR
|
---|
31 |
|
---|
32 | typedef int (*tw_mod_init_t)(struct tw_config* config, struct tw_tool* tools);
|
---|
33 | typedef int (*tw_mod_request_t)(struct tw_tool* tools, struct tw_http_request* req, struct tw_http_response* res);
|
---|
34 | typedef int (*tw_mod_config_t)(struct tw_tool* tools, char** argv, int argc);
|
---|
35 |
|
---|
36 | void* tw_module_load(const char* path);
|
---|
37 | void* tw_module_symbol(void* mod, const char* sym);
|
---|
38 | void tw_init_tools(struct tw_tool* tools);
|
---|
39 | int tw_module_init(void* mod);
|
---|
40 |
|
---|
41 | #endif
|
---|