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
|
const fs = require('fs');
const path = require('path');
const shell = require('shelljs');
const dataBroadcaster = require('./data-broadcaster');
let logDirPath;
let logIntervalMs;
let maxLogEntries;
loadLogConfig();
function loadLogConfig() {
try {
// Use logger config file specified on command line, otherwise use default one.
if (process.argv.length > 2) {
loggerConfigPath = process.argv[2];
} else {
loggerConfigPath = 'logger-config.json';
}
console.log('Logger config file: "' + loggerConfigPath + '"')
let config = JSON.parse(fs.readFileSync(loggerConfigPath, 'utf8'));
logDirPath = config.logDirPath;
logIntervalMs = (config.logIntervalSeconds * 1000);
maxLogEntries = config.maxLogEntries;
}
catch (err) {
console.warn('Error reading logger config. Reverting to defaults.', err);
logDirPath = '.' // Current directory
logIntervalMs = 60000 // 1 min
maxLogEntries = 1440 // 24 hrs at 1/min
}
// Create log directory path if it doesn't already exist.
console.log('Log directory path: "' + logDirPath + '"')
shell.mkdir('-p', logDirPath);
}
function startLogging(device) {
setInterval(() => { log(device); }, logIntervalMs);
console.log('Logging started for ' + device.alias + ' [' + device.deviceId + '] every ' + (logIntervalMs/1000) + ' seconds');
}
function writeLog(filePath, log) {
try {
// Switched to sync write for now. TODO investigate issue from PR #19
fs.writeFileSync(filePath, JSON.stringify(log), { flag: 'w' });
}
catch (err) {
console.warn('Error writing log for ' + device.alias + ' [' + device.deviceId + ']', err);
}
}
function getLogEntries(filePath, callback) {
fs.access(filePath, fs.constants.F_OK, (err) => {
if(err) {
// No log file, init empty one
writeLog(filePath, []);
callback([]);
}
else {
fs.readFile(filePath, 'utf8', (err, data) => {
if (err) {
console.warn('Error reading usage log ' + filePath, err);
callback([]);
}
else {
callback(JSON.parse(data));
}
});
}
});
}
function log(device) {
device.emeter.getRealtime().then(response => {
let logEntry = {
ts: Date.now(),
pw: (('power_mw' in response) ? (response.power_mw / 1000) : response.power)
}
let filePath = getLogPath(device.deviceId);
getLogEntries(filePath, (entries) => {
entries.push(logEntry)
// Remove old entries
entries.splice(0, entries.length - maxLogEntries);
writeLog(filePath, entries);
dataBroadcaster.broadcastNewLogEntry(device.deviceId, logEntry);
})
});
}
function getLogPath(deviceId) {
return path.join(logDirPath, deviceId + '-log.json');
}
function getLogEntriesForDevice(deviceId, callback) {
return getLogEntries(getLogPath(deviceId), callback);
}
module.exports = {
startLogging: startLogging,
log: log,
getLogEntriesForDevice: getLogEntriesForDevice
}
|