-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
109 lines (89 loc) · 2.46 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
const through = require('through2')
const parser = require('@clinic/trace-events-parser')
const multistream = require('multistream')
const pump = require('pump')
const fs = require('fs')
const path = require('path')
module.exports = nodeTraceJoin
function nodeTraceJoin (pattern, output, cb) {
if (!cb) cb = noop
if (Array.isArray(pattern)) return combine(pattern)
const dir = path.dirname(pattern)
const filePattern = path.basename(pattern).split('*')
fs.readdir(dir, function (err, files) {
if (err) return cb(err)
files = files.filter(filterPattern).sort(sort).map(file => path.join(dir, file))
combine(files)
})
function combine (files) {
if (!files.length) return cb(notFound('No files matching the pattern found'))
if (files.length === 1) return fs.rename(files[0], output, cb)
pump(
multistream.obj(files.map(parse)),
stringify(),
fs.createWriteStream(output),
onunlink
)
function onunlink (err) {
if (err) return cb(err)
var missing = files.length
var error = null
for (var i = 0; i < files.length; i++) fs.unlink(files[i], done)
function done (err) {
if (err && err.code !== 'ENOENT') error = err
if (--missing) return
cb(error)
}
}
}
function filterPattern (file) {
var offset = 0
for (var i = 0; i < filePattern.length; i++) {
const next = file.indexOf(filePattern[i], offset)
if (next === -1) return false
offset = next + filePattern[i].length
}
if (filePattern[filePattern.length - 1]) {
if (offset !== file.length) return false
}
return true
}
}
function notFound (msg) {
const err = new Error(msg)
err.code = 'ENOENT'
err.status = 404
err.notFound = true
return err
}
function index (n) {
const m = n.match(/node_trace\.(\d+)\.log/)
if (m) return Number(m[1])
return 0
}
function sort (a, b) {
const ai = index(a)
const bi = index(b)
if (ai && bi) return ai - bi
if (a === b) return 0
return a < b ? -1 : 1
}
function stringify () {
var sep = false
const s = through({writableObjectMode: true, readableObjectMode: false}, write, flush)
s.push('{"traceEvents":[')
return s
function write (data, enc, cb) {
const s = sep ? ',' : ''
sep = true
cb(null, s + JSON.stringify(data))
}
function flush (cb) {
this.push(']}')
cb(null)
}
}
function parse (filename) {
return pump(fs.createReadStream(filename), parser())
}
function noop () {}