Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathUnixConnector.php
More file actions
Latest commit
42 lines (34 loc) · 1.08 KB
/
Copy pathUnixConnector.php
File metadata and controls
42 lines (34 loc) · 1.08 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
<?php
namespaceReact\SocketClient;
useReact\SocketClient\ConnectorInterface;
useReact\Stream\Stream;
useReact\EventLoop\LoopInterface;
useReact\Promise;
useRuntimeException;
/**
* Unix domain socket connector
*
* Unix domain sockets use atomic operations, so we can as well emulate
* async behavior.
*/
finalclass UnixConnector implements ConnectorInterface
{
private$loop;
publicfunction__construct(LoopInterface$loop)
{
$this->loop = $loop;
}
publicfunctionconnect($path)
{
if (strpos($path, '://') === false) {
$path = 'unix://' . $path;
} elseif (substr($path, 0, 7) !== 'unix://') {
returnPromise\reject(new \InvalidArgumentException('Given URI "' . $path . '" is invalid'));
}
$resource = @stream_socket_client($path, $errno, $errstr, 1.0);
if (!$resource) {
returnPromise\reject(newRuntimeException('Unable to connect to unix domain socket "' . $path . '": ' . $errstr, $errno));
}
returnPromise\resolve(newStream($resource, $this->loop));
}
}