-
Notifications
You must be signed in to change notification settings - Fork 2
/
emitter.js
111 lines (90 loc) · 1.94 KB
/
emitter.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
const program = require('commander')
let customLabel = ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat']
let position = 0
program.version('0.0.1')
.option('-f, --jsonDataField <jsonDataField>', 'json data field', 'data')
.option('-c, --customLabel', 'output custom labels')
program.command('json')
.action(() => {
let count = 1
setInterval(() => {
let row = `{ "${program.jsonDataField}": ["${next()}", "${next()}", "foo"]`
if (program.customLabel) {
row += `, "label": "${getCustomLabel()}"`
}
row += '}'
console.error(`emitter: ${row}`)
console.log(row)
}, 1000)
function next() {
if (Math.random() > 0.5) {
return count++
} else {
return count--
}
}
})
program.command('singlecsv')
.action(() => {
let count = 1
setInterval(() => {
console.log(`${next()}`)
}, 1000)
function next() {
if (Math.random() > 0.5) {
return count++
} else {
return count--
}
}
})
program.command('csv')
.action(() => {
let count = 1
setInterval(() => {
let row = `${next()},${next()},${next()},${next()}`
if (program.customLabel) {
row = `${getCustomLabel()}, ${row}`
}
console.error(`emitter: ${row}`)
console.log(row)
}, 1000)
function next() {
if (Math.random() > 0.5) {
return count++
} else {
return count--
}
}
})
program.command('high-variability')
.action(() => {
let count = 1
let countHigh = 1
setInterval(() => {
let row = `${next()},${nextHigh()},${next()}`
console.error(`emitter: ${row}`)
console.log(row)
}, 1000)
function next() {
if (Math.random() > 0.5) {
return count += 99
} else {
return count -= 99
}
}
function nextHigh() {
if (Math.random() > 0.5) {
return countHigh += 1000
} else {
return countHigh -= 1000
}
}
})
program.parse(process.argv)
function getCustomLabel() {
if (position === customLabel.length) {
position = 0
}
return customLabel[position++]
}