Total Complexity | 40 |
Total Lines | 345 |
Duplicated Lines | 0 % |
Changes | 0 |
Complex classes like Stream often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use Stream, and based on these observations, apply Extract Interface, too.
1 | <?php declare(strict_types=1); |
||
7 | class Stream implements StreamInterface |
||
8 | { |
||
9 | /** |
||
10 | * @var resource |
||
11 | */ |
||
12 | private $stream; |
||
13 | |||
14 | /** |
||
15 | * Stream constructor. |
||
16 | * @param $stream |
||
17 | */ |
||
18 | public function __construct($stream) |
||
19 | { |
||
20 | if (!\is_resource($stream)) { |
||
21 | throw new \InvalidArgumentException('Stream must be a resource'); |
||
22 | } |
||
23 | |||
24 | $this->stream = $stream; |
||
25 | } |
||
26 | |||
27 | /** |
||
28 | * Reads all data from the stream into a string, from the beginning to end. |
||
29 | * |
||
30 | * This method MUST attempt to seek to the beginning of the stream before |
||
31 | * reading data and read the stream until the end is reached. |
||
32 | * |
||
33 | * Warning: This could attempt to load a large amount of data into memory. |
||
34 | * |
||
35 | * This method MUST NOT raise an exception in order to conform with PHP's |
||
36 | * string casting operations. |
||
37 | * |
||
38 | * @see http://php.net/manual/en/language.oop5.magic.php#object.tostring |
||
39 | * @return string |
||
40 | */ |
||
41 | public function __toString(): string |
||
42 | { |
||
43 | try { |
||
44 | $this->seek(0); |
||
45 | return (string)stream_get_contents($this->stream); |
||
46 | } catch (\Exception $e) { |
||
47 | return ''; |
||
48 | } |
||
49 | } |
||
50 | |||
51 | /** |
||
52 | * Closes the stream and any underlying resources. |
||
53 | * |
||
54 | * @return void |
||
55 | */ |
||
56 | public function close(): void |
||
57 | { |
||
58 | if (\is_resource($this->stream)) { |
||
59 | \fclose($this->stream); |
||
60 | } |
||
61 | |||
62 | $this->detach(); |
||
63 | } |
||
64 | |||
65 | /** |
||
66 | * Separates any underlying resources from the stream. |
||
67 | * |
||
68 | * After the stream has been detached, the stream is in an unusable state. |
||
69 | * |
||
70 | * @return resource|null Underlying PHP stream, if any |
||
71 | */ |
||
72 | public function detach() |
||
83 | } |
||
84 | |||
85 | /** |
||
86 | * Get the size of the stream if known. |
||
87 | * |
||
88 | * @return int|null Returns the size in bytes if known, or null if unknown. |
||
89 | */ |
||
90 | public function getSize(): ?int |
||
91 | { |
||
92 | if ($this->stream === null) { |
||
93 | return null; |
||
94 | } |
||
95 | |||
96 | $stats = \fstat($this->stream); |
||
97 | |||
98 | return $stats['size'] ?? null; |
||
99 | } |
||
100 | |||
101 | /** |
||
102 | * Returns the current position of the file read/write pointer |
||
103 | * |
||
104 | * @return int Position of the file pointer |
||
105 | * @throws \RuntimeException on error. |
||
106 | */ |
||
107 | public function tell(): int |
||
108 | { |
||
109 | if ($this->stream === null) { |
||
110 | throw new \RuntimeException('Stream is detached'); |
||
111 | } |
||
112 | |||
113 | $result = \ftell($this->stream); |
||
114 | |||
115 | if ($result === false) { |
||
116 | throw new \RuntimeException('Unable to determine stream position'); |
||
117 | } |
||
118 | |||
119 | return $result; |
||
120 | } |
||
121 | |||
122 | /** |
||
123 | * Returns true if the stream is at the end of the stream. |
||
124 | * |
||
125 | * @return bool |
||
126 | */ |
||
127 | public function eof(): bool |
||
134 | } |
||
135 | |||
136 | /** |
||
137 | * Returns whether or not the stream is seekable. |
||
138 | * |
||
139 | * @return bool |
||
140 | */ |
||
141 | public function isSeekable(): bool |
||
142 | { |
||
143 | $seekable = $this->getMetadata('seekable'); |
||
144 | |||
145 | if ($seekable) { |
||
146 | return (bool)$seekable; |
||
147 | } |
||
148 | |||
149 | return $seekable ? (bool)$seekable : false; |
||
150 | } |
||
151 | |||
152 | /** |
||
153 | * Seek to a position in the stream. |
||
154 | * |
||
155 | * @link http://www.php.net/manual/en/function.fseek.php |
||
156 | * @param int $offset Stream offset |
||
157 | * @param int $whence Specifies how the cursor position will be calculated |
||
158 | * based on the seek offset. Valid values are identical to the built-in |
||
159 | * PHP $whence values for `fseek()`. SEEK_SET: Set position equal to |
||
160 | * offset bytes SEEK_CUR: Set position to current location plus offset |
||
161 | * SEEK_END: Set position to end-of-stream plus offset. |
||
162 | * @throws \RuntimeException on failure. |
||
163 | */ |
||
164 | public function seek($offset, $whence = SEEK_SET): void |
||
172 | } |
||
173 | } |
||
174 | |||
175 | /** |
||
176 | * Seek to the beginning of the stream. |
||
177 | * |
||
178 | * If the stream is not seekable, this method will raise an exception; |
||
179 | * otherwise, it will perform a seek(0). |
||
180 | * |
||
181 | * @see seek() |
||
182 | * @link http://www.php.net/manual/en/function.fseek.php |
||
183 | * @throws \RuntimeException on failure. |
||
184 | */ |
||
185 | public function rewind(): void |
||
193 | } |
||
194 | } |
||
195 | |||
196 | /** |
||
197 | * Returns whether or not the stream is writable. |
||
198 | * |
||
199 | * @return bool |
||
200 | */ |
||
201 | public function isWritable(): bool |
||
202 | { |
||
203 | /** @var string|null $mode */ |
||
204 | $mode = $this->getMetadata('mode'); |
||
205 | |||
206 | if ($mode === null) { |
||
207 | return false; |
||
208 | } |
||
209 | |||
210 | return \in_array($mode, [ |
||
211 | 'r+', |
||
212 | 'w', |
||
213 | 'wb', |
||
214 | 'w+', |
||
215 | 'wb+', |
||
216 | 'a', |
||
217 | 'ab', |
||
218 | 'a+', |
||
219 | 'ab+', |
||
220 | 'x', |
||
221 | 'xb', |
||
222 | 'x+', |
||
223 | 'xb+', |
||
224 | 'c', |
||
225 | 'cb', |
||
226 | 'c+', |
||
227 | 'cb+', |
||
228 | ]); |
||
229 | } |
||
230 | |||
231 | /** |
||
232 | * Write data to the stream. |
||
233 | * |
||
234 | * @param string $string The string that is to be written. |
||
235 | * @return int Returns the number of bytes written to the stream. |
||
236 | * @throws \RuntimeException on failure. |
||
237 | */ |
||
238 | public function write($string): int |
||
239 | { |
||
240 | if ($this->stream === null) { |
||
241 | throw new \RuntimeException('Can not write, stream is detached'); |
||
242 | } |
||
243 | |||
244 | $res = \fwrite($this->stream, $string); |
||
245 | |||
246 | if (\is_int($res)) { |
||
|
|||
247 | return $res; |
||
248 | } |
||
249 | |||
250 | throw new \RuntimeException('Error on writing file'); |
||
251 | } |
||
252 | |||
253 | /** |
||
254 | * Returns whether or not the stream is readable. |
||
255 | * |
||
256 | * @return bool |
||
257 | */ |
||
258 | public function isReadable(): bool |
||
277 | ]); |
||
278 | } |
||
279 | |||
280 | /** |
||
281 | * Read data from the stream. |
||
282 | * |
||
283 | * @param int $length Read up to $length bytes from the object and return |
||
284 | * them. Fewer than $length bytes may be returned if underlying stream |
||
285 | * call returns fewer bytes. |
||
286 | * @return string Returns the data read from the stream, or an empty string |
||
287 | * if no bytes are available. |
||
288 | * @throws \RuntimeException if an error occurs. |
||
289 | */ |
||
290 | public function read($length): string |
||
291 | { |
||
292 | if ($this->stream === null) { |
||
293 | throw new \RuntimeException('Can not read, stream is detached'); |
||
294 | } |
||
295 | |||
296 | $result = \fread($this->stream, $length); |
||
297 | |||
298 | return (string)$result; |
||
299 | } |
||
300 | |||
301 | /** |
||
302 | * Returns the remaining contents in a string |
||
303 | * |
||
304 | * @return string |
||
305 | * @throws \RuntimeException if unable to read or an error occurs while |
||
306 | * reading. |
||
307 | */ |
||
308 | public function getContents(): string |
||
321 | } |
||
322 | |||
323 | /** |
||
324 | * Get stream metadata as an associative array or retrieve a specific key. |
||
325 | * |
||
326 | * The keys returned are identical to the keys returned from PHP's |
||
327 | * stream_get_meta_data() function. |
||
328 | * |
||
329 | * @link http://php.net/manual/en/function.stream-get-meta-data.php |
||
330 | * @param string $key Specific metadata to retrieve. |
||
331 | * @return array|mixed|null Returns an associative array if no key is |
||
332 | * provided. Returns a specific key value if a key is provided and the |
||
333 | * value is found, or null if the key is not found. |
||
334 | */ |
||
335 | public function getMetadata($key = null) |
||
354 |