-
Notifications
You must be signed in to change notification settings - Fork 21
/
php_uv.h
executable file
·236 lines (208 loc) · 4.8 KB
/
php_uv.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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
#ifndef PHP_UV_H
#define PHP_UV_H
#define PHP_UV_EXTNAME "uv"
#define PHP_UV_EXTVER "0.0.2"
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#ifdef PHP_WIN32
#include <Winsock2.h>
#include <Mswsock.h>
#include <psapi.h>
#include <Iphlpapi.h>
#endif
#ifndef PHP_UV_DTRACE
#define PHP_UV_DTRACE 0
#endif
#if PHP_UV_DTRACE >= 1
#include <dtrace.h>
#include <sys/sdt.h>
#include "phpuv_dtrace.h"
#define PHP_UV_PROBE(PROBE) PHPUV_TRACE_##PROBE();
#else
#define PHP_UV_PROBE(PROBE)
#endif
#include "php.h"
#include "uv.h"
#ifdef ENABLE_HTTPPARSER
#include "uv_http_parser.h"
#endif
#include "php_network.h"
#include "php_streams.h"
#if (PHP_MAJOR_VERSION == 5) && (PHP_MINOR_VERSION >= 3)
#include "ext/sockets/php_sockets.h"
#endif
#include <Zend/zend.h>
#include <Zend/zend_compile.h>
#include <Zend/zend_exceptions.h>
#include <Zend/zend_extensions.h>
#include <Zend/zend_globals.h>
#include <Zend/zend_hash.h>
#include <Zend/zend_ts_hash.h>
#include <Zend/zend_interfaces.h>
#include <Zend/zend_list.h>
#include <Zend/zend_object_handlers.h>
#include <Zend/zend_variables.h>
#include <Zend/zend_vm.h>
/* Define the entry point symbol
* Zend will use when loading this module
*/
extern zend_module_entry uv_module_entry;
#define phpext_uv_ptr &uv_module_entry
extern zend_class_entry *uv_class_entry;
enum php_uv_lock_type{
IS_UV_RWLOCK = 1,
IS_UV_RWLOCK_RD = 2,
IS_UV_RWLOCK_WR = 3,
IS_UV_MUTEX = 4,
IS_UV_SEMAPHORE = 5,
};
enum php_uv_resource_type{
IS_UV_TCP = 0,
IS_UV_UDP = 1,
IS_UV_PIPE = 2,
IS_UV_IDLE = 3,
IS_UV_TIMER = 4,
IS_UV_ASYNC = 5,
IS_UV_LOOP = 6,
IS_UV_HANDLE = 7,
IS_UV_STREAM = 8,
IS_UV_ADDRINFO = 9,
IS_UV_PROCESS = 10,
IS_UV_PREPARE = 11,
IS_UV_CHECK = 12,
IS_UV_WORK = 13,
IS_UV_FS = 14,
IS_UV_FS_EVENT = 15,
IS_UV_TTY = 16,
IS_UV_FS_POLL = 17,
IS_UV_POLL = 18,
IS_UV_SIGNAL = 19,
IS_UV_MAX = 20
};
enum php_uv_callback_type{
PHP_UV_LISTEN_CB = 0,
PHP_UV_READ_CB = 1,
PHP_UV_READ2_CB = 2,
PHP_UV_WRITE_CB = 3,
PHP_UV_SHUTDOWN_CB = 4,
PHP_UV_CLOSE_CB = 5,
PHP_UV_TIMER_CB = 6,
PHP_UV_IDLE_CB = 7,
PHP_UV_CONNECT_CB = 8,
PHP_UV_GETADDR_CB = 9,
PHP_UV_RECV_CB = 10,
PHP_UV_SEND_CB = 11,
PHP_UV_PIPE_CONNECT_CB = 12,
PHP_UV_PROC_CLOSE_CB = 13,
PHP_UV_PREPARE_CB = 14,
PHP_UV_CHECK_CB = 15,
PHP_UV_ASYNC_CB = 16,
PHP_UV_WORK_CB = 17,
PHP_UV_AFTER_WORK_CB = 18,
PHP_UV_FS_CB = 19,
PHP_UV_FS_EVENT_CB = 20,
PHP_UV_FS_POLL_CB = 21,
PHP_UV_POLL_CB = 22,
PHP_UV_SIGNAL_CB = 23,
PHP_UV_CB_MAX = 24
};
typedef struct {
zend_fcall_info fci;
zend_fcall_info_cache fcc;
} php_uv_cb_t;
typedef struct {
int in_free;
#ifdef ZTS
void ***thread_ctx;
#endif
int resource_id;
int type;
uv_os_sock_t sock;
union {
uv_tcp_t tcp;
uv_udp_t udp;
uv_pipe_t pipe;
uv_idle_t idle;
uv_timer_t timer;
uv_async_t async;
uv_loop_t loop;
uv_handle_t handle;
uv_stream_t stream;
uv_getaddrinfo_t addrinfo;
uv_prepare_t prepare;
uv_check_t check;
uv_process_t process;
uv_work_t work;
uv_fs_t fs;
uv_fs_event_t fs_event;
uv_tty_t tty;
uv_fs_poll_t fs_poll;
uv_poll_t poll;
uv_signal_t signal;
} uv;
char *buffer;
zval *address;
zval *fs_fd;
php_uv_cb_t *callback[PHP_UV_CB_MAX];
} php_uv_t;
typedef struct {
int is_ipv4;
int resource_id;
union {
struct sockaddr_in ipv4;
struct sockaddr_in6 ipv6;
} addr;
} php_uv_sockaddr_t;
typedef struct {
int locked;
enum php_uv_lock_type type;
int resource_id;
union {
uv_rwlock_t rwlock;
uv_mutex_t mutex;
uv_sem_t semaphore;
} lock;
} php_uv_lock_t;
typedef struct {
int resource_id;
int fd;
zval *stream;
int flags;
} php_uv_stdio_t;
#define PHP_UV_RESOURCE_NAME "uv"
#define PHP_UV_SOCKADDR_RESOURCE_NAME "uv_sockaddr"
#define PHP_UV_LOOP_RESOURCE_NAME "uv_loop"
#define PHP_UV_ARES_RESOURCE_NAME "uv_ares"
#define PHP_UV_LOCK_RESOURCE_NAME "uv_lock"
#define PHP_UV_MUTEX_RESOURCE_NAME "uv_mutex"
#define PHP_UV_STDIO_RESOURCE_NAME "uv_stdio"
#if PHP_VERSION_ID>=50399
#define PHP_UV_LIST_INSERT(type, handle) zend_list_insert(type, handle TSRMLS_CC)
#else
#define PHP_UV_LIST_INSERT(type, handle) zend_list_insert(type, handle)
#endif
/* File/directory stat mode constants*/
#ifdef PHP_WIN32
#define S_IFDIR _S_IFDIR
#define S_IFREG _S_IFREG
#else
#ifndef S_IFDIR
#define S_IFDIR 0040000
#endif
#ifndef S_IFREG
#define S_IFREG 0100000
#endif
#endif
/* TODO: remove these macro when libuv provides uv_inet_ntop & uv_inet_pton */
#ifdef PHP_WIN32
# include "libuv/src/ares/inet_net_pton.h"
# include <Ws2tcpip.h>
# define uv_inet_pton ares_inet_pton
# define uv_inet_ntop ares_inet_ntop
#else
# include <arpa/inet.h>
# define uv_inet_pton inet_pton
# define uv_inet_ntop inet_ntop
#endif
#endif /* PHP_UV_H */