-
Notifications
You must be signed in to change notification settings - Fork 2
/
IndiServerStarter.ts
419 lines (370 loc) · 14.6 KB
/
IndiServerStarter.ts
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
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
import child_process from 'child_process';
import CancellationToken from 'cancellationtoken';
import Log from './Log';
import { IndiServerConfiguration, IndiServerState, IndiDeviceConfiguration } from './shared/BackOfficeStatus';
import * as SystemPromise from './SystemPromise';
import Timeout from './Timeout';
import { Task, createTask } from './Task';
import Sleep from './Sleep';
import * as Metrics from "./Metrics";
import * as Obj from './shared/Obj';
import { AppContext } from './ModuleBase';
const logger = Log.logger(__filename);
type IndiTodoItem = {
cmd: string;
notBefore: number|undefined;
start: ()=>void;
done: ()=>number;
}
// Ensure that indiserver is running.
// Restart as required.
export default class IndiServerStarter {
private currentConfiguration: IndiServerState;
private wantedConfiguration: IndiServerConfiguration;
private lifeCycle: Task<void>|null;
private context: AppContext;
private indiFifoError : number = 0;
private indiServerStartAttempt : number = 0;
private indiDriverStartAttempt : {[id:string]: number} = {};
private indiDriverStopAttempt : {[id:string]: number} = {};
constructor(wantedConfiguration: IndiServerConfiguration, context: AppContext) {
this.context = context;
// The actual status of indiserver
this.currentConfiguration = {
path: null,
libpath: null,
fifopath: null,
devices: {},
autorun: true,
restartList: [],
startDelay: {},
};
this.wantedConfiguration = wantedConfiguration;
this.lifeCycle = null;
if (this.wantedConfiguration.autorun) this.startLifeCycle();
}
public async metrics(): Promise<Array<Metrics.Definition>> {
const ret : Array<Metrics.Definition> = [];
ret.push({
name: 'indi_fifo_error_count',
type: "counter",
help: 'Number of communication error over indi server fifo',
value: this.indiFifoError
});
ret.push({
name: 'indi_server_start_attempt_count',
type: "counter",
help: 'Number of attempt to start indi server',
value: this.indiServerStartAttempt
});
for(const driver of Object.keys(this.indiDriverStartAttempt)) {
ret.push({
name: 'indi_driver_start_attempt_count',
type: "counter",
help: 'Number of attempt to start indi driver',
labels: {
driver
},
value: this.indiDriverStartAttempt[driver]
});
}
for(const driver of Object.keys(this.indiDriverStopAttempt)) {
ret.push({
name: 'indi_driver_stop_attempt_count',
type: "counter",
help: 'Number of attempt to stop indi driver',
labels: {
driver
},
value: this.indiDriverStopAttempt[driver]
});
}
return ret;
}
// check if a valid indiserver process exists
private findIndiServer= async (ct: CancellationToken, resetConf:boolean)=>{
const exists = await SystemPromise.PidOf(ct, 'indiserver');
if (resetConf) {
if (exists) {
this.currentConfiguration = {
...Obj.deepCopy(this.wantedConfiguration),
restartList: [],
startDelay: {},
};
logger.warn('Indiserver process found. Assuming it already has the right configuration.');
} else {
logger.info('Indiserver process not found.');
}
};
this.currentConfiguration.restartList = [];
return exists;
}
private startIndiServer=async (ct: CancellationToken)=>{
this.indiServerStartAttempt++;
this.currentConfiguration.fifopath = this.wantedConfiguration.fifopath;
this.currentConfiguration.path = this.wantedConfiguration.path;
const fifopath = this.actualFifoPath();
if (fifopath === null) {
throw new Error("Invalid indi fifo path");
}
const env = {... process.env};
if (this.currentConfiguration.path != null) {
env.PATH = this.currentConfiguration.path + ":" + env['PATH']
}
if (this.currentConfiguration.libpath) {
env.LD_LIBRARY_PATH= this.currentConfiguration.libpath + (env.LD_LIBRARY_PATH ? ":" + env.LD_LIBRARY_PATH : "")
}
if (await SystemPromise.Exec(ct, {command: ["rm", "-f", "--", fifopath]}) !== 0) {
throw new Error("rm failed");
}
if (await SystemPromise.Exec(ct, {command: ["mkfifo", "--", fifopath]}) !== 0) {
throw new Error("mkfifo failed");
}
logger.debug('Starting indiserver');
var child = child_process.spawn('indiserver', ['-v', '-f', fifopath], {
env: env,
detached: true,
stdio: ['ignore', process.stdout, process.stderr],
});
child.on('error', (err:any)=> {
logger.warn("Process indiserver error", err);
});
logger.info('Started indiserver', {pid: child.pid});
this.currentConfiguration.devices = {};
}
public restartDevice=async (ct:CancellationToken, dev:string)=>
{
if (this.currentConfiguration.restartList.indexOf(dev) != -1) {
return;
}
this.currentConfiguration.restartList.push(dev);
}
private actualFifoPath=()=>{
if (this.currentConfiguration.fifopath === null) {
return "/tmp/indiserverfifo";
}
return this.currentConfiguration.fifopath;
}
// Return a todo obj, or undefined
private calcToStartStop:()=>Array<IndiTodoItem>=()=>
{
function quote(arg: string)
{
// Silly encoding Should check for \n and "
return '"' + arg + '"';
}
function cmdFor(start:boolean, devName:string, details:IndiDeviceConfiguration)
{
var rslt = start ? "start " : "stop ";
rslt += details.driver;
if (start) {
rslt += " -n " + quote(devName);
if (details.config) rslt += " -c " + quote(details.config);
if (details.skeleton) rslt += " -s " + quote(details.skeleton);
if (details.prefix) rslt += " -p " + quote(details.prefix);
}
return rslt;
}
function compatible(before:IndiDeviceConfiguration, after:IndiDeviceConfiguration) {
// Same dev name. Check driver, params, ...
return true;
}
// Ensure all drivers are know of stats
for(const drvId of [...Object.keys(this.currentConfiguration.devices), ...Object.keys(this.wantedConfiguration.devices)]) {
if (!Object.prototype.hasOwnProperty.call(this.indiDriverStartAttempt, drvId)) {
this.indiDriverStartAttempt[drvId] = 0;
}
if (!Object.prototype.hasOwnProperty.call(this.indiDriverStopAttempt, drvId)) {
this.indiDriverStopAttempt[drvId] = 0;
}
}
const ret:Array<IndiTodoItem> = [];
// Stop what is not required anymore
for(const running of Object.keys(this.currentConfiguration.devices)) {
const restartId = this.currentConfiguration.restartList.indexOf(running);
if ((!Object.prototype.hasOwnProperty.call(this.wantedConfiguration.devices, running))
||(!compatible(this.currentConfiguration.devices[running], this.wantedConfiguration.devices[running]))
||(restartId !== - 1))
{
logger.info("About to stop driver", { id: running, state: this.currentConfiguration.devices});
ret.push({
notBefore: undefined,
start: ()=>{
if (restartId !== -1) {
this.currentConfiguration.restartList.splice(restartId, 1);
}
this.indiDriverStopAttempt[running] ++;
},
cmd: cmdFor(false, running, this.currentConfiguration.devices[running]),
done: ()=>{
delete this.currentConfiguration.devices[running];
// Don't restart too fast. Indi server sometime gets confused
this.currentConfiguration.startDelay[running] = Date.now() + 1000;
return 1;
}
});
}
}
if (ret.length) {
return ret;
}
// Start new requirements
for(const wanted of Object.keys(this.wantedConfiguration.devices)) {
if (!Object.prototype.hasOwnProperty.call(this.currentConfiguration.devices, wanted)) {
const details = Obj.deepCopy(this.wantedConfiguration.devices[wanted]);
logger.info("About to start driver", {id: wanted, state: this.currentConfiguration.devices});
ret.push({
notBefore: Obj.getOwnProp(this.currentConfiguration.startDelay, wanted),
start: ()=>{
this.indiDriverStartAttempt[wanted] ++;
},
cmd: cmdFor(true, wanted, details),
done: ()=>{
this.currentConfiguration.devices[wanted] = details;
return 1;
}
});
}
}
return ret;
}
private nextToStartStop:()=>IndiTodoItem|undefined=()=>{
function notBeforeSorter(a:IndiTodoItem, b:IndiTodoItem) {
if (a.notBefore === undefined) {
if (b.notBefore === undefined) {
return 0;
}
return -1;
}
if (b.notBefore === undefined) {
return 1;
}
if (a.notBefore < b.notBefore) {
return -1;
}
if (a.notBefore > b.notBefore) {
return 1;
}
return 0;
}
const candidates = this.calcToStartStop().sort(notBeforeSorter);
if (!candidates.length) {
return undefined;
}
return candidates[0];
}
// Build a promise that update or ping indiserver
// The promise generate 0 (was pinged), 1 (was updated), dead: indiserver unreachable
private async pushOneDriverChange(ct: CancellationToken)
{
let todo = this.nextToStartStop();
let delay: number = 0;
if (todo !== undefined) {
if (todo.notBefore !== undefined) {
delay = todo.notBefore - Date.now();
if (delay < 0) {
delay = 0;
}
if (delay >= 2000) {
todo = undefined;
}
}
}
if (delay > 0) {
await Sleep(ct, delay);
return;
}
if (todo === undefined) {
// Just ping, then
todo = {
notBefore: undefined,
start: ()=>{},
cmd: 'ping',
done: function() {
return 0;
}
}
} else {
logger.info('Indi: fifo order', {cmd: todo.cmd});
}
const fifopath = this.actualFifoPath();
function shellEscape(str:string)
{
return "'" + str.replace(/'/g, "'\"'\"'") + "'";
}
try {
if (fifopath === null) {
throw new Error("no fifopath set");
}
await Timeout(ct, async(ct:CancellationToken)=> {
todo!.start();
if (await SystemPromise.Exec(ct, {
command: ["/bin/bash", "-c" , "echo -E " + shellEscape(todo!.cmd) + ' > ' + shellEscape(fifopath)]
}) !== 0)
{
throw new Error("Fifo write failed");
}
todo!.done();
},
120000,
()=>{
const e = new Error(todo!.cmd === 'ping' ? 'Indi ping timedout' : 'Indi fifo command timedout');
(e as any).isFifoTimeout = true;
return e;
}
);
return todo!.cmd === 'ping' ? 0 : 1;
} catch(e) {
logger.error('IndiServer error', e);
if (!e.isFifoTimeout) {
this.currentConfiguration.devices = {};
} else {
logger.error('Assuming unchanged configuration', e);
}
this.indiFifoError++;
return 'dead';
}
}
// Start the lifecycle
// check if indiserver is running. If so, assume that the drivers are all started
// otherwise,
startLifeCycle=()=>{
createTask<void>(CancellationToken.CONTINUE, async (task:Task<void>)=> {
let ranSuccessfully = false;
let firstStart = true;
if (this.lifeCycle !== null) {
return;
}
this.lifeCycle = task;
try {
let status;
do {
const exists = await this.findIndiServer(task.cancellation, firstStart);
firstStart = false;
if (!exists) {
if (ranSuccessfully) {
logger.error('IndiServer stopped existing');
this.context.notification.error('Indiserver was stopped/crashed');
}
await this.startIndiServer(task.cancellation);
ranSuccessfully = false;
}
status = await this.pushOneDriverChange(task.cancellation);
if (status !== 'dead') {
ranSuccessfully = true;
}
if (status === 0 || status === 'dead') {
await Sleep(task.cancellation, 2000);
}
} while(this.wantedConfiguration.autorun);
} catch(error) {
logger.error('IndiServerStarter error', error);
} finally {
this.lifeCycle = null;
if (this.wantedConfiguration.autorun) {
setTimeout(this.startLifeCycle, 1000);
}
}
});
}
}