Last active
January 22, 2020 22:21
-
-
Save Rich-Harris/279bffe725d3fa6d43f99b19b26470f2 to your computer and use it in GitHub Desktop.
whatwg stream utils
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const fs = require('fs'); | |
const { ReadableStream, TransformStream, WritableStream} = require('web-streams-polyfill/ponyfill/es2018'); | |
function createReadStream(file, opts) { | |
return new ReadableStream({ | |
start(controller) { | |
const stream = fs.createReadStream(file, opts); | |
stream.on('readable', () => { | |
const data = stream.read(); | |
controller.enqueue(data); | |
}); | |
stream.on('end', () => { | |
controller.close(); | |
}); | |
} | |
}); | |
} | |
function split() { | |
let leftover = ''; | |
return new TransformStream({ | |
transform(chunk, controller) { | |
chunk = leftover + chunk; | |
let last = 0; | |
for (let i = 0; i < chunk.length; i += 1) { | |
if (chunk[i] === '\n') { | |
controller.enqueue(chunk.slice(last, i)); | |
last = i + 1; | |
} | |
} | |
leftover = chunk.slice(last); | |
} | |
}) | |
} | |
function transform(fn) { | |
let i = 0; | |
return new TransformStream({ | |
transform(chunk, controller) { | |
controller.enqueue(fn(chunk, i++)); | |
} | |
}); | |
} | |
function createWriteStream(file) { | |
const stream = fs.createWriteStream(file); | |
return new WritableStream({ | |
write(chunk) { | |
if (!stream.write(chunk)) { | |
return new Promise(fulfil => { | |
stream.once('drain', () => { | |
stream.write(chunk); | |
fulfil(); | |
}); | |
}); | |
} | |
} | |
}); | |
} | |
const stream = createReadStream(INPUT, 'utf-8') | |
.pipeThrough(split()) | |
.pipeThrough(transform((line, i) => { | |
return REDACTED(line); | |
})) | |
.pipeTo(createWriteStream(OUTPUT)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment