fox-send/app/streams.js

40 lines
956 B
JavaScript
Raw Normal View History

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