http://www.perlmonks.org?node_id=170654


in reply to Re: Embedding Perl in C -- access to builtins?
in thread Embedding Perl in C -- access to builtins?

Thank you. This helps muchly; however, there are still many perlfuncs which I do not seem to be able to directly access through those functions alone. For instance, I have an SV *, and wish to reverse() it. What do I do? I imagine it to be possible to write a package (in Perl) that is loaded by the C program's perl instance at runtime, and which is used as a proxy to the core functions, but for some functions I'd have to fiddle with the arguments rather inefficiently. Are there better ways?

Replies are listed 'Best First'.
Re: Re: Re: Embedding Perl in C -- access to builtins?
by derby (Abbot) on May 31, 2002 at 11:01 UTC
    I don't know about better ... but you could create a c function that evaluates strings (ala perlembed):
    #include <EXTERN.h> #include <perl.h> static PerlInterpreter *my_perl; SV* my_eval_sv(SV *sv, I32 croak_on_error) { dSP; SV* retval; STRLEN n_a; PUSHMARK(SP); eval_sv(sv, G_SCALAR); SPAGAIN; retval = POPs; PUTBACK; if (croak_on_error && SvTRUE(ERRSV)) croak(SvPVx(ERRSV, n_a)); return retval; } main (int argc, char **argv, char **env) { STRLEN n_a; char *embedding[] = { "", "-e", "0" }; SV *var, *cmd; my_perl = perl_alloc(); perl_construct( my_perl ); perl_parse(my_perl, NULL, 3, embedding, NULL); perl_run(my_perl); var = newSVpvf( "%s", "ybred" ); printf( "var is %s\n", SvPV(var,n_a) ); cmd = newSVpvf( "reverse('%s');", SvPV(var,n_a) ); var = my_eval_sv( cmd, TRUE ); printf( "var is %s\n", SvPV(var,n_a) ); perl_destruct(my_perl); perl_free(my_perl); }

    -derby

      That's about the same as the proxy module I was talking about, but with more stuff in C and less in Perl. You still run into problems with things like (for instance) splice.

      And your particular example doesn't work if the input scalar contains any single quotes... though that could be fixed with a substitution.