php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Doc Bug #70418 SplObjectStorage not replacing objects when hash matches
Submitted: 2015-09-03 11:32 UTC Modified: 2021-10-18 16:14 UTC
Votes:2
Avg. Score:3.0 ± 1.0
Reproduced:1 of 2 (50.0%)
Same Version:0 (0.0%)
Same OS:0 (0.0%)
From: richardh at channelgrabber dot com Assigned:
Status: Verified Package: SPL related
PHP Version: 5.5.28 OS:
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: richardh at channelgrabber dot com
New email:
PHP Version: OS:

 

 [2015-09-03 11:32 UTC] richardh at channelgrabber dot com
Description:
------------
If you change how the SplObjectStorage calculates an objects hash, and then attach an object which will create the same hash as a currently stored object, SplObjectStorage will silently drop the new object rather than replacing the current object at that hash with the new one. This means that if the object differs from the stored object, those changes are also dropped which can result in unexpected behaviour when iterating over the stored objects.

This conflict with how arrays work when reassigning a value for the same index.

Test script:
---------------
class IdObjectStorage extends SplObjectStorage {
    public function getHash($object) { return (string) $object->id; }
}

$storage = new IdObjectStorage(); $array = [];

$object1 = new stdClass(); $object1->id = 1; $object1->value = 'Object #1';
$storage->attach($object1);
$array[$object1->id] = $object1;

foreach($storage as $x) var_dump($x->value); // Object #1
foreach($array as $x)   var_dump($x->value); // Object #1

$object2 = new stdClass(); $object2->id = 1; $object2->value = 'Object #2';
$array[$object2->id] = $object2;
$storage->attach($object2);

foreach($storage as $x) var_dump($x->value); // Object #1
foreach($array as $x)   var_dump($x->value); // Object #2

Expected result:
----------------
SplObjectStorage should work the same as arrays, in that when an object is attached with the same hash as a current entry, that entry is replaced with the new object.

string(9) "Object #1"
string(9) "Object #1"
string(9) "Object #2"
string(9) "Object #2"

Actual result:
--------------
SplObjectStorage silently drops the new object as it already has an object for that hash.

string(9) "Object #1"
string(9) "Object #1"
string(9) "Object #1"
string(9) "Object #2"

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2015-09-03 15:11 UTC] cmb@php.net
-Status: Open +Status: Verified
 [2015-09-03 15:11 UTC] cmb@php.net
Confirmed: <https://3v4l.org/i1v7q>
 [2015-09-03 17:22 UTC] cmb@php.net
Actually, that behavior[1] is part of the ability to store
additional info with the object. The idea is obviously that it
should be possible to change the info only, but leave the object
as is, by calling ::attach() again with the same object. Of
course, that works fine with the default hashes...

[1] <https://github.com/php/php-src/blob/php-5.6.12/ext/spl/spl_observer.c#L220-L225>
 [2021-10-18 16:14 UTC] cmb@php.net
-Type: Bug +Type: Documentation Problem
 [2021-10-18 16:14 UTC] cmb@php.net
> Of course, that works fine with the default hashes...

And given that it behaves like that since "forever", I suggest to
document that ::getHash()[1] is supposed to return unique hashes,
and to clarify

| The storage object will never contain more than one object with
| the same identifier.

in case of hash collissions.

[1] <https://www.php.net/manual/en/splobjectstorage.gethash.php>
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Mar 19 04:01:31 2024 UTC