Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1037 lines
33 KiB

  1. =head1 NAME
  2. perlembed - how to embed perl in your C program
  3. =head1 DESCRIPTION
  4. =head2 PREAMBLE
  5. Do you want to:
  6. =over 5
  7. =item B<Use C from Perl?>
  8. Read L<perlxstut>, L<perlxs>, L<h2xs>, and L<perlguts>.
  9. =item B<Use a Unix program from Perl?>
  10. Read about back-quotes and about C<system> and C<exec> in L<perlfunc>.
  11. =item B<Use Perl from Perl?>
  12. Read about L<perlfunc/do> and L<perlfunc/eval> and L<perlfunc/require>
  13. and L<perlfunc/use>.
  14. =item B<Use C from C?>
  15. Rethink your design.
  16. =item B<Use Perl from C?>
  17. Read on...
  18. =back
  19. =head2 ROADMAP
  20. =over 5
  21. L<Compiling your C program>
  22. L<Adding a Perl interpreter to your C program>
  23. L<Calling a Perl subroutine from your C program>
  24. L<Evaluating a Perl statement from your C program>
  25. L<Performing Perl pattern matches and substitutions from your C program>
  26. L<Fiddling with the Perl stack from your C program>
  27. L<Maintaining a persistent interpreter>
  28. L<Maintaining multiple interpreter instances>
  29. L<Using Perl modules, which themselves use C libraries, from your C program>
  30. L<Embedding Perl under Win32>
  31. =back
  32. =head2 Compiling your C program
  33. If you have trouble compiling the scripts in this documentation,
  34. you're not alone. The cardinal rule: COMPILE THE PROGRAMS IN EXACTLY
  35. THE SAME WAY THAT YOUR PERL WAS COMPILED. (Sorry for yelling.)
  36. Also, every C program that uses Perl must link in the I<perl library>.
  37. What's that, you ask? Perl is itself written in C; the perl library
  38. is the collection of compiled C programs that were used to create your
  39. perl executable (I</usr/bin/perl> or equivalent). (Corollary: you
  40. can't use Perl from your C program unless Perl has been compiled on
  41. your machine, or installed properly--that's why you shouldn't blithely
  42. copy Perl executables from machine to machine without also copying the
  43. I<lib> directory.)
  44. When you use Perl from C, your C program will--usually--allocate,
  45. "run", and deallocate a I<PerlInterpreter> object, which is defined by
  46. the perl library.
  47. If your copy of Perl is recent enough to contain this documentation
  48. (version 5.002 or later), then the perl library (and I<EXTERN.h> and
  49. I<perl.h>, which you'll also need) will reside in a directory
  50. that looks like this:
  51. /usr/local/lib/perl5/your_architecture_here/CORE
  52. or perhaps just
  53. /usr/local/lib/perl5/CORE
  54. or maybe something like
  55. /usr/opt/perl5/CORE
  56. Execute this statement for a hint about where to find CORE:
  57. perl -MConfig -e 'print $Config{archlib}'
  58. Here's how you'd compile the example in the next section,
  59. L<Adding a Perl interpreter to your C program>, on my Linux box:
  60. % gcc -O2 -Dbool=char -DHAS_BOOL -I/usr/local/include
  61. -I/usr/local/lib/perl5/i586-linux/5.003/CORE
  62. -L/usr/local/lib/perl5/i586-linux/5.003/CORE
  63. -o interp interp.c -lperl -lm
  64. (That's all one line.) On my DEC Alpha running old 5.003_05, the
  65. incantation is a bit different:
  66. % cc -O2 -Olimit 2900 -DSTANDARD_C -I/usr/local/include
  67. -I/usr/local/lib/perl5/alpha-dec_osf/5.00305/CORE
  68. -L/usr/local/lib/perl5/alpha-dec_osf/5.00305/CORE -L/usr/local/lib
  69. -D__LANGUAGE_C__ -D_NO_PROTO -o interp interp.c -lperl -lm
  70. How can you figure out what to add? Assuming your Perl is post-5.001,
  71. execute a C<perl -V> command and pay special attention to the "cc" and
  72. "ccflags" information.
  73. You'll have to choose the appropriate compiler (I<cc>, I<gcc>, et al.) for
  74. your machine: C<perl -MConfig -e 'print $Config{cc}'> will tell you what
  75. to use.
  76. You'll also have to choose the appropriate library directory
  77. (I</usr/local/lib/...>) for your machine. If your compiler complains
  78. that certain functions are undefined, or that it can't locate
  79. I<-lperl>, then you need to change the path following the C<-L>. If it
  80. complains that it can't find I<EXTERN.h> and I<perl.h>, you need to
  81. change the path following the C<-I>.
  82. You may have to add extra libraries as well. Which ones?
  83. Perhaps those printed by
  84. perl -MConfig -e 'print $Config{libs}'
  85. Provided your perl binary was properly configured and installed the
  86. B<ExtUtils::Embed> module will determine all of this information for
  87. you:
  88. % cc -o interp interp.c `perl -MExtUtils::Embed -e ccopts -e ldopts`
  89. If the B<ExtUtils::Embed> module isn't part of your Perl distribution,
  90. you can retrieve it from
  91. http://www.perl.com/perl/CPAN/modules/by-module/ExtUtils/. (If
  92. this documentation came from your Perl distribution, then you're
  93. running 5.004 or better and you already have it.)
  94. The B<ExtUtils::Embed> kit on CPAN also contains all source code for
  95. the examples in this document, tests, additional examples and other
  96. information you may find useful.
  97. =head2 Adding a Perl interpreter to your C program
  98. In a sense, perl (the C program) is a good example of embedding Perl
  99. (the language), so I'll demonstrate embedding with I<miniperlmain.c>,
  100. included in the source distribution. Here's a bastardized, nonportable
  101. version of I<miniperlmain.c> containing the essentials of embedding:
  102. #include <EXTERN.h> /* from the Perl distribution */
  103. #include <perl.h> /* from the Perl distribution */
  104. static PerlInterpreter *my_perl; /*** The Perl interpreter ***/
  105. int main(int argc, char **argv, char **env)
  106. {
  107. my_perl = perl_alloc();
  108. perl_construct(my_perl);
  109. perl_parse(my_perl, NULL, argc, argv, (char **)NULL);
  110. perl_run(my_perl);
  111. perl_destruct(my_perl);
  112. perl_free(my_perl);
  113. }
  114. Notice that we don't use the C<env> pointer. Normally handed to
  115. C<perl_parse> as its final argument, C<env> here is replaced by
  116. C<NULL>, which means that the current environment will be used.
  117. Now compile this program (I'll call it I<interp.c>) into an executable:
  118. % cc -o interp interp.c `perl -MExtUtils::Embed -e ccopts -e ldopts`
  119. After a successful compilation, you'll be able to use I<interp> just
  120. like perl itself:
  121. % interp
  122. print "Pretty Good Perl \n";
  123. print "10890 - 9801 is ", 10890 - 9801;
  124. <CTRL-D>
  125. Pretty Good Perl
  126. 10890 - 9801 is 1089
  127. or
  128. % interp -e 'printf("%x", 3735928559)'
  129. deadbeef
  130. You can also read and execute Perl statements from a file while in the
  131. midst of your C program, by placing the filename in I<argv[1]> before
  132. calling I<perl_run>.
  133. =head2 Calling a Perl subroutine from your C program
  134. To call individual Perl subroutines, you can use any of the B<perl_call_*>
  135. functions documented in L<perlcall>.
  136. In this example we'll use C<perl_call_argv>.
  137. That's shown below, in a program I'll call I<showtime.c>.
  138. #include <EXTERN.h>
  139. #include <perl.h>
  140. static PerlInterpreter *my_perl;
  141. int main(int argc, char **argv, char **env)
  142. {
  143. char *args[] = { NULL };
  144. my_perl = perl_alloc();
  145. perl_construct(my_perl);
  146. perl_parse(my_perl, NULL, argc, argv, NULL);
  147. /*** skipping perl_run() ***/
  148. perl_call_argv("showtime", G_DISCARD | G_NOARGS, args);
  149. perl_destruct(my_perl);
  150. perl_free(my_perl);
  151. }
  152. where I<showtime> is a Perl subroutine that takes no arguments (that's the
  153. I<G_NOARGS>) and for which I'll ignore the return value (that's the
  154. I<G_DISCARD>). Those flags, and others, are discussed in L<perlcall>.
  155. I'll define the I<showtime> subroutine in a file called I<showtime.pl>:
  156. print "I shan't be printed.";
  157. sub showtime {
  158. print time;
  159. }
  160. Simple enough. Now compile and run:
  161. % cc -o showtime showtime.c `perl -MExtUtils::Embed -e ccopts -e ldopts`
  162. % showtime showtime.pl
  163. 818284590
  164. yielding the number of seconds that elapsed between January 1, 1970
  165. (the beginning of the Unix epoch), and the moment I began writing this
  166. sentence.
  167. In this particular case we don't have to call I<perl_run>, but in
  168. general it's considered good practice to ensure proper initialization
  169. of library code, including execution of all object C<DESTROY> methods
  170. and package C<END {}> blocks.
  171. If you want to pass arguments to the Perl subroutine, you can add
  172. strings to the C<NULL>-terminated C<args> list passed to
  173. I<perl_call_argv>. For other data types, or to examine return values,
  174. you'll need to manipulate the Perl stack. That's demonstrated in the
  175. last section of this document: L<Fiddling with the Perl stack from
  176. your C program>.
  177. =head2 Evaluating a Perl statement from your C program
  178. Perl provides two API functions to evaluate pieces of Perl code.
  179. These are L<perlguts/perl_eval_sv> and L<perlguts/perl_eval_pv>.
  180. Arguably, these are the only routines you'll ever need to execute
  181. snippets of Perl code from within your C program. Your code can be as
  182. long as you wish; it can contain multiple statements; it can employ
  183. L<perlfunc/use>, L<perlfunc/require>, and L<perlfunc/do> to
  184. include external Perl files.
  185. I<perl_eval_pv> lets us evaluate individual Perl strings, and then
  186. extract variables for coercion into C types. The following program,
  187. I<string.c>, executes three Perl strings, extracting an C<int> from
  188. the first, a C<float> from the second, and a C<char *> from the third.
  189. #include <EXTERN.h>
  190. #include <perl.h>
  191. static PerlInterpreter *my_perl;
  192. main (int argc, char **argv, char **env)
  193. {
  194. STRLEN n_a;
  195. char *embedding[] = { "", "-e", "0" };
  196. my_perl = perl_alloc();
  197. perl_construct( my_perl );
  198. perl_parse(my_perl, NULL, 3, embedding, NULL);
  199. perl_run(my_perl);
  200. /** Treat $a as an integer **/
  201. perl_eval_pv("$a = 3; $a **= 2", TRUE);
  202. printf("a = %d\n", SvIV(perl_get_sv("a", FALSE)));
  203. /** Treat $a as a float **/
  204. perl_eval_pv("$a = 3.14; $a **= 2", TRUE);
  205. printf("a = %f\n", SvNV(perl_get_sv("a", FALSE)));
  206. /** Treat $a as a string **/
  207. perl_eval_pv("$a = 'rekcaH lreP rehtonA tsuJ'; $a = reverse($a);", TRUE);
  208. printf("a = %s\n", SvPV(perl_get_sv("a", FALSE), n_a));
  209. perl_destruct(my_perl);
  210. perl_free(my_perl);
  211. }
  212. All of those strange functions with I<sv> in their names help convert Perl scalars to C types. They're described in L<perlguts>.
  213. If you compile and run I<string.c>, you'll see the results of using
  214. I<SvIV()> to create an C<int>, I<SvNV()> to create a C<float>, and
  215. I<SvPV()> to create a string:
  216. a = 9
  217. a = 9.859600
  218. a = Just Another Perl Hacker
  219. In the example above, we've created a global variable to temporarily
  220. store the computed value of our eval'd expression. It is also
  221. possible and in most cases a better strategy to fetch the return value
  222. from I<perl_eval_pv()> instead. Example:
  223. ...
  224. STRLEN n_a;
  225. SV *val = perl_eval_pv("reverse 'rekcaH lreP rehtonA tsuJ'", TRUE);
  226. printf("%s\n", SvPV(val,n_a));
  227. ...
  228. This way, we avoid namespace pollution by not creating global
  229. variables and we've simplified our code as well.
  230. =head2 Performing Perl pattern matches and substitutions from your C program
  231. The I<perl_eval_sv()> function lets us evaluate strings of Perl code, so we can
  232. define some functions that use it to "specialize" in matches and
  233. substitutions: I<match()>, I<substitute()>, and I<matches()>.
  234. I32 match(SV *string, char *pattern);
  235. Given a string and a pattern (e.g., C<m/clasp/> or C</\b\w*\b/>, which
  236. in your C program might appear as "/\\b\\w*\\b/"), match()
  237. returns 1 if the string matches the pattern and 0 otherwise.
  238. int substitute(SV **string, char *pattern);
  239. Given a pointer to an C<SV> and an C<=~> operation (e.g.,
  240. C<s/bob/robert/g> or C<tr[A-Z][a-z]>), substitute() modifies the string
  241. within the C<AV> at according to the operation, returning the number of substitutions
  242. made.
  243. int matches(SV *string, char *pattern, AV **matches);
  244. Given an C<SV>, a pattern, and a pointer to an empty C<AV>,
  245. matches() evaluates C<$string =~ $pattern> in an array context, and
  246. fills in I<matches> with the array elements, returning the number of matches found.
  247. Here's a sample program, I<match.c>, that uses all three (long lines have
  248. been wrapped here):
  249. #include <EXTERN.h>
  250. #include <perl.h>
  251. /** my_perl_eval_sv(code, error_check)
  252. ** kinda like perl_eval_sv(),
  253. ** but we pop the return value off the stack
  254. **/
  255. SV* my_perl_eval_sv(SV *sv, I32 croak_on_error)
  256. {
  257. dSP;
  258. SV* retval;
  259. STRLEN n_a;
  260. PUSHMARK(SP);
  261. perl_eval_sv(sv, G_SCALAR);
  262. SPAGAIN;
  263. retval = POPs;
  264. PUTBACK;
  265. if (croak_on_error && SvTRUE(ERRSV))
  266. croak(SvPVx(ERRSV, n_a));
  267. return retval;
  268. }
  269. /** match(string, pattern)
  270. **
  271. ** Used for matches in a scalar context.
  272. **
  273. ** Returns 1 if the match was successful; 0 otherwise.
  274. **/
  275. I32 match(SV *string, char *pattern)
  276. {
  277. SV *command = NEWSV(1099, 0), *retval;
  278. STRLEN n_a;
  279. sv_setpvf(command, "my $string = '%s'; $string =~ %s",
  280. SvPV(string,n_a), pattern);
  281. retval = my_perl_eval_sv(command, TRUE);
  282. SvREFCNT_dec(command);
  283. return SvIV(retval);
  284. }
  285. /** substitute(string, pattern)
  286. **
  287. ** Used for =~ operations that modify their left-hand side (s/// and tr///)
  288. **
  289. ** Returns the number of successful matches, and
  290. ** modifies the input string if there were any.
  291. **/
  292. I32 substitute(SV **string, char *pattern)
  293. {
  294. SV *command = NEWSV(1099, 0), *retval;
  295. STRLEN n_a;
  296. sv_setpvf(command, "$string = '%s'; ($string =~ %s)",
  297. SvPV(*string,n_a), pattern);
  298. retval = my_perl_eval_sv(command, TRUE);
  299. SvREFCNT_dec(command);
  300. *string = perl_get_sv("string", FALSE);
  301. return SvIV(retval);
  302. }
  303. /** matches(string, pattern, matches)
  304. **
  305. ** Used for matches in an array context.
  306. **
  307. ** Returns the number of matches,
  308. ** and fills in **matches with the matching substrings
  309. **/
  310. I32 matches(SV *string, char *pattern, AV **match_list)
  311. {
  312. SV *command = NEWSV(1099, 0);
  313. I32 num_matches;
  314. STRLEN n_a;
  315. sv_setpvf(command, "my $string = '%s'; @array = ($string =~ %s)",
  316. SvPV(string,n_a), pattern);
  317. my_perl_eval_sv(command, TRUE);
  318. SvREFCNT_dec(command);
  319. *match_list = perl_get_av("array", FALSE);
  320. num_matches = av_len(*match_list) + 1; /** assume $[ is 0 **/
  321. return num_matches;
  322. }
  323. main (int argc, char **argv, char **env)
  324. {
  325. PerlInterpreter *my_perl = perl_alloc();
  326. char *embedding[] = { "", "-e", "0" };
  327. AV *match_list;
  328. I32 num_matches, i;
  329. SV *text = NEWSV(1099,0);
  330. STRLEN n_a;
  331. perl_construct(my_perl);
  332. perl_parse(my_perl, NULL, 3, embedding, NULL);
  333. 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");
  334. if (match(text, "m/quarter/")) /** Does text contain 'quarter'? **/
  335. printf("match: Text contains the word 'quarter'.\n\n");
  336. else
  337. printf("match: Text doesn't contain the word 'quarter'.\n\n");
  338. if (match(text, "m/eighth/")) /** Does text contain 'eighth'? **/
  339. printf("match: Text contains the word 'eighth'.\n\n");
  340. else
  341. printf("match: Text doesn't contain the word 'eighth'.\n\n");
  342. /** Match all occurrences of /wi../ **/
  343. num_matches = matches(text, "m/(wi..)/g", &match_list);
  344. printf("matches: m/(wi..)/g found %d matches...\n", num_matches);
  345. for (i = 0; i < num_matches; i++)
  346. printf("match: %s\n", SvPV(*av_fetch(match_list, i, FALSE),n_a));
  347. printf("\n");
  348. /** Remove all vowels from text **/
  349. num_matches = substitute(&text, "s/[aeiou]//gi");
  350. if (num_matches) {
  351. printf("substitute: s/[aeiou]//gi...%d substitutions made.\n",
  352. num_matches);
  353. printf("Now text is: %s\n\n", SvPV(text,n_a));
  354. }
  355. /** Attempt a substitution **/
  356. if (!substitute(&text, "s/Perl/C/")) {
  357. printf("substitute: s/Perl/C...No substitution made.\n\n");
  358. }
  359. SvREFCNT_dec(text);
  360. PL_perl_destruct_level = 1;
  361. perl_destruct(my_perl);
  362. perl_free(my_perl);
  363. }
  364. which produces the output (again, long lines have been wrapped here)
  365. match: Text contains the word 'quarter'.
  366. match: Text doesn't contain the word 'eighth'.
  367. matches: m/(wi..)/g found 2 matches...
  368. match: will
  369. match: with
  370. substitute: s/[aeiou]//gi...139 substitutions made.
  371. Now text is: Whn h s t cnvnnc str nd th bll cms t sm mnt lk 76 cnts,
  372. Mynrd s wr tht thr s smthng h *shld* d, smthng tht wll nbl hm t gt bck
  373. qrtr, bt h hs n d *wht*. H fmbls thrgh hs rd sqzy chngprs nd gvs th by
  374. thr xtr pnns wth hs dllr, hpng tht h mght lck nt th crrct mnt. Th by gvs
  375. hm bck tw f hs wn pnns nd thn th bg shny qrtr tht s hs prz. -RCHH
  376. substitute: s/Perl/C...No substitution made.
  377. =head2 Fiddling with the Perl stack from your C program
  378. When trying to explain stacks, most computer science textbooks mumble
  379. something about spring-loaded columns of cafeteria plates: the last
  380. thing you pushed on the stack is the first thing you pop off. That'll
  381. do for our purposes: your C program will push some arguments onto "the Perl
  382. stack", shut its eyes while some magic happens, and then pop the
  383. results--the return value of your Perl subroutine--off the stack.
  384. First you'll need to know how to convert between C types and Perl
  385. types, with newSViv() and sv_setnv() and newAV() and all their
  386. friends. They're described in L<perlguts>.
  387. Then you'll need to know how to manipulate the Perl stack. That's
  388. described in L<perlcall>.
  389. Once you've understood those, embedding Perl in C is easy.
  390. Because C has no builtin function for integer exponentiation, let's
  391. make Perl's ** operator available to it (this is less useful than it
  392. sounds, because Perl implements ** with C's I<pow()> function). First
  393. I'll create a stub exponentiation function in I<power.pl>:
  394. sub expo {
  395. my ($a, $b) = @_;
  396. return $a ** $b;
  397. }
  398. Now I'll create a C program, I<power.c>, with a function
  399. I<PerlPower()> that contains all the perlguts necessary to push the
  400. two arguments into I<expo()> and to pop the return value out. Take a
  401. deep breath...
  402. #include <EXTERN.h>
  403. #include <perl.h>
  404. static PerlInterpreter *my_perl;
  405. static void
  406. PerlPower(int a, int b)
  407. {
  408. dSP; /* initialize stack pointer */
  409. ENTER; /* everything created after here */
  410. SAVETMPS; /* ...is a temporary variable. */
  411. PUSHMARK(SP); /* remember the stack pointer */
  412. XPUSHs(sv_2mortal(newSViv(a))); /* push the base onto the stack */
  413. XPUSHs(sv_2mortal(newSViv(b))); /* push the exponent onto stack */
  414. PUTBACK; /* make local stack pointer global */
  415. perl_call_pv("expo", G_SCALAR); /* call the function */
  416. SPAGAIN; /* refresh stack pointer */
  417. /* pop the return value from stack */
  418. printf ("%d to the %dth power is %d.\n", a, b, POPi);
  419. PUTBACK;
  420. FREETMPS; /* free that return value */
  421. LEAVE; /* ...and the XPUSHed "mortal" args.*/
  422. }
  423. int main (int argc, char **argv, char **env)
  424. {
  425. char *my_argv[] = { "", "power.pl" };
  426. my_perl = perl_alloc();
  427. perl_construct( my_perl );
  428. perl_parse(my_perl, NULL, 2, my_argv, (char **)NULL);
  429. perl_run(my_perl);
  430. PerlPower(3, 4); /*** Compute 3 ** 4 ***/
  431. perl_destruct(my_perl);
  432. perl_free(my_perl);
  433. }
  434. Compile and run:
  435. % cc -o power power.c `perl -MExtUtils::Embed -e ccopts -e ldopts`
  436. % power
  437. 3 to the 4th power is 81.
  438. =head2 Maintaining a persistent interpreter
  439. When developing interactive and/or potentially long-running
  440. applications, it's a good idea to maintain a persistent interpreter
  441. rather than allocating and constructing a new interpreter multiple
  442. times. The major reason is speed: since Perl will only be loaded into
  443. memory once.
  444. However, you have to be more cautious with namespace and variable
  445. scoping when using a persistent interpreter. In previous examples
  446. we've been using global variables in the default package C<main>. We
  447. knew exactly what code would be run, and assumed we could avoid
  448. variable collisions and outrageous symbol table growth.
  449. Let's say your application is a server that will occasionally run Perl
  450. code from some arbitrary file. Your server has no way of knowing what
  451. code it's going to run. Very dangerous.
  452. If the file is pulled in by C<perl_parse()>, compiled into a newly
  453. constructed interpreter, and subsequently cleaned out with
  454. C<perl_destruct()> afterwards, you're shielded from most namespace
  455. troubles.
  456. One way to avoid namespace collisions in this scenario is to translate
  457. the filename into a guaranteed-unique package name, and then compile
  458. the code into that package using L<perlfunc/eval>. In the example
  459. below, each file will only be compiled once. Or, the application
  460. might choose to clean out the symbol table associated with the file
  461. after it's no longer needed. Using L<perlcall/perl_call_argv>, We'll
  462. call the subroutine C<Embed::Persistent::eval_file> which lives in the
  463. file C<persistent.pl> and pass the filename and boolean cleanup/cache
  464. flag as arguments.
  465. Note that the process will continue to grow for each file that it
  466. uses. In addition, there might be C<AUTOLOAD>ed subroutines and other
  467. conditions that cause Perl's symbol table to grow. You might want to
  468. add some logic that keeps track of the process size, or restarts
  469. itself after a certain number of requests, to ensure that memory
  470. consumption is minimized. You'll also want to scope your variables
  471. with L<perlfunc/my> whenever possible.
  472. package Embed::Persistent;
  473. #persistent.pl
  474. use strict;
  475. use vars '%Cache';
  476. use Symbol qw(delete_package);
  477. sub valid_package_name {
  478. my($string) = @_;
  479. $string =~ s/([^A-Za-z0-9\/])/sprintf("_%2x",unpack("C",$1))/eg;
  480. # second pass only for words starting with a digit
  481. $string =~ s|/(\d)|sprintf("/_%2x",unpack("C",$1))|eg;
  482. # Dress it up as a real package name
  483. $string =~ s|/|::|g;
  484. return "Embed" . $string;
  485. }
  486. sub eval_file {
  487. my($filename, $delete) = @_;
  488. my $package = valid_package_name($filename);
  489. my $mtime = -M $filename;
  490. if(defined $Cache{$package}{mtime}
  491. &&
  492. $Cache{$package}{mtime} <= $mtime)
  493. {
  494. # we have compiled this subroutine already,
  495. # it has not been updated on disk, nothing left to do
  496. print STDERR "already compiled $package->handler\n";
  497. }
  498. else {
  499. local *FH;
  500. open FH, $filename or die "open '$filename' $!";
  501. local($/) = undef;
  502. my $sub = <FH>;
  503. close FH;
  504. #wrap the code into a subroutine inside our unique package
  505. my $eval = qq{package $package; sub handler { $sub; }};
  506. {
  507. # hide our variables within this block
  508. my($filename,$mtime,$package,$sub);
  509. eval $eval;
  510. }
  511. die $@ if $@;
  512. #cache it unless we're cleaning out each time
  513. $Cache{$package}{mtime} = $mtime unless $delete;
  514. }
  515. eval {$package->handler;};
  516. die $@ if $@;
  517. delete_package($package) if $delete;
  518. #take a look if you want
  519. #print Devel::Symdump->rnew($package)->as_string, $/;
  520. }
  521. 1;
  522. __END__
  523. /* persistent.c */
  524. #include <EXTERN.h>
  525. #include <perl.h>
  526. /* 1 = clean out filename's symbol table after each request, 0 = don't */
  527. #ifndef DO_CLEAN
  528. #define DO_CLEAN 0
  529. #endif
  530. static PerlInterpreter *perl = NULL;
  531. int
  532. main(int argc, char **argv, char **env)
  533. {
  534. char *embedding[] = { "", "persistent.pl" };
  535. char *args[] = { "", DO_CLEAN, NULL };
  536. char filename [1024];
  537. int exitstatus = 0;
  538. STRLEN n_a;
  539. if((perl = perl_alloc()) == NULL) {
  540. fprintf(stderr, "no memory!");
  541. exit(1);
  542. }
  543. perl_construct(perl);
  544. exitstatus = perl_parse(perl, NULL, 2, embedding, NULL);
  545. if(!exitstatus) {
  546. exitstatus = perl_run(perl);
  547. while(printf("Enter file name: ") && gets(filename)) {
  548. /* call the subroutine, passing it the filename as an argument */
  549. args[0] = filename;
  550. perl_call_argv("Embed::Persistent::eval_file",
  551. G_DISCARD | G_EVAL, args);
  552. /* check $@ */
  553. if(SvTRUE(ERRSV))
  554. fprintf(stderr, "eval error: %s\n", SvPV(ERRSV,n_a));
  555. }
  556. }
  557. PL_perl_destruct_level = 0;
  558. perl_destruct(perl);
  559. perl_free(perl);
  560. exit(exitstatus);
  561. }
  562. Now compile:
  563. % cc -o persistent persistent.c `perl -MExtUtils::Embed -e ccopts -e ldopts`
  564. Here's a example script file:
  565. #test.pl
  566. my $string = "hello";
  567. foo($string);
  568. sub foo {
  569. print "foo says: @_\n";
  570. }
  571. Now run:
  572. % persistent
  573. Enter file name: test.pl
  574. foo says: hello
  575. Enter file name: test.pl
  576. already compiled Embed::test_2epl->handler
  577. foo says: hello
  578. Enter file name: ^C
  579. =head2 Maintaining multiple interpreter instances
  580. Some rare applications will need to create more than one interpreter
  581. during a session. Such an application might sporadically decide to
  582. release any resources associated with the interpreter.
  583. The program must take care to ensure that this takes place I<before>
  584. the next interpreter is constructed. By default, the global variable
  585. C<PL_perl_destruct_level> is set to C<0>, since extra cleaning isn't
  586. needed when a program has only one interpreter.
  587. Setting C<PL_perl_destruct_level> to C<1> makes everything squeaky clean:
  588. PL_perl_destruct_level = 1;
  589. while(1) {
  590. ...
  591. /* reset global variables here with PL_perl_destruct_level = 1 */
  592. perl_construct(my_perl);
  593. ...
  594. /* clean and reset _everything_ during perl_destruct */
  595. perl_destruct(my_perl);
  596. perl_free(my_perl);
  597. ...
  598. /* let's go do it again! */
  599. }
  600. When I<perl_destruct()> is called, the interpreter's syntax parse tree
  601. and symbol tables are cleaned up, and global variables are reset.
  602. Now suppose we have more than one interpreter instance running at the
  603. same time. This is feasible, but only if you used the
  604. C<-DMULTIPLICITY> flag when building Perl. By default, that sets
  605. C<PL_perl_destruct_level> to C<1>.
  606. Let's give it a try:
  607. #include <EXTERN.h>
  608. #include <perl.h>
  609. /* we're going to embed two interpreters */
  610. /* we're going to embed two interpreters */
  611. #define SAY_HELLO "-e", "print qq(Hi, I'm $^X\n)"
  612. int main(int argc, char **argv, char **env)
  613. {
  614. PerlInterpreter
  615. *one_perl = perl_alloc(),
  616. *two_perl = perl_alloc();
  617. char *one_args[] = { "one_perl", SAY_HELLO };
  618. char *two_args[] = { "two_perl", SAY_HELLO };
  619. perl_construct(one_perl);
  620. perl_construct(two_perl);
  621. perl_parse(one_perl, NULL, 3, one_args, (char **)NULL);
  622. perl_parse(two_perl, NULL, 3, two_args, (char **)NULL);
  623. perl_run(one_perl);
  624. perl_run(two_perl);
  625. perl_destruct(one_perl);
  626. perl_destruct(two_perl);
  627. perl_free(one_perl);
  628. perl_free(two_perl);
  629. }
  630. Compile as usual:
  631. % cc -o multiplicity multiplicity.c `perl -MExtUtils::Embed -e ccopts -e ldopts`
  632. Run it, Run it:
  633. % multiplicity
  634. Hi, I'm one_perl
  635. Hi, I'm two_perl
  636. =head2 Using Perl modules, which themselves use C libraries, from your C program
  637. If you've played with the examples above and tried to embed a script
  638. that I<use()>s a Perl module (such as I<Socket>) which itself uses a C or C++ library,
  639. this probably happened:
  640. Can't load module Socket, dynamic loading not available in this perl.
  641. (You may need to build a new perl executable which either supports
  642. dynamic loading or has the Socket module statically linked into it.)
  643. What's wrong?
  644. Your interpreter doesn't know how to communicate with these extensions
  645. on its own. A little glue will help. Up until now you've been
  646. calling I<perl_parse()>, handing it NULL for the second argument:
  647. perl_parse(my_perl, NULL, argc, my_argv, NULL);
  648. That's where the glue code can be inserted to create the initial contact between
  649. Perl and linked C/C++ routines. Let's take a look some pieces of I<perlmain.c>
  650. to see how Perl does this:
  651. #ifdef __cplusplus
  652. # define EXTERN_C extern "C"
  653. #else
  654. # define EXTERN_C extern
  655. #endif
  656. static void xs_init _((void));
  657. EXTERN_C void boot_DynaLoader _((CV* cv));
  658. EXTERN_C void boot_Socket _((CV* cv));
  659. EXTERN_C void
  660. xs_init()
  661. {
  662. char *file = __FILE__;
  663. /* DynaLoader is a special case */
  664. newXS("DynaLoader::boot_DynaLoader", boot_DynaLoader, file);
  665. newXS("Socket::bootstrap", boot_Socket, file);
  666. }
  667. Simply put: for each extension linked with your Perl executable
  668. (determined during its initial configuration on your
  669. computer or when adding a new extension),
  670. a Perl subroutine is created to incorporate the extension's
  671. routines. Normally, that subroutine is named
  672. I<Module::bootstrap()> and is invoked when you say I<use Module>. In
  673. turn, this hooks into an XSUB, I<boot_Module>, which creates a Perl
  674. counterpart for each of the extension's XSUBs. Don't worry about this
  675. part; leave that to the I<xsubpp> and extension authors. If your
  676. extension is dynamically loaded, DynaLoader creates I<Module::bootstrap()>
  677. for you on the fly. In fact, if you have a working DynaLoader then there
  678. is rarely any need to link in any other extensions statically.
  679. Once you have this code, slap it into the second argument of I<perl_parse()>:
  680. perl_parse(my_perl, xs_init, argc, my_argv, NULL);
  681. Then compile:
  682. % cc -o interp interp.c `perl -MExtUtils::Embed -e ccopts -e ldopts`
  683. % interp
  684. use Socket;
  685. use SomeDynamicallyLoadedModule;
  686. print "Now I can use extensions!\n"'
  687. B<ExtUtils::Embed> can also automate writing the I<xs_init> glue code.
  688. % perl -MExtUtils::Embed -e xsinit -- -o perlxsi.c
  689. % cc -c perlxsi.c `perl -MExtUtils::Embed -e ccopts`
  690. % cc -c interp.c `perl -MExtUtils::Embed -e ccopts`
  691. % cc -o interp perlxsi.o interp.o `perl -MExtUtils::Embed -e ldopts`
  692. Consult L<perlxs> and L<perlguts> for more details.
  693. =head1 Embedding Perl under Win32
  694. At the time of this writing (5.004), there are two versions of Perl
  695. which run under Win32. (The two versions are merging in 5.005.)
  696. Interfacing to ActiveState's Perl library is quite different from the
  697. examples in this documentation, as significant changes were made to
  698. the internal Perl API. However, it is possible to embed ActiveState's
  699. Perl runtime. For details, see the Perl for Win32 FAQ at
  700. http://www.perl.com/CPAN/doc/FAQs/win32/perlwin32faq.html.
  701. With the "official" Perl version 5.004 or higher, all the examples
  702. within this documentation will compile and run untouched, although
  703. the build process is slightly different between Unix and Win32.
  704. For starters, backticks don't work under the Win32 native command shell.
  705. The ExtUtils::Embed kit on CPAN ships with a script called
  706. B<genmake>, which generates a simple makefile to build a program from
  707. a single C source file. It can be used like this:
  708. C:\ExtUtils-Embed\eg> perl genmake interp.c
  709. C:\ExtUtils-Embed\eg> nmake
  710. C:\ExtUtils-Embed\eg> interp -e "print qq{I'm embedded in Win32!\n}"
  711. You may wish to use a more robust environment such as the Microsoft
  712. Developer Studio. In this case, run this to generate perlxsi.c:
  713. perl -MExtUtils::Embed -e xsinit
  714. Create a new project and Insert -> Files into Project: perlxsi.c,
  715. perl.lib, and your own source files, e.g. interp.c. Typically you'll
  716. find perl.lib in B<C:\perl\lib\CORE>, if not, you should see the
  717. B<CORE> directory relative to C<perl -V:archlib>. The studio will
  718. also need this path so it knows where to find Perl include files.
  719. This path can be added via the Tools -> Options -> Directories menu.
  720. Finally, select Build -> Build interp.exe and you're ready to go.
  721. =head1 MORAL
  722. You can sometimes I<write faster code> in C, but
  723. you can always I<write code faster> in Perl. Because you can use
  724. each from the other, combine them as you wish.
  725. =head1 AUTHOR
  726. Jon Orwant <F<[email protected]>> and Doug MacEachern
  727. <F<[email protected]>>, with small contributions from Tim Bunce, Tom
  728. Christiansen, Guy Decoux, Hallvard Furuseth, Dov Grobgeld, and Ilya
  729. Zakharevich.
  730. Doug MacEachern has an article on embedding in Volume 1, Issue 4 of
  731. The Perl Journal (http://tpj.com). Doug is also the developer of the
  732. most widely-used Perl embedding: the mod_perl system
  733. (perl.apache.org), which embeds Perl in the Apache web server.
  734. Oracle, Binary Evolution, ActiveState, and Ben Sugars's nsapi_perl
  735. have used this model for Oracle, Netscape and Internet Information
  736. Server Perl plugins.
  737. July 22, 1998
  738. =head1 COPYRIGHT
  739. Copyright (C) 1995, 1996, 1997, 1998 Doug MacEachern and Jon Orwant. All
  740. Rights Reserved.
  741. Permission is granted to make and distribute verbatim copies of this
  742. documentation provided the copyright notice and this permission notice are
  743. preserved on all copies.
  744. Permission is granted to copy and distribute modified versions of this
  745. documentation under the conditions for verbatim copying, provided also
  746. that they are marked clearly as modified versions, that the authors'
  747. names and title are unchanged (though subtitles and additional
  748. authors' names may be added), and that the entire resulting derived
  749. work is distributed under the terms of a permission notice identical
  750. to this one.
  751. Permission is granted to copy and distribute translations of this
  752. documentation into another language, under the above conditions for
  753. modified versions.