File Coverage

blib/lib/Chart/Gnuplot/Util.pm
Criterion Covered Total %
statement 42 55 76.3
branch 19 44 43.1
condition 0 6 0.0
subroutine 8 9 88.8
pod n/a
total 69 114 60.5


line stmt bran cond sub pod time code
1             package Chart::Gnuplot::Util;
2 21     21   125 use strict;
  21         40  
  21         850  
3 21     21   112 use vars qw(@ISA @EXPORT_OK);
  21         47  
  21         1398  
4 21     21   114 use Exporter;
  21         37  
  21         30459  
5              
6             @ISA = qw(Exporter);
7             @EXPORT_OK = qw(_lineType _pointType _borderCode _fillStyle _copy);
8              
9             # Convert named line type to indexed line type of gnuplot
10             #
11             # XXX
12             # Assuming postscript terminal is used
13             # This may subjected to change when postscript/gnuplot changes its convention
14             sub _lineType
15             {
16 7     7   11 my ($type) = @_;
17 7 100       55 return($type) if ($type =~ /^\d+$/);
18              
19             # Indexed line type of postscript terminal of gnuplot
20 1         11 my %type = (
21             solid => 1,
22             longdash => 2,
23             dash => 3,
24             dot => 4,
25             'dot-longdash' => 5,
26             'dot-dash' => 6,
27             '2dash' => 7,
28             '2dot-dash' => 8,
29             '4dash' => 9,
30             );
31 1         7 return($type{$type});
32             }
33              
34              
35             # Convert named line type to indexed line type of gnuplot
36             #
37             # XXX
38             # Assuming postscript terminal is used
39             # This may subjected to change when postscript/gnuplot changes its convention
40             sub _pointType
41             {
42 4     4   8 my ($type) = @_;
43 4 100       26 return($type) if ($type =~ /^\d+$/);
44              
45             # Indexed line type of postscript terminal of gnuplot
46 2         51 my %type = (
47             dot => 0,
48             plus => 1,
49             cross => 2,
50             star => 3,
51             'dot-square' => 4,
52             'dot-circle' => 6,
53             'dot-triangle' => 8,
54             'dot-diamond' => 12,
55             'dot-pentagon' => 14,
56             'fill-square' => 5,
57             'fill-circle' => 7,
58             'fill-triangle' => 9,
59             'fill-diamond' => 13,
60             'fill-pentagon' => 15,
61             square => 64,
62             circle => 65,
63             triangle => 66,
64             diamond => 68,
65             pentagon => 69,
66             'opaque-square' => 70,
67             'opaque-circle' => 71,
68             'opaque-triangle' => 72,
69             'opaque-diamond' => 74,
70             'opaque-pentagon' => 75,
71             );
72 2         20 return($type{$type});
73             }
74              
75              
76             # Encode the border name
77             # - Used by setting graph border display
78             sub _borderCode
79             {
80 1     1   3 my ($side) = @_;
81 1 50       6 return($side) if ($side =~ /^\d+$/);
82              
83 1         2 my $code = 0;
84 1 50       10 $code += 1 if ($side =~ /(^|,)\s*(1|bottom|bottom left front)\s*(,|$)/);
85 1 50       6 $code += 2 if ($side =~ /(^|,)\s*(2|left|bottom left back)\s*(,|$)/);
86 1 50       10 $code += 4 if ($side =~ /(^|,)\s*(4|top|bottom right front)\s*(,|$)/);
87 1 50       8 $code += 8 if ($side =~ /(^|,)\s*(8|right|bottom right back)\s*(,|$)/);
88 1 50       7 $code += 16 if ($side =~ /(^|,)\s*(16|left vertical)\s*(,|$)/);
89 1 50       7 $code += 32 if ($side =~ /(^|,)\s*(32|back vertical)\s*(,|$)/);
90 1 50       7 $code += 64 if ($side =~ /(^|,)\s*(64|right vertical)\s*(,|$)/);
91 1 50       7 $code += 128 if ($side =~ /(^|,)\s*(128|front vertical)\s*(,|$)/);
92 1 50       7 $code += 256 if ($side =~ /(^|,)\s*(256|top left back)\s*(,|$)/);
93 1 50       6 $code += 512 if ($side =~ /(^|,)\s*(512|top right back)\s*(,|$)/);
94 1 50       7 $code += 1024 if ($side =~ /(^|,)\s*(1024|top left front)\s*(,|$)/);
95 1 50       7 $code += 2048 if ($side =~ /(^|,)\s*(2048|top right front)\s*(,|$)/);
96 1         4 return($code);
97             }
98              
99              
100             # Generate box filling style string
101             # - called by _thaw() and _setObjOpt()
102             sub _fillStyle
103             {
104 0     0   0 my ($fill) = @_;
105              
106 0 0       0 if (ref($fill) eq 'HASH')
107             {
108 0         0 my $style = "";
109 0 0       0 if (defined $$fill{pattern})
110             {
111 0 0 0     0 $style .= " transparent" if (defined $$fill{alpha} &&
112             $$fill{alpha} == 0);
113 0         0 $style .= " pattern $$fill{pattern}";
114             }
115             else
116             {
117 0 0       0 if (defined $$fill{alpha})
    0          
118             {
119 0         0 $style .= " transparent solid $$fill{alpha}";
120             }
121             elsif (defined $$fill{density})
122             {
123 0         0 $style .= " solid $$fill{density}";
124             }
125             else
126             {
127 0         0 $style .= " solid 1";
128             }
129             }
130              
131 0 0 0     0 $style .= " noborder" if (defined $$fill{border} &&
132             $$fill{border} =~ /^(off|no)$/);
133 0         0 return($style);
134             }
135              
136 0         0 return(" $fill");
137             }
138              
139              
140             # Copy object using dclone() of Storable
141             sub _copy
142             {
143 4     4   8 my ($obj, $num) = @_;
144 21     21   39014 use Storable;
  21         105353  
  21         4177  
145              
146 4         6 my @clones = ();
147 4 100       12 $num = 1 if (!defined $num);
148              
149 4         11 for (my $i = 0; $i < $num; $i++)
150             {
151 8         591 push(@clones, Storable::dclone($obj));
152             }
153 4         17 return(@clones);
154             }
155              
156              
157             1;
158              
159             __END__