1 | <?php |
||
21 | abstract class AbstractSocket implements SocketInterface |
||
22 | { |
||
23 | /** |
||
24 | * Tcp socket type |
||
25 | */ |
||
26 | const SOCKET_TYPE_TCP = 'tcp'; |
||
27 | |||
28 | /** |
||
29 | * Udp socket type |
||
30 | */ |
||
31 | const SOCKET_TYPE_UDP = 'udp'; |
||
32 | |||
33 | /** |
||
34 | * Unix socket type |
||
35 | */ |
||
36 | const SOCKET_TYPE_UNIX = 'unix'; |
||
37 | |||
38 | /** |
||
39 | * Unix datagram socket type |
||
40 | */ |
||
41 | const SOCKET_TYPE_UDG = 'udg'; |
||
42 | |||
43 | /** |
||
44 | * Unknown type of socket |
||
45 | */ |
||
46 | const SOCKET_TYPE_UNKNOWN = ''; |
||
47 | |||
48 | /** |
||
49 | * This socket resource |
||
50 | * |
||
51 | * @var resource |
||
52 | */ |
||
53 | private $resource; |
||
54 | |||
55 | /** |
||
56 | * I/O interface |
||
57 | * |
||
58 | * @var IoInterface |
||
59 | */ |
||
60 | private $ioInterface; |
||
61 | |||
62 | /** |
||
63 | * Socket address |
||
64 | * |
||
65 | * @var string |
||
66 | */ |
||
67 | private $remoteAddress; |
||
68 | |||
69 | /** |
||
70 | * AbstractSocket constructor. |
||
71 | */ |
||
72 | 107 | public function __construct() |
|
73 | { |
||
74 | 107 | $this->setDisconnectedState(); |
|
75 | 107 | } |
|
76 | |||
77 | /** |
||
78 | * Create certain socket resource |
||
79 | * |
||
80 | * @param string $address Network address to open in form transport://path:port |
||
81 | * @param resource $context Valid stream context created by function stream_context_create or null |
||
82 | * |
||
83 | * @return resource |
||
84 | */ |
||
85 | abstract protected function createSocketResource($address, $context); |
||
86 | |||
87 | /** |
||
88 | * Create I/O interface for socket |
||
89 | * |
||
90 | * @param string $type Type of this socket, one of SOCKET_TYPE_* consts |
||
91 | * @param string $address Address passed to open method |
||
92 | * |
||
93 | * @return IoInterface |
||
94 | */ |
||
95 | abstract protected function createIoInterface($type, $address); |
||
96 | |||
97 | /** {@inheritdoc} */ |
||
98 | 65 | public function open($address, $context = null) |
|
99 | { |
||
100 | 65 | $this->resource = $this->createSocketResource( |
|
101 | 65 | $address, |
|
102 | 65 | $context ?: stream_context_get_default() |
|
103 | 65 | ); |
|
104 | |||
105 | 59 | $result = false; |
|
106 | 59 | if (is_resource($this->resource)) { |
|
107 | 59 | $result = true; |
|
108 | 59 | $this->remoteAddress = $address; |
|
109 | |||
110 | // https://bugs.php.net/bug.php?id=51056 |
||
111 | 59 | stream_set_blocking($this->resource, 0); |
|
112 | |||
113 | // https://bugs.php.net/bug.php?id=52602 |
||
114 | 59 | stream_set_timeout($this->resource, 0, 0); |
|
115 | |||
116 | 59 | $this->ioInterface = $this->createIoInterface( |
|
117 | 59 | $this->resolveSocketType(), |
|
118 | $address |
||
119 | 59 | ); |
|
120 | 55 | } |
|
121 | |||
122 | 55 | return $result; |
|
123 | } |
||
124 | |||
125 | /** {@inheritdoc} */ |
||
126 | 12 | public function close() |
|
127 | { |
||
128 | 12 | if ($this->resource) { |
|
129 | 8 | $this->setDisconnectedState(); |
|
130 | 8 | stream_socket_shutdown($this->resource, STREAM_SHUT_RDWR); |
|
131 | 8 | fclose($this->resource); |
|
132 | 8 | $this->resource = null; |
|
133 | 8 | $this->remoteAddress = null; |
|
134 | 8 | } |
|
135 | 12 | } |
|
136 | |||
137 | /** {@inheritdoc} */ |
||
138 | 31 | public function read(FramePickerInterface $picker) |
|
147 | |||
148 | /** {@inheritdoc} */ |
||
149 | 10 | public function write($data) |
|
158 | |||
159 | /** {@inheritdoc} */ |
||
160 | 41 | public function getStreamResource() |
|
164 | |||
165 | /** |
||
166 | * Get current socket type |
||
167 | * |
||
168 | * @return string One of SOCKET_TYPE_* consts |
||
169 | */ |
||
170 | 59 | private function resolveSocketType() |
|
171 | { |
||
172 | 59 | $info = stream_get_meta_data($this->resource); |
|
173 | 59 | if (!isset($info['stream_type'])) { |
|
174 | 4 | return self::SOCKET_TYPE_UNKNOWN; |
|
175 | } |
||
176 | |||
177 | 55 | $parts = explode('/', $info['stream_type']); |
|
178 | $map = [ |
||
179 | 55 | 'tcp' => self::SOCKET_TYPE_TCP, |
|
180 | 55 | 'udp' => self::SOCKET_TYPE_UDP, |
|
181 | 55 | 'udg' => self::SOCKET_TYPE_UDG, |
|
182 | 55 | 'unix' => self::SOCKET_TYPE_UNIX, |
|
183 | 55 | ]; |
|
184 | |||
185 | 55 | $regexp = '#^('. implode('|', array_keys($map)) . ')_socket$#'; |
|
186 | 55 | foreach ($parts as $part) { |
|
187 | 55 | if (preg_match($regexp, $part, $pockets)) { |
|
188 | 41 | return $map[$pockets[1]]; |
|
189 | } |
||
190 | 14 | } |
|
191 | |||
192 | 14 | return self::SOCKET_TYPE_UNKNOWN; |
|
193 | } |
||
194 | |||
195 | /** |
||
196 | * Set disconnected state for socket |
||
197 | * |
||
198 | * @return void |
||
199 | */ |
||
200 | 107 | private function setDisconnectedState() |
|
204 | |||
205 | /** |
||
206 | * @inheritDoc |
||
207 | */ |
||
208 | public function __toString() |
||
209 | { |
||
210 | return $this->remoteAddress ?: '"closed socket"'; |
||
212 | } |
||
213 |