rogue_tache has asked for the wisdom of the Perl Monks concerning the following question:
Platform: Perl >= 5.14.x, AMD64, linux, ubuntu 12.04
I have some embedded perl code which has worked for years using a persistent interpreter with template code from the perlembed docs.
I call a perl function from C which returns a list of assorted perl types:
sub TestSimpleScalars { my $r1 = 40 + 2; my $r2 = 3.14159; my $r3 = "Humpty Dumpty"; my $r4 = [10, 20, 30]; my $r5 = { name => 'Fred', dateOfBirth => '13-Jan-1969' }; return($r1, $r2, undef, $r3, $r4, $r5, 'end list'); }
The C code uses Perl_call_pv(, , G_ARRAY) to ensure the perl code is evaluated in an array context. It then tests the type of each returned item in the list using SvTYPE(). The arrayref and hashref items used to correctly return a type of SVt_PVAV/SVt_PVHV, but now all references simply return the integer type SVt_IV.
Thus whereas I used to get types:
I now get:[SvIV, SvNV, SVt_PV, SVt_NULL, SVt_PVAV, SVt_PVHV, SVt_PV]
[SvIV, SvNV, SVt_PV, SVt_NULL, SVt_IV, SVt_IV, SVt_PV]
It is as if the perl refs are being interpreted in a scalar context (the value that comes back is the internal ref integer value). This means it is impossible to return complex data structure from perl back to C.
This worked up to 5.10.1 This no longer works on v5.12 upwards (I tested 5.12.4, 5.14.2, 5.16.1)
If anyone has some example code showing call of a perl function that returns a complex data object with arrayref/hashref I would appreciate an example. Maybe I have just missed some magic flag somewhere?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Perl_call_pv(, , G_ARRAY) returns references as integer type SVt_IV
by dave_the_m (Monsignor) on Oct 01, 2012 at 15:00 UTC | |
by rogue_tache (Novice) on Oct 01, 2012 at 16:08 UTC |