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
|
#
# 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
#
package Config::Model::ListId ;
{
$Config::Model::ListId::VERSION = '2.021';
}
use Any::Moose ;
use namespace::autoclean;
use Config::Model::Exception ;
use Log::Log4perl qw(get_logger :levels);
use Carp;
extends qw/Config::Model::AnyId/ ;
my $logger = get_logger("Tree::Element::Id::List") ;
has data => ( is => 'rw', isa => 'ArrayRef' , default => sub { [] ;} ) ;
# compatibility with HashId
has index_type => ( is => 'ro', isa => 'Str', default => 'integer' ) ;
has auto_create_ids => ( is => 'rw' ) ;
sub BUILD {
my $self = shift;
foreach my $wrong (qw/max_nb min_index default_keys/) {
Config::Model::Exception::Model->throw (
object => $self,
error => "Cannot use $wrong with ".$self->get_type." element"
) if defined $self->{$wrong};
}
if (defined $self->{migrate_keys_from}) {
warn $self->name, "Using migrate_keys_from with list element is deprecated.",
" Use migrate_values_from\n" ;
}
# Supply the mandatory parameter
return $self;
}
sub set_properties {
my $self = shift ;
$self->SUPER::set_properties(@_) ;
# remove unwanted items
my $data = $self->{data} ;
return unless defined $self->{max_index} ;
# delete entries that no longer fit the constraints imposed by the
# warp mechanism
foreach my $k (0 .. $#{$data}) {
next unless $k > $self->{max_index};
$logger->debug("set_properties: ",$self->name," deleting index $k") ;
delete $data->[$k] ;
}
}
sub _migrate {
my $self = shift;
return if $self->{migration_done};
# migration must be done *after* initial load to make sure that all data
# were retrieved from the file before migration.
return if $self->instance->initial_load ;
$self->{migration_done} = 1;
if ( $self->{migrate_values_from}) {
my $followed = $self->safe_typed_grab(param => 'migrate_values_from', check => 'no') ;
$logger ->debug($self->name," migrate values from ",$followed->name) if $logger->is_debug;
my $idx = $self->fetch_size ;
foreach my $item ( $followed -> fetch_all_indexes ) {
my $data = $followed->fetch_with_id($item) -> dump_as_data(check => 'no') ;
$self->fetch_with_id( $idx++ )->load_data($data) ;
}
}
elsif ($self->{migrate_keys_from}) {
# FIXME: remove this deprecated stuff
my $followed = $self->safe_typed_grab(param => 'migrate_keys_from', check => 'no') ;
map { $self->_store($_, undef) unless $self->_defined($_) } $followed -> fetch_all_indexes ;
}
}
sub get_type {
my $self = shift;
return 'list' ;
}
# important: return the actual size (not taking into account auto-created stuff)
sub fetch_size {
my $self =shift ;
return scalar @{$self->{data}} ;
}
sub _fetch_all_indexes {
my $self = shift ;
my $data = $self->{data} ;
return scalar @$data ? (0 .. $#$data ) : () ;
}
# fetch without any check
sub _fetch_with_id {
my ($self, $idx) = @_ ;
return $self->{data}[$idx];
}
sub load {
my ($self, $string, %args) = @_ ;
my $check = $self->_check_check($args{check}) ; # I write too many checks.
my @set ;
my $cmd = $string ;
my $regex = qr/^(
(?:
"
(?: \\" | [^"] )*?
"
)
|
[^,]+
)
/x;
while (length($string)) {
#print "string: $string\n";
$string =~ s/$regex// or last;
my $tmp = $1 ;
#print "tmp: $tmp\n";
$tmp =~ s/^"|"$//g if defined $tmp;
$tmp =~ s/\\"/"/g if defined $tmp;
push @set,$tmp ;
last unless length($string) ;
}
continue {
$string =~ s/^,// or last ;
}
if (length($string)) {
Config::Model::Exception::Load
-> throw ( object => $self,
command => $cmd,
message => "unexpected load command '$cmd', left '$cmd'" ) ;
}
$self->store_set(@set ) ;
}
sub store_set {
my $self = shift ;
my @v = @_ ;
my $r = shift ;
my %args = (check => 'yes');
if (ref $r eq 'ARRAY') {
@v = @$r ;
%args = @_; # note that $r was shifted out of @_
}
my @comments = @{ $args{comment} || [] } ;
my $idx = 0 ;
foreach (@v) {
if (defined $_) {
my $v_obj = $self->fetch_with_id( $idx++ ) ;
$v_obj -> store(%args, value => $_);
$v_obj->annotation(shift @comments) if @comments ;
}
else {
$self->{data}[$idx] = undef ; # detruit l'objet pas bon!
}
} ;
# and delete unused items
my $max = scalar @{$self->{data}} ;
splice @{$self->{data}}, $idx, $max - $idx ;
}
# store without any check
sub _store {
my ($self, $idx, $value) = @_ ;
return $self->{data}[$idx] = $value ;
}
sub _defined {
my ($self,$key) = @_ ;
croak "argument '$key' is not numeric" unless $key =~ /^\d+$/;
return defined $self->{data}[$key];
}
sub _exists {
my ($self, $idx) = @_ ;
return exists $self->{data}[$idx];
}
sub _delete {
my ($self,$idx) = @_ ;
return delete $self->{data}[$idx];
}
sub _clear {
my ($self)= @_ ;
$self->{data} = [] ;
}
sub move {
my ($self,$from, $to,%args) = @_ ;
my $check = $self->_check_check($args{check}) ;
my $moved = $self->fetch_with_id($from) ;
$self->_delete($from);
delete $self->{warning_hash}{$from} ;
my $ok = $self->check_idx($to) ;
if ($ok or $check eq 'no') {
$self->_store($to, $moved) ;
$moved->index_value($to) ;
$self->notify_change(note => "moved from index $from to $to") ;
my $imode = $self->instance->get_data_mode ;
$self->set_data_mode( $to, $imode ) ;
}
else {
# restore moved item where it came from
$self->_store($from, $moved) ;
if ($check ne 'skip') {
Config::Model::Exception::WrongValue
-> throw (
error => join("\n\t",@{$self->{error}}),
object => $self
) ;
}
}
}
# list only methods
sub push {
my $self = shift ;
my $idx = $self->fetch_size ;
map { $self->fetch_with_id( $idx++ )->store( $_ ) ; } @_ ;
}
# list only methods
sub push_x {
my $self = shift ;
my %args = @_ ;
my $check = delete $args{check} || 'yes';
my $v_arg = delete $args{values} || delete $args{value};
my @v = ref ($v_arg) ? @$v_arg : ($v_arg) ;
my $anno = delete $args{annotation} ;
my @a = ref ($anno) ? @$anno : $anno ? ($anno) : () ;
croak("push_x: unexpected parameter ",join(' ',keys %args)) if %args ;
my $idx = $self->fetch_size ;
while (@v) {
my $val = shift @v ;
my $obj = $self->fetch_with_id( $idx++ );
$obj->store( $val ) ;
$obj->annotation(shift @a) if @a ;
}
}
sub store {
my $self = shift;
$self->push_x(@_) ;
}
sub swap {
my $self = shift ;
my $ida = shift ;
my $idb = shift ;
my $obja = $self->{data}[$ida] ;
my $objb = $self->{data}[$idb] ;
# swap the index values contained in the objects
my $obja_index = $obja->index_value ;
$obja->index_value( $objb->index_value ) ;
$objb->index_value( $obja_index ) ;
# then swap the objects
$self->{data}[$ida] = $objb ;
$self->{data}[$idb] = $obja ;
$self->notify_change(note => "swapped index $ida and $idb") ;
}
#die "check index number after wap";
sub remove {
my $self = shift ;
my $idx = shift ;
$self->delete_data_mode(index => $idx) ;
$self->notify_change ;
splice @{$self->{data}}, $idx , 1 ;
}
#internal
sub auto_create_elements {
my $self = shift ;
my $auto_nb = $self->auto_create_ids ;
return unless defined $auto_nb ;
$logger->debug($self->name," auto-creating $auto_nb elements");
Config::Model::Exception::Model
->throw (
object => $self,
error => "Wrong auto_create argument for list: $auto_nb"
) unless $auto_nb =~ /^\d+$/;
my $auto_p = $auto_nb - 1;
# create empty slots
map {
$self->{data}[$_] = undef unless defined $self->{data}[$_];
} (0 .. $auto_p ) ;
}
# internal
sub create_default {
my $self = shift ;
return if @{$self->{data}} ;
# list is empty so create empty element for default keys
my $def = $self->get_default_keys ;
map {$self->{data}[$_] = undef } @$def ;
$self->create_default_with_init ;
}
sub load_data {
my $self = shift ;
my $raw_data = shift ;
my $check = shift ;
my $data = ref($raw_data) eq 'ARRAY' ? $raw_data
: defined $raw_data ? [ $raw_data ]
: undef;
$self->clear ;
my $idx = 0;
$logger->info("ListId load_data (",$self->location,") will load idx ",
"0..$#$data");
foreach my $item (@$data ) {
my $obj = $self->fetch_with_id($idx++) ;
$obj -> load_data($item, $check) ;
}
}
__PACKAGE__->meta->make_immutable;
1;
__END__
=pod
=head1 NAME
Config::Model::ListId - Handle list element for configuration model
=head1 VERSION
version 2.021
=head1 SYNOPSIS
See L<Config::Model::AnyId/SYNOPSIS>
=head1 DESCRIPTION
This class provides list elements for a L<Config::Model::Node>.
=head1 CONSTRUCTOR
ListId object should not be created directly.
=head1 List model declaration
See
L<model declaration section|Config::Model::AnyId/"Hash or list model declaration">
from L<Config::Model::AnyId>.
=head1 Methods
=head2 get_type
Returns C<list>.
=head2 fetch_size
Returns the number of elements of the list.
=head2 load(string, [ check => 'no' ] )
Store a set of values passed as a comma separated list of values.
Values can be quoted strings. (i.e C<"a,a",b> will yield
C<('a,a', 'b')> list).
C<check> can be yes, no or skip
=head2 store_set( ... )
Store a set of values (passed as list)
If tinkering with check is required, use the following way :
store_set ( \@v , check => 'skip' );
=head2 move ( from_index, to_index, [ check => 'no' )
Move an element within the list. C<check> can be 'yes' 'no' 'skip'
=head2 push( value1, [ value2 ... ] )
push some values at the end of the list.
=head2 push_x ( values => [ v1','v2', ...] , [ ... ] )
Like push with extended options. Options are:
=over
=item check
Check value validaty. Either C<yes> (default), C<no>, C<skip>
=item values
Values to push (array_ref)
=item value
Single value to push
=item annotation
=back
=head2 store
Equivalent to push_x. This method is provided to help write
configuration parser, so the call is the same when dealing with leaf or
list values. Prefer C<push_x> when practical.
=over 4
=item check
C<yes>, C<no> or C<skip>
=item annotation
list ref of annotation to store with the list values
=back
Example:
$elt->push_x (
values => [ v1','v2' ] ,
annotation => [ 'v1 comment', 'v2 comment' ],
check => ''skip'
);
=head2 swap ( C<ida> , C<idb> )
Swap 2 elements within the array
=head2 remove ( C<idx> )
Remove an element from the list. Equivalent to C<splice @list,$idx,1>
=head2 load_data ( array_ref | data )
Clear and load list from data contained in the array ref. If a scalar
or a hash ref is passed, the list is cleared and the data is stored in
the first element of the list.
=head1 AUTHOR
Dominique Dumont, (ddumont at cpan dot org)
=head1 SEE ALSO
L<Config::Model::Model>,
L<Config::Model::Instance>,
L<Config::Model::AnyId>,
L<Config::Model::HashId>,
L<Config::Model::Value>
=cut
|