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
|
=head1 NAME
Hash::SafeKeys - get hash contents without resetting each iterator
=head1 VERSION
Version 0.04
=cut
=head1 SYNOPSIS
use Hash::SafeKeys;
while (my ($k,$v) = each %hash) {
if (something_interesting_happens()) {
# get keys, values of %hash without resetting
# the 'each' iterator above
my @k = safekeys %hash;
my @v = safevalues %hash;
my %copy = safecopy %hash;
}
}
=head1 DESCRIPTION
Every hash variable in Perl has its own internal iterator,
accessed by the builtin C<each>, C<keys>, and C<values>
functions. The iterator is also implicitly used whenever
the hash is evaluated in list context. The iterator is
"reset" whenever C<keys> or C<values> is called on a hash,
including the implicit calls when the hash is evaluated in
list context. That makes it dangerous to do certain hash
operations inside a C<while ... each> loop:
while (my($k,$v) = each %hash) {
...
@k = sort keys %hash; # Infinite loop!
@v = grep { /foo/ }, values %hash; # Ack!
print join ' ', %hash; # Run away!
}
C<Hash::SafeKeys> provides alternate functions to access
the keys, values, or entire contents of a hash in a way
that does not reset the iterator, making them safe to use
in such contexts:
while (my($k,$v) = each %hash) {
...
@k = sort safekeys %hash; # Can do
@v = grep { /foo/ }, safevalues %hash; # No problem
print join ' ', safecopy %hash; # Right away, sir
}
=head1 FUNCTIONS
=head2 safekeys
=head2 LIST = safekeys HASH
Like the builtin L<keys|perlfunc/"keys"> function, returns a list
consisting of all the keys of the named hash, in the same order
that the builtin function would return them in. Unlike C<keys>,
calling C<safekeys> does not reset the HASH's internal iterator
(see L<each|perlfunc/"each">).
=head2 safevalues
=head2 LIST = safevalues HASH
Like the builtin L<values|perlfunc/"values"> function, returns a list
consisting of all the values of the named hash, in the same order
that the builtin function would return them in. Unlike C<values>,
calling C<safevalues> does not reset the HASH's internal iterator
(see L<each|perlfunc/"each">).
=head2 safecopy
=head2 LIST = safecopy HASH
In list context, returns a shallow copy of the named HASH without
resetting the HASH's internal iterator. Usually, evaluating a HASH
in list context implicitly uses the internal iterator, resetting
any existing state
=head2 save_iterator_state
=head2 restore_iterator_state
=head2 HANDLE = save_iterator_state($hashref)
=head2 restore_iterator_state($hashref, HANDLE)
Low-level functions to manipulate the iterator of a hash reference.
The use cases for directly using these functions are
=over 4
=item 1. Performance
The absolute fastest way to I<safely> access the keys of a hash is:
$handle = Hash::Safekeys::save_iterator_state( \%hash );
@keys = keys %hash;
Hash::Safekeys::restore_iterator_state( \%hash, $handle );
This is an improvement over C<@keys = safekeys %hash> because it
eliminates the O(n) list copy operation on return from the
C<safekeys> function.
=item 2. Access to aliased values
The builtin C<values> function returns aliases to the internal
hash values, allowing you to modify the contents of the hash
with constructions like
s/foo/bar/g for values %hash
As C<safevalues %hash> returns a copy of the hash values,
C<s/foo/bar/g for safevalues %hash> will B<not> modify the contents
of the hash.
To I<safely> modify the values of the hash, a workaround with the
low-level iterator functions is
$handle = Hash::SafeKeys::save_iterator_state( \%hash );
for (values %hash) { ... modify($_) ... }
Hash::SafeKeys::restore_iterator_state( \%hash, $handle );
=item 3. Nested each calls on the same hash
This construction will not work if C<$hash1> and C<$hash2> refer
to the same hash:
while (($key1,$val1) = each %$hash1) {
while (($key2,$val2) = each %$hash2) { ... }
}
but this construction is I<safe>:
while (($key1,$val1) = each %$hash1) {
$handle = Hash::SafeKeys::save_iterator_state($hash2);
while (($key2,$val2) = each %$hash2) { ... }
Hash::SafeKeys::restore_iterator_state($hash2, $handle);
}
The HANDLE that is returned by C<save_iterator_state> and used
as an input to C<restore_iterator_state> is currently implemented
as an integer that can be mapped internally to an original
hash iterator. This implementation is subject to change in future
releases and you should not rely on this value being an integer.
It is a grave error to provide a different hash reference with the
handle to the C<restore_iterator_state> call than you provided to the
C<save_iterator_state> call that created the handle.
Calling C<save_iterator_state> without later calling
C<restore_iterator_state> will leak memory.
=back
=head1 EXPORT
L<"safekeys">, L<"safevalues">, and L<"safecopy"> are all
exported by default. Invoke L<Hash::SafeKeys> with the empty arg list
use Hash::SafeKeys ();
if you don't want these functions to be imported into the calling
package.
The low-level iterator functions L<"save_iterator_state"> and
L<"restore_iterator_state"> may also be exported by including them
in the C<use> call or by using the tag C<:all>
use Hash::SafeKeys ':all'; # also exports low-level iterator funcs
=head1 AUTHOR
Marty O'Brien, C<< <mob at cpan.org> >>
=head1 BUGS
Please report any bugs or feature requests to
C<bug-hash-safekeys at rt.cpan.org>, or through the web interface at
L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Hash-SafeKeys>.
I will be notified, and then you'll
automatically be notified of progress on your bug as I make changes.
=head1 SUPPORT
You can find documentation for this module with the perldoc command.
perldoc Hash::SafeKeys
You can also look for information at:
=over 4
=item * RT: CPAN's request tracker (report bugs here)
L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Hash-SafeKeys>
=item * AnnoCPAN: Annotated CPAN documentation
L<http://annocpan.org/dist/Hash-SafeKeys>
=item * CPAN Ratings
L<http://cpanratings.perl.org/d/Hash-SafeKeys>
=item * Search CPAN
L<http://search.cpan.org/dist/Hash-SafeKeys/>
=back
=head1 ACKNOWLEDGEMENTS
The C<dclone> method in the L<Storable> module demonstrated how
to save and restore internal hash iterator state.
This module is indebted to the authors of this module and to
L<< user C<gpojd> at stackoverflow.com|http://stackoverflow.com/a/10921567/168857 >>
for directing me to it.
A helpful comment by
L<<Alexandr Evstigneev|http://search.cpan.org/~hurricup/>>
let to further improvements.
=head1 LICENSE AND COPYRIGHT
Copyright 2012-2016 Marty O'Brien.
This program is free software; you can redistribute it and/or modify it
under the terms of either: the GNU General Public License as published
by the Free Software Foundation; or the Artistic License.
See http://dev.perl.org/licenses/ for more information.
=cut
package Hash::SafeKeys;
use strict;
use warnings;
use base qw(Exporter);
our @EXPORT = qw(safekeys safevalues safecopy);
our @EXPORT_OK = qw(save_iterator_state restore_iterator_state);
our %EXPORT_TAGS = ('all' => [@EXPORT, @EXPORT_OK]);
our $VERSION = '0.04';
## crutch for creating the XS code ...
#use Inline (Config => CLEAN_AFTER_BUILD => 0, FORCE_BUILD => 1,
# BUILD_NOISY => 1);
#use Inline 'C';
# crutches off
use base qw(DynaLoader); bootstrap Hash::SafeKeys $VERSION;
sub safekeys (\%) {
my $hash = shift;
my $state = save_iterator_state($hash);
if (wantarray) {
my @keys = keys %$hash;
restore_iterator_state($hash,$state);
return @keys;
} else {
my $nkeys = keys %$hash;
restore_iterator_state($hash,$state);
return $nkeys;
}
}
sub safevalues (\%) {
my $hash = shift;
my $state = save_iterator_state($hash);
if (wantarray) {
my @vals = values %$hash;
restore_iterator_state($hash,$state);
return @vals;
} else {
my $nvals = values %$hash;
restore_iterator_state($hash,$state);
return $nvals;
}
}
sub safecopy (\%) {
my $hash = shift;
return scalar %$hash if !wantarray; # scalar(%HASH) does not reset iter
my $state = save_iterator_state($hash);
my @copy = %$hash;
restore_iterator_state($hash,$state);
return @copy;
}
1;
__DATA__
__C__
#define STATES_INITIAL_SIZE 10
struct _iterator_state {
I32 riter;
HE* eiter;
};
typedef struct _iterator_state iterator_state;
static int module_initialized = 0;
iterator_state **STATES;
int STATES_size;
void _initialize()
{
int i;
if (module_initialized) return;
STATES = malloc(STATES_INITIAL_SIZE*sizeof(iterator_state *));
STATES_size = STATES_INITIAL_SIZE;
for (i=0; i<STATES_size; i++) {
STATES[i] = (iterator_state*) 0;
}
module_initialized = 1;
}
void _resize_STATES()
{
int i;
int new_size = STATES_size * 2;
iterator_state **new_STATES = malloc(new_size*sizeof(iterator_state*));
for (i=0; i<STATES_size; i++) {
new_STATES[i] = STATES[i];
}
for (; i<new_size; i++) {
new_STATES[i] = (iterator_state*) 0;
}
free(STATES);
STATES = new_STATES;
STATES_size = new_size;
}
int save_iterator_state(SV* hvref)
{
int i;
if (hvref == (SV*) 0) {
warn("Hash::SafeKeys::save_iterator_state: null input!");
return -1;
}
HV* hv = (HV*) SvRV(hvref);
if (hv == (HV*) 0) {
warn("Hash::SafeKeys::save_iterator_state: null input!");
return -1;
}
iterator_state *state = malloc(sizeof(iterator_state));
_initialize();
for (i=0; i<STATES_size; i++) {
if (STATES[i] == (iterator_state*) 0) {
break;
}
}
if (i >= STATES_size) {
i = STATES_size;
_resize_STATES();
}
state->riter = HvRITER(hv);
state->eiter = HvEITER(hv);
STATES[i] = state;
hv_iterinit(hv);
return i;
}
int restore_iterator_state(SV* hvref, int i)
{
if (hvref == (SV*) 0) {
warn("Hash::SafeKeys::restore_iterator_state: null input");
return 0;
}
HV* hv = (HV*) SvRV(hvref);
if (hv == (HV*) 0) {
warn("Hash::SafeKeys::restore_iterator_state: null input");
return 0;
}
_initialize();
if (i < 0 || i >= STATES_size) {
warn("Hash::SafeKeys::restore_iterator_state: invalid restore key %d", i);
return 0;
}
iterator_state *state = STATES[i];
if (state != (iterator_state*) 0) {
HvRITER(hv) = state->riter;
HvEITER(hv) = state->eiter;
free(state);
STATES[i] = (iterator_state*) 0;
return 1;
}
warn("Hash::SafeKeys::restore_iterator_state: operation failed for key %d", i);
STATES[i] = (iterator_state*) 0;
return 0;
}
__END__
|