2018-07-19 21:46:12 +00:00
|
|
|
/* global ReadableStream TransformStream */
|
2018-07-17 18:40:01 +00:00
|
|
|
|
2018-07-23 22:12:58 +00:00
|
|
|
export function transformStream(readable, transformer, oncancel) {
|
2018-07-19 21:46:12 +00:00
|
|
|
if (typeof TransformStream === 'function') {
|
|
|
|
return readable.pipeThrough(new TransformStream(transformer));
|
|
|
|
}
|
2018-07-18 23:39:14 +00:00
|
|
|
const reader = readable.getReader();
|
2018-07-23 16:49:16 +00:00
|
|
|
return new ReadableStream({
|
2018-07-18 23:39:14 +00:00
|
|
|
start(controller) {
|
|
|
|
if (transformer.start) {
|
|
|
|
return transformer.start(controller);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
async pull(controller) {
|
|
|
|
let enqueued = false;
|
2018-07-23 16:49:16 +00:00
|
|
|
const wrappedController = {
|
2018-07-18 23:39:14 +00:00
|
|
|
enqueue(d) {
|
|
|
|
enqueued = true;
|
|
|
|
controller.enqueue(d);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
while (!enqueued) {
|
2018-07-23 16:49:16 +00:00
|
|
|
const data = await reader.read();
|
|
|
|
if (data.done) {
|
2018-07-18 23:39:14 +00:00
|
|
|
if (transformer.flush) {
|
|
|
|
await transformer.flush(controller);
|
|
|
|
}
|
|
|
|
return controller.close();
|
|
|
|
}
|
2018-07-23 16:49:16 +00:00
|
|
|
await transformer.transform(data.value, wrappedController);
|
2018-07-18 23:39:14 +00:00
|
|
|
}
|
|
|
|
},
|
2018-07-23 22:12:58 +00:00
|
|
|
cancel(reason) {
|
|
|
|
readable.cancel(reason);
|
|
|
|
if (oncancel) {
|
|
|
|
oncancel(reason);
|
|
|
|
}
|
2018-07-18 23:39:14 +00:00
|
|
|
}
|
|
|
|
});
|
2018-07-17 18:40:01 +00:00
|
|
|
}
|