X-Git-Url: http://git.shiar.net/barcat.git/blobdiff_plain/aa8e46751feb68874573d2185f7d082387e8d4dc..a0573c74950b40df8b902c9af355ce476ebc7d47:/graph diff --git a/graph b/graph index 312effe..b41f0c0 100755 --- a/graph +++ b/graph @@ -1,7 +1,8 @@ #!/usr/bin/env perl use 5.014; use warnings; -use List::Util qw( max sum ); +use utf8; +use List::Util qw( min max sum ); use open qw( :std :utf8 ); our $VERSION = '1.00'; @@ -10,6 +11,7 @@ use Getopt::Long '2.33', qw( :config gnu_getopt ); sub podexit { require Pod::Usage; Pod::Usage::pod2usage(-exitval => 0, @_) } GetOptions(\my %opt, 'color|c!', + 'trim|length|l=i', 'markers|m=s', 'width|w=i', 'usage|h' => sub { podexit() }, @@ -22,11 +24,17 @@ my @lines = readline or exit; chomp for @lines; my @values = map { s/^\h* ( -? [0-9]* (?:\.[0-9]+)? )//x and $1 } @lines; my @order = sort { $b <=> $a } grep { length } @values; +if (defined $opt{trim}) { + my $trimpos = abs $opt{trim}; + $trimpos <= 1 ? ($_ = substr($_, 0, 1)) : + (length > $trimpos and substr($_, $trimpos - 1) = '…') for @lines; +} + my $maxval = $order[0]; my $minval = min $order[-1], 0; - my $lenval = max map { length } @order; -my $len = 1 + max map { length } @lines; # left padding +my $len = defined $opt{trim} && $opt{trim} <= 0 ? -$opt{trim} + 1 : + 1 + max map { length } @lines; # left padding my $size = ($maxval - $minval) && ($opt{width} - $lenval - $len) / ($maxval - $minval); # bar multiplication @@ -77,6 +85,16 @@ Each line starting with a number is given a bar to visualise relative sizes. Disable colored output of values and bar markers. +=item -l, --length=[-] + +Trim line contents (between number and bars) +to a maximum number of characters. +The exceeding part is replaced by an abbreviation sign, +unless C<--length=0>. + +Prepend a dash (i.e. make negative) to enforce padding +regardless of encountered contents. + =item -m, --markers= Statistical positions to indicate on bars.