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
|
<?php
namespace React\Promise\Stream;
use Evenement\EventEmitterInterface;
use React\Promise;
use React\Promise\PromiseInterface;
use React\Stream\ReadableStreamInterface;
use React\Stream\WritableStreamInterface;
/**
* Create a `Promise` which will be fulfilled with the stream data buffer.
*
* ```php
* $stream = accessSomeJsonStream();
*
* React\Promise\Stream\buffer($stream)->then(function (string $contents) {
* var_dump(json_decode($contents));
* });
* ```
*
* The promise will be fulfilled with a `string` of all data chunks concatenated once the stream closes.
*
* The promise will be fulfilled with an empty `string` if the stream is already closed.
*
* The promise will be rejected with a `RuntimeException` if the stream emits an error.
*
* The promise will be rejected with a `RuntimeException` if it is cancelled.
*
* The optional `$maxLength` argument defaults to no limit. In case the maximum
* length is given and the stream emits more data before the end, the promise
* will be rejected with an `OverflowException`.
*
* ```php
* $stream = accessSomeToLargeStream();
*
* React\Promise\Stream\buffer($stream, 1024)->then(function ($contents) {
* var_dump(json_decode($contents));
* }, function ($error) {
* // Reaching here when the stream buffer goes above the max size,
* // in this example that is 1024 bytes,
* // or when the stream emits an error.
* });
* ```
*
* @param ReadableStreamInterface<string> $stream
* @param ?int $maxLength Maximum number of bytes to buffer or null for unlimited.
* @return PromiseInterface<string,\RuntimeException>
*/
function buffer(ReadableStreamInterface $stream, $maxLength = null)
{
// stream already ended => resolve with empty buffer
if (!$stream->isReadable()) {
return Promise\resolve('');
}
$buffer = '';
$promise = new Promise\Promise(function ($resolve, $reject) use ($stream, $maxLength, &$buffer, &$bufferer) {
$bufferer = function ($data) use (&$buffer, $reject, $maxLength) {
$buffer .= $data;
if ($maxLength !== null && isset($buffer[$maxLength])) {
$reject(new \OverflowException('Buffer exceeded maximum length'));
}
};
$stream->on('data', $bufferer);
$stream->on('error', function (\Exception $e) use ($reject) {
$reject(new \RuntimeException(
'An error occured on the underlying stream while buffering: ' . $e->getMessage(),
$e->getCode(),
$e
));
});
$stream->on('close', function () use ($resolve, &$buffer) {
$resolve($buffer);
});
}, function ($_, $reject) {
$reject(new \RuntimeException('Cancelled buffering'));
});
return $promise->then(null, function (\Exception $error) use (&$buffer, $bufferer, $stream) {
// promise rejected => clear buffer and buffering
$buffer = '';
$stream->removeListener('data', $bufferer);
throw $error;
});
}
/**
* Create a `Promise` which will be fulfilled once the given event triggers for the first time.
*
* ```php
* $stream = accessSomeJsonStream();
*
* React\Promise\Stream\first($stream)->then(function (string $chunk) {
* echo 'The first chunk arrived: ' . $chunk;
* });
* ```
*
* The promise will be fulfilled with a `mixed` value of whatever the first event
* emitted or `null` if the event does not pass any data.
* If you do not pass a custom event name, then it will wait for the first "data"
* event.
* For common streams of type `ReadableStreamInterface<string>`, this means it will be
* fulfilled with a `string` containing the first data chunk.
*
* The promise will be rejected with a `RuntimeException` if the stream emits an error
* – unless you're waiting for the "error" event, in which case it will be fulfilled.
*
* The promise will be rejected with a `RuntimeException` once the stream closes
* – unless you're waiting for the "close" event, in which case it will be fulfilled.
*
* The promise will be rejected with a `RuntimeException` if the stream is already closed.
*
* The promise will be rejected with a `RuntimeException` if it is cancelled.
*
* @param ReadableStreamInterface|WritableStreamInterface $stream
* @param string $event
* @return PromiseInterface<mixed,\RuntimeException>
*/
function first(EventEmitterInterface $stream, $event = 'data')
{
if ($stream instanceof ReadableStreamInterface) {
// readable or duplex stream not readable => already closed
// a half-open duplex stream is considered closed if its readable side is closed
if (!$stream->isReadable()) {
return Promise\reject(new \RuntimeException('Stream already closed'));
}
} elseif ($stream instanceof WritableStreamInterface) {
// writable-only stream (not duplex) not writable => already closed
if (!$stream->isWritable()) {
return Promise\reject(new \RuntimeException('Stream already closed'));
}
}
return new Promise\Promise(function ($resolve, $reject) use ($stream, $event, &$listener) {
$listener = function ($data = null) use ($stream, $event, &$listener, $resolve) {
$stream->removeListener($event, $listener);
$resolve($data);
};
$stream->on($event, $listener);
if ($event !== 'error') {
$stream->on('error', function (\Exception $e) use ($stream, $event, $listener, $reject) {
$stream->removeListener($event, $listener);
$reject(new \RuntimeException(
'An error occured on the underlying stream while waiting for event: ' . $e->getMessage(),
$e->getCode(),
$e
));
});
}
$stream->on('close', function () use ($stream, $event, $listener, $reject) {
$stream->removeListener($event, $listener);
$reject(new \RuntimeException('Stream closed'));
});
}, function ($_, $reject) use ($stream, $event, &$listener) {
$stream->removeListener($event, $listener);
$reject(new \RuntimeException('Operation cancelled'));
});
}
/**
* Create a `Promise` which will be fulfilled with an array of all the event data.
*
* ```php
* $stream = accessSomeJsonStream();
*
* React\Promise\Stream\all($stream)->then(function (array $chunks) {
* echo 'The stream consists of ' . count($chunks) . ' chunk(s)';
* });
* ```
*
* The promise will be fulfilled with an `array` once the stream closes. The array
* will contain whatever all events emitted or `null` values if the events do not pass any data.
* If you do not pass a custom event name, then it will wait for all the "data"
* events.
* For common streams of type `ReadableStreamInterface<string>`, this means it will be
* fulfilled with a `string[]` array containing all the data chunk.
*
* The promise will be fulfilled with an empty `array` if the stream is already closed.
*
* The promise will be rejected with a `RuntimeException` if the stream emits an error.
*
* The promise will be rejected with a `RuntimeException` if it is cancelled.
*
* @param ReadableStreamInterface|WritableStreamInterface $stream
* @param string $event
* @return PromiseInterface<array,\RuntimeException>
*/
function all(EventEmitterInterface $stream, $event = 'data')
{
// stream already ended => resolve with empty buffer
if ($stream instanceof ReadableStreamInterface) {
// readable or duplex stream not readable => already closed
// a half-open duplex stream is considered closed if its readable side is closed
if (!$stream->isReadable()) {
return Promise\resolve(array());
}
} elseif ($stream instanceof WritableStreamInterface) {
// writable-only stream (not duplex) not writable => already closed
if (!$stream->isWritable()) {
return Promise\resolve(array());
}
}
$buffer = array();
$bufferer = function ($data = null) use (&$buffer) {
$buffer []= $data;
};
$stream->on($event, $bufferer);
$promise = new Promise\Promise(function ($resolve, $reject) use ($stream, &$buffer) {
$stream->on('error', function (\Exception $e) use ($reject) {
$reject(new \RuntimeException(
'An error occured on the underlying stream while buffering: ' . $e->getMessage(),
$e->getCode(),
$e
));
});
$stream->on('close', function () use ($resolve, &$buffer) {
$resolve($buffer);
});
}, function ($_, $reject) {
$reject(new \RuntimeException('Cancelled buffering'));
});
return $promise->then(null, function ($error) use (&$buffer, $bufferer, $stream, $event) {
// promise rejected => clear buffer and buffering
$buffer = array();
$stream->removeListener($event, $bufferer);
throw $error;
});
}
/**
* Unwrap a `Promise` which will be fulfilled with a `ReadableStreamInterface<T>`.
*
* This function returns a readable stream instance (implementing `ReadableStreamInterface<T>`)
* right away which acts as a proxy for the future promise resolution.
* Once the given Promise will be fulfilled with a `ReadableStreamInterface<T>`, its
* data will be piped to the output stream.
*
* ```php
* //$promise = someFunctionWhichResolvesWithAStream();
* $promise = startDownloadStream($uri);
*
* $stream = React\Promise\Stream\unwrapReadable($promise);
*
* $stream->on('data', function (string $data) {
* echo $data;
* });
*
* $stream->on('end', function () {
* echo 'DONE';
* });
* ```
*
* If the given promise is either rejected or fulfilled with anything but an
* instance of `ReadableStreamInterface`, then the output stream will emit
* an `error` event and close:
*
* ```php
* $promise = startDownloadStream($invalidUri);
*
* $stream = React\Promise\Stream\unwrapReadable($promise);
*
* $stream->on('error', function (Exception $error) {
* echo 'Error: ' . $error->getMessage();
* });
* ```
*
* The given `$promise` SHOULD be pending, i.e. it SHOULD NOT be fulfilled or rejected
* at the time of invoking this function.
* If the given promise is already settled and does not fulfill with an instance of
* `ReadableStreamInterface`, then you will not be able to receive the `error` event.
*
* You can `close()` the resulting stream at any time, which will either try to
* `cancel()` the pending promise or try to `close()` the underlying stream.
*
* ```php
* $promise = startDownloadStream($uri);
*
* $stream = React\Promise\Stream\unwrapReadable($promise);
*
* $loop->addTimer(2.0, function () use ($stream) {
* $stream->close();
* });
* ```
*
* @param PromiseInterface<ReadableStreamInterface<T>,\Exception> $promise
* @return ReadableStreamInterface<T>
*/
function unwrapReadable(PromiseInterface $promise)
{
return new UnwrapReadableStream($promise);
}
/**
* unwrap a `Promise` which will be fulfilled with a `WritableStreamInterface<T>`.
*
* This function returns a writable stream instance (implementing `WritableStreamInterface<T>`)
* right away which acts as a proxy for the future promise resolution.
* Any writes to this instance will be buffered in memory for when the promise will
* be fulfilled.
* Once the given Promise will be fulfilled with a `WritableStreamInterface<T>`, any
* data you have written to the proxy will be forwarded transparently to the inner
* stream.
*
* ```php
* //$promise = someFunctionWhichResolvesWithAStream();
* $promise = startUploadStream($uri);
*
* $stream = React\Promise\Stream\unwrapWritable($promise);
*
* $stream->write('hello');
* $stream->end('world');
*
* $stream->on('close', function () {
* echo 'DONE';
* });
* ```
*
* If the given promise is either rejected or fulfilled with anything but an
* instance of `WritableStreamInterface`, then the output stream will emit
* an `error` event and close:
*
* ```php
* $promise = startUploadStream($invalidUri);
*
* $stream = React\Promise\Stream\unwrapWritable($promise);
*
* $stream->on('error', function (Exception $error) {
* echo 'Error: ' . $error->getMessage();
* });
* ```
*
* The given `$promise` SHOULD be pending, i.e. it SHOULD NOT be fulfilled or rejected
* at the time of invoking this function.
* If the given promise is already settled and does not fulfill with an instance of
* `WritableStreamInterface`, then you will not be able to receive the `error` event.
*
* You can `close()` the resulting stream at any time, which will either try to
* `cancel()` the pending promise or try to `close()` the underlying stream.
*
* ```php
* $promise = startUploadStream($uri);
*
* $stream = React\Promise\Stream\unwrapWritable($promise);
*
* $loop->addTimer(2.0, function () use ($stream) {
* $stream->close();
* });
* ```
*
* @param PromiseInterface<WritableStreamInterface<T>,\Exception> $promise
* @return WritableStreamInterface<T>
*/
function unwrapWritable(PromiseInterface $promise)
{
return new UnwrapWritableStream($promise);
}
|