-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathStringStream.php
executable file
·225 lines (192 loc) · 5.37 KB
/
StringStream.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
<?php
namespace Unleash\Client\Helper;
use Override;
use Psr\Http\Message\StreamInterface;
use Unleash\Client\Exception\StreamException;
/**
* @internal
*/
final class StringStream implements StreamInterface
{
/**
* @var resource|null
*/
private $stream;
private readonly int $size;
public function __construct(
string $content
) {
$this->size = strlen($content);
$stream = fopen('php://temp', 'w+');
if (!is_resource($stream)) {
// @codeCoverageIgnoreStart
throw new StreamException('Cannot create temporary stream for storing data');
// @codeCoverageIgnoreEnd
}
$this->stream = $stream;
fwrite($this->stream, $content);
rewind($this->stream);
}
#[Override]
public function __toString(): string
{
$stream = $this->stream;
if ($stream === null) {
return '';
}
$content = stream_get_contents($stream, -1, 0);
if (!is_string($content)) {
// @codeCoverageIgnoreStart
$content = '';
// @codeCoverageIgnoreEnd
}
return $content;
}
#[Override]
public function close(): void
{
if ($this->stream === null) {
throw new StreamException('The stream is detached');
}
$type = get_resource_type($this->stream);
if ($type !== 'stream') {
throw new StreamException('The stream is already closed');
}
fclose($this->stream);
}
#[Override]
public function detach()
{
$resource = $this->stream;
$this->stream = null;
return $resource;
}
#[Override]
public function getSize(): int
{
if ($this->stream === null) {
throw new StreamException('The stream is detached');
}
return $this->size;
}
#[Override]
public function tell(): int
{
if ($this->stream === null) {
throw new StreamException('The stream is detached');
}
$tell = ftell($this->stream);
// this doesn't happen anymore in php 8.3, but is kept here for older versions
// @codeCoverageIgnoreStart
if ($tell === false) {
throw new StreamException('Could not retrieve stream position. Is the stream after EOF?');
}
// @codeCoverageIgnoreEnd
return $tell;
}
#[Override]
public function eof(): bool
{
if ($this->stream === null) {
throw new StreamException('The stream is detached');
}
return feof($this->stream);
}
#[Override]
public function isSeekable(): bool
{
if ($this->stream === null) {
throw new StreamException('The stream is detached');
}
return true;
}
#[Override]
public function seek($offset, $whence = SEEK_SET): void
{
if ($this->stream === null) {
throw new StreamException('The stream is detached');
}
fseek($this->stream, $offset, $whence);
}
#[Override]
public function rewind(): void
{
if ($this->stream === null) {
throw new StreamException('The stream is detached');
}
rewind($this->stream);
}
#[Override]
public function isWritable(): bool
{
if ($this->stream === null) {
throw new StreamException('The stream is detached');
}
return true;
}
#[Override]
public function write($string): int
{
if ($this->stream === null) {
throw new StreamException('The stream is detached');
}
$result = fwrite($this->stream, $string);
if ($result === false) {
// @codeCoverageIgnoreStart
throw new StreamException('Failed to write to the stream');
// @codeCoverageIgnoreEnd
}
return $result;
}
#[Override]
public function isReadable(): bool
{
if ($this->stream === null) {
throw new StreamException('The stream is detached');
}
return true;
}
/**
* @param int<1, max> $length
*/
#[Override]
public function read($length): string
{
if ($this->stream === null) {
throw new StreamException('The stream is detached');
}
$result = fread($this->stream, $length);
if ($result === false) {
// @codeCoverageIgnoreStart
throw new StreamException('Failed to read from stream');
// @codeCoverageIgnoreEnd
}
return $result;
}
#[Override]
public function getContents(): string
{
if ($this->stream === null) {
throw new StreamException('The stream is detached');
}
$result = stream_get_contents($this->stream);
if ($result === false) {
// @codeCoverageIgnoreStart
throw new StreamException('Failed to read from stream');
// @codeCoverageIgnoreEnd
}
return $result;
}
#[Override]
public function getMetadata($key = null): mixed
{
if ($this->stream === null) {
throw new StreamException('The stream is detached');
}
$metadata = stream_get_meta_data($this->stream);
if ($key === null) {
return $metadata;
}
return $metadata[$key] ?? null;
}
}