-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
237 lines (223 loc) · 6.34 KB
/
index.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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
const { Point } = require('where');
const { join } = require('path');
const Logger = require('./Logger');
module.exports = (app) => {
const plugin = {};
let unsubscribes = [];
let lastPosition = null;
const logs = {};
plugin.id = 'signalk-triplogger';
plugin.name = 'Trip logger';
plugin.description = 'Log the length of the current trip';
const setStatus = app.setPluginStatus || app.setProviderStatus;
function getLogNames() {
const dateString = new Date().toISOString();
return [
'current', // Current trip
'total', // Total log
dateString.substr(0, 4), // Annual log
dateString.substr(0, 7), // Monthly log
dateString.substr(0, 10), // Daily log
];
}
function getLogPath(logName) {
return join(app.getDataDirPath(), `${logName}.json`);
}
function prepareLogs() {
const newLogs = getLogNames();
return Promise.all(Object.keys(logs).map((logName) => {
// Close old logs
if (newLogs.indexOf(logName) === -1) {
// If log is not in the new log list, end it
const oldLog = logs[logName];
delete logs[logName];
return oldLog.endTrip();
}
return Promise.resolve();
}))
.then(() => Promise.all(newLogs.map((logName) => {
// Load new logs
if (!logs[logName]) {
// New log, or saved log?
logs[logName] = new Logger(getLogPath(logName));
return logs[logName].exists()
.then((exists) => {
if (!exists) {
// New log, no need to load
return Promise.resolve();
}
return logs[logName].load();
});
}
return Promise.resolve();
})));
}
plugin.start = (options) => {
const subscription = {
context: 'vessels.self',
subscribe: [
{
path: 'navigation.state',
period: 1000,
},
{
path: 'navigation.position',
period: options.update_interval || 10000,
},
],
};
function resetTrip() {
logs.current.reset();
const resetTime = logs.current.log.started;
const values = [
{
path: 'navigation.trip.log',
value: logs.current.log.total,
},
{
path: 'navigation.trip.lastReset',
value: resetTime,
},
];
if (options.totals) {
const base = options.totals_base || 0;
values.push({
path: 'navigation.log',
value: logs.total.log.total + base,
});
}
app.handleMessage(plugin.id, {
context: `vessels.${app.selfId}`,
updates: [
{
source: {
label: plugin.id,
},
timestamp: (new Date().toISOString()),
values,
},
],
});
}
function appendTrip(distance) {
prepareLogs()
.then(() => Promise.all(Object.keys(logs).map((logName) => {
// Append distance to all active logs and save
logs[logName].appendTrip(distance);
// TODO: We may want to throttle saves to be less frequent
return logs[logName].save();
})))
.then(() => {
const values = [
{
path: 'navigation.trip.log',
value: logs.current.log.total,
},
];
if (options.totals) {
const base = options.totals_base || 0;
values.push({
path: 'navigation.log',
value: logs.total.log.total + base,
});
}
app.handleMessage(plugin.id, {
context: `vessels.${app.selfId}`,
updates: [
{
source: {
label: plugin.id,
},
timestamp: (new Date().toISOString()),
values,
},
],
});
});
}
function handleState(state) {
prepareLogs()
.then(() => {
const wasInTrip = logs.current.inTrip();
Object.keys(logs).forEach((logName) => {
// Allow loggers to keep track of distance per state
logs[logName].setState(state);
});
const isInTrip = logs.current.inTrip();
if (isInTrip && !wasInTrip) {
// New trip has started
resetTrip();
setStatus('New trip has started. Log reset');
}
});
}
app.subscriptionmanager.subscribe(
subscription,
unsubscribes,
(subscriptionError) => {
app.error(`Error:${subscriptionError}`);
},
(delta) => {
if (!delta.updates) {
return;
}
delta.updates.forEach((u) => {
if (!u.values) {
return;
}
u.values.forEach((v) => {
if (v.path === 'navigation.state') {
// Potential state change
handleState(v.value);
}
if (v.path === 'navigation.position') {
if (Number.isNaN(Number(v.value.latitude))
|| Number.isNaN(Number(v.value.longitude))) {
return;
}
const newPosition = new Point(v.value.latitude, v.value.longitude);
if (lastPosition) {
const distance = lastPosition.distanceTo(newPosition) * 1000;
appendTrip(distance);
}
lastPosition = newPosition;
if (logs.current) {
if (logs.current.inTrip()) {
setStatus(`Under way: ${logs.current}`);
} else {
setStatus(`Stopped. Last trip: ${logs.current}`);
}
}
}
});
});
},
);
setStatus('Waiting for updates');
};
plugin.stop = () => {
unsubscribes.forEach((f) => f());
unsubscribes = [];
};
plugin.schema = {
type: 'object',
properties: {
update_interval: {
type: 'number',
default: 10000,
title: 'How often to update log, in milliseconds',
},
totals: {
type: 'boolean',
default: true,
title: 'Publish a total number in navigation.log',
},
totals_base: {
type: 'number',
default: 0,
title: 'Add this number to the totals (in meters)',
},
},
};
return plugin;
};