cmd/tools/repeat.v: add a MVP of a command repeater/summarizer, simillar to hyperfine.

pull/6516/head
Delyan Angelov 2020-10-01 20:05:27 +03:00
parent ac384db71f
commit 04cd585183
1 changed files with 85 additions and 0 deletions

85
cmd/tools/repeat.v 100644
View File

@ -0,0 +1,85 @@
module main
import os
import flag
import time
import scripting
struct CmdResult {
mut:
runs int
outputs []string
timings []int
}
struct Context {
mut:
count int
show_help bool
show_result bool
verbose bool
commands []string
results []CmdResult
}
fn main(){
mut context := Context{}
mut fp := flag.new_flag_parser(os.args)
fp.application(os.file_name(os.executable()))
fp.version('0.0.1')
fp.description('Repeat command(s) and collect statistics. NB: you have to quote each command.')
fp.arguments_description('CMD1 CMD2 ...')
fp.skip_executable()
fp.limit_free_args_to_at_least(1)
context.count = fp.int('count', `c`, 10, 'Repetition count')
context.show_help = fp.bool('help', `h`, false, 'Show this help screen.')
context.verbose = fp.bool('verbose', `v`, false, 'Be more verbose.')
context.show_result = fp.bool('result', `r`, true, 'Show the result too.')
if context.show_help {
println(fp.usage())
exit(0)
}
if context.verbose {
scripting.set_verbose(true)
}
context.commands = fp.finalize() or {
eprintln('Error: ' + err)
exit(1)
}
//
if context.verbose {
eprintln('context: $context')
}
print('')
context.results = []CmdResult{ len: context.commands.len, init: CmdResult{} }
for icmd, cmd in context.commands {
mut runs := 0
mut duration := 0
mut sum := 0
mut oldres := ''
for i in 1..(context.count+1) {
avg := f64(sum)/f64(i)
print('\r average: ${avg:9.3f} ms | run: ${(i-1):4} | took ${duration:6} ms | cmd: ${cmd:-50s}')
if context.show_result {
print(' | result: ${oldres:-s}')
}
mut sw := time.new_stopwatch({})
res := os.exec(cmd) or {
eprintln('${i:10} failed runnning cmd: $cmd')
continue
}
duration = int(sw.elapsed().milliseconds())
if res.exit_code != 0 {
eprintln('${i:10} non 0 exit code for cmd: $cmd')
continue
}
context.results[icmd].outputs << res.output
context.results[icmd].timings << duration
sum += duration
runs++
oldres = res.output.replace('\n', ' ')
}
context.results[icmd].runs = runs
println('')
}
//println(context)
}