line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Config::Dot::Array; |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
# Pragmas. |
4
|
6
|
|
|
6
|
|
182457
|
use strict; |
|
6
|
|
|
|
|
21
|
|
|
6
|
|
|
|
|
191
|
|
5
|
6
|
|
|
6
|
|
58
|
use warnings; |
|
6
|
|
|
|
|
13
|
|
|
6
|
|
|
|
|
235
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
# Modules. |
8
|
6
|
|
|
6
|
|
5548
|
use Class::Utils qw(set_params); |
|
6
|
|
|
|
|
183141
|
|
|
6
|
|
|
|
|
131
|
|
9
|
6
|
|
|
6
|
|
4721
|
use Config::Utils qw(hash_array); |
|
6
|
|
|
|
|
4541
|
|
|
6
|
|
|
|
|
98
|
|
10
|
6
|
|
|
6
|
|
322
|
use English qw(-no_match_vars); |
|
6
|
|
|
|
|
13
|
|
|
6
|
|
|
|
|
38
|
|
11
|
6
|
|
|
6
|
|
2776
|
use Error::Pure qw(err); |
|
6
|
|
|
|
|
11
|
|
|
6
|
|
|
|
|
200
|
|
12
|
6
|
|
|
6
|
|
29
|
use Readonly; |
|
6
|
|
|
|
|
9
|
|
|
6
|
|
|
|
|
10426
|
|
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
# Constants. |
15
|
|
|
|
|
|
|
Readonly::Scalar my $EMPTY_STR => q{}; |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
# Version. |
18
|
|
|
|
|
|
|
our $VERSION = 0.05; |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
# Constructor. |
21
|
|
|
|
|
|
|
sub new { |
22
|
15
|
|
|
15
|
1
|
10224
|
my ($class, @params) = @_; |
23
|
15
|
|
|
|
|
29
|
my $self = bless {}, $class; |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
# Callback. |
26
|
15
|
|
|
|
|
50
|
$self->{'callback'} = undef; |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
# Config hash. |
29
|
15
|
|
|
|
|
34
|
$self->{'config'} = {}; |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
# Set conflicts detection as error. |
32
|
15
|
|
|
|
|
28
|
$self->{'set_conflicts'} = 1; |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
# Process params. |
35
|
15
|
|
|
|
|
58
|
set_params($self, @params); |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
# Check config hash. |
38
|
13
|
100
|
|
|
|
148
|
if (! $self->_check($self->{'config'})) { |
39
|
3
|
|
|
|
|
9
|
err 'Bad \'config\' parameter.'; |
40
|
|
|
|
|
|
|
} |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
# Check callback. |
43
|
10
|
100
|
100
|
|
|
57
|
if (defined $self->{'callback'} && ref $self->{'callback'} ne 'CODE') { |
44
|
1
|
|
|
|
|
4
|
err 'Parameter \'callback\' isn\'t code reference.'; |
45
|
|
|
|
|
|
|
} |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
# Count of lines. |
48
|
9
|
|
|
|
|
34
|
$self->{'count'} = 0; |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
# Stack. |
51
|
9
|
|
|
|
|
22
|
$self->{'stack'} = []; |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
# Object. |
54
|
9
|
|
|
|
|
27
|
return $self; |
55
|
|
|
|
|
|
|
} |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
# Parse text or array of texts. |
58
|
|
|
|
|
|
|
sub parse { |
59
|
5
|
|
|
5
|
1
|
32
|
my ($self, $string_or_array_ref) = @_; |
60
|
5
|
|
|
|
|
6
|
my @text; |
61
|
5
|
100
|
|
|
|
12
|
if (ref $string_or_array_ref eq 'ARRAY') { |
62
|
2
|
|
|
|
|
3
|
@text = @{$string_or_array_ref}; |
|
2
|
|
|
|
|
4
|
|
63
|
|
|
|
|
|
|
} else { |
64
|
3
|
|
|
|
|
26
|
@text = split m/$INPUT_RECORD_SEPARATOR/ms, |
65
|
|
|
|
|
|
|
$string_or_array_ref; |
66
|
|
|
|
|
|
|
} |
67
|
5
|
|
|
|
|
10
|
foreach my $line (@text) { |
68
|
12
|
|
|
|
|
17
|
$self->{'count'}++; |
69
|
12
|
|
|
|
|
25
|
$self->_parse($line); |
70
|
|
|
|
|
|
|
} |
71
|
4
|
|
|
|
|
28
|
return $self->{'config'}; |
72
|
|
|
|
|
|
|
} |
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
# Reset content. |
75
|
|
|
|
|
|
|
sub reset { |
76
|
4
|
|
|
4
|
1
|
4709
|
my $self = shift; |
77
|
4
|
|
|
|
|
10
|
$self->{'config'} = {}; |
78
|
4
|
|
|
|
|
9
|
$self->{'count'} = 0; |
79
|
4
|
|
|
|
|
22
|
return; |
80
|
|
|
|
|
|
|
} |
81
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
# Serialize. |
83
|
|
|
|
|
|
|
sub serialize { |
84
|
5
|
|
|
5
|
1
|
35
|
my $self = shift; |
85
|
5
|
|
|
|
|
19
|
return join "\n", $self->_serialize($self->{'config'}); |
86
|
|
|
|
|
|
|
} |
87
|
|
|
|
|
|
|
|
88
|
|
|
|
|
|
|
# Check structure. |
89
|
|
|
|
|
|
|
sub _check { |
90
|
21
|
|
|
21
|
|
30
|
my ($self, $config_ref) = @_; |
91
|
21
|
100
|
|
|
|
65
|
if (ref $config_ref eq 'HASH') { |
|
|
100
|
|
|
|
|
|
92
|
15
|
|
|
|
|
21
|
foreach my $key (sort keys %{$config_ref}) { |
|
15
|
|
|
|
|
54
|
|
93
|
10
|
100
|
100
|
|
|
52
|
if (ref $config_ref->{$key} ne '' |
94
|
|
|
|
|
|
|
&& ! $self->_check($config_ref->{$key})) { |
95
|
|
|
|
|
|
|
|
96
|
2
|
|
|
|
|
7
|
return 0; |
97
|
|
|
|
|
|
|
} |
98
|
|
|
|
|
|
|
} |
99
|
13
|
|
|
|
|
51
|
return 1; |
100
|
|
|
|
|
|
|
} elsif (ref $config_ref eq 'ARRAY') { |
101
|
3
|
|
|
|
|
5
|
foreach my $val (@{$config_ref}) { |
|
3
|
|
|
|
|
24
|
|
102
|
5
|
100
|
100
|
|
|
22
|
if (ref $val ne '' && ! $self->_check($val)) { |
103
|
1
|
|
|
|
|
5
|
return 0; |
104
|
|
|
|
|
|
|
} |
105
|
|
|
|
|
|
|
} |
106
|
2
|
|
|
|
|
9
|
return 1; |
107
|
|
|
|
|
|
|
} else { |
108
|
3
|
|
|
|
|
16
|
return 0; |
109
|
|
|
|
|
|
|
} |
110
|
|
|
|
|
|
|
} |
111
|
|
|
|
|
|
|
|
112
|
|
|
|
|
|
|
# Parse string. |
113
|
|
|
|
|
|
|
sub _parse { |
114
|
12
|
|
|
12
|
|
16
|
my ($self, $string) = @_; |
115
|
|
|
|
|
|
|
|
116
|
|
|
|
|
|
|
# Remove comments on single line. |
117
|
12
|
|
|
|
|
23
|
$string =~ s/^\s*#.*$//ms; |
118
|
|
|
|
|
|
|
|
119
|
|
|
|
|
|
|
# Blank space. |
120
|
12
|
100
|
|
|
|
36
|
if ($string =~ m/^\s*$/ms) { |
121
|
2
|
|
|
|
|
4
|
return 0; |
122
|
|
|
|
|
|
|
} |
123
|
|
|
|
|
|
|
|
124
|
|
|
|
|
|
|
# Split. |
125
|
10
|
|
|
|
|
24
|
my ($key, $val) = split m/=/ms, $string, 2; |
126
|
|
|
|
|
|
|
|
127
|
|
|
|
|
|
|
# Not a key. |
128
|
10
|
100
|
|
|
|
20
|
if (length $key < 1) { |
129
|
1
|
|
|
|
|
2
|
return 0; |
130
|
|
|
|
|
|
|
} |
131
|
|
|
|
|
|
|
|
132
|
|
|
|
|
|
|
# Bad key. |
133
|
9
|
100
|
|
|
|
29
|
if ($key !~ m/^[-\w\.:,]+\+?$/ms) { |
134
|
1
|
|
|
|
|
10
|
err "Bad key '$key' in string '$string' at line ". |
135
|
|
|
|
|
|
|
"'$self->{'count'}'."; |
136
|
|
|
|
|
|
|
} |
137
|
|
|
|
|
|
|
|
138
|
8
|
|
|
|
|
15
|
my @tmp = split m/\./ms, $key; |
139
|
8
|
|
|
|
|
24
|
hash_array($self, \@tmp, $val); |
140
|
|
|
|
|
|
|
|
141
|
|
|
|
|
|
|
# Ok. |
142
|
8
|
|
|
|
|
162
|
return 1; |
143
|
|
|
|
|
|
|
} |
144
|
|
|
|
|
|
|
|
145
|
|
|
|
|
|
|
# Serialize. |
146
|
|
|
|
|
|
|
sub _serialize { |
147
|
12
|
|
|
12
|
|
17
|
my ($self, $config_ref) = @_; |
148
|
12
|
100
|
|
|
|
32
|
if (ref $config_ref eq 'HASH') { |
|
|
100
|
|
|
|
|
|
149
|
6
|
|
|
|
|
7
|
my @ret; |
150
|
6
|
|
|
|
|
9
|
foreach my $key (sort keys %{$config_ref}) { |
|
6
|
|
|
|
|
16
|
|
151
|
|
|
|
|
|
|
my @subkey = $self->_serialize( |
152
|
5
|
|
|
|
|
33
|
$config_ref->{$key}); |
153
|
5
|
|
|
|
|
12
|
foreach my $subkey (@subkey) { |
154
|
6
|
100
|
|
|
|
24
|
if ($subkey !~ m/^=/ms) { |
155
|
1
|
|
|
|
|
2
|
$subkey = '.'.$subkey; |
156
|
|
|
|
|
|
|
} |
157
|
6
|
|
|
|
|
18
|
push @ret, $key.$subkey; |
158
|
|
|
|
|
|
|
} |
159
|
|
|
|
|
|
|
} |
160
|
6
|
|
|
|
|
38
|
return @ret; |
161
|
|
|
|
|
|
|
} elsif (ref $config_ref eq 'ARRAY') { |
162
|
1
|
|
|
|
|
2
|
my @ret; |
163
|
1
|
|
|
|
|
2
|
foreach my $val (@{$config_ref}) { |
|
1
|
|
|
|
|
2
|
|
164
|
2
|
|
|
|
|
5
|
push @ret, $self->_serialize($val); |
165
|
|
|
|
|
|
|
} |
166
|
1
|
|
|
|
|
3
|
return @ret; |
167
|
|
|
|
|
|
|
} else { |
168
|
5
|
|
|
|
|
14
|
return '='.$config_ref; |
169
|
|
|
|
|
|
|
} |
170
|
|
|
|
|
|
|
} |
171
|
|
|
|
|
|
|
|
172
|
|
|
|
|
|
|
1; |
173
|
|
|
|
|
|
|
|
174
|
|
|
|
|
|
|
__END__ |