X-Git-Url: http://git.shiar.nl/barcat.git/blobdiff_plain/cbf018815e12a627e8331a85088671e2c7eca0c5..6feb4b288f8fa9711ee580fe65562abef976a842:/graph diff --git a/graph b/graph index cb8a406..14b7173 100755 --- a/graph +++ b/graph @@ -5,20 +5,31 @@ use utf8; use List::Util qw( min max sum ); use open qw( :std :utf8 ); -our $VERSION = '1.01'; +our $VERSION = '1.02'; use Getopt::Long '2.33', qw( :config gnu_getopt ); sub podexit { require Pod::Usage; Pod::Usage::pod2usage(-exitval => 0, @_) } GetOptions(\my %opt, 'color|c!', + 'follow|f:i', 'trim|length|l=i', 'markers|m=s', 'width|w=i', 'usage|h' => sub { podexit() }, 'help' => sub { podexit(-verbose => 2) }, ) or exit 64; # EX_USAGE + $opt{width} ||= $ENV{COLUMNS} || 80; -$opt{color} //= 1; +$opt{color} //= -t *STDOUT; # enable on tty + +if (defined $opt{follow}) { + $opt{follow} ||= 1; + $SIG{ALRM} = sub { + show_lines(); + alarm $opt{follow}; + }; + alarm $opt{follow}; +} my (@lines, @values); while (readline) { @@ -37,6 +48,8 @@ while (readline) { } @lines or exit; +sub show_lines { + my @order = sort { $b <=> $a } grep { length } @values; my $maxval = $order[0]; my $minval = min $order[-1], 0; @@ -48,7 +61,7 @@ my $size = ($maxval - $minval) && my @barmark; if ($opt{markers} // 1 and $size > 0) { - sub orderpos { (($order[$_[0]] + $order[$_[0] + .5]) / 2 - $minval) * $size } + my sub orderpos { (($order[$_[0]] + $order[$_[0] + .5]) / 2 - $minval) * $size } $barmark[ (sum(@order) / @order - $minval) * $size ] = '='; # average $barmark[ orderpos($#order * .31731) ] = '>'; $barmark[ orderpos($#order * .68269) ] = '<'; @@ -57,7 +70,8 @@ if ($opt{markers} // 1 and $size > 0) { defined and $opt{color} and $_ = "\e[36m$_\e[0m" for @barmark; } -for my $nr (0 .. $#lines) { +state $nr = 0; +while ($nr <= $#lines) { my $val = $values[$nr]; if (length $val) { my $color = !$opt{color} ? 0 : @@ -71,7 +85,11 @@ for my $nr (0 .. $#lines) { printf '%-*s', $len, $lines[$nr]; print $barmark[$_] // '-' for 1 .. $size && (($val || 0) - $minval) * $size; say ''; + $nr++; +} + } +show_lines(); __END__ @@ -91,9 +109,15 @@ Each line starting with a number is given a bar to visualise relative sizes. =over -=item --no-color +=item -c, --[no-]color -Disable colored output of values and bar markers. +Force colored output of values and bar markers. +Defaults on if output is a tty, +disabled otherwise such as when piped or redirected. + +=item -f, --follow[=] + +Interval to output partial progress. =item -l, --length=[-] @@ -182,6 +206,11 @@ Or the most frequent authors: git shortlog -sn | graph | head -3 +Latency history: + + ping google.com | + perl -pe '$|=1; print s/ time=(.*)// ? "$1 for " : "> "' | graph -f + =head1 AUTHOR Mischa POSLAWSKY