Q: hash parameter passed to c++ ruby extension is incomplete

I’m trying to pass following hash to my c++ ruby extension:
h1 = {“G804988.19” => 0, “G804988.21” => 0, “NH3812.06” => 0,
“NH3812.10” => 0}
myext.SomeFunction(h1)

The hash looks fine from script:
h1.each_pair {| key, value | printf("%s - %s\n", key, value) }

The above statement shows that all 4 hash entries are there.

But in the extension I can only see 3 items.
Code is like below:

extern “C” VALUE SomeFunction(VALUE vSelf,VALUE vh1)
{
struct st_table *pTblHash;

pTblHash = RHASH(vh1)->tbl;
}

The pTblHash->num_entries is correct and equals to 4.
But in the pTblHash->bins array there are only 3 not empty pointers to
hash elements.

If I use one symbol shorter hash keys for one of entries (G80498.21
instead of G804988.21), for example:
h1 = {“G804988.19” => 0, “G80498.21” => 0, “NH3812.06” => 0, “NH3812.10”
=> 0}

then problem disappears.

I’m debugging under Windows XP and Ruby 1.8.

I’ll appreciate any help.
Thank you.
Yuri

Hi,

2009/3/11 Yuri D. [email protected]:

The pTblHash->num_entries is correct and equals to 4.
I’m debugging under Windows XP and Ruby 1.8.

I guess the problem is due to the Collision resolution [1].

The st_table, num_entries and bins are highly implementation dependent
so using it directly in extension code is not recommended.

In my experience, almost all extension codes required hash could be
done with following rb_hash_xxx functions
rb_hash_new
rb_hash_delete
rb_hash_foreach
rb_hash_aref
rb_hash_aset

[1] Hash table - Wikipedia

Regards,

Park H.

Heesob P. wrote:

I guess the problem is due to the Collision resolution [1].

The st_table, num_entries and bins are highly implementation dependent
so using it directly in extension code is not recommended.

rb_hash_foreach

Thank you
Actually I started with using rb_hash_foreach, but sometimes I don’t see
this function in intern.h (probably older Ruby versions), so I turned to
direct usage.
But after your reply I thought that maybe there are two items under same
bin and I can reach it somehow.