php-internal-docs 8.4.8
Unofficial docs for php/php-src
Loading...
Searching...
No Matches
zend_ini.h
Go to the documentation of this file.
1/*
2 +----------------------------------------------------------------------+
3 | Zend Engine |
4 +----------------------------------------------------------------------+
5 | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) |
6 +----------------------------------------------------------------------+
7 | This source file is subject to version 2.00 of the Zend license, |
8 | that is bundled with this package in the file LICENSE, and is |
9 | available through the world-wide-web at the following url: |
10 | http://www.zend.com/license/2_00.txt. |
11 | If you did not receive a copy of the Zend license and are unable to |
12 | obtain it through the world-wide-web, please send a note to |
13 | license@zend.com so we can mail you a copy immediately. |
14 +----------------------------------------------------------------------+
15 | Author: Zeev Suraski <zeev@php.net> |
16 +----------------------------------------------------------------------+
17*/
18
19#ifndef ZEND_INI_H
20#define ZEND_INI_H
21
22#include "zend_modules.h"
23
24#define ZEND_INI_USER (1<<0)
25#define ZEND_INI_PERDIR (1<<1)
26#define ZEND_INI_SYSTEM (1<<2)
27
28#define ZEND_INI_ALL (ZEND_INI_USER|ZEND_INI_PERDIR|ZEND_INI_SYSTEM)
29
30#define ZEND_INI_MH(name) int name(zend_ini_entry *entry, zend_string *new_value, void *mh_arg1, void *mh_arg2, void *mh_arg3, int stage)
31#define ZEND_INI_DISP(name) ZEND_COLD void name(zend_ini_entry *ini_entry, int type)
32
33typedef struct _zend_ini_entry_def {
34 const char *name;
35 ZEND_INI_MH((*on_modify));
36 void *mh_arg1;
37 void *mh_arg2;
38 void *mh_arg3;
39 const char *value;
40 void (*displayer)(zend_ini_entry *ini_entry, int type);
41
42 uint32_t value_length;
43 uint16_t name_length;
44 uint8_t modifiable;
46
64
66ZEND_API void zend_ini_startup(void);
70ZEND_API void zend_ini_dtor(HashTable *ini_directives);
71
73
75
76ZEND_API zend_result zend_register_ini_entries(const zend_ini_entry_def *ini_entry, int module_number);
77ZEND_API zend_result zend_register_ini_entries_ex(const zend_ini_entry_def *ini_entry, int module_number, int module_type);
78ZEND_API void zend_unregister_ini_entries(int module_number);
79ZEND_API void zend_unregister_ini_entries_ex(int module_number, int module_type);
81ZEND_API zend_result zend_alter_ini_entry(zend_string *name, zend_string *new_value, int modify_type, int stage);
82ZEND_API zend_result zend_alter_ini_entry_ex(zend_string *name, zend_string *new_value, int modify_type, int stage, bool force_change);
83ZEND_API zend_result zend_alter_ini_entry_chars(zend_string *name, const char *value, size_t value_length, int modify_type, int stage);
84ZEND_API zend_result zend_alter_ini_entry_chars_ex(zend_string *name, const char *value, size_t value_length, int modify_type, int stage, int force_change);
87
88ZEND_API zend_long zend_ini_long(const char *name, size_t name_length, int orig);
89ZEND_API double zend_ini_double(const char *name, size_t name_length, int orig);
90ZEND_API char *zend_ini_string(const char *name, size_t name_length, int orig);
91ZEND_API char *zend_ini_string_ex(const char *name, size_t name_length, int orig, bool *exists);
92ZEND_API zend_string *zend_ini_str(const char *name, size_t name_length, bool orig);
93ZEND_API zend_string *zend_ini_str_ex(const char *name, size_t name_length, bool orig, bool *exists);
96
133
138
140
142
143ZEND_API zend_result zend_ini_register_displayer(const char *name, uint32_t name_length, void (*displayer)(zend_ini_entry *ini_entry, int type));
144
145ZEND_API ZEND_INI_DISP(zend_ini_boolean_displayer_cb);
146ZEND_API ZEND_INI_DISP(zend_ini_color_displayer_cb);
147ZEND_API ZEND_INI_DISP(display_link_numbers);
149
150#define ZEND_INI_BEGIN() static const zend_ini_entry_def ini_entries[] = {
151#define ZEND_INI_END() { NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 0} };
152
153#define ZEND_INI_ENTRY3_EX(name, default_value, modifiable, on_modify, arg1, arg2, arg3, displayer) \
154 { name, on_modify, arg1, arg2, arg3, default_value, displayer, sizeof(default_value)-1, sizeof(name)-1, modifiable },
155
156#define ZEND_INI_ENTRY3(name, default_value, modifiable, on_modify, arg1, arg2, arg3) \
157 ZEND_INI_ENTRY3_EX(name, default_value, modifiable, on_modify, arg1, arg2, arg3, NULL)
158
159#define ZEND_INI_ENTRY2_EX(name, default_value, modifiable, on_modify, arg1, arg2, displayer) \
160 ZEND_INI_ENTRY3_EX(name, default_value, modifiable, on_modify, arg1, arg2, NULL, displayer)
161
162#define ZEND_INI_ENTRY2(name, default_value, modifiable, on_modify, arg1, arg2) \
163 ZEND_INI_ENTRY2_EX(name, default_value, modifiable, on_modify, arg1, arg2, NULL)
164
165#define ZEND_INI_ENTRY1_EX(name, default_value, modifiable, on_modify, arg1, displayer) \
166 ZEND_INI_ENTRY3_EX(name, default_value, modifiable, on_modify, arg1, NULL, NULL, displayer)
167
168#define ZEND_INI_ENTRY1(name, default_value, modifiable, on_modify, arg1) \
169 ZEND_INI_ENTRY1_EX(name, default_value, modifiable, on_modify, arg1, NULL)
170
171#define ZEND_INI_ENTRY_EX(name, default_value, modifiable, on_modify, displayer) \
172 ZEND_INI_ENTRY3_EX(name, default_value, modifiable, on_modify, NULL, NULL, NULL, displayer)
173
174#define ZEND_INI_ENTRY(name, default_value, modifiable, on_modify) \
175 ZEND_INI_ENTRY_EX(name, default_value, modifiable, on_modify, NULL)
176
177#ifdef ZTS
178#define STD_ZEND_INI_ENTRY(name, default_value, modifiable, on_modify, property_name, struct_type, struct_ptr) \
179 ZEND_INI_ENTRY2(name, default_value, modifiable, on_modify, (void *) XtOffsetOf(struct_type, property_name), (void *) &struct_ptr##_id)
180#define STD_ZEND_INI_ENTRY_EX(name, default_value, modifiable, on_modify, property_name, struct_type, struct_ptr, displayer) \
181 ZEND_INI_ENTRY2_EX(name, default_value, modifiable, on_modify, (void *) XtOffsetOf(struct_type, property_name), (void *) &struct_ptr##_id, displayer)
182#define STD_ZEND_INI_BOOLEAN(name, default_value, modifiable, on_modify, property_name, struct_type, struct_ptr) \
183 ZEND_INI_ENTRY3_EX(name, default_value, modifiable, on_modify, (void *) XtOffsetOf(struct_type, property_name), (void *) &struct_ptr##_id, NULL, zend_ini_boolean_displayer_cb)
184#else
185#define STD_ZEND_INI_ENTRY(name, default_value, modifiable, on_modify, property_name, struct_type, struct_ptr) \
186 ZEND_INI_ENTRY2(name, default_value, modifiable, on_modify, (void *) XtOffsetOf(struct_type, property_name), (void *) &struct_ptr)
187#define STD_ZEND_INI_ENTRY_EX(name, default_value, modifiable, on_modify, property_name, struct_type, struct_ptr, displayer) \
188 ZEND_INI_ENTRY2_EX(name, default_value, modifiable, on_modify, (void *) XtOffsetOf(struct_type, property_name), (void *) &struct_ptr, displayer)
189#define STD_ZEND_INI_BOOLEAN(name, default_value, modifiable, on_modify, property_name, struct_type, struct_ptr) \
190 ZEND_INI_ENTRY3_EX(name, default_value, modifiable, on_modify, (void *) XtOffsetOf(struct_type, property_name), (void *) &struct_ptr, NULL, zend_ini_boolean_displayer_cb)
191#endif
192
193#define INI_INT(name) zend_ini_long((name), strlen(name), 0)
194#define INI_FLT(name) zend_ini_double((name), strlen(name), 0)
195#define INI_STR(name) zend_ini_string_ex((name), strlen(name), 0, NULL)
196#define INI_BOOL(name) ((bool) INI_INT(name))
197
198#define INI_ORIG_INT(name) zend_ini_long((name), strlen(name), 1)
199#define INI_ORIG_FLT(name) zend_ini_double((name), strlen(name), 1)
200#define INI_ORIG_STR(name) zend_ini_string((name), strlen(name), 1)
201#define INI_ORIG_BOOL(name) ((bool) INI_ORIG_INT(name))
202
203#define REGISTER_INI_ENTRIES() zend_register_ini_entries_ex(ini_entries, module_number, type)
204#define UNREGISTER_INI_ENTRIES() zend_unregister_ini_entries_ex(module_number, type)
205#define DISPLAY_INI_ENTRIES() display_ini_entries(zend_module)
206
207#define REGISTER_INI_DISPLAYER(name, displayer) zend_ini_register_displayer((name), strlen(name), displayer)
208#define REGISTER_INI_BOOLEAN(name) REGISTER_INI_DISPLAYER(name, zend_ini_boolean_displayer_cb)
209
210/* Standard message handlers */
212ZEND_API ZEND_INI_MH(OnUpdateBool);
213ZEND_API ZEND_INI_MH(OnUpdateLong);
214ZEND_API ZEND_INI_MH(OnUpdateLongGEZero);
215ZEND_API ZEND_INI_MH(OnUpdateReal);
216/* char* versions */
217ZEND_API ZEND_INI_MH(OnUpdateString);
218ZEND_API ZEND_INI_MH(OnUpdateStringUnempty);
219/* zend_string* versions */
221ZEND_API ZEND_INI_MH(OnUpdateStrNotEmpty);
223
224#define ZEND_INI_DISPLAY_ORIG 1
225#define ZEND_INI_DISPLAY_ACTIVE 2
226
227#define ZEND_INI_STAGE_STARTUP (1<<0)
228#define ZEND_INI_STAGE_SHUTDOWN (1<<1)
229#define ZEND_INI_STAGE_ACTIVATE (1<<2)
230#define ZEND_INI_STAGE_DEACTIVATE (1<<3)
231#define ZEND_INI_STAGE_RUNTIME (1<<4)
232#define ZEND_INI_STAGE_HTACCESS (1<<5)
233
234#define ZEND_INI_STAGE_IN_REQUEST (ZEND_INI_STAGE_ACTIVATE|ZEND_INI_STAGE_DEACTIVATE|ZEND_INI_STAGE_RUNTIME|ZEND_INI_STAGE_HTACCESS)
235
236/* INI parsing engine */
237typedef void (*zend_ini_parser_cb_t)(zval *arg1, zval *arg2, zval *arg3, int callback_type, void *arg);
239ZEND_API zend_result zend_parse_ini_file(zend_file_handle *fh, bool unbuffered_errors, int scanner_mode, zend_ini_parser_cb_t ini_parser_cb, void *arg);
240ZEND_API zend_result zend_parse_ini_string(const char *str, bool unbuffered_errors, int scanner_mode, zend_ini_parser_cb_t ini_parser_cb, void *arg);
242
243/* INI entries */
244#define ZEND_INI_PARSER_ENTRY 1 /* Normal entry: foo = bar */
245#define ZEND_INI_PARSER_SECTION 2 /* Section: [foobar] */
246#define ZEND_INI_PARSER_POP_ENTRY 3 /* Offset entry: foo[] = bar */
247
252
253#ifndef ZTS
254# define ZEND_INI_GET_BASE() ((char *) mh_arg2)
255#else
256# define ZEND_INI_GET_BASE() ((char *) ts_resource(*((int *) mh_arg2)))
257#endif
258
259#define ZEND_INI_GET_ADDR() (ZEND_INI_GET_BASE() + (size_t) mh_arg1)
260
261#endif /* ZEND_INI_H */
zend_ffi_type * type
Definition ffi.c:3812
zval * arg
Definition ffi.c:3975
Definition zend_ini.h:33
uint8_t modifiable
Definition zend_ini.h:44
void(* displayer)(zend_ini_entry *ini_entry, int type)
Definition zend_ini.h:40
ZEND_INI_MH((*on_modify))
uint16_t name_length
Definition zend_ini.h:43
const char * value
Definition zend_ini.h:39
void * mh_arg1
Definition zend_ini.h:36
void * mh_arg2
Definition zend_ini.h:37
const char * name
Definition zend_ini.h:34
void * mh_arg3
Definition zend_ini.h:38
uint32_t value_length
Definition zend_ini.h:42
Definition zend_ini.h:47
zend_string * value
Definition zend_ini.h:53
uint8_t modifiable
Definition zend_ini.h:59
zend_string * orig_value
Definition zend_ini.h:54
uint8_t orig_modifiable
Definition zend_ini.h:60
void * mh_arg3
Definition zend_ini.h:52
void(* displayer)(zend_ini_entry *ini_entry, int type)
Definition zend_ini.h:55
int module_number
Definition zend_ini.h:57
void * mh_arg2
Definition zend_ini.h:51
void * mh_arg1
Definition zend_ini.h:50
ZEND_INI_MH((*on_modify))
zend_string * name
Definition zend_ini.h:48
uint8_t modified
Definition zend_ini.h:61
zend_ini_parser_cb_t ini_parser_cb
Definition zend_ini.h:249
struct _zval_struct zval
#define ZEND_API
ZEND_API void(ZEND_FASTCALL *zend_touch_vm_stack_data)(void *vm_stack_data)
struct _zend_ini_entry zend_ini_entry
ZEND_API zend_result zend_alter_ini_entry_ex(zend_string *name, zend_string *new_value, int modify_type, int stage, bool force_change)
Definition zend_ini.c:356
ZEND_API zend_ulong zend_ini_parse_uquantity(zend_string *value, zend_string **errstr)
Definition zend_ini.c:863
ZEND_API void zend_ini_dtor(HashTable *ini_directives)
Definition zend_ini.c:116
ZEND_API zend_result zend_alter_ini_entry_chars(zend_string *name, const char *value, size_t value_length, int modify_type, int stage)
Definition zend_ini.c:332
ZEND_API zend_string * zend_ini_get_value(zend_string *name)
Definition zend_ini.c:560
ZEND_API void zend_ini_deactivate(void)
Definition zend_ini.c:130
ZEND_API zend_ulong zend_ini_parse_uquantity_warn(zend_string *value, zend_string *setting)
Definition zend_ini.c:883
ZEND_API zend_result zend_register_ini_entries(const zend_ini_entry_def *ini_entry, int module_number)
Definition zend_ini.c:268
ZEND_API zend_result zend_restore_ini_entry(zend_string *name, int stage)
Definition zend_ini.c:408
ZEND_API zend_string * zend_ini_str_ex(const char *name, size_t name_length, bool orig, bool *exists)
Definition zend_ini.c:521
ZEND_API char * zend_ini_string_ex(const char *name, size_t name_length, int orig, bool *exists)
Definition zend_ini.c:481
ZEND_API void zend_unregister_ini_entries_ex(int module_number, int module_type)
Definition zend_ini.c:283
ZEND_API zend_result zend_ini_register_displayer(const char *name, uint32_t name_length, void(*displayer)(zend_ini_entry *ini_entry, int type))
Definition zend_ini.c:429
ZEND_API bool zend_ini_parse_bool(zend_string *str)
Definition zend_ini.c:573
ZEND_API zend_result zend_register_ini_entries_ex(const zend_ini_entry_def *ini_entry, int module_number, int module_type)
Definition zend_ini.c:204
ZEND_API zend_long zend_ini_parse_quantity_warn(zend_string *value, zend_string *setting)
Definition zend_ini.c:869
ZEND_API char * zend_ini_string(const char *name, size_t name_length, int orig)
Definition zend_ini.c:505
ZEND_API zend_long zend_ini_long(const char *name, size_t name_length, int orig)
Definition zend_ini.c:447
ZEND_API zend_result zend_alter_ini_entry(zend_string *name, zend_string *new_value, int modify_type, int stage)
Definition zend_ini.c:325
ZEND_API zend_long zend_ini_parse_quantity(zend_string *value, zend_string **errstr)
Definition zend_ini.c:857
ZEND_API void zend_ini_shutdown(void)
Definition zend_ini.c:110
ZEND_API zend_result zend_alter_ini_entry_chars_ex(zend_string *name, const char *value, size_t value_length, int modify_type, int stage, int force_change)
Definition zend_ini.c:344
ZEND_API zend_string * zend_ini_str(const char *name, size_t name_length, bool orig)
Definition zend_ini.c:545
ZEND_API void zend_unregister_ini_entries(int module_number)
Definition zend_ini.c:297
ZEND_API void zend_ini_sort_entries(void)
Definition zend_ini.c:195
ZEND_API void zend_ini_global_shutdown(void)
Definition zend_ini.c:123
ZEND_API double zend_ini_double(const char *name, size_t name_length, int orig)
Definition zend_ini.c:464
ZEND_API void zend_ini_startup(void)
Definition zend_ini.c:99
ZEND_API zend_result zend_parse_ini_file(zend_file_handle *fh, bool unbuffered_errors, int scanner_mode, zend_ini_parser_cb_t ini_parser_cb, void *arg)
ZEND_API void zend_ini_refresh_caches(int stage)
struct _zend_ini_entry_def zend_ini_entry_def
ZEND_API void zend_copy_ini_directives(void)
ZEND_API void display_ini_entries(zend_module_entry *module)
Definition php_ini.c:116
void(* zend_ini_parser_cb_t)(zval *arg1, zval *arg2, zval *arg3, int callback_type, void *arg)
Definition zend_ini.h:237
struct _zend_ini_parser_param zend_ini_parser_param
#define ZEND_INI_MH(name)
Definition zend_ini.h:30
#define ZEND_INI_DISP(name)
Definition zend_ini.h:31
ZEND_API zend_result zend_parse_ini_string(const char *str, bool unbuffered_errors, int scanner_mode, zend_ini_parser_cb_t ini_parser_cb, void *arg)
struct _zend_file_handle zend_file_handle
int32_t zend_long
Definition zend_long.h:42
uint32_t zend_ulong
Definition zend_long.h:43
struct _zend_string zend_string
struct _zend_module_entry zend_module_entry
#define END_EXTERN_C()
#define BEGIN_EXTERN_C()
struct _zend_array HashTable
Definition zend_types.h:386
ZEND_RESULT_CODE zend_result
Definition zend_types.h:64
zval * arg1
zval * arg2
zend_string * name
zval * arg3
value