-
Notifications
You must be signed in to change notification settings - Fork 6
/
captureLogs.js
116 lines (98 loc) · 3.25 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/*
Copyright 2020 - 2024, Robin de Gruijter ([email protected])
This file is part of com.gruijter.facepp.
com.gruijter.facepp 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.facepp 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.facepp. If not, see <http://www.gnu.org/licenses/>.
*/
'use strict';
const StdOutFixture = require('fixture-stdout');
const fs = require('fs');
class captureLogs {
// Log object to keep logs in memory and in persistent storage
// captures and reroutes Homey's this.log (stdout) and this.err (stderr)
constructor(opts) {
this.homey = opts.homey;
this.logName = opts.name || 'log';
this.logLength = opts.length || 50;
this.logFile = `/userdata/${this.logName}.json`;
this.logArray = [];
this.getLogs();
this.captureStdOut();
this.captureStdErr();
}
getLogs() {
try {
const log = fs.readFileSync(this.logFile, 'utf8');
this.logArray = JSON.parse(log);
this.homey.log('logfile retrieved');
return this.logArray;
} catch (error) {
if (error.message.includes('ENOENT')) return [];
this.homey.error('error parsing logfile: ', error.message);
return [];
}
}
saveLogs() {
try {
fs.writeFileSync(this.logFile, JSON.stringify(this.logArray));
this.homey.log('logfile saved');
return true;
} catch (error) {
this.homey.error('error writing logfile: ', error.message);
return false;
}
}
deleteLogs() {
try {
fs.unlinkSync(this.logFile);
this.logArray = [];
this.homey.log('logfile deleted');
return true;
} catch (error) {
if (error.message.includes('ENOENT')) return false;
this.homey.error('error deleting logfile: ', error.message);
return false;
}
}
captureStdOut() {
// Capture all writes to stdout (e.g. this.log)
this.captureStdout = new StdOutFixture({ stream: process.stdout });
this.captureStdout.capture((string) => {
if (this.logArray.length >= this.logLength) {
this.logArray.shift();
}
this.logArray.push(string);
// return false; // prevent the write to the original stream
});
this.homey.log('capturing stdout');
// captureStdout.release();
}
captureStdErr() {
// Capture all writes to stderr (e.g. this.error)
this.captureStderr = new StdOutFixture({ stream: process.stderr });
this.captureStderr.capture((string) => {
if (this.logArray.length >= this.logLength) {
this.logArray.shift();
}
this.logArray.push(string);
// return false; // prevent the write to the original stream
});
this.homey.log('capturing stderr');
// captureStderr.release();
}
releaseStdOut() {
this.captureStdout.release();
}
releaseStdErr() {
this.captureStderr.release();
}
}
module.exports = captureLogs;