[asperl] fixups to make it build and pass tests under both compilers
[p5sagit/p5-mst-13.2.git] / pod / perlembed.pod
CommitLineData
a0d0e21e 1=head1 NAME
2
cb1a09d0 3perlembed - how to embed perl in your C program
a0d0e21e 4
5=head1 DESCRIPTION
6
cb1a09d0 7=head2 PREAMBLE
8
9Do you want to:
10
11=over 5
12
96dbc785 13=item B<Use C from Perl?>
cb1a09d0 14
ee580363 15Read L<perlxs>, L<perlxstut> and L<h2xs>.
cb1a09d0 16
54310121 17=item B<Use a Unix program from Perl?>
cb1a09d0 18
5f05dabc 19Read about back-quotes and about C<system> and C<exec> in L<perlfunc>.
cb1a09d0 20
96dbc785 21=item B<Use Perl from Perl?>
cb1a09d0 22
7b8d334a 23Read about do(), eval(), require(), and use() in L<perlfunc>.
cb1a09d0 24
96dbc785 25=item B<Use C from C?>
cb1a09d0 26
27Rethink your design.
28
96dbc785 29=item B<Use Perl from C?>
cb1a09d0 30
31Read on...
32
33=back
34
35=head2 ROADMAP
36
7b8d334a 37Compiling your C program
cb1a09d0 38
53f52f58 39There's one example in each of the nine sections:
cb1a09d0 40
7b8d334a 41=over 4
cb1a09d0 42
7b8d334a 43=item *
cb1a09d0 44
7b8d334a 45Adding a Perl interpreter to your C program
cb1a09d0 46
7b8d334a 47=item *
cb1a09d0 48
7b8d334a 49Calling a Perl subroutine from your C program
cb1a09d0 50
7b8d334a 51=item *
a6006777 52
7b8d334a 53Evaluating a Perl statement from your C program
8ebc5c01 54
7b8d334a 55=item *
96dbc785 56
7b8d334a 57Performing Perl pattern matches and substitutions from your C program
58
59=item *
60
61Fiddling with the Perl stack from your C program
62
63=item *
64
65Maintaining a persistent interpreter
66
67=item *
68
69Maintaining multiple interpreter instances
70
71=item *
72
73Using Perl modules, which themselves use C libraries, from your C program
74
75=item *
76
77Embedding Perl under Win32
78
79=back
cb1a09d0 80
81=head2 Compiling your C program
82
8a7dc658 83If you have trouble compiling the scripts in this documentation,
84you're not alone. The cardinal rule: COMPILE THE PROGRAMS IN EXACTLY
85THE SAME WAY THAT YOUR PERL WAS COMPILED. (Sorry for yelling.)
cb1a09d0 86
8a7dc658 87Also, every C program that uses Perl must link in the I<perl library>.
cb1a09d0 88What's that, you ask? Perl is itself written in C; the perl library
89is the collection of compiled C programs that were used to create your
90perl executable (I</usr/bin/perl> or equivalent). (Corollary: you
91can't use Perl from your C program unless Perl has been compiled on
92your machine, or installed properly--that's why you shouldn't blithely
93copy Perl executables from machine to machine without also copying the
94I<lib> directory.)
95
8a7dc658 96When you use Perl from C, your C program will--usually--allocate,
97"run", and deallocate a I<PerlInterpreter> object, which is defined by
98the perl library.
cb1a09d0 99
100If your copy of Perl is recent enough to contain this documentation
a6006777 101(version 5.002 or later), then the perl library (and I<EXTERN.h> and
8a7dc658 102I<perl.h>, which you'll also need) will reside in a directory
103that looks like this:
cb1a09d0 104
105 /usr/local/lib/perl5/your_architecture_here/CORE
106
107or perhaps just
108
109 /usr/local/lib/perl5/CORE
110
111or maybe something like
112
113 /usr/opt/perl5/CORE
114
115Execute this statement for a hint about where to find CORE:
116
96dbc785 117 perl -MConfig -e 'print $Config{archlib}'
cb1a09d0 118
54310121 119Here's how you'd compile the example in the next section,
7b8d334a 120Adding a Perl interpreter to your C program, on my Linux box:
cb1a09d0 121
54310121 122 % gcc -O2 -Dbool=char -DHAS_BOOL -I/usr/local/include
8a7dc658 123 -I/usr/local/lib/perl5/i586-linux/5.003/CORE
54310121 124 -L/usr/local/lib/perl5/i586-linux/5.003/CORE
8a7dc658 125 -o interp interp.c -lperl -lm
cb1a09d0 126
54310121 127(That's all one line.) On my DEC Alpha running 5.003_05, the incantation
8a7dc658 128is a bit different:
129
54310121 130 % cc -O2 -Olimit 2900 -DSTANDARD_C -I/usr/local/include
131 -I/usr/local/lib/perl5/alpha-dec_osf/5.00305/CORE
132 -L/usr/local/lib/perl5/alpha-dec_osf/5.00305/CORE -L/usr/local/lib
8a7dc658 133 -D__LANGUAGE_C__ -D_NO_PROTO -o interp interp.c -lperl -lm
134
135How can you figure out what to add? Assuming your Perl is post-5.001,
136execute a C<perl -V> command and pay special attention to the "cc" and
54310121 137"ccflags" information.
8a7dc658 138
54310121 139You'll have to choose the appropriate compiler (I<cc>, I<gcc>, et al.) for
8a7dc658 140your machine: C<perl -MConfig -e 'print $Config{cc}'> will tell you what
54310121 141to use.
8a7dc658 142
143You'll also have to choose the appropriate library directory
144(I</usr/local/lib/...>) for your machine. If your compiler complains
145that certain functions are undefined, or that it can't locate
146I<-lperl>, then you need to change the path following the C<-L>. If it
147complains that it can't find I<EXTERN.h> and I<perl.h>, you need to
148change the path following the C<-I>.
cb1a09d0 149
150You may have to add extra libraries as well. Which ones?
96dbc785 151Perhaps those printed by
152
153 perl -MConfig -e 'print $Config{libs}'
154
54310121 155Provided your perl binary was properly configured and installed the
8a7dc658 156B<ExtUtils::Embed> module will determine all of this information for
157you:
96dbc785 158
159 % cc -o interp interp.c `perl -MExtUtils::Embed -e ccopts -e ldopts`
160
8a7dc658 161If the B<ExtUtils::Embed> module isn't part of your Perl distribution,
162you can retrieve it from
163http://www.perl.com/perl/CPAN/modules/by-module/ExtUtils::Embed. (If
164this documentation came from your Perl distribution, then you're
165running 5.004 or better and you already have it.)
96dbc785 166
8a7dc658 167The B<ExtUtils::Embed> kit on CPAN also contains all source code for
54310121 168the examples in this document, tests, additional examples and other
8a7dc658 169information you may find useful.
cb1a09d0 170
171=head2 Adding a Perl interpreter to your C program
172
173In a sense, perl (the C program) is a good example of embedding Perl
174(the language), so I'll demonstrate embedding with I<miniperlmain.c>,
54310121 175from the source distribution. Here's a bastardized, nonportable
8a7dc658 176version of I<miniperlmain.c> containing the essentials of embedding:
cb1a09d0 177
cb1a09d0 178 #include <EXTERN.h> /* from the Perl distribution */
179 #include <perl.h> /* from the Perl distribution */
96dbc785 180
cb1a09d0 181 static PerlInterpreter *my_perl; /*** The Perl interpreter ***/
96dbc785 182
c07a80fd 183 int main(int argc, char **argv, char **env)
cb1a09d0 184 {
185 my_perl = perl_alloc();
186 perl_construct(my_perl);
96dbc785 187 perl_parse(my_perl, NULL, argc, argv, (char **)NULL);
cb1a09d0 188 perl_run(my_perl);
189 perl_destruct(my_perl);
190 perl_free(my_perl);
191 }
192
8a7dc658 193Notice that we don't use the C<env> pointer. Normally handed to
194C<perl_parse> as its final argument, C<env> here is replaced by
195C<NULL>, which means that the current environment will be used.
96dbc785 196
cb1a09d0 197Now compile this program (I'll call it I<interp.c>) into an executable:
198
96dbc785 199 % cc -o interp interp.c `perl -MExtUtils::Embed -e ccopts -e ldopts`
cb1a09d0 200
201After a successful compilation, you'll be able to use I<interp> just
202like perl itself:
203
204 % interp
205 print "Pretty Good Perl \n";
206 print "10890 - 9801 is ", 10890 - 9801;
207 <CTRL-D>
208 Pretty Good Perl
209 10890 - 9801 is 1089
210
211or
212
213 % interp -e 'printf("%x", 3735928559)'
214 deadbeef
215
216You can also read and execute Perl statements from a file while in the
217midst of your C program, by placing the filename in I<argv[1]> before
96dbc785 218calling I<perl_run()>.
cb1a09d0 219
220=head2 Calling a Perl subroutine from your C program
221
8ebc5c01 222To call individual Perl subroutines, you can use any of the B<perl_call_*>
7b8d334a 223functions documented in L<perlcall>.
224In this example we'll use perl_call_argv().
cb1a09d0 225
226That's shown below, in a program I'll call I<showtime.c>.
227
cb1a09d0 228 #include <EXTERN.h>
96dbc785 229 #include <perl.h>
230
231 static PerlInterpreter *my_perl;
232
c07a80fd 233 int main(int argc, char **argv, char **env)
cb1a09d0 234 {
8ebc5c01 235 char *args[] = { NULL };
cb1a09d0 236 my_perl = perl_alloc();
237 perl_construct(my_perl);
96dbc785 238
239 perl_parse(my_perl, NULL, argc, argv, NULL);
240
8ebc5c01 241 /*** skipping perl_run() ***/
242
243 perl_call_argv("showtime", G_DISCARD | G_NOARGS, args);
244
cb1a09d0 245 perl_destruct(my_perl);
246 perl_free(my_perl);
247 }
248
249where I<showtime> is a Perl subroutine that takes no arguments (that's the
96dbc785 250I<G_NOARGS>) and for which I'll ignore the return value (that's the
cb1a09d0 251I<G_DISCARD>). Those flags, and others, are discussed in L<perlcall>.
252
253I'll define the I<showtime> subroutine in a file called I<showtime.pl>:
254
255 print "I shan't be printed.";
96dbc785 256
cb1a09d0 257 sub showtime {
258 print time;
259 }
260
261Simple enough. Now compile and run:
262
96dbc785 263 % cc -o showtime showtime.c `perl -MExtUtils::Embed -e ccopts -e ldopts`
264
cb1a09d0 265 % showtime showtime.pl
266 818284590
267
268yielding the number of seconds that elapsed between January 1, 1970
8a7dc658 269(the beginning of the Unix epoch), and the moment I began writing this
cb1a09d0 270sentence.
271
8a7dc658 272In this particular case we don't have to call I<perl_run>, but in
273general it's considered good practice to ensure proper initialization
274of library code, including execution of all object C<DESTROY> methods
275and package C<END {}> blocks.
8ebc5c01 276
8a7dc658 277If you want to pass arguments to the Perl subroutine, you can add
278strings to the C<NULL>-terminated C<args> list passed to
279I<perl_call_argv>. For other data types, or to examine return values,
280you'll need to manipulate the Perl stack. That's demonstrated in the
7b8d334a 281last section of this document: Fiddling with the Perl stack from
282your C program.
cb1a09d0 283
284=head2 Evaluating a Perl statement from your C program
285
137443ea 286Perl provides two API functions to evaluate pieces of Perl code.
7b8d334a 287These are perl_eval_sv() and perl_eval_pv().
137443ea 288
289Arguably, these are the only routines you'll ever need to execute
290snippets of Perl code from within your C program. Your code can be
8a7dc658 291as long as you wish; it can contain multiple statements; it can employ
7b8d334a 292use(), require(), and do() to include external Perl files.
cb1a09d0 293
7b8d334a 294perl_eval_pv() lets us evaluate individual Perl strings, and then
96dbc785 295extract variables for coercion into C types. The following program,
cb1a09d0 296I<string.c>, executes three Perl strings, extracting an C<int> from
297the first, a C<float> from the second, and a C<char *> from the third.
298
cb1a09d0 299 #include <EXTERN.h>
300 #include <perl.h>
137443ea 301
cb1a09d0 302 static PerlInterpreter *my_perl;
137443ea 303
c07a80fd 304 main (int argc, char **argv, char **env)
cb1a09d0 305 {
137443ea 306 char *embedding[] = { "", "-e", "0" };
307
308 my_perl = perl_alloc();
309 perl_construct( my_perl );
310
311 perl_parse(my_perl, NULL, 3, embedding, NULL);
312 perl_run(my_perl);
313
314 /** Treat $a as an integer **/
315 perl_eval_pv("$a = 3; $a **= 2", TRUE);
316 printf("a = %d\n", SvIV(perl_get_sv("a", FALSE)));
317
318 /** Treat $a as a float **/
319 perl_eval_pv("$a = 3.14; $a **= 2", TRUE);
320 printf("a = %f\n", SvNV(perl_get_sv("a", FALSE)));
321
322 /** Treat $a as a string **/
323 perl_eval_pv("$a = 'rekcaH lreP rehtonA tsuJ'; $a = reverse($a);", TRUE);
324 printf("a = %s\n", SvPV(perl_get_sv("a", FALSE), na));
325
326 perl_destruct(my_perl);
327 perl_free(my_perl);
cb1a09d0 328 }
329
330All of those strange functions with I<sv> in their names help convert Perl scalars to C types. They're described in L<perlguts>.
331
332If you compile and run I<string.c>, you'll see the results of using
333I<SvIV()> to create an C<int>, I<SvNV()> to create a C<float>, and
334I<SvPV()> to create a string:
335
336 a = 9
337 a = 9.859600
338 a = Just Another Perl Hacker
339
8f183262 340In the example above, we've created a global variable to temporarily
341store the computed value of our eval'd expression. It is also
342possible and in most cases a better strategy to fetch the return value
7b8d334a 343from perl_eval_pv() instead. Example:
8f183262 344
8f183262 345 ...
137443ea 346 SV *val = perl_eval_pv("reverse 'rekcaH lreP rehtonA tsuJ'", TRUE);
8f183262 347 printf("%s\n", SvPV(val,na));
348 ...
349
350This way, we avoid namespace pollution by not creating global
351variables and we've simplified our code as well.
cb1a09d0 352
353=head2 Performing Perl pattern matches and substitutions from your C program
354
1f05cdcd 355The I<perl_eval_sv()> function lets us evaluate chunks of Perl code, so we can
cb1a09d0 356define some functions that use it to "specialize" in matches and
357substitutions: I<match()>, I<substitute()>, and I<matches()>.
358
1f05cdcd 359 char match(SV *string, char *pattern);
cb1a09d0 360
8a7dc658 361Given a string and a pattern (e.g., C<m/clasp/> or C</\b\w*\b/>, which
362in your C program might appear as "/\\b\\w*\\b/"), match()
cb1a09d0 363returns 1 if the string matches the pattern and 0 otherwise.
364
1f05cdcd 365 int substitute(SV **string, char *pattern);
cb1a09d0 366
1f05cdcd 367Given a pointer to an C<SV> and an C<=~> operation (e.g.,
8a7dc658 368C<s/bob/robert/g> or C<tr[A-Z][a-z]>), substitute() modifies the string
1f05cdcd 369within the C<AV> at according to the operation, returning the number of substitutions
8a7dc658 370made.
cb1a09d0 371
1f05cdcd 372 int matches(SV *string, char *pattern, AV **matches);
cb1a09d0 373
1f05cdcd 374Given an C<SV>, a pattern, and a pointer to an empty C<AV>,
8a7dc658 375matches() evaluates C<$string =~ $pattern> in an array context, and
1f05cdcd 376fills in I<matches> with the array elements, returning the number of matches found.
cb1a09d0 377
96dbc785 378Here's a sample program, I<match.c>, that uses all three (long lines have
379been wrapped here):
cb1a09d0 380
1f05cdcd 381 #include <EXTERN.h>
382 #include <perl.h>
383
384 /** my_perl_eval_sv(code, error_check)
385 ** kinda like perl_eval_sv(),
386 ** but we pop the return value off the stack
387 **/
388 SV* my_perl_eval_sv(SV *sv, I32 croak_on_error)
389 {
390 dSP;
391 SV* retval;
392
924508f0 393 PUSHMARK(SP);
1f05cdcd 394 perl_eval_sv(sv, G_SCALAR);
395
396 SPAGAIN;
397 retval = POPs;
398 PUTBACK;
399
400 if (croak_on_error && SvTRUE(GvSV(errgv)))
401 croak(SvPVx(GvSV(errgv), na));
402
403 return retval;
404 }
405
406 /** match(string, pattern)
407 **
408 ** Used for matches in a scalar context.
409 **
410 ** Returns 1 if the match was successful; 0 otherwise.
411 **/
412
413 I32 match(SV *string, char *pattern)
414 {
8c52afec 415 SV *command = NEWSV(1099, 0), *retval;
1f05cdcd 416
417 sv_setpvf(command, "my $string = '%s'; $string =~ %s",
418 SvPV(string,na), pattern);
419
420 retval = my_perl_eval_sv(command, TRUE);
421 SvREFCNT_dec(command);
422
423 return SvIV(retval);
424 }
425
426 /** substitute(string, pattern)
427 **
428 ** Used for =~ operations that modify their left-hand side (s/// and tr///)
429 **
430 ** Returns the number of successful matches, and
431 ** modifies the input string if there were any.
432 **/
433
434 I32 substitute(SV **string, char *pattern)
435 {
8c52afec 436 SV *command = NEWSV(1099, 0), *retval;
1f05cdcd 437
438 sv_setpvf(command, "$string = '%s'; ($string =~ %s)",
439 SvPV(*string,na), pattern);
440
441 retval = my_perl_eval_sv(command, TRUE);
442 SvREFCNT_dec(command);
443
444 *string = perl_get_sv("string", FALSE);
445 return SvIV(retval);
446 }
447
448 /** matches(string, pattern, matches)
449 **
450 ** Used for matches in an array context.
451 **
452 ** Returns the number of matches,
453 ** and fills in **matches with the matching substrings
454 **/
455
456 I32 matches(SV *string, char *pattern, AV **match_list)
457 {
8c52afec 458 SV *command = NEWSV(1099, 0);
cb1a09d0 459 I32 num_matches;
1f05cdcd 460
461 sv_setpvf(command, "my $string = '%s'; @array = ($string =~ %s)",
462 SvPV(string,na), pattern);
463
464 my_perl_eval_sv(command, TRUE);
465 SvREFCNT_dec(command);
466
467 *match_list = perl_get_av("array", FALSE);
468 num_matches = av_len(*match_list) + 1; /** assume $[ is 0 **/
469
cb1a09d0 470 return num_matches;
1f05cdcd 471 }
472
473 main (int argc, char **argv, char **env)
474 {
475 PerlInterpreter *my_perl = perl_alloc();
a6006777 476 char *embedding[] = { "", "-e", "0" };
1f05cdcd 477 AV *match_list;
478 I32 num_matches, i;
8c52afec 479 SV *text = NEWSV(1099,0);
1f05cdcd 480
481 perl_construct(my_perl);
96dbc785 482 perl_parse(my_perl, NULL, 3, embedding, NULL);
1f05cdcd 483
484 sv_setpv(text, "When he is at a convenience store and the bill comes to some amount like 76 cents, Maynard is aware that there is something he *should* do, something that will enable him to get back a quarter, but he has no idea *what*. He fumbles through his red squeezey changepurse and gives the boy three extra pennies with his dollar, hoping that he might luck into the correct amount. The boy gives him back two of his own pennies and then the big shiny quarter that is his prize. -RICHH");
485
96dbc785 486 if (match(text, "m/quarter/")) /** Does text contain 'quarter'? **/
1f05cdcd 487 printf("match: Text contains the word 'quarter'.\n\n");
96dbc785 488 else
1f05cdcd 489 printf("match: Text doesn't contain the word 'quarter'.\n\n");
490
96dbc785 491 if (match(text, "m/eighth/")) /** Does text contain 'eighth'? **/
1f05cdcd 492 printf("match: Text contains the word 'eighth'.\n\n");
96dbc785 493 else
1f05cdcd 494 printf("match: Text doesn't contain the word 'eighth'.\n\n");
495
96dbc785 496 /** Match all occurrences of /wi../ **/
497 num_matches = matches(text, "m/(wi..)/g", &match_list);
498 printf("matches: m/(wi..)/g found %d matches...\n", num_matches);
1f05cdcd 499
96dbc785 500 for (i = 0; i < num_matches; i++)
1f05cdcd 501 printf("match: %s\n", SvPV(*av_fetch(match_list, i, FALSE),na));
cb1a09d0 502 printf("\n");
1f05cdcd 503
96dbc785 504 /** Remove all vowels from text **/
505 num_matches = substitute(&text, "s/[aeiou]//gi");
cb1a09d0 506 if (num_matches) {
1f05cdcd 507 printf("substitute: s/[aeiou]//gi...%d substitutions made.\n",
508 num_matches);
509 printf("Now text is: %s\n\n", SvPV(text,na));
cb1a09d0 510 }
1f05cdcd 511
96dbc785 512 /** Attempt a substitution **/
513 if (!substitute(&text, "s/Perl/C/")) {
1f05cdcd 514 printf("substitute: s/Perl/C...No substitution made.\n\n");
cb1a09d0 515 }
1f05cdcd 516
517 SvREFCNT_dec(text);
518 perl_destruct_level = 1;
cb1a09d0 519 perl_destruct(my_perl);
520 perl_free(my_perl);
1f05cdcd 521 }
cb1a09d0 522
96dbc785 523which produces the output (again, long lines have been wrapped here)
cb1a09d0 524
8a7dc658 525 match: Text contains the word 'quarter'.
96dbc785 526
8a7dc658 527 match: Text doesn't contain the word 'eighth'.
96dbc785 528
8a7dc658 529 matches: m/(wi..)/g found 2 matches...
cb1a09d0 530 match: will
531 match: with
96dbc785 532
8a7dc658 533 substitute: s/[aeiou]//gi...139 substitutions made.
54310121 534 Now text is: Whn h s t cnvnnc str nd th bll cms t sm mnt lk 76 cnts,
96dbc785 535 Mynrd s wr tht thr s smthng h *shld* d, smthng tht wll nbl hm t gt bck
536 qrtr, bt h hs n d *wht*. H fmbls thrgh hs rd sqzy chngprs nd gvs th by
537 thr xtr pnns wth hs dllr, hpng tht h mght lck nt th crrct mnt. Th by gvs
538 hm bck tw f hs wn pnns nd thn th bg shny qrtr tht s hs prz. -RCHH
539
8a7dc658 540 substitute: s/Perl/C...No substitution made.
96dbc785 541
cb1a09d0 542=head2 Fiddling with the Perl stack from your C program
543
544When trying to explain stacks, most computer science textbooks mumble
545something about spring-loaded columns of cafeteria plates: the last
546thing you pushed on the stack is the first thing you pop off. That'll
547do for our purposes: your C program will push some arguments onto "the Perl
548stack", shut its eyes while some magic happens, and then pop the
549results--the return value of your Perl subroutine--off the stack.
96dbc785 550
cb1a09d0 551First you'll need to know how to convert between C types and Perl
552types, with newSViv() and sv_setnv() and newAV() and all their
553friends. They're described in L<perlguts>.
554
555Then you'll need to know how to manipulate the Perl stack. That's
556described in L<perlcall>.
557
96dbc785 558Once you've understood those, embedding Perl in C is easy.
cb1a09d0 559
54310121 560Because C has no builtin function for integer exponentiation, let's
cb1a09d0 561make Perl's ** operator available to it (this is less useful than it
5f05dabc 562sounds, because Perl implements ** with C's I<pow()> function). First
cb1a09d0 563I'll create a stub exponentiation function in I<power.pl>:
564
565 sub expo {
566 my ($a, $b) = @_;
567 return $a ** $b;
568 }
569
570Now I'll create a C program, I<power.c>, with a function
571I<PerlPower()> that contains all the perlguts necessary to push the
572two arguments into I<expo()> and to pop the return value out. Take a
573deep breath...
574
cb1a09d0 575 #include <EXTERN.h>
576 #include <perl.h>
96dbc785 577
cb1a09d0 578 static PerlInterpreter *my_perl;
96dbc785 579
cb1a09d0 580 static void
581 PerlPower(int a, int b)
582 {
583 dSP; /* initialize stack pointer */
584 ENTER; /* everything created after here */
585 SAVETMPS; /* ...is a temporary variable. */
924508f0 586 PUSHMARK(SP); /* remember the stack pointer */
cb1a09d0 587 XPUSHs(sv_2mortal(newSViv(a))); /* push the base onto the stack */
588 XPUSHs(sv_2mortal(newSViv(b))); /* push the exponent onto stack */
589 PUTBACK; /* make local stack pointer global */
590 perl_call_pv("expo", G_SCALAR); /* call the function */
591 SPAGAIN; /* refresh stack pointer */
592 /* pop the return value from stack */
593 printf ("%d to the %dth power is %d.\n", a, b, POPi);
96dbc785 594 PUTBACK;
cb1a09d0 595 FREETMPS; /* free that return value */
596 LEAVE; /* ...and the XPUSHed "mortal" args.*/
597 }
96dbc785 598
599 int main (int argc, char **argv, char **env)
cb1a09d0 600 {
95b76e31 601 char *my_argv[] = { "", "power.pl" };
96dbc785 602
cb1a09d0 603 my_perl = perl_alloc();
604 perl_construct( my_perl );
96dbc785 605
95b76e31 606 perl_parse(my_perl, NULL, 2, my_argv, (char **)NULL);
8ebc5c01 607 perl_run(my_perl);
96dbc785 608
cb1a09d0 609 PerlPower(3, 4); /*** Compute 3 ** 4 ***/
96dbc785 610
cb1a09d0 611 perl_destruct(my_perl);
612 perl_free(my_perl);
613 }
96dbc785 614
cb1a09d0 615
616
617Compile and run:
618
96dbc785 619 % cc -o power power.c `perl -MExtUtils::Embed -e ccopts -e ldopts`
620
621 % power
cb1a09d0 622 3 to the 4th power is 81.
623
a6006777 624=head2 Maintaining a persistent interpreter
625
8a7dc658 626When developing interactive and/or potentially long-running
627applications, it's a good idea to maintain a persistent interpreter
628rather than allocating and constructing a new interpreter multiple
629times. The major reason is speed: since Perl will only be loaded into
54310121 630memory once.
8a7dc658 631
632However, you have to be more cautious with namespace and variable
633scoping when using a persistent interpreter. In previous examples
634we've been using global variables in the default package C<main>. We
635knew exactly what code would be run, and assumed we could avoid
636variable collisions and outrageous symbol table growth.
637
638Let's say your application is a server that will occasionally run Perl
639code from some arbitrary file. Your server has no way of knowing what
640code it's going to run. Very dangerous.
641
642If the file is pulled in by C<perl_parse()>, compiled into a newly
643constructed interpreter, and subsequently cleaned out with
644C<perl_destruct()> afterwards, you're shielded from most namespace
645troubles.
646
647One way to avoid namespace collisions in this scenario is to translate
648the filename into a guaranteed-unique package name, and then compile
7b8d334a 649the code into that package using eval(). In the example
8a7dc658 650below, each file will only be compiled once. Or, the application
651might choose to clean out the symbol table associated with the file
7b8d334a 652after it's no longer needed. Using perl_call_argv(), We'll
8a7dc658 653call the subroutine C<Embed::Persistent::eval_file> which lives in the
654file C<persistent.pl> and pass the filename and boolean cleanup/cache
a6006777 655flag as arguments.
656
8a7dc658 657Note that the process will continue to grow for each file that it
658uses. In addition, there might be C<AUTOLOAD>ed subroutines and other
659conditions that cause Perl's symbol table to grow. You might want to
660add some logic that keeps track of the process size, or restarts
661itself after a certain number of requests, to ensure that memory
662consumption is minimized. You'll also want to scope your variables
7b8d334a 663with my() whenever possible.
a6006777 664
54310121 665
a6006777 666 package Embed::Persistent;
667 #persistent.pl
54310121 668
a6006777 669 use strict;
670 use vars '%Cache';
54310121 671
a6006777 672 sub valid_package_name {
673 my($string) = @_;
674 $string =~ s/([^A-Za-z0-9\/])/sprintf("_%2x",unpack("C",$1))/eg;
675 # second pass only for words starting with a digit
676 $string =~ s|/(\d)|sprintf("/_%2x",unpack("C",$1))|eg;
54310121 677
a6006777 678 # Dress it up as a real package name
679 $string =~ s|/|::|g;
680 return "Embed" . $string;
681 }
54310121 682
a6006777 683 #borrowed from Safe.pm
684 sub delete_package {
685 my $pkg = shift;
686 my ($stem, $leaf);
54310121 687
a6006777 688 no strict 'refs';
8ebc5c01 689 $pkg = "main::$pkg\::"; # expand to full symbol table name
a6006777 690 ($stem, $leaf) = $pkg =~ m/(.*::)(\w+::)$/;
54310121 691
a6006777 692 my $stem_symtab = *{$stem}{HASH};
54310121 693
a6006777 694 delete $stem_symtab->{$leaf};
695 }
54310121 696
a6006777 697 sub eval_file {
698 my($filename, $delete) = @_;
699 my $package = valid_package_name($filename);
700 my $mtime = -M $filename;
701 if(defined $Cache{$package}{mtime}
702 &&
54310121 703 $Cache{$package}{mtime} <= $mtime)
a6006777 704 {
54310121 705 # we have compiled this subroutine already,
8ebc5c01 706 # it has not been updated on disk, nothing left to do
707 print STDERR "already compiled $package->handler\n";
a6006777 708 }
709 else {
8ebc5c01 710 local *FH;
711 open FH, $filename or die "open '$filename' $!";
712 local($/) = undef;
713 my $sub = <FH>;
714 close FH;
54310121 715
8ebc5c01 716 #wrap the code into a subroutine inside our unique package
717 my $eval = qq{package $package; sub handler { $sub; }};
718 {
719 # hide our variables within this block
720 my($filename,$mtime,$package,$sub);
721 eval $eval;
722 }
723 die $@ if $@;
54310121 724
8ebc5c01 725 #cache it unless we're cleaning out each time
726 $Cache{$package}{mtime} = $mtime unless $delete;
a6006777 727 }
54310121 728
a6006777 729 eval {$package->handler;};
730 die $@ if $@;
54310121 731
a6006777 732 delete_package($package) if $delete;
54310121 733
a6006777 734 #take a look if you want
735 #print Devel::Symdump->rnew($package)->as_string, $/;
736 }
54310121 737
a6006777 738 1;
54310121 739
a6006777 740 __END__
741
742 /* persistent.c */
54310121 743 #include <EXTERN.h>
744 #include <perl.h>
745
a6006777 746 /* 1 = clean out filename's symbol table after each request, 0 = don't */
747 #ifndef DO_CLEAN
748 #define DO_CLEAN 0
749 #endif
54310121 750
a6006777 751 static PerlInterpreter *perl = NULL;
54310121 752
a6006777 753 int
754 main(int argc, char **argv, char **env)
755 {
756 char *embedding[] = { "", "persistent.pl" };
757 char *args[] = { "", DO_CLEAN, NULL };
758 char filename [1024];
759 int exitstatus = 0;
54310121 760
a6006777 761 if((perl = perl_alloc()) == NULL) {
8ebc5c01 762 fprintf(stderr, "no memory!");
763 exit(1);
a6006777 764 }
54310121 765 perl_construct(perl);
766
a6006777 767 exitstatus = perl_parse(perl, NULL, 2, embedding, NULL);
54310121 768
769 if(!exitstatus) {
8ebc5c01 770 exitstatus = perl_run(perl);
54310121 771
8ebc5c01 772 while(printf("Enter file name: ") && gets(filename)) {
54310121 773
8ebc5c01 774 /* call the subroutine, passing it the filename as an argument */
775 args[0] = filename;
54310121 776 perl_call_argv("Embed::Persistent::eval_file",
8ebc5c01 777 G_DISCARD | G_EVAL, args);
54310121 778
8ebc5c01 779 /* check $@ */
54310121 780 if(SvTRUE(GvSV(errgv)))
8ebc5c01 781 fprintf(stderr, "eval error: %s\n", SvPV(GvSV(errgv),na));
782 }
a6006777 783 }
54310121 784
a6006777 785 perl_destruct_level = 0;
54310121 786 perl_destruct(perl);
787 perl_free(perl);
a6006777 788 exit(exitstatus);
789 }
790
a6006777 791Now compile:
792
54310121 793 % cc -o persistent persistent.c `perl -MExtUtils::Embed -e ccopts -e ldopts`
a6006777 794
795Here's a example script file:
796
797 #test.pl
798 my $string = "hello";
799 foo($string);
800
801 sub foo {
802 print "foo says: @_\n";
803 }
804
805Now run:
806
807 % persistent
808 Enter file name: test.pl
809 foo says: hello
810 Enter file name: test.pl
811 already compiled Embed::test_2epl->handler
812 foo says: hello
813 Enter file name: ^C
814
8ebc5c01 815=head2 Maintaining multiple interpreter instances
816
8a7dc658 817Some rare applications will need to create more than one interpreter
818during a session. Such an application might sporadically decide to
54310121 819release any resources associated with the interpreter.
8a7dc658 820
821The program must take care to ensure that this takes place I<before>
822the next interpreter is constructed. By default, the global variable
823C<perl_destruct_level> is set to C<0>, since extra cleaning isn't
824needed when a program has only one interpreter.
825
826Setting C<perl_destruct_level> to C<1> makes everything squeaky clean:
827
54310121 828 perl_destruct_level = 1;
8ebc5c01 829
8ebc5c01 830 while(1) {
831 ...
832 /* reset global variables here with perl_destruct_level = 1 */
54310121 833 perl_construct(my_perl);
8ebc5c01 834 ...
835 /* clean and reset _everything_ during perl_destruct */
54310121 836 perl_destruct(my_perl);
837 perl_free(my_perl);
8ebc5c01 838 ...
839 /* let's go do it again! */
840 }
841
54310121 842When I<perl_destruct()> is called, the interpreter's syntax parse tree
843and symbol tables are cleaned up, and global variables are reset.
8ebc5c01 844
8a7dc658 845Now suppose we have more than one interpreter instance running at the
846same time. This is feasible, but only if you used the
847C<-DMULTIPLICITY> flag when building Perl. By default, that sets
848C<perl_destruct_level> to C<1>.
8ebc5c01 849
850Let's give it a try:
851
852
853 #include <EXTERN.h>
8a7dc658 854 #include <perl.h>
8ebc5c01 855
856 /* we're going to embed two interpreters */
857 /* we're going to embed two interpreters */
858
8ebc5c01 859 #define SAY_HELLO "-e", "print qq(Hi, I'm $^X\n)"
860
8ebc5c01 861 int main(int argc, char **argv, char **env)
862 {
54310121 863 PerlInterpreter
8ebc5c01 864 *one_perl = perl_alloc(),
54310121 865 *two_perl = perl_alloc();
8ebc5c01 866 char *one_args[] = { "one_perl", SAY_HELLO };
867 char *two_args[] = { "two_perl", SAY_HELLO };
868
869 perl_construct(one_perl);
870 perl_construct(two_perl);
871
872 perl_parse(one_perl, NULL, 3, one_args, (char **)NULL);
873 perl_parse(two_perl, NULL, 3, two_args, (char **)NULL);
874
875 perl_run(one_perl);
876 perl_run(two_perl);
877
878 perl_destruct(one_perl);
879 perl_destruct(two_perl);
880
881 perl_free(one_perl);
882 perl_free(two_perl);
883 }
884
885
886Compile as usual:
887
888 % cc -o multiplicity multiplicity.c `perl -MExtUtils::Embed -e ccopts -e ldopts`
889
890Run it, Run it:
891
892 % multiplicity
893 Hi, I'm one_perl
894 Hi, I'm two_perl
895
96dbc785 896=head2 Using Perl modules, which themselves use C libraries, from your C program
897
898If you've played with the examples above and tried to embed a script
899that I<use()>s a Perl module (such as I<Socket>) which itself uses a C or C++ library,
900this probably happened:
901
902
903 Can't load module Socket, dynamic loading not available in this perl.
904 (You may need to build a new perl executable which either supports
905 dynamic loading or has the Socket module statically linked into it.)
906
907
908What's wrong?
909
910Your interpreter doesn't know how to communicate with these extensions
911on its own. A little glue will help. Up until now you've been
912calling I<perl_parse()>, handing it NULL for the second argument:
913
914 perl_parse(my_perl, NULL, argc, my_argv, NULL);
915
916That's where the glue code can be inserted to create the initial contact between
917Perl and linked C/C++ routines. Let's take a look some pieces of I<perlmain.c>
918to see how Perl does this:
919
920
921 #ifdef __cplusplus
922 # define EXTERN_C extern "C"
923 #else
924 # define EXTERN_C extern
925 #endif
926
927 static void xs_init _((void));
928
929 EXTERN_C void boot_DynaLoader _((CV* cv));
930 EXTERN_C void boot_Socket _((CV* cv));
931
932
933 EXTERN_C void
934 xs_init()
935 {
936 char *file = __FILE__;
937 /* DynaLoader is a special case */
938 newXS("DynaLoader::boot_DynaLoader", boot_DynaLoader, file);
939 newXS("Socket::bootstrap", boot_Socket, file);
940 }
941
942Simply put: for each extension linked with your Perl executable
943(determined during its initial configuration on your
944computer or when adding a new extension),
945a Perl subroutine is created to incorporate the extension's
946routines. Normally, that subroutine is named
947I<Module::bootstrap()> and is invoked when you say I<use Module>. In
948turn, this hooks into an XSUB, I<boot_Module>, which creates a Perl
949counterpart for each of the extension's XSUBs. Don't worry about this
950part; leave that to the I<xsubpp> and extension authors. If your
951extension is dynamically loaded, DynaLoader creates I<Module::bootstrap()>
952for you on the fly. In fact, if you have a working DynaLoader then there
5f05dabc 953is rarely any need to link in any other extensions statically.
96dbc785 954
955
956Once you have this code, slap it into the second argument of I<perl_parse()>:
957
958
959 perl_parse(my_perl, xs_init, argc, my_argv, NULL);
960
961
962Then compile:
963
8a7dc658 964 % cc -o interp interp.c `perl -MExtUtils::Embed -e ccopts -e ldopts`
96dbc785 965
966 % interp
967 use Socket;
968 use SomeDynamicallyLoadedModule;
969
970 print "Now I can use extensions!\n"'
971
972B<ExtUtils::Embed> can also automate writing the I<xs_init> glue code.
973
8a7dc658 974 % perl -MExtUtils::Embed -e xsinit -- -o perlxsi.c
96dbc785 975 % cc -c perlxsi.c `perl -MExtUtils::Embed -e ccopts`
976 % cc -c interp.c `perl -MExtUtils::Embed -e ccopts`
8a7dc658 977 % cc -o interp perlxsi.o interp.o `perl -MExtUtils::Embed -e ldopts`
96dbc785 978
979Consult L<perlxs> and L<perlguts> for more details.
980
53f52f58 981=head1 Embedding Perl under Win32
982
983At the time of this writing, there are two versions of Perl which run
984under Win32. Interfacing to Activeware's Perl library is quite
985different from the examples in this documentation, as significant
986changes were made to the internal Perl API. However, it is possible
987to embed Activeware's Perl runtime, see the Perl for Win32 FAQ:
988http://www.perl.com/perl/faq/win32/Perl_for_Win32_FAQ.html
989
990With the "official" Perl version 5.004 or higher, all the examples
991within this documentation will compile and run untouched, although,
992the build process is slightly different between Unix and Win32.
993
994For starters, backticks don't work under the Win32 native command shell!
995The ExtUtils::Embed kit on CPAN ships with a script called
996B<genmake>, which generates a simple makefile to build a program from
997a single C source file. It can be used like so:
998
999 C:\ExtUtils-Embed\eg> perl genmake interp.c
1000 C:\ExtUtils-Embed\eg> nmake
1001 C:\ExtUtils-Embed\eg> interp -e "print qq{I'm embedded in Win32!\n}"
1002
1003You may wish to use a more robust environment such as the MS Developer
1004stdio. In this case, to generate perlxsi.c run:
1005
1006 perl -MExtUtils::Embed -e xsinit
1007
1008Create a new project, Insert -> Files into Project: perlxsi.c, perl.lib,
1009and your own source files, e.g. interp.c. Typically you'll find
1010perl.lib in B<C:\perl\lib\CORE>, if not, you should see the B<CORE>
1011directory relative to C<perl -V:archlib>.
1012The studio will also need this path so it knows where to find Perl
1013include files. This path can be added via the Tools -> Options ->
1014Directories menu. Finnally, select Build -> Build interp.exe and
1015you're ready to go!
96dbc785 1016
cb1a09d0 1017=head1 MORAL
1018
1019You can sometimes I<write faster code> in C, but
5f05dabc 1020you can always I<write code faster> in Perl. Because you can use
cb1a09d0 1021each from the other, combine them as you wish.
1022
1023
1024=head1 AUTHOR
1025
9607fc9c 1026Jon Orwant and <F<orwant@tpj.com>> and Doug MacEachern <F<dougm@osf.org>>,
1027with small contributions from Tim Bunce, Tom Christiansen, Hallvard Furuseth,
1028Dov Grobgeld, and Ilya Zakharevich.
8a7dc658 1029
1030Check out Doug's article on embedding in Volume 1, Issue 4 of The Perl
1031Journal. Info about TPJ is available from http://tpj.com.
cb1a09d0 1032
84902520 1033July 17, 1997
cb1a09d0 1034
8a7dc658 1035Some of this material is excerpted from Jon Orwant's book: I<Perl 5
1036Interactive>, Waite Group Press, 1996 (ISBN 1-57169-064-6) and appears
cb1a09d0 1037courtesy of Waite Group Press.
8a7dc658 1038
1039=head1 COPYRIGHT
1040
1041Copyright (C) 1995, 1996, 1997 Doug MacEachern and Jon Orwant. All
1042Rights Reserved.
1043
1044Although destined for release with the standard Perl distribution,
1045this document is not public domain, nor is any of Perl and its
1046documentation. Permission is granted to freely distribute verbatim
1047copies of this document provided that no modifications outside of
1048formatting be made, and that this notice remain intact. You are
1049permitted and encouraged to use its code and derivatives thereof in
1050your own source code for fun or for profit as you see fit.