File Coverage

blib/lib/Gnuplot/Builder/Template.pm
Criterion Covered Total %
statement 25 25 100.0
branch 2 2 100.0
condition n/a
subroutine 9 9 100.0
pod 2 2 100.0
total 38 38 100.0


line stmt bran cond sub pod time code
1             package Gnuplot::Builder::Template;
2 3     3   49943 use strict;
  3         7  
  3         79  
3 3     3   16 use warnings;
  3         5  
  3         98  
4 3     3   14 use Exporter 5.57 qw(import);
  3         50  
  3         84  
5 3     3   13 use Carp;
  3         7  
  3         173  
6 3     3   1602 use Gnuplot::Builder::JoinDict;
  3         6  
  3         1871  
7              
8             our @EXPORT_OK = qw(gusing gevery);
9              
10             sub _create_hyphen_validator {
11 6     6   12 my ($allowed_keys_arrayref) = @_;
12 6         11 my %allowed_keys = map { $_ => 1 } @$allowed_keys_arrayref;
  144         345  
13             return sub {
14 121     121   162 my ($dict) = @_;
15 121         317 foreach my $hyphen_key (grep { substr($_, 0, 1) eq "-" } $dict->get_all_keys) {
  4300         7753  
16 4294 100       9370 croak "Unknown key: $hyphen_key" if !$allowed_keys{$hyphen_key};
17             }
18 6         65 };
19             }
20              
21             our $USING;
22              
23             {
24             my @using_keys = grep { substr($_, 0, 1) eq "-" }
25             qw(
26             USE CASES | KEYS
27             ================+==============================================
28             | -x -y
29             filledcurves | -y1 -y2
30             | -z
31             polar | -t
32             image | -value
33             smooth kdensity | -weight -bandwidth
34             rgbalpha | -r -g -b -a
35             labels | -string -label
36             vectors | -xdelta -ydelta -zdelta
37             xerrorbars | -xlow -xhigh
38             yerrorbars | -ylow -yhigh
39             financebars | -date -open -low -high -close
40             candlesticks | -box_min -whisker_min -whisker_high -box_high
41             boxes | -x_width
42             boxplot | -boxplot_factor
43             circles | -radius -start_angle -end_angle
44             ellipses | -major_diam -minor_diam -angle
45             variable style | -pointsize -arrowstyle -linecolor
46             );
47            
48             $USING = Gnuplot::Builder::JoinDict->new(
49             separator => ":",
50             content => [map { $_ => undef } @using_keys],
51             validator => _create_hyphen_validator(\@using_keys),
52             );
53             }
54              
55             our $EVERY;
56              
57             {
58             my @every_keys =
59             qw(
60             -point_incr
61             -block_incr
62             -start_point
63             -start_block
64             -end_point
65             -end_block
66             );
67             $EVERY = Gnuplot::Builder::JoinDict->new(
68             separator => ":",
69             content => [$every_keys[0] => 1, map { $_ => undef } @every_keys[1 .. $#every_keys]],
70             validator => _create_hyphen_validator(\@every_keys),
71             filter => sub {
72             my ($dict) = @_;
73             my @values = $dict->get_all_values;
74             my ($first_def_index, $last_def_index);
75             foreach my $front_i (0 .. $#values) {
76             my $rear_i = $#values - $front_i;
77             if(!defined($first_def_index) && defined($values[$front_i])) {
78             $first_def_index = $front_i;
79             }
80             if(!defined($last_def_index) && defined($values[$rear_i])) {
81             $last_def_index = $rear_i;
82             }
83             if(defined($first_def_index) && defined($last_def_index)) {
84             last;
85             }
86             }
87             return () if !defined($first_def_index) || !defined($last_def_index);
88             return map {
89             defined($_) ? $_ : ""
90             } @values[$first_def_index .. $last_def_index];
91             }
92             );
93             }
94              
95             sub gusing {
96 96     96 1 35842 return $USING->set(@_);
97             }
98              
99             sub gevery {
100 18     18 1 6272 return $EVERY->set(@_);
101             }
102              
103             1;
104             __END__