summaryrefslogtreecommitdiff
path: root/src/daemons/notes-stats.ts
blob: 136ccb60c2a1d93448a3b496b3e550ab34b09e81 (plain)
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
import * as childProcess from 'child_process';
import Xev from 'xev';

const ev = new Xev();

export default function() {
	const log: any[] = [];

	const p = childProcess.fork(__dirname + '/notes-stats-child.js');

	p.on('message', stats => {
		ev.emit('notesStats', stats);
		log.push(stats);
		if (log.length > 100) log.shift();
	});

	ev.on('requestNotesStatsLog', id => {
		ev.emit('notesStatsLog:' + id, log);
	});

	process.on('exit', code => {
		process.kill(p.pid);
	});

}