-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathws.inc
executable file
·365 lines (320 loc) · 9.67 KB
/
ws.inc
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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
enum WebsocketState
{
CONNECTING,
OPEN,
CLOSING,
CLOSED
};
enum WebsocketType
{
WebSocket_JSON,
Websocket_STRING
}
enum AddressFamily {
AF_INET,
AF_INET6
}
// Define a typeset for WebSocket callbacks
typeset WebsocketCallback
{
// OnOpen - Called when the WebSocket connection is opened
function void (WebSocket ws);
// OnMessage - Called when a text message is received
function void (WebSocket ws, const char[] message, int wireSize);
// OnMessage (JSON) - Called when a JSON message is received
function void (WebSocket ws, const YYJSON data, int wireSize);
// OnClose - Called when the WebSocket connection is closed
function void (WebSocket ws, int code, const char[] reason);
// OnError - Called when an error occurs with the WebSocket connection
function void (WebSocket ws, const char[] errMsg);
}
// Define a methodmap for WebSocket, which extends Handle
methodmap WebSocket < Handle
{
/**
* Create New WebSocket Client
*
* @note All callbacks need to be set before client connect
*
* @param url WebSocket server URL
* @param type JSON or string
*/
public native WebSocket(const char[] url, WebsocketType type);
/**
* Set the callback for when a message is received
*
* @param fOnMessage Function to call when a message is received
*/
public native void SetMessageCallback(WebsocketCallback fOnMessage);
/**
* Set the callback for when the connection is opened
*
* @param fOnOpen Function to call when the connection is opened
*/
public native void SetOpenCallback(WebsocketCallback fOnOpen);
/**
* Set the callback for when the connection is closed
*
* @param fOnClose Function to call when the connection is closed
*/
public native void SetCloseCallback(WebsocketCallback fOnClose);
/**
* Set the callback for when an error occurs
*
* @param fOnError Function to call when an error occurs
*/
public native void SetErrorCallback(WebsocketCallback fOnError);
/**
* Set a header for the WebSocket connection
*
* @param key Header key
* @param value Header value
*/
public native void SetHeader(const char[] key, const char[] value);
/**
* Get a header value by key
*
* @param key Header key
* @param buffer Buffer to store the header value
* @param maxlength Maximum length of the buffer
* @return True if the header was found, false otherwise
*/
public native bool GetHeader(const char[] key, char[] buffer, int maxlength);
/**
* Send a string message over the WebSocket connection
*
* @param message Message to send
*/
public native void WriteString(const char[] message);
/**
* Send a JSON message over the WebSocket connection
*
* @param data JSON data to send
*/
public native void WriteJSON(const YYJSON data);
/**
* Open the WebSocket connection
*/
public native void Connect();
/**
* Close the WebSocket connection
*/
public native void Disconnect();
/**
* Get the ready state of the WebSocket connection
*
* @return Ready state
*/
property WebsocketState ReadyState {
public native get();
}
/**
* Check if the WebSocket is connected
*
* @return True if connected, false otherwise
*/
property bool Connected {
public native get();
}
/**
* Get or set the automatic reconnection feature
*
* @return True if automatic reconnection is enabled, false otherwise
*/
property bool AutoReconnect {
public native get();
public native set(bool enable);
}
/**
* Get or set the minimum wait time between reconnection attempts
*
* @param minWait minimum reconnect wait time in milliseconds
* @return minimum reconnect wait time in milliseconds
*/
property int MinReconnectWait {
public native get();
public native set(int minWait);
}
/**
* Get or set the maximum wait time between reconnection attempts
*
* @param maxWait maximum reconnect wait time in milliseconds
* @return maximum reconnect wait time in milliseconds
*/
property int MaxReconnectWait {
public native get();
public native set(int maxWait);
}
/**
* Set the handshake timeout for the WebSocket connection
*
* @param timeout in seconds
*/
property int HandshakeTimeout {
public native set(int timeout);
}
/**
* Set the ping interval for the WebSocket connection
*
* @param interval interval in seconds
* @return ping interval
*/
property int PingInterval {
public native get();
public native set(int interval);
}
}
/**
* Typeset for WebsocketServerCallback
*
* A typeset defining various callback functions for WebSocket server events.
*/
typeset WebsocketServerCallback
{
/**
* Function to call when a connection is opened
*
* @param server websocket server handle
* @param RemoteAddr remote address of the client
* @param RemoteId remote identifier of the client
*/
function void (WebSocketServer server, const char[] RemoteAddr, const char[] RemoteId);
/**
* Function to call when a message is received
*
* @param server websocket server handle
* @param client websocket client handle
* @param message message received
* @param wireSize size of the message on the wire
* @param RemoteAddr remote address of the client
* @param RemoteId remote identifier of the client
*/
function void (WebSocketServer server, WebSocket client, const char[] message, int wireSize, const char[] RemoteAddr, const char[] RemoteId);
/**
* Function to call when a connection is closed
*
* @param server websocket server handle
* @param code close code
* @param reason reason for closure
* @param RemoteAddr remote address of the client
* @param RemoteId remote identifier of the client
*/
function void (WebSocketServer server, int code, const char[] reason, const char[] RemoteAddr, const char[] RemoteId);
/**
* Function to call when an error occurs
*
* @param server websocket server handle
* @param errMsg error message
* @param RemoteAddr remote address of the client
* @param RemoteId remote identifier of the client
*/
function void (WebSocketServer server, const char[] errMsg, const char[] RemoteAddr, const char[] RemoteId);
}
/**
* Methodmap for WebSocketServer
*
* A methodmap defining various native methods for a WebSocket server
*/
methodmap WebSocketServer < Handle
{
/**
* Create New WebSocket server
*
* @note All callbacks need to be set before server startup
*
* @param host host address for the server
* @param port port number for the server
* @param addressfamily address family to use. Defaults to AF_INET (IPv4)
* @param pingInterval interval seconds at which the server sends ping messages to clients
*/
public native WebSocketServer(const char[] host, int port, AddressFamily addressfamily = AF_INET, int pingInterval = 60);
/**
* Set the callback for when a message is received
*
* @param fOnMessage Function to call when a message is received
*/
public native void SetMessageCallback(WebsocketServerCallback fOnMessage);
/**
* Set the callback for when a connection is opened
*
* @param fOnOpen Function to call when a connection is opened
*/
public native void SetOpenCallback(WebsocketServerCallback fOnOpen);
/**
* Set the callback for when a connection is closed
*
* @param fOnClose Function to call when a connection is closed
*/
public native void SetCloseCallback(WebsocketServerCallback fOnClose);
/**
* Set the callback for when an error occurs
*
* @param fOnError Function to call when an error occurs
*/
public native void SetErrorCallback(WebsocketServerCallback fOnError);
/**
* Broadcast a message to all connected clients
*
* @param message message to broadcast
*/
public native void BroadcastMessage(const char[] message);
/**
* Send a message to the client
*
* @param clientId client id
* @param message message to send
*/
public native bool SendMessageToClient(const char[] clientId, const char[] message);
/**
* Forcibly disconnect client from websocket
*
* @param clientId client id
*/
public native bool DisconnectClient(const char[] clientId);
/**
* Gets a client ID by index
*
* @param index Index of the client ID to retrieve
* @param buffer String buffer to store the ID
* @param maxlength Maximum length of the buffer
* @return true on success, false if index is invalid
*/
public native bool GetClientIdByIndex(int index, char[] buffer, int maxlength);
/**
* Start the WebSocket server
*/
public native void Start();
/**
* Stop the WebSocket server
*/
public native void Stop();
/**
* Disable Per message deflate
*
* @note Set up before server startup
*/
public native void DisableDeflate();
/**
* Retrieves Per message deflate is enable
*/
public native void IsDeflateEnabled();
/**
* Maximum length of client IDs (including null terminator)
*/
property int MaxClientIdLength {
public native get();
}
/**
* Retrieves connected clients
*/
property int ClientsCount {
public native get();
}
/**
* Retrieve/Set Pong is enabled
*/
property bool EnablePong {
public native get();
public native set(bool enablePong);
}
}