-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathutil.js
47 lines (37 loc) · 1.16 KB
/
util.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
const AsyncObjects = require('./asyncobjects');
const Relations = require('./relations');
const fs = require('fs');
function read(file) {
let hbinfo = JSON.parse(fs.readFileSync(file));
return {
asyncObjects: new AsyncObjects(hbinfo.asyncObjects.objects),
relations: new Relations(hbinfo.relations.hb)
};
}
function stats({ asyncObjects, relations }) {
let statsret = {
asyncobjects: asyncObjects.objects.length,
relations: relations.hb.length,
callbacks: getAsyncObjectsWithCallback(asyncObjects.objects),
rules: statsByRule(relations.hb)
};
return statsret;
}
function statsByRule(relations) {
let map = new Map();
relations.forEach((r) => {
if(r.type.startsWith('promise-race-'))
r.type = 'promise-race';
if (!map.has(r.type))
map.set(r.type, 0);
map.set(r.type, map.get(r.type) + 1);
});
let response = {};
for (let [k, v] of map.entries())
response[k] = v;
return response;
}
function getAsyncObjectsWithCallback(asyncobjects) {
return asyncobjects.filter(o => o.callback).length;
}
module.exports = { read, stats }