Add option --configfile

This commit is contained in:
Peter J. Holzer 2016-04-21 17:17:33 +02:00
parent 8f8955978d
commit ba6b4c824e
1 changed files with 26 additions and 8 deletions

34
tsplotv
View File

@ -13,6 +13,9 @@ tsplotv
[--output-format format ] [--output-format format ]
[--stacked] [--stacked]
[--style style] [--style style]
[--time_t]
[--colors rgb-list]
[--configfile yaml]
[file ...] [file ...]
=head1 DESCRIPTION =head1 DESCRIPTION
@ -40,6 +43,7 @@ use strict;
use TimeSeries; use TimeSeries;
use Getopt::Long; use Getopt::Long;
use Pod::Usage; use Pod::Usage;
use YAML qw(LoadFile);
my $help; my $help;
my $legend_position = 'top right'; my $legend_position = 'top right';
@ -50,6 +54,7 @@ my $log_y = 0;
my $finalresolution; my $finalresolution;
my $time_t = 0; my $time_t = 0;
my $colors; my $colors;
my $configfile;
GetOptions('help|?' => \$help, GetOptions('help|?' => \$help,
'legend_position|legend-position=s' => \$legend_position, 'legend_position|legend-position=s' => \$legend_position,
@ -60,33 +65,46 @@ GetOptions('help|?' => \$help,
'finalresolution' => \$finalresolution, 'finalresolution' => \$finalresolution,
'time_t' => \$time_t, 'time_t' => \$time_t,
'colors=s' => \$colors, 'colors=s' => \$colors,
'configfile=s' => \$configfile,
) or pod2usage(2); ) or pod2usage(2);
pod2usage(1) if $help; pod2usage(1) if $help;
my $config = LoadFile($configfile) if $configfile;
binmode STDOUT, ':raw'; binmode STDOUT, ':raw';
my %series; my $ns = 0;
my $ns;
my %data; my %data;
my $ts = TimeSeries->new(output_format => $output_format); $config->{timeseries} //= {};
for (keys $config->{timeseries}) {
$ns = $config->{timeseries}{$_}{order} if ($config->{timeseries}{$_}{order} // 0) > $ns;
}
while (<>) { while (<>) {
chomp; chomp;
my ($timestamp, $series, $value) = split(/\t/); my ($timestamp, $series, $value) = split(/\t/);
$series{$series} = ++$ns unless ($series{$series}); $config->{timeseries}{$series}{order} = ++$ns unless ($config->{timeseries}{$series}{order});
$data{$timestamp}{$series} = $value; $data{$timestamp}{$series} = $value;
} }
my @series = sort { $series{$a} <=> $series{$b} } keys %series; my @series = sort { $config->{timeseries}{$a}{order} <=> $config->{timeseries}{$b}{order} }
keys $config->{timeseries};
if ($colors) {
my @colors = split(/,/, $colors);
while (my ($i, $c) = each(@colors)) {
$config->{timeseries}{$series[$i]}{color} = $c;
}
}
my $ts = TimeSeries->new(output_format => $output_format);
$ts->legend(@series); $ts->legend(@series);
$ts->legend_position($legend_position); $ts->legend_position($legend_position);
$ts->stacked($stacked); $ts->stacked($stacked);
$ts->style($style); $ts->style($style);
$ts->log_y($log_y); $ts->log_y($log_y);
$ts->finalresolution($finalresolution) if $finalresolution; $ts->finalresolution($finalresolution) if $finalresolution;
if ($colors) { $ts->colors(map $config->{timeseries}{$_}{color}, @series);
$ts->colors(split(/,/, $colors));
}
for my $timestamp (sort keys %data) { for my $timestamp (sort keys %data) {
my %d = %{$data{$timestamp}}; my %d = %{$data{$timestamp}};