mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
73da2c426d
PR-URL: https://github.com/nodejs/node/pull/45550 Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
33 lines
789 B
JavaScript
33 lines
789 B
JavaScript
'use strict';
|
|
|
|
// Hijack stdout and stderr
|
|
const stdWrite = {};
|
|
function hijackStdWritable(name, listener) {
|
|
const stream = process[name];
|
|
const _write = stdWrite[name] = stream.write;
|
|
|
|
stream.writeTimes = 0;
|
|
stream.write = function(data, callback) {
|
|
try {
|
|
listener(data);
|
|
} catch (e) {
|
|
process.nextTick(() => { throw e; });
|
|
}
|
|
|
|
_write.call(stream, data, callback);
|
|
stream.writeTimes++;
|
|
};
|
|
}
|
|
|
|
function restoreWritable(name) {
|
|
process[name].write = stdWrite[name];
|
|
delete process[name].writeTimes;
|
|
}
|
|
|
|
module.exports = {
|
|
hijackStdout: hijackStdWritable.bind(null, 'stdout'),
|
|
hijackStderr: hijackStdWritable.bind(null, 'stderr'),
|
|
restoreStdout: restoreWritable.bind(null, 'stdout'),
|
|
restoreStderr: restoreWritable.bind(null, 'stderr'),
|
|
};
|