Question

I'm trying to create a Perl hash from within a C library. Here's what I've got so far:

static void add_string_to_perl_hash ( HV *hv, char * key, char *value ) {

SV *obj = sv_2mortal(newSVpv(value, 0));

hv_store(hv, (const char *)key, strlen (key), obj, 0);

SvREFCNT_inc(obj);

}

SV * do_get_test_hash () {

    static char *foo ="foo";
    static char *bar ="bar";

    HV *hv;

    hv = newHV();
    add_string_to_perl_hash ( hv, "foo",   foo);
    add_string_to_perl_hash ( hv, "bar",   bar);

    return sv_2mortal(newRV_noinc((SV*)hv));
}

Trying it out: I don't get anything that makes any sense to me:

use testlib;
use Data::Dumper;

print Dumper (testlib::do_get_test_hash());

$VAR1 = bless( do{\(my $o = 5359872)}, '_p_SV' );

Ideas?

Was it helpful?

Solution

have a look at Example 6 of perlxstut. It creates a bunch of hashes and adds them to an array. At the end, it returns a reference to the array. It would work practically the same if you returned a hash.

OTHER TIPS

I believe you must push the value you want to return onto the stack, not return it from the function, but I am used to XS rather than SWIG.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top