forked from PeterKawa/nl.onzewifi.timelinemanager2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
captureLogs.js
99 lines (85 loc) · 2.57 KB
/
captureLogs.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/*
Copyright 2018 - 2020, Robin de Gruijter ([email protected])
This file is part of com.gruijter.clusterlights.
com.gruijter.clsterlights is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
com.gruijter.clusterlights is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with com.gruijter.clusterlights. If not, see <http://www.gnu.org/licenses/>.
*/
'use strict';
const StdOutFixture = require('fixture-stdout');
const fs = require('fs');
class captureLogs {
constructor(opts) {
this.homey = opts.homey;
this.logName = opts.name || 'log';
this.logLength = opts.length || 1000;
this.logFile = `/userdata/insights2sql.json`;
this.logArray = [];
this.captureStdOut();
this.captureStdErr();
this.getLogs();
}
getLogs() {
try {
const log = fs.readFileSync(this.logFile, 'utf8');
this.logArray = JSON.parse(log);
return this.logArray;
} catch (error) {
if (error.message.includes('ENOENT')) return [];
console.log('[err] error parsing logfile: ', error.message);
return [];
}
}
saveLogs() {
try {
fs.writeFileSync(this.logFile, JSON.stringify(this.logArray));
return true;
} catch (error) {
console.log('[err] error writing logfile: ', error.message);
return false;
}
}
deleteLogs() {
try {
this.logArray = [];
fs.writeFileSync(this.logFile,JSON.stringify(this.logArray),{encoding:'utf8',flag:'w'})
return true;
} catch (error) {
if (error.message.includes('ENOENT')) return false;
console.log('[err] error deleting logfile: ', error.message);
return false;
}
}
captureStdOut() {
this.captureStdout = new StdOutFixture({ stream: process.stdout });
this.captureStdout.capture((string) => {
if (this.logArray.length >= this.logLength) {
this.logArray.shift();
}
this.logArray.push(string);
});
}
captureStdErr() {
this.captureStderr = new StdOutFixture({ stream: process.stderr });
this.captureStderr.capture((string) => {
if (this.logArray.length >= this.logLength) {
this.logArray.shift();
}
this.logArray.push(string);
});
}
releaseStdOut() {
this.captureStdout.release();
}
releaseStdErr() {
this.captureStderr.release();
}
}
module.exports = captureLogs;