-
Notifications
You must be signed in to change notification settings - Fork 571
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TIED $x = \$y{z}; delete $y{z} -- behaves badly #7161
Comments
From @muirCreated by @muirSeveral related bugs... 1. After deleting a reference to a tied hash value, an assignment If there is more than one such reference, then when one reference 2. With untied hashes, creating a reference to hash value that doesn't 3. In most of perl, two references to the same object are themselves I haven't checked the behavior of tied ARRAYs with respect to these I'll upload a regression test. Perl Info
|
From @muir#!/usr/bin/perl use warnings; use Scalar::Util qw(refaddr reftype blessed); # print "# block at ".__LINE__."\n"; { $x{y} = 7; ok($$a == 7, delete $x{y}; my $d = \$x{y}; my $q = \$x{q}; package Hash1; sub TIEHASH sub FETCH sub STORE sub DELETE sub CLEAR sub EXISTS sub FIRSTKEY sub NEXTKEY |
From @iabynOn Tue, Mar 09, 2004 at 09:58:08PM -0000, David Muir Sharnoff wrote:
What you are seeing here is various user-level manfifestions of the fact $ref = \$tied_hash{foo}; There's no way to achieve these seamantics without the rough edges showing Dave. -- |
The RT System itself - Status changed from 'new' to 'open' |
From @muirI know this stuff isn't easy. I'm impressed it works as well as The simplest problem: binding to a value doesn't cause it to $obj->STORE('foo', undef) unless exists $obj->EXISTS('foo'); For the harder issue that $obj->DELETE('foo') should disconnect all Perl could do this automatically by automatically registering such I'm not sure how to fix the refaddr() problem. I work around it but Not pretty and a lot of work for an odd case. I think that work would -Dave |
From @hvdsDavid Muir Sharnoff <muir@idiom.com> wrote: Without thinking about it too deeply, it feels like this is something Hugo |
From @jlokierCreated by @jlokierIt is possible to take a reference to an element of a tied hash, like this: my $ref = \$tied_hash{key}; Taking the reference like that creates a special kind of Reading from the reference (C<my Writing to the reference (C<$$ref = ...>) calls the tied hash's STORE This is very clever and sensible and useful. Confusion comes about when the hash is written to directly, or via This code prints "new_value": $tied_hash{key} = "old_value"; Whereas this code prints "old_value" _if_ C<$tied_hash> is tied: $tied_hash{key} = "old_value"; This also prints "old_value" if C<$tied_hash> is tied: $tied_hash{key} = "old_value"; My complaint is that this cacheing of fetched values in a Ideally, any write to that key of the tied hash should invalidate the It may well be to much too state to keep track of, remembering the Example program: perl -l <<'END' Output of the above program: Store See how the "value2" lines after the last "Store" should logically say Thanks, Perl Info
|
From @muirJust noticed something else. An assignment though a reference print "# block at ".__LINE__."\n"; $x{y} = 7; ok($$a == 9); $$a = 10; ok($$b == 9); # bug |
From @muirThis should be merged with bug # 27555. |
Migrated from rt.perl.org#27555 (status was 'open')
Searchable as RT27555$
The text was updated successfully, but these errors were encountered: