-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAsyncServer.class.php
More file actions
executable file
·265 lines (237 loc) · 8.46 KB
/
AsyncServer.class.php
File metadata and controls
executable file
·265 lines (237 loc) · 8.46 KB
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
<?php namespace peer\server;
use Throwable;
use lang\IllegalStateException;
use peer\server\protocol\SocketAcceptHandler;
use peer\{ServerSocket, SocketException, SocketTimeoutException};
/**
* Asynchronous TCP/IP Server
*
* ```php
* use peer\server\AsyncServer;
*
* $server= new AsyncServer();
* $server->listen(new ServerSocket('127.0.0.1', 6100), new MyProtocol());
* $server->service();
* ```
*
* @see peer.ServerSocket
* @test peer.unittest.server.AsyncServerTest
* @deprecated In favor of AsynchronousServer
*/
class AsyncServer extends Server {
private $select= [], $tasks= [], $continuation= [];
static function __static() {
// For PHP < 7.3.0
if (!function_exists('array_key_last')) {
eval('function array_key_last($array) { end($array); return key($array); }');
}
}
/**
* Adds server socket to listen on, associating protocol handler with it
*
* @param peer.ServerSocket|peer.BSDServerSocket $socket
* @param peer.server.ServerProtocol $protocol
* @return self
*/
public function listen($socket, ServerProtocol $protocol) {
$socket->create();
$socket->bind(true);
$socket->listen();
$protocol->server= $this;
$protocol->initialize();
$i= $this->select ? array_key_last($this->select) + 1 : 1;
$this->select[$i]= $socket;
$this->continuation[$i]= new Continuation(function($socket) use($protocol) {
do {
$connection= $socket->accept();
if ($protocol instanceof SocketAcceptHandler && !$protocol->handleAccept($connection)) {
$connection->close();
return;
}
$this->tcpnodelay && $connection->useNoDelay();
$protocol->handleConnect($connection);
yield 'accept' => $this->select($connection, $protocol);
} while (!$this->terminate);
});
// Never time out sockets we listen on
$this->continuation[$i]->next= null;
return $this;
}
/**
* Shutdown the server
*
* @return void
*/
public function shutdown() {
$this->terminate= true;
}
/**
* Adds socket to select, associating a function to call for data
*
* @param peer.Socket|peer.BSDSocket $socket
* @param peer.Protocol|function(peer.Socket|peer.BSDSocket): void $handler
* @return peer.Socket|peer.BSDSocket
*/
public function select($socket, $handler) {
$i= $this->select ? array_key_last($this->select) + 1 : 1;
$this->select[$i]= $socket;
if ($handler instanceof ServerProtocol) {
$this->continuation[$i]= new Continuation(function($socket) use($handler) {
try {
// Check for readability, then handle incoming data
while ($socket->isConnected() && !$socket->eof()) {
yield 'read' => $socket;
yield from $handler->handleData($socket) ?? [];
}
// Handle disconnnect gracefully, ensure socket is closed
$handler->handleDisconnect($socket);
$socket->close();
} catch (Throwable $t) {
// Handle any errors, then close socket
$handler->handleError($socket, $t);
$socket->close();
}
});
} else {
$this->continuation[$i]= new Continuation($handler);
}
return $socket;
}
/**
* Schedule a given task to execute every given seconds. The task
* function can return how many seconds its next invocation should
* occur, overwriting the default value given here. If this number
* is negative, the task stops running. Returns the added task's ID.
*
* Note: If the task function raises any exception the task stops
* running. To continue executing, exceptions must be caught and
* handled within the function!
*
* @param int|float $seconds
* @param function(): ?int|float
* @return int
*/
public function schedule($seconds, $function) {
$i= $this->tasks ? array_key_last($this->tasks) - 1 : -1;
$this->tasks[$i]= $function;
$this->continuation[$i]= new Continuation(function($function) use($seconds) {
try {
while (($seconds= $function() ?? $seconds) >= 0) {
yield 'delay' => $seconds * 1000;
}
} catch (Throwable $t) {
// Not displayed, simply stops execution
}
});
return $i;
}
/**
* Runs service until shutdown() is called.
*
* @return void
* @throws lang.IllegalStateException
*/
public function service() {
if (empty($this->select) && empty($this->tasks)) {
throw new IllegalStateException('No sockets or tasks to execute');
}
$readable= $writeable= $waitable= $write= [];
$sockets= $errors= null;
do {
$time= microtime(true);
$wait= [];
foreach ($this->continuation as $i => $continuation) {
if (null !== $continuation->next && $continuation->next >= $time) {
$wait[]= $continuation->next - $time;
continue;
} else if (isset($this->tasks[$i])) {
$execute= $continuation->continue($this->tasks[$i]);
unset($waitable[$i]);
} else if (isset($readable[$i]) || isset($writeable[$i]) || isset($waitable[$i])) {
$execute= $continuation->continue($this->select[$i]);
if (null !== $continuation->next) $continuation->next= $time;
unset($readable[$i], $writeable[$i], $waitable[$i]);
} else {
isset($write[$i]) ? $writeable[$i]= $this->select[$i] : $readable[$i]= $this->select[$i];
if (null === $continuation->next) continue;
// Check if the socket has timed out...
$idle= $time - $continuation->next;
$timeout= $this->select[$i]->getTimeout();
if ($idle < $timeout) {
$wait[]= $timeout - $idle;
continue;
}
// ...and if so, throw an exception, allowing the continuation to handle it.
$execute= $continuation->throw($this->select[$i], new SocketTimeoutException('Timed out', $timeout));
$continuation->next= $time;
unset($readable[$i], $writeable[$i]);
}
// Check whether execution has finished
if (null === $execute) {
unset($this->tasks[$i], $this->select[$i], $this->continuation[$i], $write[$i]);
continue;
}
// `yield 'accept' => $socket`: Check for being able to read from socket
// `yield 'read' => $_`: Continue as soon as the socket becomes readable
// `yield 'write' => $_`: Continue as soon as the socket becomes writeable
// `yield 'delay' => $millis`: Wait a specified number of milliseconds
// `yield`: Continue at the next possible execution slot (`delay => 0`)
switch ($execute->key()) {
case 'accept':
$socket= $execute->current();
$readable[array_key_last($this->select)]= $socket;
$readable[$i]= $this->select[$i];
$wait[]= $socket->getTimeout();
break;
case 'write':
$write[$i]= true;
$writeable[$i]= $this->select[$i];
$wait[]= $this->select[$i]->getTimeout();
break;
case 'read':
unset($write[$i]);
$readable[$i]= $this->select[$i];
$wait[]= $this->select[$i]->getTimeout();
break;
case 'delay':
$delay= $execute->current() / 1000;
$continuation->next= $time + $delay;
$waitable[$i]= true;
$wait[]= $delay;
break;
default:
$continuation->next= $time;
$waitable[$i]= true;
$wait[]= 0;
break;
}
}
// When asked to terminate, close sockets in reverse order
if ($this->terminate) {
for ($i= array_key_last($this->select); $i > 0; $i--) {
isset($this->select[$i]) && $this->select[$i]->close();
}
break;
}
if ($this->select) {
// echo date('H:i:s'), " SELECT ", \util\Objects::stringOf($wait), " @ {\n",
// " R: ", \util\Objects::stringOf($readable), "\n",
// " W: ", \util\Objects::stringOf($writeable), "\n",
// "}\n";
$sockets ?? $sockets= current($this->select)->kind();
$sockets->select($readable, $writeable, $errors, $wait ? min($wait) : null);
} else {
// echo date('H:i:s'), " SLEEP ", \util\Objects::stringOf($wait), "\n";
$wait && usleep(1000000 * (int)min($wait));
}
} while ($this->select || $this->tasks);
}
/**
* Creates a string representation
*
* @return string
*/
public function toString() {
return nameof($this);
}
}