replace split with our own LogStream

split module is archived
This commit is contained in:
Girish Ramakrishnan
2022-11-06 13:44:47 +01:00
parent 9dac5e3406
commit ca44f47af3
7 changed files with 72 additions and 115 deletions
+5 -22
View File
@@ -46,12 +46,12 @@ const assert = require('assert'),
BoxError = require('./boxerror.js'),
database = require('./database.js'),
debug = require('debug')('box:tasks'),
LogStream = require('./log-stream.js'),
path = require('path'),
paths = require('./paths.js'),
safe = require('safetydance'),
shell = require('./shell.js'),
spawn = require('child_process').spawn,
split = require('split'),
_ = require('underscore');
let gTasks = {}; // indexed by task id
@@ -281,29 +281,12 @@ function getLogs(taskId, options) {
const cp = spawn(cmd, args);
const transformStream = split(function mapper(line) {
if (format !== 'json') return line + '\n';
const logStream = new LogStream({ format, source: taskId });
logStream.close = cp.kill.bind(cp, 'SIGKILL'); // hook for caller. closing stream kills the child process
const data = line.split(' '); // logs are <ISOtimestamp> <msg>
let timestamp = (new Date(data[0])).getTime();
if (isNaN(timestamp)) timestamp = 0;
const message = line.slice(data[0].length+1);
cp.stdout.pipe(logStream);
// ignore faulty empty logs
if (!timestamp && !message) return;
return JSON.stringify({
realtimeTimestamp: timestamp * 1000,
message: message,
source: taskId
}) + '\n';
});
transformStream.close = cp.kill.bind(cp, 'SIGKILL'); // closing stream kills the child process
cp.stdout.pipe(transformStream);
return transformStream;
return logStream;
}
// removes all fields that are strictly private and should never be returned by API calls