/usr/share/perl5/Config/Model/Dumper.pm is in libconfig-model-perl 2.005-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 | #
# This file is part of Config-Model
#
# This software is Copyright (c) 2012 by Dominique Dumont, Krzysztof Tyszecki.
#
# This is free software, licensed under:
#
# The GNU Lesser General Public License, Version 2.1, February 1999
#
# Copyright (c) 2006-2010 Dominique Dumont.
#
# This file is part of Config-Model.
#
# Config-Model is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser Public License as
# published by the Free Software Foundation; either version 2.1 of
# the License, or (at your option) any later version.
#
# Config-Model is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser Public License for more details.
#
# You should have received a copy of the GNU Lesser Public License
# along with Config-Model; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
package Config::Model::Dumper;
{
$Config::Model::Dumper::VERSION = '2.005';
}
use Carp;
use strict;
use warnings ;
use Config::Model::Exception ;
use Config::Model::ObjTreeScanner ;
=head1 NAME
Config::Model::Dumper - Serialize data of config tree
=head1 VERSION
version 2.005
=head1 SYNOPSIS
use Config::Model ;
use Log::Log4perl qw(:easy) ;
Log::Log4perl->easy_init($WARN);
# define configuration tree object
my $model = Config::Model->new ;
$model ->create_config_class (
name => "MyClass",
element => [
[qw/foo bar/] => {
type => 'leaf',
value_type => 'string'
},
baz => {
type => 'hash',
index_type => 'string' ,
cargo => {
type => 'leaf',
value_type => 'string',
},
},
],
) ;
my $inst = $model->instance(root_class_name => 'MyClass' );
my $root = $inst->config_root ;
# put some data in config tree the hard way
$root->fetch_element('foo')->store('yada') ;
$root->fetch_element('bar')->store('bla bla') ;
$root->fetch_element('baz')->fetch_with_id('en')->store('hello') ;
# put more data the easy way
my $step = 'baz:fr=bonjour baz:hr="dobar dan"';
$root->load( step => $step ) ;
# dump only customized data
print $root->dump_tree;
=head1 DESCRIPTION
This module is used directly by L<Config::Model::Node> to serialize
configuration data in a compact (but readable) string.
The serialization can be done in standard mode where only customized
values are dumped in the string. I.e. only data modified by the user
are dumped.
The other mode is C<full_dump> mode where all all data, including
default values, are dumped.
The serialized string can be used by L<Config::Model::Walker> to store
the data back into a configuration tree.
Note that undefined values are skipped for list element. I.e. if a list
element contains C<('a',undef,'b')>, the dump will contain C<'a','b'>.
=head1 CONSTRUCTOR
=head2 new ( )
No parameter. The constructor should be used only by
L<Config::Model::Node>.
=cut
sub new {
bless {}, shift ;
}
sub quote {
my @res = @_ ;
foreach (@res) {
if ( defined $_ and ( /(\s|"|\*)/ or $_ eq '') ) {
s/"/\\"/g ; # escape present quotes
$_ = '"' . $_ . '"' ; # add my quotes
}
}
return wantarray ? @res : $res[0];
}
sub note_quote {
my @res = @_ ;
foreach (@res) {
if ( defined $_ and $_ and ( /(\s|"|\*)/ ) ) {
s/"/\\"/g ; # escape present quotes
$_ = '"' . $_ . '"' ; # add my quotes
}
}
return wantarray ? @res : $res[0];
}
=head1 Methods
=head2 dump_tree
Return a string that contains a dump of the object tree with all the
values. This string follows the convention defined by
L<Config::Model::Walker>.
The serialized string can be used by L<Config::Model::Walker> to store
the data back into a configuration tree.
Parameters are:
=over
=item mode ( full | preset | custom )
C<full> will dump all configuration data including default
values.
C<preset> will dump only value entered in preset mode.
By default, the dump contains only data modified by the user
(i.e. C<custom> data that differ from default or preset values).
=item node
Reference to the L<Config::Model::Node> object that is dumped. All
nodes and leaves attached to this node are also dumped.
=item skip_auto_write ( <backend_name> )
Skip node that have a write capability matching C<backend_name> in
their model. See L<Config::Model::AutoRead>.
=item auto_vivify
Scan and create data for nodes elements even if no actual data was
stored in them. This may be useful to trap missing mandatory values.
(default: 0)
=item experience ( ... )
Restrict dump to C<beginner> or C<intermediate> parameters. Default is
to dump all parameters (C<master> level)
=item check
Check value before dumping. Valid check are 'yes', 'no' and 'skip'.
=back
=cut
sub dump_tree {
my $self = shift;
my %args = @_;
my $full = delete $args{full_dump} || 0;
my $skip_aw = delete $args{skip_auto_write} || '' ;
my $auto_v = delete $args{auto_vivify} || 0 ;
my $mode = delete $args{mode} || '';
if ($mode and $mode !~ /full|preset|custom/) {
croak "dump_tree: unexpected 'mode' value: $mode";
}
my $check = delete $args{check} || 'yes' ;
if ($check !~ /yes|no|skip/) {
croak "dump_tree: unexpected 'check' value: $check";
}
# mode parameter is slightly different from fetch's mode
my $fetch_mode = $full ? ''
: $mode eq 'full' ? ''
: $mode ? $mode
: 'custom';
my $node = delete $args{node}
|| croak "dump_tree: missing 'node' parameter";
my $compute_pad = sub {
my $depth = 0 ;
my $obj = shift ;
while (defined $obj->parent) {
$depth ++ ;
$obj = $obj->parent ;
}
return ' ' x $depth;
};
my $leaf_cb = sub {
my ( $scanner, $data_r, $node, $element, $index, $value_obj ) = @_;
# get value or only customized value
my $value = quote($value_obj->fetch (mode => $fetch_mode, check => $check)) ;
$index = quote($index) ;
my $pad = $compute_pad->($node);
my $name = defined $index ? "$element:$index"
: $element;
# add annotation for obj contained in hash or list
my $note = note_quote($value_obj->annotation) ;
$$data_r .= "\n" . $pad . $name if defined $value or $note ;
$$data_r .= '=' . $value if defined $value ;
$$data_r .= '#' . $note if $note ;
};
my $check_list_cb = sub {
my ( $scanner, $data_r, $node, $element, $index, $value_obj ) = @_;
# get value or only customized value
my $value = $value_obj->fetch (mode => $fetch_mode, check => $check) ;
my $qvalue = quote($value) ;
$index = quote($index) ;
my $pad = $compute_pad->($node);
my $name = defined $index ? "$element:$index"
: $element;
# add annotation for obj contained in hash or list
my $note = note_quote($value_obj->annotation) ;
$$data_r .= "\n" . $pad . $name if $value or $note ;
$$data_r .= '=' . $qvalue if $value ;
$$data_r .= '#' . $note if $note ;
};
my $list_element_cb = sub {
my ( $scanner, $data_r, $node, $element, @keys ) = @_;
my $pad = $compute_pad->($node);
my $list_obj = $node->fetch_element($element) ;
# add annotation for list element
my $list_note = note_quote($list_obj->annotation) ;
$$data_r .= "\n$pad$element#$list_note" if $list_note ;
if ( $list_obj->cargo_type eq 'node' ) {
foreach my $k ( @keys ) {
$scanner->scan_list( $data_r, $node, $element, $k );
}
}
else {
# write value comments
foreach my $idx ($list_obj->get_all_indexes) {
my $note = $list_obj->fetch_with_id($idx)->annotation ;
$$data_r .= "\n$pad$element:$idx#".note_quote($note) if $note ;
}
# skip undef values
my @val = quote( grep (defined $_,
$list_obj->fetch_all_values(mode => $fetch_mode,
check => $check))) ;
$$data_r .= "\n$pad$element=" . join( ',', @val ) if @val;
}
};
my $hash_element_cb = sub {
my ( $scanner, $data_r, $node, $element, @keys ) = @_;
my $pad = $compute_pad->($node);
my $hash_obj = $node->fetch_element($element) ;
# add annotation for list or hash element
my $note = note_quote($hash_obj->annotation) ;
$$data_r .= "\n$pad$element#$note" if $note ;
# resume exploration
map {
$scanner->scan_hash($data_r,$node,$element,$_);
} @keys ;
};
# called for nodes contained in nodes (not root).
# This node can be held by a plain element or a hash element or a list element
my $node_element_cb = sub {
my ( $scanner, $data_r, $node, $element, $key, $contained_node ) = @_;
my $type = $node -> element_type($element);
return if $skip_aw and $contained_node->is_auto_write_for_type($skip_aw) ;
my $pad = $compute_pad->($node);
my $elt = $node->fetch_element($element);
# load string can feature only one comment per element_type
# ie foo#comment foo:bar#comment foo:bar=val#comment are fine
# but foo#comment:bar if not valid -> foo#commaent foo:bar
my $head = "\n$pad$element";
my $node_note = note_quote($contained_node->annotation) ;
if ($type eq 'list' or $type eq 'hash') {
$head .= ':'.quote($key) ;
$head .= '#'.$node_note if $node_note ;
my $sub_data = '';
$scanner->scan_node(\$sub_data, $contained_node);
$$data_r .= $head.$sub_data.' -';
}
else {
$head .= '#'.$node_note if $node_note ;
my $sub_data = '';
$scanner->scan_node(\$sub_data, $contained_node);
# skip simple nodes that do not bring data
$$data_r .= $head.$sub_data.' -' if $sub_data;
}
};
my @scan_args = (
experience => delete $args{experience} || 'master',
fallback => 'all',
auto_vivify => $auto_v,
list_element_cb => $list_element_cb,
hash_element_cb => $hash_element_cb,
leaf_cb => $leaf_cb,
node_element_cb => $node_element_cb,
check_list_element_cb => $check_list_cb,
check => $check,
);
my @left = keys %args;
croak "Dumper: unknown parameter:@left" if @left;
# perform the scan
my $view_scanner = Config::Model::ObjTreeScanner->new(@scan_args);
my $ret = '';
my $root_note = note_quote($node->annotation) ;
$ret .="\n#$root_note" if $root_note ;
$view_scanner->scan_node(\$ret, $node);
substr( $ret, 0, 1, '' ); # remove leading \n
$ret .= ' -' if $ret ;
return $ret . "\n";
}
1;
=head1 AUTHOR
Dominique Dumont, (ddumont at cpan dot org)
=head1 SEE ALSO
L<Config::Model>,L<Config::Model::Node>,L<Config::Model::Walker>
|