forked from swoole/swoole-src
-
Notifications
You must be signed in to change notification settings - Fork 0
/
php_swoole.h
177 lines (147 loc) · 5.55 KB
/
php_swoole.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
/*
+----------------------------------------------------------------------+
| Swoole |
+----------------------------------------------------------------------+
| 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 |
| [email protected] so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Author: Tianfeng Han <[email protected]> |
+----------------------------------------------------------------------+
*/
/* $Id$ */
#ifndef PHP_SWOOLE_H
#define PHP_SWOOLE_H
#include "php.h"
#include "php_ini.h"
#include "php_globals.h"
#include "php_main.h"
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "swoole.h"
#include "Server.h"
#include "Client.h"
#define PHP_SWOOLE_VERSION "1.6.10"
/**
* PHP5.2
*/
#ifndef PHP_FE_END
#define PHP_FE_END {NULL,NULL,NULL}
#endif
#ifndef ZEND_MOD_END
#define ZEND_MOD_END {NULL,NULL,NULL}
#endif
#define SW_HOST_SIZE 128
#pragma pack(4)
typedef struct {
uint16_t port;
uint16_t from_fd;
} php_swoole_udp_t;
#pragma pack()
extern zend_module_entry swoole_module_entry;
#define phpext_swoole_ptr &swoole_module_entry
#ifdef PHP_WIN32
# define PHP_SWOOLE_API __declspec(dllexport)
#elif defined(__GNUC__) && __GNUC__ >= 4
# define PHP_SWOOLE_API __attribute__ ((visibility("default")))
#else
# define PHP_SWOOLE_API
#endif
#ifdef ZTS
#include "TSRM.h"
extern void ***sw_thread_ctx;
#endif
//#define SW_USE_PHP 1
#define SW_HANDLE_NUM
#define SW_CHECK_RETURN(s) if(s<0){RETURN_FALSE;}else{RETURN_TRUE;}return
#define SW_RES_SERVER_NAME "SwooleServer"
#define SW_RES_CLIENT_NAME "SwooleClient"
#define SW_RES_LOCK_NAME "SwooleLock"
#define PHP_CLIENT_CALLBACK_NUM 4
//---------------------------------------------------
#define SW_CLIENT_CB_onConnect 0
#define SW_CLIENT_CB_onReceive 1
#define SW_CLIENT_CB_onClose 2
#define SW_CLIENT_CB_onError 3
#define SW_MAX_FIND_COUNT 100 //最多一次性取100个connection_info
#define SW_PHP_CLIENT_BUFFER_SIZE 65535
#define PHP_SERVER_CALLBACK_NUM 12
//---------------------------------------------------
#define SW_SERVER_CB_onStart 0 //Server启动(master)
#define SW_SERVER_CB_onConnect 1 //accept连接(worker)
#define SW_SERVER_CB_onReceive 2 //接受数据(worker)
#define SW_SERVER_CB_onClose 3 //关闭连接(worker)
#define SW_SERVER_CB_onShutdown 4 //Server关闭(master)
#define SW_SERVER_CB_onTimer 5 //定时器(master)
#define SW_SERVER_CB_onWorkerStart 6 //Worker进程启动(worker)
#define SW_SERVER_CB_onWorkerStop 7 //Worker进程结束(worker)
#define SW_SERVER_CB_onMasterConnect 8 //accept连接(master)
#define SW_SERVER_CB_onMasterClose 9 //关闭连接(master)
#define SW_SERVER_CB_onTask 10 //异步任务(task_worker)
#define SW_SERVER_CB_onFinish 11 //关闭连接(worker)
extern int le_swoole_server;
extern int le_swoole_client;
extern int le_swoole_lock;
extern zend_class_entry *swoole_lock_class_entry_ptr;
extern zend_class_entry *swoole_client_class_entry_ptr;
extern zend_class_entry *swoole_server_class_entry_ptr;
extern HashTable php_sw_reactor_callback;
extern HashTable php_sw_client_callback;
PHP_MINIT_FUNCTION(swoole);
PHP_MSHUTDOWN_FUNCTION(swoole);
PHP_RINIT_FUNCTION(swoole);
PHP_RSHUTDOWN_FUNCTION(swoole);
PHP_MINFO_FUNCTION(swoole);
PHP_FUNCTION(swoole_version);
PHP_FUNCTION(swoole_set_process_name);
PHP_FUNCTION(swoole_server_create);
PHP_FUNCTION(swoole_server_set);
PHP_FUNCTION(swoole_server_start);
PHP_FUNCTION(swoole_server_stop);
PHP_FUNCTION(swoole_server_send);
PHP_FUNCTION(swoole_server_close);
PHP_FUNCTION(swoole_server_on);
PHP_FUNCTION(swoole_server_handler);
PHP_FUNCTION(swoole_server_addlisten);
PHP_FUNCTION(swoole_server_addtimer);
PHP_FUNCTION(swoole_server_deltimer);
PHP_FUNCTION(swoole_server_task);
PHP_FUNCTION(swoole_server_taskwait);
PHP_FUNCTION(swoole_server_finish);
PHP_FUNCTION(swoole_server_reload);
PHP_FUNCTION(swoole_server_shutdown);
PHP_FUNCTION(swoole_server_heartbeat);
PHP_FUNCTION(swoole_connection_list);
PHP_FUNCTION(swoole_connection_info);
PHP_FUNCTION(swoole_event_add);
PHP_FUNCTION(swoole_event_del);
PHP_FUNCTION(swoole_event_wait);
PHP_FUNCTION(swoole_event_exit);
#ifdef SW_ASYNC_MYSQL
PHP_FUNCTION(swoole_get_mysqli_sock);
#endif
PHP_FUNCTION(swoole_client_select);
PHP_METHOD(swoole_client, __construct);
PHP_METHOD(swoole_client, connect);
PHP_METHOD(swoole_client, recv);
PHP_METHOD(swoole_client, send);
PHP_METHOD(swoole_client, close);
PHP_METHOD(swoole_client, on);
PHP_METHOD(swoole_lock, __construct);
PHP_METHOD(swoole_lock, lock);
PHP_METHOD(swoole_lock, trylock);
PHP_METHOD(swoole_lock, lock_read);
PHP_METHOD(swoole_lock, trylock_read);
PHP_METHOD(swoole_lock, unlock);
void swoole_destory_lock(zend_rsrc_list_entry *rsrc TSRMLS_DC);
#ifdef ZTS
#define SWOOLE_G(v) TSRMG(swoole_globals_id, zend_swoole_globals *, v)
#else
#define SWOOLE_G(v) (swoole_globals.v)
#endif
#endif /* PHP_SWOOLE_H */