-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathSNodeTracker.js
331 lines (304 loc) · 9.54 KB
/
SNodeTracker.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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
const { LocalStorage } = require('node-localstorage');
const fs = require('fs');
const StdRPC = require('stdrpc');
const Backoff = require('backo2');
const Zen = require('./zencfg');
const zencfg = Zen.getZenConfig();
const local = new LocalStorage('./config/local');
const cfg = {
url: zencfg.url,
ssl: {
enabled: false,
},
username: zencfg.rpcuser,
password: zencfg.rpcpassword,
};
const logtime = () => `${(new Date()).toISOString().replace(/T/, ' ').replace(/\..+/, '')} UTC --`;
const rpcError = (err, txt, cb) => {
// response data may be an object or string
let msg;
if (err.response && err.response.data) {
if (typeof err.response.data === 'object') {
msg = err.response.data.error.message;
if (err.response.data.error.code === -28) {
console.log(logtime(), `Zend: Waiting - ${msg}`);
return cb(msg, 'starting');
}
console.log(logtime(), `ERROR zend ${txt} ${msg}`);
} else {
msg = err.response.data;
if (msg.indexOf('depth') !== -1) {
console.log(logtime(), `ERROR zend rpc issue: ${msg}`);
return cb(msg, 'queue');
}
console.log(logtime(), `ERROR zend ${txt} ${msg}`);
}
} else {
console.log(logtime(), `ERROR zend ${txt}`);
}
console.error(logtime(), err.message);
return cb(err.message);
};
// config
const savedCfg = local.getItem('statscfg');
const statCfg = {};
if (savedCfg) {
const scfg = JSON.parse(savedCfg);
Object.assign(statCfg, scfg);
} else {
statCfg.statsAckBackoff = {
min: 12000,
max: 120000,
jitter: 0.800000,
};
statCfg.statsAckTimeout = 6000;
statCfg.statsInterval = 360000;
statCfg.statsRetryMax = 3;
}
class SNode {
constructor(rpc, cfgzen) {
this.rpc = rpc;
this.zencfg = cfgzen;
this.statsCfg = statCfg;
this.statsTimer = null;
this.statsTimerRunning = false;
this.statsAckTimer = null;
this.statsRetryCount = 0;
this.statsRetryTimer = null;
this.statAckBackoff = new Backoff(this.statsCfg.statsAckBackoff);
this.statsLoop = () => {
this.collectStats();
};
this.statsLastSentTime = null;
this.configcount = 0;
this.queueCount = 0;
this.waiting = false;
this.zenDownInterval = 1000 * 60;
this.zenDownTimer = null;
this.zenDownLoop = () => {
this.checkZen();
};
this.mem = {};
}
static auto() {
const rpc = new StdRPC(cfg);
return new SNode(rpc, zencfg);
}
initialize() {
this.statsTimer = setInterval(this.statsLoop, this.statsCfg.statsInterval);
this.statsTimerRunning = true;
}
restartStatTimer(statconfig) {
const self = this;
self.statsCfg = statconfig;
console.log(logtime(), `Stat Interval changed to ${statconfig.statsInterval}ms`);
clearTimeout(self.statsTimer);
self.initialize();
}
ackStats() {
const self = this;
clearTimeout(self.statsAckTimer);
clearTimeout(self.statsRetryTimer);
self.statAckBackoff.reset();
if (!self.statsTimerRunning) self.initialize();
}
checkZen() {
const self = this;
self.getPrimaryAddress((err) => {
if (err) return;
console.log(logtime(), 'Zen connected.');
clearInterval(self.zenDownTimer);
self.collectStats();
});
}
getPrimaryAddress(cb) {
const self = this;
self.rpc.getaddressesbyaccount('')
.then((data) => {
self.waiting = false;
return cb(null, data[0]);
})
.catch((err) => rpcError(err, 'get t-address', cb));
}
getConfig(req, trkver, hw, nodejs, platform) {
const self = this;
self.rpc.getinfo()
.then((data) => {
if (data.error) {
console.log(logtime(), 'ERROR getConfig unable to get data from zend');
console.error(logtime(), data.error);
return;
}
const node = {
version: data.version,
protocolversion: data.protocolversion,
'wallet.version': data.walletversion,
};
if (!self.ident.nid && req.nid) self.ident.nid = req.nid;
const config = {
node, trkver, hw, mem: self.mem, nodejs, platform,
};
config.statsInterval = self.statsCfg.statsInterval;
self.socket.emit('node', { type: 'config', ident: self.ident, config });
})
.catch((err) => rpcError(err, 'get config', () => { }));
}
collectStats() {
const self = this;
if (!self.socket.connected || self.waiting || !self.ident) return;
if (!self.ident.nid) {
console.log(logtime(), 'Unable to collect stats without a nodeid.');
return;
}
self.getStats((err, stats) => {
if (err) {
console.log(logtime(), `Stat check unable to complete. ${err}`);
if (self.ident) {
self.socket.emit('node', { type: 'down', ident: self.ident });
}
if (!self.zenDownTimer) self.zenDownTimer = setInterval(self.zenDownLoop, self.zenDownInterval);
} else {
if (self.zenDownTimer) clearInterval(self.zenDownTimer);
const stats2 = { ...stats };
let display = '';
Object.entries(stats2).forEach((s) => {
display += `${s[0]}:${s[1]} `;
});
const reply = {
type: 'stats',
stats: stats2,
ident: self.ident,
sots: self.socketOptions.ts,
scts: self.statsCfg.ts,
gts: self.genCfg.ts,
};
self.socket.emit('node', reply);
self.statsLastSentTime = (new Date()).getTime();
self.statsAckTimer = setTimeout(() => { self.missedStatsAck(); }, self.statsCfg.statsAckTimeout);
console.log(logtime(), `Stat check: server:${self.ident.con.cur} ${display}`);
}
});
}
missedStatsAck() {
const self = this;
self.statsRetryCount += 1;
if (self.statAckBackoff.attempts === 0) self.statAckBackoff.attempts = 1;
if (self.statsRetryCount > self.statsCfg.statsRetryMax) {
console.log(logtime(), `Stat check: no response from server count: ${self.statsRetryCount}. Reconnecting.`);
self.statsRetryCount = 0;
self.resetSocket('no stat check response from server');
} else {
clearTimeout(self.statsTimer);
self.statsTimerRunning = false;
const timeout = self.statAckBackoff.duration();
self.statsRetryTimer = setTimeout(() => { self.collectStats(); }, timeout);
const msg = self.statsRetryCount > self.statsCfg.statsRetryMax ? '' : `in ${(timeout / 1000).toFixed(0)}s`;
console.log(logtime(), `Stat check: no response from server count: ${self.statsRetryCount}.`
+ ` Retry ${msg}`);
}
}
getStats(cb) {
const self = this;
if (self.waiting) return cb('Waiting for zend');
return self.rpc.getinfo()
.then((data) => {
// leave queueDepth and lastExecSec for server compatibility
const stats = {
blocks: data.blocks,
peers: data.connections,
queueDepth: 0,
lastExecSec: 0,
};
if (self.ident) {
return cb(null, stats);
}
return cb('ident not set');
})
.catch((err) => rpcError(err, 'get stats', cb));
}
getNetworks(req, cb) {
const self = this;
self.rpc.getnetworkinfo()
.then((data) => {
const nets = data.localaddresses;
if (req) {
if (!self.ident.nid && req.nid) self.ident.nid = req.nid;
self.socket.emit('node', { type: 'networks', ident: self.ident, nets });
} else {
cb(null, nets);
}
})
.catch((err) => rpcError(err, 'get networks', cb));
}
getTLSPeers(cb) {
const self = this;
return self.rpc.getpeerinfo()
.then((data) => {
const peers = [];
for (let i = 0; i < data.length; i += 1) {
const p = data[i];
if (p.inbound === false) {
const ip = p.addr.indexOf(']') !== -1
? p.addr.substr(1, p.addr.indexOf(']') - 1)
: p.addr.substr(0, p.addr.indexOf(':'));
const peer = { ip, tls: p.tls_verified };
peers.push(peer);
}
}
cb(null, peers);
})
.catch((err) => {
console.log(logtime(), 'ERROR: getTLSPeers unable to get data from zend');
console.error(logtime(), 'getTLSPeers', err.message);
return cb(err.message);
});
}
getBlockHeight(setLast) {
const self = this;
self.rpc.getinfo()
.then((data) => {
if (setLast) local.setItem('lastChalBlock', data.blocks);
return data.blocks;
})
.catch((err) => rpcError(err, 'get blockheight', () => { }));
}
getProcMeminfo(display, save) {
const self = this;
fs.readFile('/proc/meminfo', (err, meminfo) => {
if (err) {
return console.log(logtime(), 'Unable to get meminfo');
}
return self.formatProcMeminfo(meminfo, display, save);
});
}
formatProcMeminfo(meminfo, display, save) {
const self = this;
const lines = meminfo.toString().split('\n');
let disp = '';
const data = {};
const toGb = 1000 * 1024;
lines.forEach((line) => {
const row = line.split(':');
const item = row[0];
if (item === 'MemTotal'
|| item === 'MemFree'
|| item === 'MemAvailable'
|| item === 'SwapTotal'
|| item === 'SwapFree') {
const num = parseInt(row[1].trim().split(' ')[0], 10);
if (display) {
disp += `${item}: ${(num / toGb).toFixed(2)}GB `;
}
const key = item.toLowerCase();
data[key] = Number((num / toGb).toFixed(2));
}
});
data.units = 'GB';
if (save) {
self.mem = data;
}
if (display) console.log(disp);
return data;
}
}
module.exports = SNode;