-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathindex.js
62 lines (52 loc) · 1.45 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
const nconf = require('nconf')
const path = require('path')
const program = require('commander')
const protoLoader = require('@grpc/proto-loader')
const grpc = require('@grpc/grpc-js')
const ProgressBar = require('progress')
const fs = require('fs')
nconf
.argv()
.env()
.file({ file: path.join(__dirname, 'config.json') })
const grpc_config = nconf.get('gRPC')
function printReport(report, outputPath) {
fs.writeFileSync(outputPath, report.csv)
console.log(`Wrote results to ${outputPath}.`)
}
program.command('run [output-path]').action((outputPath) => {
const PROTO_PATH = path.join(
__dirname,
'../risk-management-server/riskmanagement.proto'
)
const packageDefinition = protoLoader.loadSync(PROTO_PATH)
const proto = grpc.loadPackageDefinition(packageDefinition).riskmanagement
const client = new proto.RiskManagement(
`${grpc_config.host}:${grpc_config.port}`,
grpc.credentials.createInsecure()
)
const bar = new ProgressBar('Processing: [:bar] :percent', {
total: 100,
width: 50,
clear: false,
})
const call = client.trigger({})
call.on('data', (reply) => {
if (reply.progress != undefined) {
bar.tick()
} else {
if (outputPath) {
printReport(reply.report, outputPath)
} else {
console.log(reply.report.csv)
}
process.exit()
}
})
call.on('end', () => {})
})
if (process.argv.length <= 2) {
program.help()
} else {
program.parse(process.argv)
}