pax_global_header00006660000000000000000000000064121001636610014506gustar00rootroot0000000000000052 comment=99495e1475604c97cce20f4b64281ca13a18798c Data-Diver-1.0101/000075500000000000000000000000001210016366100135065ustar00rootroot00000000000000Data-Diver-1.0101/.gear/000075500000000000000000000000001210016366100145025ustar00rootroot00000000000000Data-Diver-1.0101/.gear/rules000064400000000000000000000000411210016366100155520ustar00rootroot00000000000000tar: . name=Data-Diver-@version@ Data-Diver-1.0101/Changes000075500000000000000000000004671210016366100150130ustar00rootroot00000000000000Revision history for Perl module Data::Diver. 1.01_01 2005-09-01 - Add DiveVal() - Support using scalar ref as key to force hash derefence. 1.00_02 2005-07-25 - First module distribution 1.00_01 2005-07-22 - A fleshier twinkle on my scratchpad 1.00_00 2005-07-22 - Just a twinkle on my scratchpad Data-Diver-1.0101/Diver.pm000075500000000000000000000401361210016366100151240ustar00rootroot00000000000000package Data::Diver; use strict; require Exporter; use vars qw( $VERSION @EXPORT_OK ); BEGIN { $VERSION= 1.01_01; @EXPORT_OK= qw( Dive DiveRef DiveVal DiveError DiveDie DiveClear ); *import= \&Exporter::import; *isa= \&UNIVERSAL::isa; } # To figure out if an item supports being treated as a particular # type of reference (hash ref, array ref, or scalar ref) we use: # eval { my $x= DEREF_EXPR; 1 } # Note that we are careful to not put 'DEREF_EXPR' into an "lvalue # context" (to prevent autovivification) and to also avoid trying to # convert the value into a number or boolean or such. The "; 1" is # so that the eval always returns a true value unless something die()s. # Using 'ARRAY' eq ref($ref) is just a horrid alternative, as it would # prevent these routines from being used on blessed data structures. # Using UNIVERSAL::isa($ref,'ARRAY') is a better alternative, but it # still fails for more advanced cases of overloading or pathological # cases of blessing into very-poorly-named packages. We use this for # testing for CODE references, since eval { $ref->() } would actually # run the code. my @lastError; sub _Error { @lastError= @_[2,0,1]; return; } sub DiveError { return @lastError; } sub DiveClear { @lastError= (); } sub DiveDie { @_= Dive( @_ ) if 1 < @_; return wantarray ? @_ : pop @_ if @_ || ! @lastError; my( $errDesc, $ref, $svKey )= @lastError; die "$errDesc using $$svKey on $ref (from Data::Diver).\n"; } sub Dive { return if ! @_; my $ref= shift @_; return $ref if ! $ref; while( @_ ) { my $key= shift @_; if( ! defined $key ) { return _Error( $ref, \$key, "undef() on non-scalar-ref" ) if ! eval { my $x= $$ref; 1 }; $ref= $$ref; } elsif( eval { my $x= $key->[0]; 1 } && isa( $ref, 'CODE' ) ) { if( @_ && ! defined $_[0] ) { $ref= \ $ref->( @$key ); } else { $ref= [ $ref->( @$key ) ]; } } elsif( $key =~ /^-?\d+$/ && eval { my $x= $ref->[0]; 1 } ) { return _Error( $ref, \$key, "Index out of range" ) if $key < -@$ref || $#$ref < $key; $ref= $ref->[$key]; } elsif( eval { exists $ref->{$key} } ) { if( eval { my $x= $$key; 1 } ) { $ref= $ref->{$$key}; } else { $ref= $ref->{$key}; } } elsif( eval { my $x= $ref->{$key}; 1 } ) { return _Error( $ref, \$key, "Key not present in hash" ); } else { return _Error( $ref, \$key, "Not a valid type of reference" ); } } return $ref; } sub DiveVal :lvalue { ${ DiveRef( @_ ) }; } sub DiveRef { return if ! @_; my $sv= \shift @_; return $$sv if ! $$sv; while( @_ ) { my $key= shift @_; if( ! defined $key ) { $sv= \$$$sv; } elsif( eval { my $x= $key->[0]; 1 } && isa( $$sv, 'CODE' ) ) { if( @_ && ! defined $_[0] ) { $sv= \ $$sv->( @$key ); } else { $sv= \[ $$sv->( @$key ) ]; } } elsif( eval { my $x= $$key; 1 } and ! defined($$sv) || eval { my $x= $$sv->{0}; 1 } ) { $sv= \$$sv->{$$key}; } elsif( $key =~ /^-?\d+$/ and ! defined($$sv) || eval { my $x= $$sv->[0]; 1 } ) { $sv= \$$sv->[$key]; } else { $sv= \$$sv->{$key}; } } return $sv; } 'Data::Diver'; __END__ # Cheap pod2pm (convert POD to PerlMonk's HTMLish) my $p= 0; my $c= 0; while( <> ) { s/\r$//; if( /^$/ ) { $p= 1; next; } if( $p ) { if( /^ / ) { $p= 0; if( $c ) { print $/; } else { print "\n"; $c= 1; } } elsif( /^\S/ and $c || !/^=/ ) { $p= 0; if( $c ) { print "\n"; $c= 0; } else { print "

\n"; } } } if( !$c ) { s#^=head(\d+)\s+(.*)# my $h= $1+2; "$2"#e; s#^=over.*#

#; s/\[/[/g; s/\]/]/g; s#C<([^<>]+)>#$1#g; s#C<< (.+?) >>#$1#g; s#L]+)>#$1#g; } print; } __END__ =head1 NAME Data::Diver - Simple, ad-hoc access to elements of deeply nested structures =head1 SUMMARY Data::Diver provides the Dive() and DiveVal() functions for ad-hoc access to elements of deeply nested data structures, and the DiveRef(), DiveError(), DiveClear(), and DiveDie() support functions. =head1 SYNOPSIS use Data::Diver qw( Dive DiveRef DiveError ); my $root= { top => [ { first => 1 }, { second => { key => [ 0, 1, 2, { three => { exists => 'yes', }, }, ], }, }, ], }; # Sets $value to 'yes' # ( $root->{top}[1]{second}{key}[3]{three}{exists} ): my $value= Dive( $root, qw( top 1 second key 3 three exists ) ); # Sets $value to undef() because "missing" doesn't exist: $value= Dive( $root, qw( top 1 second key 3 three missing ) ); # Sets $value to undef() because # $root->{top}[1]{second}{key}[4] is off the end of the array: $value= Dive( $root, qw( top 1 second key 4 ... ) ); # Sets $value to undef() because # $root->{top}[1]{second}{key}[-5] would be a fatal error: $value= Dive( $root, qw( top 1 second key -5 ... ) ); # Sets $ref to \$root->{top}[9]{new}{sub} (which grows # @{ $root->{top} } and autovifies two anonymous hashes): my $ref= DiveRef( $root, qw( top 9 new sub ) ); # die()s because "other" isn't a valid number: $ref= DiveRef( $root, qw( top other ... ) ); # Does: $root->{num}{1}{2}= 3; # (Autovivifies hashes despite the numeric keys.) DiveVal( $root, \( qw( num 1 2 ) ) ) = 3; # Same thing: ${ DiveRef( $root, 'num', \1, \2 ) } = 3; # Retrieves above value, $value= 3: $value= DiveVal( $root, 'num', \1, \2 ); # Same thing: $value= ${ DiveRef( $root, \( qw( num 1 2 ) ) ) }; # Tries to do $root->{top}{1} and dies # because $root->{top} is an array reference: DiveRef( $root, 'top', \1 ); # To only autovivify at the last step: $ref= DiveRef( Dive( $root, qw( top 1 second key 3 three ) ), 'missing' ); if( $ref ) { $$ref= 'me too' } else { my( $nestedRef, $svKey, $errDesc )= DiveError(); die "Couldn't dereference $nestedRef via $$svKey: $errDesc\n"; } =head1 DESCRIPTION Note that Data::Diver does C and so will not use symbolic references. That is, a simple string can never be used as a reference. =head2 Dive $value= Dive( $root, @ListOfKeys ) Dive() pulls out one value from a nested data structure. Dive() absolutely refuses to autovivify anything. If you give any 'key' that would require autovivification [or would cause an error or warning], then an empty list is returned. How Dive() works is easiest to "explain" by looking at the examples listed in the L section above. $root should be a reference, usually a reference to hash or to an array. @ListOfKeys should be a list of values to use as hash keys or array indices [or a few other things] that will be used to deference deeper and deeper into the data structure that $root refers to. More details can be found under L and L further down. If you want to distinguish between C and C for a hash element, then you can distinguish between an empty list, C<( )>, being returned and one C, C<( undef )>, being returned: my @exists= Dive( \%hashOfHashes, 'first', 'second' ); if( ! @exists ) { warn "\$hashOfHashes{first}{second} does not exists.\n"; } elsif( ! defined $exists[0] ) { warn "\$hashOfHashes{first}{second} exists but is undefined.\n"; } =head2 DiveVal $val= DiveVal( $root, @ListOfKeys ); DiveVal( $root, @ListOfKeys )= $val; DiveVal() is very much like Dive() except that it autovivifies if it can, dies if it can't, and is an LValue subroutine. So you can assign to DiveVal() and the dereferenced element will be modified. You can also take a reference to the call to DiveVal() or do anything else that you can do with a regular scalar variable. If $root is undefined, then DiveVal() immediately returns C<( undef )> [without overwriting C]. This is for the special case of using C because you want to only allow partial autovivifying. =head2 DiveRef $ref= DiveRef( $root, @ListOfKeys ) =head2 Simple 'key' values Both Dive() and DiveRef() start by trying to dereference $root using the first element of @ListOfKeys. We refer to the resulting value as C<$ref> and, if there are more elements in @ListOfKeys, then the next step will be to try to dereference C<$ref> using that next 'key' [producing a new value for C<$ref>]. To dereference an array reference, you must give a 'key' value that is defined and matches C. So, if you have more general numeric values, you should use C to convert them to simple integers. To dereference a hash reference, you must give a 'key' value that is C (or that is a reference to a scalar that will be used as the key). Note that all 'keys' that work for arrays also work for hashes. If you have a reference that is overloaded such that it can both act as an array reference and as a hash reference [or, in the case of DiveVal() and DiveRef(), if you have an undefined C<$ref> which can be autovivified into either type of reference], then numeric-looking key values cause an array dereference. In the above cases, if you want to do a hash dereference, then you need to pass in a reference to the key. Note that undefined keys are reserved for a special meaning discussed in L further down. That section discusses how to dereference other types of references [scalar references and subroutine references] and exactly how the different reference types and key values interact. =head2 DiveError ( $errDesc, $ref, $svKey )= DiveError(); In the case of Dive() returning an empty list, a subsequent call to DiveError() will return a description of why Dive() failed, the specific reference that was trying to be dereferenced [not just the top-level $root reference that was passed into Dive], and a reference to the specific 'key'. =head2 DiveClear DiveClear(); DiveClear() erases the record of any previous Dive() failures. =head2 DiveDie DiveDie(); or $value= DiveDie( Dive(...) ); or $value= DiveDie( $root, @ListOfKeys ); This Cs with an error message based on the previously saved Dive() failure reason. If there is no previously saved failure reason or if one argument is passed into DiveDie(), then it simply returns that argument [or an empty list]. If more than one argument is passed into DiveDie(), then those arguments are passed to Dive() and then DiveDie() behaves as described above. That is, C acts the same as C. =head2 Advanced 'key' values For both Dive() and DiveRef(), each $key in @ListOfKeys can have the following values: =over =item C This means that you expect C<$ref> to be a reference to a scalar and you want to dereference it. For Dive(), if C<$ref> is undefined or is something that can't act as a reference to a scalar, then the empty list is returned and DiveError() can tell you where the problem was. For DiveRef(), if C<$ref> is C, then it will be autovivified into a reference to a scalar [that will start out undefined but may quickly become autovivified due to the next element of @ListOfKeys]. If C<$ref> is something that can't act as a scalar reference, then Perl will C to tell you why. Otherwise the scalar ref is deferenced (C<$$ref>) and we continue on to the next element of @ListOfKeys. =item a reference to a scalar This means that you expect C<$ref> to be a reference to a hash and you want to dereference it using C<$$key> as the key. This is most useful for when you want to use hash keys that match C. Note that C<\( listOfScalars )> will give you a list of references to those scalars so you can often just add C<\(> and C<)> around your list of keys if you only want to do hash dereferencing: DiveVal( $ref, \( 1, -5, qw< 00 01 >, list(), 1-9, 0xFF ) )= 9; But, if your argument list of key values is build out of at least one array and any other item, then it won't work since: \( @a, $b, 9 ) is ( \@a, \$b, \9 ) so you'll need to either wrap each array in additional parens or use C: \( (@a), $b, (@c), 9 ) map \$_, @a, $b, @c, 9 =item C<$key =~ m/^-?\d+$/> This means that you might expect C<$ref> to be a reference to an array. For Dive(), if C<$ref> can act as a reference to an array and $key is in range ( -@$ref <= $key and $key <= $#$ref ), then C<< $ref= $ref->[$key]; >> is run [and this can't fail nor autovivify since we've already checked how big that array was]. If $ref can't be used as an array reference, then $ref might be used as a hash reference instead, as described further down. If $ref is undefined or $key is out of range ($key < -@$ref or $#$ref < $key), then Dive() returns an empty list. For DiveRef(), if C<$ref> is undefined, then it is autovivified into a reference to anonymous array. If C<$ref> can act as a reference to an array, then C<< $ref= $ref->[$key] >> is attempted. If $key is larger than $#$ref, then @$ref will grow. If $key is less than -@$ref, then Perl will C. If C<$ref> cannot act as a reference to an array, then $ref might be used as a reference to a hash as described further down. =item a reference to an array If $key can be used as a reference to an array, then it means that you might expect C<$ref> to be a reference to a subroutine. If C is true, then C<< $ref->( @$key ) >> is attempted. If $key isn't the last value in @ListOfKeys and the next value is undefined, then &$ref is called in a scalar context and $ref is set to refer to the scalar value returned. Otherwise, &$ref is called in a list context and $ref is set to refer to an anonymous array containing the value(s) returned. =item any (defined) string This means that you might expect C<$ref> to be a reference to a hash. For Dive(), if C<$ref> can act as a reference to a hash and C<{$key} >> is true, then C<< $ref= $ref->{$key}; >> is run [and this can't fail nor autovivify]. Otherwise, Dive() returns an empty list and DiveError() can tell you where the problem was. For DiveRef(), C<< $ref= $ref->{$key} >> is simply attempted. This may autovivify a hash entry or even a new hash. It may also C, for example, if $ref can't be used as a hash reference. =back Note that the order of the above items is significant. It represents the order in which cases are tested. So an undefined $key will only be for derefencing a scalar reference and a numeric key will prefer to treat a reference as an array reference. =head1 AUTHOR Tye McQueen, http://www.perlmonks.org/?node=tye =head1 SEE ALSO Once More With Feeling -- Joss++ =cut Data-Diver-1.0101/META.yml000075500000000000000000000004521210016366100147630ustar00rootroot00000000000000# http://module-build.sourceforge.net/META-spec.html #XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX# name: Data-Diver version: 1.00_02 version_from: Diver.pm installdirs: site requires: distribution_type: module generated_by: ExtUtils::MakeMaker version 6.17 Data-Diver-1.0101/Makefile.PL000075500000000000000000000003651210016366100154670ustar00rootroot00000000000000use ExtUtils::MakeMaker; # See lib/ExtUtils/MakeMaker.pm for details of how to influence # the contents of the Makefile that is written. WriteMakefile( 'NAME' => 'Data::Diver', 'VERSION_FROM' => 'Diver.pm', # finds $VERSION ); Data-Diver-1.0101/manifest000075500000000000000000000000771210016366100152460ustar00rootroot00000000000000Changes Diver.pm Makefile.PL MANIFEST README t/base.t META.yml Data-Diver-1.0101/perl-Data-Diver.spec000064400000000000000000000021241210016366100172410ustar00rootroot00000000000000# # - Data::Diver - # This spec file was automatically generated by cpan2rpm [ver: 2.028] # (ALT Linux revision) # The following arguments were used: # . # For more information on cpan2rpm please visit: http://perl.arix.com/ # %define module Data-Diver %define m_distro Data-Diver %define m_name Data::Diver %define m_author_id unknown %define _enable_test 1 Name: perl-Data-Diver Version: 1.0101 Release: alt1 Summary: Simple, ad-hoc access to elements of deeply nested structures License: Artistic Group: Development/Perl Url: http://www.cpan.org Packager: Kirill Maslinsky BuildArch: noarch Source: %m_distro-%version.tar BuildRequires: perl-Module-Build %description Note that Data::Diver does `use strict;' and so will not use symbolic references. That is, a simple string can never be used as a reference. %prep %setup -n %m_distro-%version %build %perl_vendor_build %install %perl_vendor_install %files %perl_vendor_privlib/Data/* %changelog * Thu Jan 24 2013 Kirill Maslinsky 1.0101-alt1 - initial build for ALT Linux Sisyphus Data-Diver-1.0101/t/000075500000000000000000000000001210016366100137515ustar00rootroot00000000000000Data-Diver-1.0101/t/base.t000075500000000000000000000221071210016366100150550ustar00rootroot00000000000000# Before `make install' is performed this script should be runnable with # `make test'. After `make install' it should work as `perl base.t' use strict; BEGIN { $^W++; if( -d 'blib' ) { require lib; lib->import( qw( blib lib ) ); } } use Test qw( plan ok skip ); sub Ok($;$$) { @_= @_ < 3 ? reverse @_ : @_[1,0,2]; goto &ok; } sub Skip($$;$$) { my $ok= shift @_; @_= reverse @_; unshift @_, $ok ? '' : 'skip: prior test failed'; goto &skip; } BEGIN { $|++; plan( tests => 92 ); require Data::Diver; Ok( 1 ); } use Data::Diver qw( Dive DiveRef DiveVal DiveDie DiveError DiveClear ); Ok( 1 ); # Verify the synopsis: my $root= { top => [ { first => 1 }, { second => { key => [ 0, 1, 2, { three => { exists => 'yes', }, }, ], }, }, ], }; Ok( 0, ()= DiveError() ); Ok( 0, eval { ()= DiveDie() }, $@ ); Ok( 1, eval { ()= DiveDie(undef) }, $@ ); Ok( 'x', eval { DiveDie('x') }, $@ ); # Sets $value to 'yes' # ( $root->{top}[1]{second}{key}[3]{three}{exists} ): my $value= Dive( $root, qw( top 1 second key 3 three exists ) ); Ok( 'yes', $value ); Ok( 0, ()= DiveError() ); $value= DiveRef( $root, qw( top 1 second key 3 three exists ) ); Skip( Ok( 'SCALAR', ref($value) ), 'yes', $$value ); Ok( 'yes', eval { DiveDie( $root, qw( top 1 second key 3 three exists ) ); }, $@ ); # Sets $value to undef() because "missing" doesn't exist: $value= Dive( $root, qw( top 1 second key 3 three missing ) ); Ok( undef, $value ); Ok( 3, ()= DiveError() ); Ok( '/Key not present/', ( DiveError() )[0] ); Ok( $root->{top}[1]{second}{key}[3]{three}, ( DiveError() )[1] ); Skip( Ok( 'SCALAR', ref( ( DiveError() )[2] ) ), 'missing', ${ ( DiveError() )[2] } ); Ok( undef, eval { DiveDie(); 1 } ); Ok( '/Key not present/', $@ ); Ok( 1, eval { ()= DiveDie(undef) }, $@ ); Ok( 'x', eval { DiveDie('x') }, $@ ); Ok( 'yes', eval { DiveDie( $root, qw( top 1 second key 3 three exists ) ); }, $@ ); # Sets $value to undef() because # $root->{top}[1]{second}{key}[4] is off the end of the array: $value= Dive( $root, qw( top 1 second key 4 ... ) ); Ok( undef, $value ); Ok( 3, ()= DiveError() ); Ok( '/out of range/', ( DiveError() )[0] ); Ok( $root->{top}[1]{second}{key}, ( DiveError() )[1] ); Skip( Ok( 'SCALAR', ref( ( DiveError() )[2] ) ), 4, ${ ( DiveError() )[2] } ); # Sets $value to undef() because # $root->{top}[1]{second}{key}[-5] would be a fatal error: $value= Dive( $root, qw( top 1 second key -5 ... ) ); Ok( undef, $value ); Ok( 3, ()= DiveError() ); Ok( '/out of range/', ( DiveError() )[0] ); Ok( $root->{top}[1]{second}{key}, ( DiveError() )[1] ); Skip( Ok( 'SCALAR', ref( ( DiveError() )[2] ) ), -5, ${ ( DiveError() )[2] } ); # Sets $ref to \$root->{top}[9]{new}{sub} (which grows # @{ $root->{top} } and autovifies two anonymous hashes): my $ref= DiveRef( $root, qw( top 9 new sub ) ); Ok( 10, @{ $root->{top} } ); Ok( exists $root->{top}[9]{new} ); Ok( exists $root->{top}[9]{new}{sub} ); Ok( \$root->{top}[9]{new}{sub}, $ref ); # die()s because "other" isn't a valid number: Ok( undef, eval { $ref= DiveRef( $root, qw( top other ... ) ); 1 } ); # Does: $root->{num}{1}{2}= 3; # (Autovivifies hashes despite the numeric keys.) Ok( 3, eval { DiveVal( $root, \( qw( num 1 2 ) ) ) = 3; }, $@ ); Ok( 3, eval { $root->{num}{1}{2} }, $@ ); delete $root->{num}; # Same thing: Ok( 3, eval { ${ DiveRef( $root, 'num', \1, \2 ) } = 3; }, $@ ); Ok( 3, $root->{num}{1}{2} ); # Retrieves above value, $value= 3: Ok( 3, eval { $value= DiveVal( $root, 'num', \1, \2 ); }, $@ ); # Same thing: Ok( 3, eval { $value= ${ DiveRef( $root, \( qw( num 1 2 ) ) ) }; }, $@ ); # Tries to do $root->{top}{1} and dies # because $root->{top} is an array reference: Ok( undef, eval { DiveRef( $root, 'top', \1 ); }, $@ ); # To only autovivify at the last step: $ref= DiveRef( Dive( $root, qw( top 1 second key 3 three ) ), 'missing' ); Ok( exists $root->{top}[1]{second}{key}[3]{three}{missing} ); Ok( \$root->{top}[1]{second}{key}[3]{three}{missing}, $ref ); Ok( 1, eval { if( $ref ) { $$ref= 'me too' } else { my( $nestedRef, $svKey, $errDesc )= DiveError(); die "Couldn't dereference $nestedRef via $$svKey: $errDesc\n"; } 1 }, $@ ); Ok( 'me too', $root->{top}[1]{second}{key}[3]{three}{missing} ); DiveClear(); Ok( 0, ()= DiveError() ); Ok( 0, eval { ()= DiveDie() }, $@ ); # Data::Diver does C Ok( undef, eval { DiveRef( { foo=>'bar' }, 'foo', 'bar' ); 1 } ); Ok( '/strict refs/', $@ ); Ok( undef, eval { DiveDie( { foo=>'bar' }, 'foo', 'bar' ); 1 } ); Ok( '/valid type of ref/', $@ ); Ok( undef, Dive( { foo=>'bar' }, 'foo', 'baz' ) ); Ok( 3, ()= DiveError() ); Ok( '/valid type of ref/', ( DiveError() )[0] ); Ok( 'bar', ( DiveError() )[1] ); Skip( Ok( 'SCALAR', ref( ( DiveError() )[2] ) ), 'baz', ${ ( DiveError() )[2] } ); # to distinguish between C and C my %hashOfHashes= ( first => { second => undef } ); my @exists= Dive( \%hashOfHashes, 'first', 'second' ); Ok( 1, @exists ); if( ! @exists ) { Ok(0); warn "\$hashOfHashes{first}{second} does not exists.\n"; } elsif( ! defined $exists[0] ) { Ok(1); } else { Ok(0); } %hashOfHashes= ( first => { x => 1 } ); @exists= Dive( \%hashOfHashes, 'first', 'second' ); Ok( 0, @exists ); if( ! @exists ) { Ok(1); } elsif( ! defined $exists[0] ) { Ok(0); warn "\$hashOfHashes{first}{second} exists but is undefined.\n"; } else { Ok(0); } # If $root is undefined, then DiveRef() immediately returns C<( undef )> Ok( 1, ()= DiveRef(undef) ); Ok( undef, DiveRef(undef) ); Ok( 0, ()= DiveRef() ); # [without overwriting C]. Ok( '/Key not present/', ( DiveError() )[0] ); Ok( $hashOfHashes{first}, ( DiveError() )[1] ); Skip( Ok( 'SCALAR', ref( ( DiveError() )[2] ) ), 'second', ${ ( DiveError() )[2] } ); # C to only allow partial autovivifying #TBD!!! $root= \[ \'spot' ]; Ok( 'spot', Dive( $root, undef, 0, undef ) ); Ok( 'spot', Dive( DiveRef( $root, undef, 0, undef ), undef ) ); Ok( 0, ()= Dive( $root, 0 ) ); Ok( 0, ()= Dive( $root, undef, undef ) ); Ok( 0, ()= Dive( $root, undef, 0, undef, undef ) ); # For DiveRef(), if C<$ref> is C, ... autovivified undef $root; @exists= DiveRef( \$root, undef ); Ok( 1, @exists ); Ok( \$root, $exists[0] ); Ok( undef, $root ); @exists= DiveRef( \$root, undef, undef ); Ok( 1, @exists ); Skip( Ok( 'SCALAR', ref($root) ), undef, $$root ); Ok( $root, $exists[0] ); # [that will start out undefined but may quickly @exists= DiveRef( \$root, undef, undef, 0 ); Ok( 1, @exists ); Ok( 'ARRAY', ref($$root) ); Ok( \$$root->[0], $exists[0] ); $root = [ sub { return Dive( \$root, @_ ) } ]; Ok( $root, Dive( $root, 0, [], undef, undef ) ); Ok( $root, Dive( $root, 0, [], 0, undef ) ); Ok( $root, Dive( $root, 0, [undef], undef ) ); Ok( $root, Dive( $root, 0, [undef], 0 ) ); __END__ =item C<$key =~ m/^-?\d+$/> For DiveRef(), if C<$ref> is undefined, then it is autovivified into a reference to anonymous array. If C<$ref> can act as a reference to an array, then C<< $ref= $ref->[$key] >> is attempted. If $key is larger than $#$ref, then @$ref will grow. If $key is less than -@$ref, then Perl will C. If C<$ref> cannot act as a reference to an array, then $ref might be used as a reference to a hash as described further down. =item a reference to an array If $key can be used as a reference to an array, then it means that you might expect C<$ref> to be a reference to a subroutine. If C is true, then C<< $ref->( @$key ) >> is attempted. If $key isn't the last value in @ListOfKeys and the next value is undefined, then &$ref is called in a scalar context and $ref is set to refer to the scalar value returned. Otherwise, &$ref is called in a list context and $ref is set to refer to an anonymous array containing the value(s) returned. =item any (defined) string This means that you might expect C<$ref> to be a reference to a hash. For Dive(), if C<$ref> can act as a reference to a hash and C<{$key} >> is true, then C<< $ref= $ref->{$key}; >> is run [and this can't fail nor autovivify]. Otherwise, Dive() returns an empty list and DiveError() can tell you where the problem was. For DiveRef(), C<< $ref= $ref->{$key} >> is simply attempted. This may autovivify a hash entry or even a new hash. It may also C, for example, if $ref can't be used as a hash reference. =back Note that the order of the above items is significant. It represents the order in which cases are tested. So an undefined $key will only be for derefencing a scalar reference and a numeric key will prefer to treat a reference as an array reference.