Last active
May 3, 2016 21:14
-
-
Save lonelydatum/4f5d29bdb021c20f9f9b43fe34934040 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
var fs = require('fs') | |
var stream = fs.createReadStream(filePath, {flags: 'r', encoding: 'utf-8'}); | |
var buf = ''; | |
stream.on('data', function(d) { | |
buf += d.toString(); // when data is read, stash it in a string buffer | |
pump(); // then process the buffer | |
}); | |
function pump() { | |
var pos; | |
while ((pos = buf.indexOf('\n')) >= 0) { // keep going while there's a newline somewhere in the buffer | |
if (pos == 0) { // if there's more than one newline in a row, the buffer will now start with a newline | |
buf = buf.slice(1); // discard it | |
continue; // so that the next iteration will start with data | |
} | |
processLine(buf.slice(0,pos)); // hand off the line | |
buf = buf.slice(pos+1); // and slice the processed data off the buffer | |
} | |
} | |
function processLine(line) { // here's where we do something with a line | |
if (line[line.length-1] == '\r') line=line.substr(0,line.length-1); // discard CR (0x0D) | |
if (line.length > 0) { // ignore empty lines | |
var obj = JSON.parse(line); // parse the JSON | |
console.log(obj); // do something with the data here! | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment