obj2gltf/lib/readLines.js

41 lines
988 B
JavaScript
Raw Normal View History

2021-08-02 11:31:59 -04:00
"use strict";
const fsExtra = require("fs-extra");
const Promise = require("bluebird");
const readline = require("readline");
const events = require("events");
2017-03-13 15:28:51 -04:00
module.exports = readLines;
/**
* Read a file line-by-line.
*
* @param {String} path Path to the file.
* @param {Function} callback Function to call when reading each line.
* @returns {Promise} A promise when the reader is finished.
*
* @private
*/
function readLines(path, callback) {
const stream = fsExtra.createReadStream(path);
return events.once(stream, "open").then(function () {
return new Promise(function (resolve, reject) {
stream.on("error", reject);
stream.on("end", resolve);
const lineReader = readline.createInterface({
input: stream,
});
2019-10-27 15:26:40 -04:00
const callbackWrapper = function (line) {
try {
callback(line);
} catch (error) {
reject(error);
}
};
2019-10-27 15:00:35 -04:00
lineReader.on("line", callbackWrapper);
});
2021-08-02 11:31:59 -04:00
});
2017-03-13 15:28:51 -04:00
}