-
Notifications
You must be signed in to change notification settings - Fork 1
/
SocketReal.php
568 lines (503 loc) · 10.7 KB
/
SocketReal.php
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
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
<?php
namespace Aza\Components\Socket;
use Aza\Components\Socket\Exceptions\Exception;
/**
* Sockets functional wrapper based on sockets extension
*
* The fastest implementation
*
* @link http://php.net/sockets
*
* @uses sockets
*
* @project Anizoptera CMF
* @package system.socket
* @author Amal Samally <amal.samally at gmail.com>
* @license MIT
*/
class SocketReal extends ASocket
{
/**
* {@inheritdoc}
*/
public function read($length = 4096, $quiet = true)
{
return $this->_read($length, $quiet, PHP_BINARY_READ);
}
/**
* {@inheritdoc}
*/
public function readLine($length = 4096, $quiet = true)
{
return $this->_read($length, $quiet, PHP_NORMAL_READ);
}
/**
* Socket read wrapper
*
* @see read
* @see readLine
*
* @throws Exception
*
* @param int $length Number of bytes to read from the socket
* @param bool $quiet Whether not to throw exception on error
* @param int $flag Read flag
*
* @return string
*/
protected function _read($length, $quiet, $flag)
{
if (!$sock = $this->resource) {
throw new Exception(
"Invalid socket resource"
);
}
elseif (false === ($buf = socket_read($sock, $length, $flag))
&& !$quiet
&& SOCKET_EAGAIN !== socket_last_error($sock)
) {
$error = self::getError($this);
throw new Exception(
"Can't read '{$length}' bytes from socket {$error}."
);
}
return $buf;
}
/**
* {@inheritdoc}
*/
public function write($buffer, $length = null)
{
if (!$sock = $this->resource) {
throw new Exception(
"Invalid socket resource"
);
}
isset($length) || $length = strlen($buffer);
if (false === ($written = socket_write($sock, $buffer, $length))
&& SOCKET_EAGAIN !== socket_last_error($sock)
) {
// Don't use exception for consistency with fwrite in SocketStream
$error = self::getError($this);
trigger_error(
"Can't write '{$length}' bytes to the socket {$error}.",
E_USER_NOTICE
);
}
return $written;
}
/**
* {@inheritdoc}
*/
public function accept($nonBlock = true, $throw = false)
{
if (!$sock = $this->resource) {
throw new Exception(
"Invalid socket resource"
);
}
elseif (false === $msgsock = @socket_accept($sock)) {
if ($throw) {
$error = self::getError($this);
throw new Exception(
"Socket accept failed {$error}."
);
}
return false;
}
$msgsock = new self($msgsock);
$nonBlock && $msgsock->setNonBlock();
return $msgsock;
}
public function close()
{
if (is_resource($sock = $this->resource)) {
socket_close($sock);
}
$this->resource = null;
}
/**
* {@inheritdoc}
*/
public function setNonBlock()
{
if (!$sock = $this->resource) {
throw new Exception(
"Invalid socket resource"
);
}
elseif (!socket_set_nonblock($sock)) {
$error = self::getError($this);
throw new Exception(
"Can't set nonblocking mode {$error}."
);
}
return true;
}
/**
* {@inheritdoc}
*/
public function setBlock()
{
if (!$sock = $this->resource) {
throw new Exception(
"Invalid socket resource"
);
}
elseif (!socket_set_block($sock)) {
$error = self::getError($this);
throw new Exception(
"Can't set blocking mode {$error}."
);
}
return true;
}
/**
* {@inheritdoc}
*/
public function setRecieveTimeout($sec, $usec = 0)
{
if (!$sock = $this->resource) {
throw new Exception(
"Invalid socket resource"
);
}
elseif (!socket_set_option(
$sock, SOL_SOCKET, SO_RCVTIMEO,
array('sec' => $sec, 'usec' => $usec)
)) {
$error = self::getError($this);
throw new Exception(
"Can't set socket recieve timeout ($sec, $usec) {$error}."
);
}
return true;
}
/**
* {@inheritdoc}
*/
public function setSendTimeout($sec, $usec = 0)
{
if (!$sock = $this->resource) {
throw new Exception("Invalid socket resource");
}
elseif (!socket_set_option(
$sock, SOL_SOCKET, SO_SNDTIMEO,
array('sec' => $sec, 'usec' => $usec)
)) {
$error = self::getError($this);
throw new Exception(
"Can't set socket send timeout ($sec, $usec) {$error}."
);
}
return true;
}
/**
* {@inheritdoc}
*/
public function setReadBuffer($buffer = 0)
{
if (!$sock = $this->resource) {
throw new Exception(
"Invalid socket resource"
);
}
elseif (!socket_set_option(
$sock, SOL_SOCKET, SO_RCVBUF, $buffer
)) {
$error = self::getError($this);
throw new Exception(
"Can't set socket read buffer timeout ($buffer) {$error}."
);
}
return true;
}
/**
* {@inheritdoc}
*/
public function setWriteBuffer($buffer = 0)
{
if (!$sock = $this->resource) {
throw new Exception(
"Invalid socket resource"
);
}
elseif (!socket_set_option(
$sock, SOL_SOCKET, SO_SNDBUF, $buffer
)) {
$error = self::getError($this);
throw new Exception(
"Can't set socket write buffer timeout ($buffer) {$error}."
);
}
return true;
}
/**
* {@inheritdoc}
*/
public function getPeer(&$addr, &$port = null)
{
if (!$sock = $this->resource) {
throw new Exception(
"Invalid socket resource"
);
}
elseif (!socket_getpeername($sock, $addr, $port)) {
$error = self::getError($this);
throw new Exception(
"Can't get peer name {$error}."
);
}
return true;
}
/**
* {@inheritdoc}
*/
public function getLocal(&$addr, &$port = null)
{
if (!$sock = $this->resource) {
throw new Exception(
"Invalid socket resource"
);
}
elseif (!socket_getsockname($sock, $addr, $port)) {
$error = self::getError($this);
throw new Exception(
"Can't get socket name {$error}."
);
}
return true;
}
/**
* {@inheritdoc}
*/
public function getInfo()
{
if (!$sock = $this->resource) {
throw new Exception(
"Invalid socket resource"
);
}
$result = array();
try {
if (@$this->getLocal($addr, $port)) {
$result['local'] = array($addr, $port);
}
} catch (Exception $e) {}
try {
if (@$this->getPeer($addr, $port)) {
$result['peer'] = array($addr, $port);
}
} catch (Exception $e) {}
$constants = array(
'SO_DEBUG',
'SO_BROADCAST',
'SO_REUSEADDR',
'SO_KEEPALIVE',
'SO_LINGER',
'SO_SNDBUF',
'SO_RCVBUF',
'SO_ERROR',
'SO_TYPE',
'SO_DONTROUTE',
'SO_RCVLOWAT',
'SO_RCVTIMEO',
'SO_SNDTIMEO',
'SO_SNDLOWAT',
'TCP_NODELAY',
);
foreach ($constants as $const) {
$result[$const] = socket_get_option(
$sock, SOL_SOCKET, constant($const)
);
}
return $result;
}
/**
* Returns prepared socket error string
*
* @throws Exception
*
* @param SocketReal|resource $sock
*
* @return string
*/
protected static function getError($sock = null)
{
$sock = $sock
? ($sock instanceof self
? $sock->resource
: $sock)
: null;
$errno = socket_last_error($sock);
$error = socket_strerror($errno);
socket_clear_error($sock);
return "#{$errno}: {$error}";
}
/**
* Creates a pair of connected, indistinguishable sockets
*
* @throws Exception
*
* @return self[] Array with two socket resources.
* Default use is: read, write.
*/
public static function pair()
{
// On Windows we need to use AF_INET
$domain = IS_WIN ? AF_INET : AF_UNIX;
if (!socket_create_pair(
$domain, SOCK_STREAM, 0, $sockets
)) {
$error = self::getError();
throw new Exception(
"Can't create socket pair {$error}."
);
}
$sockets[0] = new self($sockets[0]);
$sockets[1] = new self($sockets[1]);
return $sockets;
}
/**
* Creates socket server
*
* @throws Exception
*
* @see socket_create
* @see socket_bind
* @see socket_listen
*
* @param int $domain
* @param int $type
* @param int $protocol
* @param string $address
* @param int $port
* @param bool $reuse
*
* @return self
*/
public static function server($domain, $type, $protocol, $address,
$port = null, $reuse = true)
{
$sock = self::create($domain, $type, $protocol);
if ($reuse) {
if (!socket_set_option(
$sock, SOL_SOCKET, SO_REUSEADDR, 1
)) {
$error = self::getError($sock);
throw new Exception(
"Can't set option REUSEADDR to socket {$error}."
);
}
if (Socket::$reusePort && !socket_set_option(
$sock, SOL_SOCKET, SO_REUSEPORT, 1
)) {
$error = self::getError($sock);
throw new Exception(
"Can't set option REUSEPORT to socket {$error}."
);
}
}
if (!@socket_bind($sock, $address, $port)) {
$error = self::getError($sock);
$path = $port ? "$address:$port" : $address;
throw new Exception(
"Can't bind socket '$path' ({$error})."
);
}
if (!socket_listen($sock, SOMAXCONN)) {
$error = self::getError($sock);
$path = null !== $port ? "$address:$port" : $address;
throw new Exception(
"Can't listen socket '$path' ({$error})."
);
}
return new self($sock);
}
/**
* Opens socket connection
*
* @throws Exception
*
* @see socket_create
* @see socket_connect
*
* @param int $domain
* @param int $type
* @param int $protocol
* @param string $address
* @param int $port
* @param bool $nonBlock Whether to enable nonblocking mode
*
* @return self
*/
public static function client($domain, $type, $protocol, $address,
$port = null, $nonBlock = true)
{
$sock = self::create($domain, $type, $protocol);
$nonBlock && socket_set_nonblock($sock);
if (!@socket_connect($sock, $address, $port)
// If the socket is non-blocking then FALSE returned
// with an error "Operation now in progress".
&& socket_last_error($sock) !== SOCKET_EINPROGRESS
) {
$error = self::getError($sock);
$path = $port ? "$address:$port" : $address;
throw new Exception(
"Can't connect socket '$path' ({$error})."
);
}
return new self($sock);
}
/**
* Creates a socket
*
* @throws Exception
*
* @see socket_create
*
* @param int $domain
* @param int $type
* @param int $protocol
*
* @return resource
*/
protected static function create($domain, $type, $protocol)
{
if (!$sock = socket_create($domain, $type, $protocol)) {
$error = self::getError();
throw new Exception(
"Can't create socket {$error} [$domain, $type, $protocol]."
);
}
return $sock;
}
/**
* Runs the select() system call on the given arrays of sockets with a specified timeout
*
* @see socket_select
*
* @param resource[]|null $read
* @param resource[]|null $write
* @param resource[]|null $except
* @param int $tv_sec
* @param int $tv_usec
*
* @return int
*
* @throws Exception
*/
public static function select(&$read, &$write = null,
&$except = null, $tv_sec = 0, $tv_usec = 0)
{
if (false === $res = socket_select(
$read, $write, $except, $tv_sec, $tv_usec
)) {
$error = self::getError();
throw new Exception(
"socket_select() failed {$error}."
);
}
return $res;
}
}