/usr/share/perl5/Config/Model/Backend/Augeas.pm is in libconfig-model-backend-augeas-perl 0.110-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 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 | # Copyright (c) 2008-2011 Dominique Dumont.
#
# This file is part of Config-Model-Backend-Augeas.
#
# 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::Backend::Augeas ;
use Any::Moose ;
use Carp ;
use Log::Log4perl qw(get_logger :levels);
extends 'Config::Model::Backend::Any';
use Config::Model::Exception ;
use File::Path;
use Log::Log4perl qw(get_logger :levels);
my $has_augeas = 1;
eval { require Config::Augeas ;} ;
$has_augeas = 0 if $@ ;
our $VERSION = '0.110';
my $logger = get_logger('Backend::Augeas') ;
sub suffix { return '';}
=head1 NAME
Config::Model::Backend::Augeas - Read and write config data through Augeas
=head1 SYNOPSIS
# model specification with augeas backend
{
config_class_name => 'OpenSsh::Sshd',
# try Augeas and fall-back with custom method
read_config => [ { backend => 'augeas' ,
file => '/etc/ssh/sshd_config',
# declare "seq" Augeas elements
sequential_lens => [/AcceptEnv AllowGroups [etc]/],
},
{ backend => 'custom' , # dir hardcoded in custom class
class => 'Config::Model::Sshd'
}
],
# write_config will be written using read_config specifications
element => ...
}
=head1 DESCRIPTION
This class provides a way to load or store configuration data through
L<Config::Augeas>. This way, the structure and commments of the
original configuration file will preserved.
To use Augeas as a backend, you must specify the following
C<read_config> parameters:
=over
=item backend
Use C<augeas> (or C<Augeas>)in this case.
=item save
Either C<backup> or C<newfile>. See L<Config::Augeas/Constructor> for
details.
=item file
Name of the configuration file.
=item sequential_lens
This one is tricky. Set to one when new Augeas list or hash node must
be created for each new list or hash element. See L</Sequential lens>
for details.
=back
For instance:
read_config => [ { backend => 'augeas' ,
save => 'backup',
file => '/etc/ssh/sshd_config',
# declare "seq" Augeas elements
sequential_lens => [/AcceptEnv AllowGroups/],
},
],
=head2 Sequential lens
Some configuration files feature data that must be written as list or
as hash. Depending on the syntax, Augeas list or hash lenses can be
written so that new "container" nodes are required for each new element.
For instance, C<HostKey> lines can be repeated several times in
C<sshd_config>. Since Augeas must keep track of these several lines,
Augeas tree will be written like:
/files/etc/ssh/sshd_config/HostKey[1]
/files/etc/ssh/sshd_config/HostKey[2]
/files/etc/ssh/sshd_config/HostKey[3]
and not:
/files/etc/ssh/sshd_config/HostKey/1
/files/etc/ssh/sshd_config/HostKey/2
/files/etc/ssh/sshd_config/HostKey/3
The C<HostKey> node is created several times. A new hostkey must be
added with the following syntax:
/files/etc/ssh/sshd_config/HostKey[4]
and not:
/files/etc/ssh/sshd_config/HostKey/4
So the C<HostKey> lens is sequential.
The situation is more complex when syntax allow repeated values on
several lines. Like:
AcceptEnv LC_PAPER LC_NAME LC_ADDRESS
AcceptEnv LC_IDENTIFICATION LC_ALL
Augeas will have this tree:
/files/etc/ssh/sshd_config/AcceptEnv[1]/1
/files/etc/ssh/sshd_config/AcceptEnv[1]/2
/files/etc/ssh/sshd_config/AcceptEnv[1]/3
/files/etc/ssh/sshd_config/AcceptEnv[2]/4
/files/etc/ssh/sshd_config/AcceptEnv[2]/5
Note that the first index between squarekeeps track of how are grouped
the C<AcceptEnv> data, but the I<real> list index is after the slash.
Augeas does not require new elements to create C<AcceptEnv[3]>. A new
element can be added as :
/files/etc/ssh/sshd_config/AcceptEnv[2]/6
So this lens is not sequential.
The same kind of trouble occurs with hash elements. Some hashes tree
are like:
/files/etc/foo/my_hash/my_key1
/files/etc/foo/my_hash/my_key2
Others are like:
/files/etc/foo/my_hash[1]/my_key1
/files/etc/foo/my_hash[2]/my_key2
Note that a list-like index is used with the hash key.
This also depends on the syntax of the configuration file. For
instance, C<Subsystem> in C<sshd_config> can be :
Subsystem sftp /usr/lib/openssh/sftp-server
Subsystem fooftp /usr/lib/openssh/fooftp-server
Subsystem barftp /usr/lib/openssh/barftp-server
This (unvalid) sshd configuration is represented by:
/files/etc/ssh/sshd_config/Subsystem[1]/sftp
/files/etc/ssh/sshd_config/Subsystem[2]/fooftp
/files/etc/ssh/sshd_config/Subsystem[3]/barftp
Any new Subsystem must be added with:
/files/etc/ssh/sshd_config/Subsystem[4]/bazftp
In this case, the hash is also sequential.
For these examples, the augeas backend declaration must feature:
sequential_lens => [qw/HostKey Subsystem/],
=head2 Augeas backend limitation
The structure and element names of the Config::Model tree must match
the structure defined in Augeas lenses. I.e. the order of the element
declared in Config::Model must match the order required by Augeas
lenses.
Sometimes, the structure of a file loaded by Augeas starts directly
with a list of items. For instance C</etc/hosts> structure starts with
a list of lines that specify hosts and IP addresses. The C<set_in>
parameter specifies an element name in Config::Model root class that
will hold the configuration data retrieved by Augeas.
=cut
# for tests only
sub _augeas_object {return shift->{augeas_obj} ; } ;
sub read
{
my $self = shift;
my %args = @_ ; # contains root and config_dir
return 0 unless $has_augeas ;
$self->{augeas_obj} ||= Config::Augeas->new(root => $args{root},
save => $args{save} ) ;
if (defined $args{config_file}) {
warn "Augeas::read : deprecated config_file parameter, use file instead\n";
$args{file}||= delete $args{config_file} ;
}
foreach my $param (qw/config_dir file/) {
if (not defined $args{$param}) {
Config::Model::Exception::Model -> throw
(
error=> "read_augeas error: model "
. "does not specify '$param' for Augeas ",
object => $self->{node}
) ;
}
}
my $cdir = $args{root}.$args{config_dir} ;
$logger->info( "Read config data through Augeas in directory '$cdir' ".
"file $args{file}");
my $mainpath = '/files'.$args{config_dir}.$args{file} ;
my @result = $self->augeas_deep_match($mainpath) ;
my @cm_path = @result ;
# cleanup resulting path to remove Augeas '/files', remove the
# file path and plug the remaining path where it is consistent in
# the model. I.e if the file "root" matches a list element (like
# for /etc/hosts), get this element name from "set_in" parameter
my $set_in = $args{set_in} || '';
map {
s!$mainpath!! ;
$_ = "/$set_in/$_" if $set_in;
s!/+!/!g;
} @cm_path ;
# Create a hash of sequential lenses
my %is_seq_lens = map { ( $_ => 1 ) ;} @{$args{sequential_lens} || []} ;
my $augeas_obj = $self->{augeas_obj} ;
# this may break as data will be written in the tree in an order
# decided by Augeas. This may break complex model with warping as
# the best writing order is indicated by the model stored in
# Config::Model and not by Augeas.
while (@result) {
my $aug_p = shift @result;
my $cm_p = shift @cm_path; # Config::Model path
my $v = $augeas_obj->get($aug_p) ;
next unless defined $v ;
$logger->debug("read-augeas $aug_p, will set C::M path $cm_p with $v");
$cm_p =~ s!^/!! ;
# With some list, we can get
# /files/etc/ssh/sshd_config/AcceptEnv[1]/1/ = LC_PAPER
# /files/etc/ssh/sshd_config/AcceptEnv[1]/2/ = LC_NAME
# /files/etc/ssh/sshd_config/AcceptEnv[2]/3/ = LC_ADDRESS
# /files/etc/ssh/sshd_config/AcceptEnv[2]/4/ = LC_TELEPHONE
# Depending on the syntax, list can be in the form:
# /files/etc/ssh/sshd_config/AcceptEnv[2]/3/ non-seq ditch idx
# /files/etc/hosts/4/ non-seq
# /files/etc/ssh/sshd_config/HostKey[2] is-seq keep idx
# Likewise, hashes can be in the form
# /files/etc/ssh/sshd_config/Subsystem[2]/foo/ is-seq ditch idx
# /files/etc/ssh/sshd_config/Bar/foo/ non-seq
my @cm_steps = split m!/+!, $cm_p ;
my $obj = $self->{node};
$obj = $obj->fetch_element(shift @cm_steps) if $set_in ;
while (my $step = shift @cm_steps) {
my ($label,$idx) = ( $step =~ /(\w+)(?:\[(\d+)\])?/ ) ;
my $is_seq = $is_seq_lens{$label} || 0 ;
$logger
->debug("read-augeas: step label $label ".
(defined $idx ? "idx $idx ": '') . "(is_seq $is_seq)");
# idx will be treated next iteration if needed
if ( $obj->get_type eq 'node'
and $obj->element_type($label) eq 'list'
and $is_seq
) {
$idx = 1 unless defined $idx ;
$logger
->debug("read-augeas: keep seq lens idx $idx") ;
unshift @cm_steps , $idx ;
}
if ($label =~ /\[/) {
Config::Model::Exception::Model -> throw
(
error=> "read_augeas error: can't use $label with "
."Augeas index in Config::Model. $label should "
. "probably be listed as 'sequential_lens'",
object => $self->{node}
) ;
}
# augeas list begin at 1 not 0
$label -= 1 if $obj->get_type eq 'list';
if (scalar @cm_steps > 0) {
$logger ->debug("read-augeas: get $label");
$obj = $obj->get($label) ;
}
else {
# last step
$logger->debug("read-augeas: set $label $v");
$obj->set($label,$v) ;
}
if (not defined $obj) {
Config::Model::Exception::Model -> throw
(
error=> "read_augeas error: '$cm_p' led to undef object. "
. "Check for errors in 'sequential_lens' specification",
object => $self->{node}
) ;
}
}
}
return 1 ;
}
sub augeas_deep_match {
my ($self,$mainpath) = @_ ;
# work around Augeas feature where '*' matches only one hierarchy
# level
# See https://www.redhat.com/archives/augeas-devel/2008-July/msg00016.html
my @worklist = ( $mainpath );
my $logger = get_logger('Data::Read') ;
$logger ->debug("read-augeas on @worklist") ;
my $augeas_obj = $self->{augeas_obj} ;
my @result ;
while (@worklist) {
my $p = pop @worklist ;
# filter out comments
# see http://augeas.net/page/Path_expressions
my @newpath = $augeas_obj -> match($p . "/*[label() != '#comment']") ;
$logger
->debug("read-augeas $p/* matches paths: @newpath") ;
push @worklist, @newpath ;
push @result, @newpath ;
}
return @result ;
}
# this is a bit of a hack. This function is called by Autoread to
# check whether the configuration file should be opened before calling
# write or not. If the config file is opened before augeas writes in
# it, all comments and structure is lost.
sub skip_open { 1;}
sub write {
my $self = shift;
my %args = @_ ; # contains root and config_dir
return 0 unless $has_augeas ;
if (defined $args{config_file}) {
warn "Augeas::write : deprecated config_file parameter, use file instead\n";
$args{file}||= delete $args{config_file} ;
}
foreach my $param (qw/config_dir file/) {
if (not defined $args{$param}) {
Config::Model::Exception::Model -> throw
(
error=> "write_augeas error: model "
. "does not specify '$param' for Augeas ",
object => $self->{node}
) ;
}
}
my $cdir = $args{root}.$args{config_dir} ;
get_logger("Data::Write")
->info("Write config data through Augeas in directory '$cdir' ".
"file $args{file}");
my $set_in = $args{set_in} || '';
my $mainpath = '/files'.$args{config_dir}.$args{file} ;
my $augeas_obj = $self->{augeas_obj}
||= Config::Augeas->new(root => $args{root},
save => $args{save} ) ;
my %to_set = $self->copy_in_augeas($augeas_obj,$mainpath,$set_in,
$args{sequential_lens}) ;
$self->save($mainpath);
}
sub save {
my $self = shift ;
my $mainpath = shift ;
# can't use augeas print directly in logging system...
$self->{augeas_obj}->print() if get_logger('Data::Write')->is_debug ;
$self->{augeas_obj}->save || die "Augeas save failed" .
$self->{augeas_obj}->print("/augeas/$mainpath/*");
}
sub copy_in_augeas {
my $self = shift ;
my $augeas_obj = shift ;
my $mainpath = shift ;
my $set_in = shift ;
my $seq_list = shift || [];
my %is_seq_lens = map { ( $_ => 1 ) ;} @$seq_list ;
# The callback are kludgy and may be improved when the
# following bugs are fixed:
# https://fedorahosted.org/augeas/ticket/23
# https://fedorahosted.org/augeas/ticket/24
my @scan_args = (
experience => 'master',
fallback => 'all',
auto_vivify => 0,
list_element_cb => \&list_element_cb,
check_list_element_cb => \&std_cb,
hash_element_cb => \&hash_element_cb,
leaf_cb => \&std_cb ,
node_content_cb => \&node_content_cb,
);
# perform the scan
my $view_scanner = Config::Model::ObjTreeScanner->new(@scan_args);
$view_scanner->scan_node([$mainpath,$augeas_obj,$set_in,\%is_seq_lens],
$self->{node});
}
sub std_cb {
my ( $scanner, $data_ref, $obj, $element, $index, $value_obj ) = @_;
my ($p,$augeas_obj,$set_in,$is_seq_lens) = @$data_ref ;
my $v = $value_obj->fetch () ;
if (defined $v and $v ne '') {
get_logger("Data::Write")->info("copy_in_augeas: set $p = '$v'");
$augeas_obj->set($p , $v) ;
#$self->save($mainpath) if $::debug ;
}
else {
$augeas_obj->remove($p) ;
}
}
sub list_element_cb {
my ($scanner, $data_ref,$node,$element_name,@idx) = @_ ;
my ($p,$augeas_obj,$set_in,$is_seq_lens) = @$data_ref ;
my $is_seq = $is_seq_lens->{$element_name} || 0;
# the idea is to compare list indexes from Config::Model with the
# corresponding hash-like keys in Augeas tree
# find Augeas nodes matching this path
my @matches = $augeas_obj->match($p."[label() != '#comment']") ;
# need to find 2nd levels of sub-nodes for non-seq list lenses
@matches = sort map {
$augeas_obj->match($_."/*[label() != '#comment']") ;
} @matches
unless $is_seq ;
# Depending on the syntax, list can be in the form:
# /files/etc/ssh/sshd_config/AcceptEnv[2]/3/ non-seq use [last()]/idx/
# /files/etc/hosts/4/ non-seq use [last()]/idx/
# /files/etc/ssh/sshd_config/HostKey[2] is-seq use [idx]
if ($is_seq) {
# sequential lens need a list index to store list element.
# I.e foo[1]/1 foo[1]/2 foo[2]/3 is ok. foo/1 foo/2 will
# fail. But Augeas does return foo/1 if only one element is
# present in the tree :-/
my $replace = $element_name.'[1]';
map { s/$element_name(?!\[)/$replace/ } @matches ;
}
my $logger = get_logger("Data::Write") ;
$logger->debug("copy_in_augeas: List (@idx) path $p matches (seq $is_seq):\n\t".
join("\n\t",@matches));
# store list indexes found in Augeas and their corresponding path
my %match = map {
my ($k) = m!/([\w\[\]\-]+)$!;
# need to keep only index in %match key
$k =~ s/\w+\[(\d+)\]$/$1/ if $is_seq ;
($k => $_ ) ;
} @matches ;
# Handle indexes found in Config::Model, but not in Augeas
# tree. Create a new Augeas path for sequential list lenses. This
# path will be used by scan_list
if ($is_seq) {
my $count = $augeas_obj->count_match($p."[label() != '#comment']") ;
foreach my $idx (@idx) {
# augeas index starts at 1 not 0
my $i = $idx + 1;
next if defined $match{$i} ;
$match{$i} = $p.'['.++$count."]" . ($is_seq ? '' : "/$i");
$logger->debug("copy_in_augeas: New list path $match{$i} "
."for index $i");
}
}
# now scan the elements stored by Config::Model hash keys to
# store the hash values
foreach my $i (@idx) {
# use Augeas path (given by match command) or the path
# created for unknown non-seq list elements
my $scan_path = delete $match{$i+1} || $p.'/'.($i+1);
$logger->debug("copy_in_augeas: scan list called on $scan_path index $i");
$scanner->scan_list([$scan_path,$augeas_obj,$set_in,$is_seq_lens],
$node,$element_name,$i);
}
# cleanup indexes found in Augeas but not in Config::Model
foreach (keys %match) {
my $rm_path = $match{$_} ;
$logger->debug("copy_in_augeas: List rm $_ ->$rm_path");
$augeas_obj->remove($rm_path) || die "remove $rm_path failed";
# check if removing parent node in Augeas is needed
$rm_path =~ s!/([\w\[\]\-]+)$!! ; # chomp last "step" of the path
if ($augeas_obj->count_match($rm_path."[label() != '#comment']") == 1
and $set_in ne $element_name
and $rm_path =~ /$element_name$/
) {
$logger->debug("copy_in_augeas: List rm parent node $_ ->$rm_path");
$augeas_obj->remove($rm_path) || die "remove $rm_path failed";
}
}
}
# this callback is similar but not identical to the list callback.
sub hash_element_cb {
my ($scanner, $data_ref,$node,$element_name,@keys) = @_ ;
my ($p,$augeas_obj,$set_in,$is_seq_lens) = @$data_ref ;
my $is_seq = $is_seq_lens->{$element_name} || 0;
# the idea is to compare hash keys from Config::Model with the
# corresponding hash-like keys in Augeas tree
# find Augeas nodes matching this path
my @matches = $augeas_obj->match($p."[label() != '#comment']") ;
# need to find 2nd levels of sub-nodes
@matches = sort map {
$augeas_obj->match($_."/*[label() != '#comment']") ;
} @matches ;
# sequential lens need a list index to store element. I.e
# foo[1]/key1 foo[2]/key2 is ok. foo/key1 foo/key2 will fail But
# Augeas does return foo/key1 if only one element is present in
# the tree :-/
if ($is_seq) {
my $replace = $element_name.'[1]';
map { s/$element_name(?!\[)/$replace/ } @matches ;
}
my $logger = get_logger('Data::Write') ;
$logger->debug("copy_in_augeas: Hash path $p matches (seq $is_seq):\n\t".
join("\n\t",@matches));
# store indexes found in Augeas and their corresponding path
my %match = map {
my ($k) = m!/([\w\[\]\-]+)$!;
# need to keep only index in %match key
$k =~ s/\w+\[(\d+)\]$/$1/ if $is_seq ;
($k => $_ ) ;
} @matches ;
# Handle keys found in Config::Model, but not in Augeas
# tree. Create a new Augeas path for sequential hash lenses. This
# path will be used by scan_list. This insertion cannot be done if
# no elements are already present in Augeas tree.
if ($is_seq and @matches) {
my $count = $augeas_obj->count_match($p."[label() != '#comment']") ;
foreach (@keys) {
next if defined $match{$_} ;
my $ip = $p.'[last()]';
$logger->debug("inserting $element_name after $ip\n");
$augeas_obj->insert($element_name, after => $ip )
|| die "augeas insert $element_name after $ip failed";
my $np = $match{$_} = $p.'['.++$count."]/$_";
$logger->debug("copy_in_augeas: New hash path $np for key $_");
}
}
# now scan the elements stored by Config::Model hash keys to
# store the hash values
foreach (@keys) {
# use Augeas path (given by match command) or a new path for
# new elements
my $scan_path = delete $match{$_} || $p."/$_" ;
$scanner->scan_hash([$scan_path,$augeas_obj,$set_in,$is_seq_lens],
$node,$element_name,$_)
}
# cleanup keys found in Augeas but not in Config::Model
foreach (keys %match) {
my $rm_path = $match{$_} ;
$logger->debug("copy_in_augeas: Hash rm $_ ->$rm_path");
$augeas_obj->remove($rm_path) || die "remove $rm_path failed";
# check if removing parent node in Augeas is needed
$rm_path =~ s!/([\w\[\]\-]+)$!! ;
if ( $augeas_obj->count_match($rm_path."[label() != '#comment']") == 1
and $set_in ne $element_name and $is_seq
) {
$logger->debug("copy_in_augeas: Hash rm parent $_ ->$rm_path");
$augeas_obj->remove($rm_path) || die "remove $rm_path failed";
}
}
}
sub node_content_cb {
my ($scanner, $data_ref,$node,@element) = @_ ;
my ($p,$augeas_obj,$set_in,$is_seq_lens) = @$data_ref ;
my $logger = get_logger('Data::Write') ;
# See set_in parameter (who said kludge ?)
if (scalar @element == 1 and $element[0] eq $set_in) {
# Augeas tree is stored below element[0]
$logger->debug("copy_in_augeas: Augeas tree set in node path $p");
$scanner->scan_element([$p,$augeas_obj,$set_in,$is_seq_lens],
$node,$element[0]);
}
else {
my @matches = $augeas_obj->match($p."/*[label() != '#comment']") ;
# cleanup indexes are we don't handle them now with element
# (later in lists and hashes)
map { s/\[\d+\]+$//; } @matches ;
$logger->debug("copy_in_augeas: Node path $p matches:\n\t".
join("\n\t",@matches),);
# store elements found in Augeas and their corresponding path
my %match = map {
my ($elt) = m!/([\w\-]+)$!;
($elt => $_ ) } @matches ;
# Handle element found in Config::Model, but not in Augeas
# tree. Create a new Augeas path for new elements respecting
# the order of the elements declared in Config::Model. This
# path will be used by scan_element. This insertion cannot
# be done if no elements are already present in Augeas tree.
if (@matches) {
my $previous_match = '';
foreach (@element) {
if (defined $match{$_}) {
$previous_match = $_ ;
}
elsif ($node->fetch_element($_)->dump_as_data) {
# insert in Augeas only if the element contains
# something interesting
my ($direction,$ip)
= $previous_match
? (after => $p.'/'.$previous_match.'[last()]')
: (before => $matches[0] ) ;
$logger->debug("inserting $_ $direction $ip");
$augeas_obj->insert($_, $direction => $ip )
|| die "augeas insert $_ $direction $ip failed";
my $np = $match{$_} = "$p/$_";
$logger->debug("copy_in_augeas: New hash path $np for element $_");
}
}
}
# now scan the elements stored by Config::Model elements to
# store the children nodes
foreach (@element) {
# use Augeas path (given by match command) or the path
# created for new elements
my $scan_path = delete $match{$_} || $p.'/'.$_ ;
$logger->debug("copy_in_augeas: Node scan $scan_path for element $_");
$scanner->scan_element([$scan_path,$augeas_obj,$set_in,$is_seq_lens],
$node,$_)
}
# cleanup keys found in Augeas but not in Config::Model
foreach (keys %match) {
my $rm_path = $match{$_} ;
$logger->debug("copy_in_augeas: Node rm $_ ->$rm_path");
$augeas_obj->remove($rm_path) || die "remove $rm_path failed";
}
}
}
1;
=head1 Log and trace
This module use L<Log::Log4perl> to log debug and info trace with
C<Data::Read> and C<Data::Write> categories.
=head1 CAVEATS
=over
=item *
Augeas C<#comment> nodes are ignored
=back
=head1 SEE ALSO
=over
=item *
http://augeas.net/ : Augeas project page
=item *
L<Config::Model>
=item *
Augeas mailing list: http://augeas.net/developers.html
=item *
Config::Model mailing list : http://sourceforge.net/mail/?group_id=155650
=back
=head1 AUTHOR
Dominique Dumont, E<lt>ddumont at cpan dot org@<gt>
=head1 COPYRIGHT
Copyright (C) 2008-2010 by Dominique Dumont
=head1 LICENSE
This library is free software; you can redistribute it and/or modify
it under the LGPL terms.
=cut
|