Fixed agent log parsing bug

This commit is contained in:
Bryan Roe 2021-04-22 15:00:54 -07:00
parent 8674f8eb02
commit a5053b17e5

View File

@ -109,10 +109,24 @@ function parseLine(entry)
function readLog_data(buffer)
{
var lines = buffer.toString().split('\n');
while(lines.length > 0)
var lines = buffer.toString();
if (this.buffered != null) { lines = this.buffered + lines; }
lines = lines.split('\n');
var i;
for (i = 0; i < (lines.length - 1) ; ++i)
{
parseLine.call(this, lines.shift());
parseLine.call(this, lines[i]);
}
if (lines.length == 1)
{
parseLine.call(this, lines[0]);
this.buffered = null;
}
else
{
this.buffered = lines[lines.length - 1];
}
}
@ -122,9 +136,11 @@ function readLogEx(path)
try
{
var s = require('fs').createReadStream(path);
s.buffered = null;
s.results = ret;
s.on('data', readLog_data);
s.resume();
if (s.buffered != null) { readLog_data.call(s, s.buffered); s.buffered = null; }
s.removeAllListeners('data');
s = null;
}