-
Notifications
You must be signed in to change notification settings - Fork 276
/
php_seaslog.h
203 lines (171 loc) · 5.8 KB
/
php_seaslog.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
/*
+----------------------------------------------------------------------+
| SeasLog |
+----------------------------------------------------------------------+
| This source file is subject to version 2.0 of the Apache license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| http://www.apache.org/licenses/LICENSE-2.0.html |
| If you did not receive a copy of the Apache2.0 license and are unable|
| to obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Author: Neeke.Gao <neeke@php.net> |
+----------------------------------------------------------------------+
*/
#ifndef _PHP_SEASLOG_H_
#define _PHP_SEASLOG_H_
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "include/SeasLog.h"
#ifdef PHP_WIN32
#include "win32/time.h"
#include <windows.h>
#elif defined(NETWARE)
#include <sys/timeval.h>
#include <sys/time.h>
#else
#include <unistd.h>
#include <sys/time.h>
#endif
extern zend_module_entry seaslog_module_entry;
#define phpext_seaslog_ptr &seaslog_module_entry
#ifdef PHP_WIN32
# define PHP_SEASLOG_API __declspec(dllexport)
#elif defined(__GNUC__) && __GNUC__ >= 4
# define PHP_SEASLOG_API __attribute__ ((visibility("default")))
#else
# define PHP_SEASLOG_API
#endif
#if PHP_VERSION_ID < 70000
typedef long zend_long;
#endif
ZEND_BEGIN_MODULE_GLOBALS(seaslog)
char *default_file_prefix;
char *default_file_datetime_separator;
char *default_basepath;
char *default_logger;
char *default_datetime_format;
char *current_datetime_format;
int current_datetime_format_len;
char *base_path;
char *file_prefix;
char *file_datetime_separator;
char *host_name;
int host_name_len;
char *request_id;
int request_id_len;
char *process_id;
int process_id_len;
char *default_template;
char *current_template;
char *level_template;
char *slash_or_underline;
logger_entry_t *tmp_logger;
logger_entry_t *last_logger;
last_sec_entry_t *last_sec;
last_min_entry_t *last_min;
zend_bool disting_folder;
zend_bool disting_type;
zend_bool disting_by_hour;
zend_bool use_buffer;
zend_bool buffer_disabled_in_cli;
zend_bool enable_buffer_real;
zend_bool trim_wrap;
zend_bool throw_exception;
zend_bool ignore_warning;
zend_bool trace_notice;
zend_bool trace_warning;
zend_bool trace_error;
zend_bool trace_exception;
int trace_performance_active;
int trace_performance_sample_active;
zend_bool trace_performance;
zend_long trace_performance_sample_rate;
zend_long trace_performance_start_depth;
zend_long trace_performance_max_depth;
zend_long trace_performance_max_functions_per_depth;
zend_long trace_performance_min_wall_time;
zend_long trace_performance_min_function_wall_time;
long stack_level;
seaslog_performance_main *performance_main;
seaslog_frame *performance_frames;
seaslog_frame *frame_free_list;
zend_ulong function_hash_counters[SEASLOG_PERFORMANCE_COUNTER_SIZE];
seaslog_performance_bucket* performance_buckets[SEASLOG_PERFORMANCE_BUCKET_SLOTS];
zend_long buffer_size;
zend_long level;
int buffer_count;
int initRComplete;
int error_loop;
zend_long recall_depth;
zend_long appender;
zend_long appender_retry;
char *remote_host;
zend_long remote_port;
zend_long remote_timeout;
struct timeval remote_timeout_real;
request_variable_t *request_variable;
int in_error;
char *in_error_filename;
long in_error_lineno;
#if PHP_VERSION_ID >= 70000
zval buffer;
zval logger_list;
zval stream_list;
#else
zval *buffer;
zval *logger_list;
zval *stream_list;
#endif
ZEND_END_MODULE_GLOBALS(seaslog)
extern ZEND_DECLARE_MODULE_GLOBALS(seaslog);
#ifdef ZTS
#include "TSRM.h"
#define SEASLOG_G(v) TSRMG(seaslog_globals_id, zend_seaslog_globals *, v)
#else
#define SEASLOG_G(v) (seaslog_globals.v)
#endif
#ifndef E_EXCEPTION
# define E_EXCEPTION (1<<15L)
#endif
PHP_MINIT_FUNCTION(seaslog);
PHP_MSHUTDOWN_FUNCTION(seaslog);
PHP_RINIT_FUNCTION(seaslog);
PHP_RSHUTDOWN_FUNCTION(seaslog);
PHP_MINFO_FUNCTION(seaslog);
PHP_FUNCTION(seaslog_get_version);
PHP_FUNCTION(seaslog_get_author);
extern zend_class_entry *seaslog_ce;
PHP_METHOD(SEASLOG_RES_NAME, __construct);
PHP_METHOD(SEASLOG_RES_NAME, __destruct);
PHP_METHOD(SEASLOG_RES_NAME, setFilePrefix);
PHP_METHOD(SEASLOG_RES_NAME, getFilePrefix);
PHP_METHOD(SEASLOG_RES_NAME, setBasePath);
PHP_METHOD(SEASLOG_RES_NAME, getBasePath);
PHP_METHOD(SEASLOG_RES_NAME, setRequestID);
PHP_METHOD(SEASLOG_RES_NAME, getRequestID);
PHP_METHOD(SEASLOG_RES_NAME, setLogger);
PHP_METHOD(SEASLOG_RES_NAME, closeLoggerStream);
PHP_METHOD(SEASLOG_RES_NAME, getLastLogger);
PHP_METHOD(SEASLOG_RES_NAME, setDatetimeFormat);
PHP_METHOD(SEASLOG_RES_NAME, getDatetimeFormat);
PHP_METHOD(SEASLOG_RES_NAME, setRequestVariable);
PHP_METHOD(SEASLOG_RES_NAME, getRequestVariable);
PHP_METHOD(SEASLOG_RES_NAME, analyzerCount);
PHP_METHOD(SEASLOG_RES_NAME, analyzerDetail);
PHP_METHOD(SEASLOG_RES_NAME, getBuffer);
PHP_METHOD(SEASLOG_RES_NAME, getBufferCount);
PHP_METHOD(SEASLOG_RES_NAME, getBufferEnabled);
PHP_METHOD(SEASLOG_RES_NAME, flushBuffer);
PHP_METHOD(SEASLOG_RES_NAME, log);
PHP_METHOD(SEASLOG_RES_NAME, debug);
PHP_METHOD(SEASLOG_RES_NAME, info);
PHP_METHOD(SEASLOG_RES_NAME, notice);
PHP_METHOD(SEASLOG_RES_NAME, warning);
PHP_METHOD(SEASLOG_RES_NAME, error);
PHP_METHOD(SEASLOG_RES_NAME, critical);
PHP_METHOD(SEASLOG_RES_NAME, alert);
PHP_METHOD(SEASLOG_RES_NAME, emergency);
#endif /* _PHP_SEASLOG_H_ */