This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Re: 5.003_09: PADTMP fix
[perl5.git] / pod / perlxstut.pod
CommitLineData
4633a7c4
LW
1=head1 NAME
2
184e9718 3perlXStut - Tutorial for XSUBs
4633a7c4
LW
4
5=head1 DESCRIPTION
6
7This tutorial will educate the reader on the steps involved in creating
c07a80fd 8a Perl extension. The reader is assumed to have access to L<perlguts> and
4633a7c4
LW
9L<perlxs>.
10
11This tutorial starts with very simple examples and becomes more complex,
c07a80fd 12with each new example adding new features. Certain concepts may not be
13completely explained until later in the tutorial in order to slowly ease
14the reader into building extensions.
4633a7c4 15
c07a80fd 16=head2 VERSION CAVEAT
4633a7c4 17
c07a80fd 18This tutorial tries hard to keep up with the latest development versions
19of Perl. This often means that it is sometimes in advance of the latest
20released version of Perl, and that certain features described here might
21not work on earlier versions. This section will keep track of when various
22features were added to Perl 5.
23
24=over 4
25
26=item *
27
d9d2a7fb 28In versions of 5.002 prior to the gamma version, the test script in Example
291 will not function properly. You need to change the "use lib" line to
30read:
31
32 use lib './blib';
33
34=item *
35
184e9718 36In versions of 5.002 prior to version beta 3, the line in the .xs file
791fa977 37about "PROTOTYPES: DISABLE" will cause a compiler error. Simply remove that
38line from the file.
39
40=item *
41
42In versions of 5.002 prior to version 5.002b1h, the test.pl file was not
43automatically created by h2xs. This means that you cannot say "make test"
c07a80fd 44to run the test script. You will need to add the following line before the
45"use extension" statement:
46
47 use lib './blib';
48
49=item *
50
51In versions 5.000 and 5.001, instead of using the above line, you will need
52to use the following line:
53
54 BEGIN { unshift(@INC, "./blib") }
55
56=item *
57
58This document assumes that the executable named "perl" is Perl version 5.
59Some systems may have installed Perl version 5 as "perl5".
60
61=back
62
63=head2 DYNAMIC VERSUS STATIC
64
65It is commonly thought that if a system does not have the capability to
184e9718 66dynamically load a library, you cannot build XSUBs. This is incorrect.
c07a80fd 67You I<can> build them, but you must link the XSUB's subroutines with the
68rest of Perl, creating a new executable. This situation is similar to
69Perl 4.
70
71This tutorial can still be used on such a system. The XSUB build mechanism
72will check the system and build a dynamically-loadable library if possible,
73or else a static library and then, optionally, a new statically-linked
74executable with that static library linked in.
75
76Should you wish to build a statically-linked executable on a system which
77can dynamically load libraries, you may, in all the following examples,
78where the command "make" with no arguments is executed, run the command
79"make perl" instead.
80
81If you have generated such a statically-linked executable by choice, then
82instead of saying "make test", you should say "make test_static". On systems
83that cannot build dynamically-loadable libraries at all, simply saying "make
84test" is sufficient.
85
86=head2 EXAMPLE 1
4633a7c4
LW
87
88Our first extension will be very simple. When we call the routine in the
c07a80fd 89extension, it will print out a well-known message and return.
4633a7c4 90
84dc3c4d 91Run C<h2xs -A -n Mytest>. This creates a directory named Mytest, possibly under
c07a80fd 92ext/ if that directory exists in the current working directory. Several files
791fa977 93will be created in the Mytest dir, including MANIFEST, Makefile.PL, Mytest.pm,
94Mytest.xs, test.pl, and Changes.
4633a7c4 95
c07a80fd 96The MANIFEST file contains the names of all the files created.
4633a7c4
LW
97
98The file Makefile.PL should look something like this:
99
100 use ExtUtils::MakeMaker;
101 # See lib/ExtUtils/MakeMaker.pm for details of how to influence
102 # the contents of the Makefile that is written.
103 WriteMakefile(
791fa977 104 'NAME' => 'Mytest',
105 'VERSION_FROM' => 'Mytest.pm', # finds $VERSION
4633a7c4
LW
106 'LIBS' => [''], # e.g., '-lm'
107 'DEFINE' => '', # e.g., '-DHAVE_SOMETHING'
108 'INC' => '', # e.g., '-I/usr/include/other'
109 );
110
791fa977 111The file Mytest.pm should start with something like this:
c07a80fd 112
791fa977 113 package Mytest;
4633a7c4 114
4633a7c4
LW
115 require Exporter;
116 require DynaLoader;
c07a80fd 117
4633a7c4
LW
118 @ISA = qw(Exporter DynaLoader);
119 # Items to export into callers namespace by default. Note: do not export
120 # names by default without a very good reason. Use EXPORT_OK instead.
121 # Do not simply export all your public functions/methods/constants.
122 @EXPORT = qw(
c07a80fd 123
4633a7c4 124 );
c07a80fd 125 $VERSION = '0.01';
126
791fa977 127 bootstrap Mytest $VERSION;
c07a80fd 128
4633a7c4 129 # Preloaded methods go here.
c07a80fd 130
4633a7c4 131 # Autoload methods go after __END__, and are processed by the autosplit program.
c07a80fd 132
4633a7c4
LW
133 1;
134 __END__
c07a80fd 135 # Below is the stub of documentation for your module. You better edit it!
4633a7c4 136
791fa977 137And the Mytest.xs file should look something like this:
4633a7c4 138
c07a80fd 139 #ifdef __cplusplus
140 extern "C" {
141 #endif
4633a7c4
LW
142 #include "EXTERN.h"
143 #include "perl.h"
144 #include "XSUB.h"
c07a80fd 145 #ifdef __cplusplus
146 }
147 #endif
4633a7c4 148
791fa977 149 PROTOTYPES: DISABLE
150
151 MODULE = Mytest PACKAGE = Mytest
4633a7c4
LW
152
153Let's edit the .xs file by adding this to the end of the file:
154
155 void
156 hello()
4633a7c4
LW
157 CODE:
158 printf("Hello, world!\n");
159
c07a80fd 160Now we'll run "perl Makefile.PL". This will create a real Makefile,
d9d2a7fb 161which make needs. Its output looks something like:
4633a7c4
LW
162
163 % perl Makefile.PL
164 Checking if your kit is complete...
165 Looks good
791fa977 166 Writing Makefile for Mytest
4633a7c4
LW
167 %
168
c07a80fd 169Now, running make will produce output that looks something like this
170(some long lines shortened for clarity):
4633a7c4
LW
171
172 % make
791fa977 173 umask 0 && cp Mytest.pm ./blib/Mytest.pm
174 perl xsubpp -typemap typemap Mytest.xs >Mytest.tc && mv Mytest.tc Mytest.c
175 cc -c Mytest.c
176 Running Mkbootstrap for Mytest ()
177 chmod 644 Mytest.bs
178 LD_RUN_PATH="" ld -o ./blib/PA-RISC1.1/auto/Mytest/Mytest.sl -b Mytest.o
179 chmod 755 ./blib/PA-RISC1.1/auto/Mytest/Mytest.sl
180 cp Mytest.bs ./blib/PA-RISC1.1/auto/Mytest/Mytest.bs
181 chmod 644 ./blib/PA-RISC1.1/auto/Mytest/Mytest.bs
c07a80fd 182
183Now, although there is already a test.pl template ready for us, for this
184example only, we'll create a special test script. Create a file called hello
185that looks like this:
186
c07a80fd 187 #! /opt/perl5/bin/perl
4633a7c4 188
d9d2a7fb 189 use ExtUtils::testlib;
4633a7c4 190
791fa977 191 use Mytest;
4633a7c4 192
791fa977 193 Mytest::hello();
4633a7c4
LW
194
195Now we run the script and we should see the following output:
196
c07a80fd 197 % perl hello
4633a7c4
LW
198 Hello, world!
199 %
200
c07a80fd 201=head2 EXAMPLE 2
4633a7c4 202
c07a80fd 203Now let's add to our extension a subroutine that will take a single argument
184e9718 204and return 1 if the argument is even, 0 if the argument is odd.
4633a7c4 205
791fa977 206Add the following to the end of Mytest.xs:
4633a7c4
LW
207
208 int
209 is_even(input)
210 int input
4633a7c4 211 CODE:
c07a80fd 212 RETVAL = (input % 2 == 0);
4633a7c4
LW
213 OUTPUT:
214 RETVAL
215
791fa977 216There does not need to be white space at the start of the "int input" line,
217but it is useful for improving readability. The semi-colon at the end of
218that line is also optional.
4633a7c4 219
c07a80fd 220Any white space may be between the "int" and "input". It is also okay for
221the four lines starting at the "CODE:" line to not be indented. However,
222for readability purposes, it is suggested that you indent them 8 spaces
223(or one normal tab stop).
4633a7c4 224
c07a80fd 225Now re-run make to rebuild our new shared library.
4633a7c4 226
c07a80fd 227Now perform the same steps as before, generating a Makefile from the
228Makefile.PL file, and running make.
4633a7c4 229
c07a80fd 230In order to test that our extension works, we now need to look at the
231file test.pl. This file is set up to imitate the same kind of testing
232structure that Perl itself has. Within the test script, you perform a
233number of tests to confirm the behavior of the extension, printing "ok"
d9d2a7fb 234when the test is correct, "not ok" when it is not. Change the print
235statement in the BEGIN block to print "1..4", and add the following code
236to the end of the file:
c07a80fd 237
791fa977 238 print &Mytest::is_even(0) == 1 ? "ok 2" : "not ok 2", "\n";
239 print &Mytest::is_even(1) == 0 ? "ok 3" : "not ok 3", "\n";
240 print &Mytest::is_even(2) == 1 ? "ok 4" : "not ok 4", "\n";
c07a80fd 241
242We will be calling the test script through the command "make test". You
243should see output that looks something like this:
244
245 % make test
246 PERL_DL_NONLAZY=1 /opt/perl5.002b2/bin/perl (lots of -I arguments) test.pl
247 1..4
248 ok 1
249 ok 2
250 ok 3
251 ok 4
4633a7c4
LW
252 %
253
c07a80fd 254=head2 WHAT HAS GONE ON?
4633a7c4
LW
255
256The program h2xs is the starting point for creating extensions. In later
c07a80fd 257examples we'll see how we can use h2xs to read header files and generate
4633a7c4
LW
258templates to connect to C routines.
259
260h2xs creates a number of files in the extension directory. The file
261Makefile.PL is a perl script which will generate a true Makefile to build
262the extension. We'll take a closer look at it later.
263
184e9718 264The files E<lt>extensionE<gt>.pm and E<lt>extensionE<gt>.xs contain the meat
265of the extension.
4633a7c4 266The .xs file holds the C routines that make up the extension. The .pm file
c07a80fd 267contains routines that tell Perl how to load your extension.
4633a7c4 268
c07a80fd 269Generating and invoking the Makefile created a directory blib (which stands
270for "build library") in the current working directory. This directory will
271contain the shared library that we will build. Once we have tested it, we
272can install it into its final location.
273
274Invoking the test script via "make test" did something very important. It
84dc3c4d 275invoked perl with all those C<-I> arguments so that it could find the various
c07a80fd 276files that are part of the extension.
277
278It is I<very> important that while you are still testing extensions that
279you use "make test". If you try to run the test script all by itself, you
280will get a fatal error.
281
282Another reason it is important to use "make test" to run your test script
283is that if you are testing an upgrade to an already-existing version, using
284"make test" insures that you use your new extension, not the already-existing
285version.
4633a7c4 286
c07a80fd 287When Perl sees a C<use extension;>, it searches for a file with the same name
288as the use'd extension that has a .pm suffix. If that file cannot be found,
289Perl dies with a fatal error. The default search path is contained in the
290@INC array.
4633a7c4 291
791fa977 292In our case, Mytest.pm tells perl that it will need the Exporter and Dynamic
c07a80fd 293Loader extensions. It then sets the @ISA and @EXPORT arrays and the $VERSION
294scalar; finally it tells perl to bootstrap the module. Perl will call its
295dynamic loader routine (if there is one) and load the shared library.
4633a7c4 296
c07a80fd 297The two arrays that are set in the .pm file are very important. The @ISA
298array contains a list of other packages in which to search for methods (or
299subroutines) that do not exist in the current package. The @EXPORT array
300tells Perl which of the extension's routines should be placed into the
301calling package's namespace.
4633a7c4 302
c07a80fd 303It's important to select what to export carefully. Do NOT export method names
304and do NOT export anything else I<by default> without a good reason.
4633a7c4 305
c07a80fd 306As a general rule, if the module is trying to be object-oriented then don't
307export anything. If it's just a collection of functions then you can export
308any of the functions via another array, called @EXPORT_OK.
4633a7c4 309
c07a80fd 310See L<perlmod> for more information.
4633a7c4 311
c07a80fd 312The $VERSION variable is used to ensure that the .pm file and the shared
791fa977 313library are "in sync" with each other. Any time you make changes to
314the .pm or .xs files, you should increment the value of this variable.
315
316=head2 WRITING GOOD TEST SCRIPTS
317
318The importance of writing good test scripts cannot be overemphasized. You
319should closely follow the "ok/not ok" style that Perl itself uses, so that
320it is very easy and unambiguous to determine the outcome of each test case.
321When you find and fix a bug, make sure you add a test case for it.
322
323By running "make test", you ensure that your test.pl script runs and uses
324the correct version of your extension. If you have many test cases, you
325might want to copy Perl's test style. Create a directory named "t", and
326ensure all your test files end with the suffix ".t". The Makefile will
327properly run all these test files.
328
4633a7c4 329
c07a80fd 330=head2 EXAMPLE 3
4633a7c4
LW
331
332Our third extension will take one argument as its input, round off that
c07a80fd 333value, and set the I<argument> to the rounded value.
4633a7c4 334
791fa977 335Add the following to the end of Mytest.xs:
4633a7c4
LW
336
337 void
338 round(arg)
339 double arg
4633a7c4
LW
340 CODE:
341 if (arg > 0.0) {
342 arg = floor(arg + 0.5);
343 } else if (arg < 0.0) {
344 arg = ceil(arg - 0.5);
345 } else {
346 arg = 0.0;
347 }
348 OUTPUT:
349 arg
350
c07a80fd 351Edit the Makefile.PL file so that the corresponding line looks like this:
4633a7c4
LW
352
353 'LIBS' => ['-lm'], # e.g., '-lm'
354
c07a80fd 355Generate the Makefile and run make. Change the BEGIN block to print out
356"1..9" and add the following to test.pl:
4633a7c4 357
791fa977 358 $i = -1.5; &Mytest::round($i); print $i == -2.0 ? "ok 5" : "not ok 5", "\n";
359 $i = -1.1; &Mytest::round($i); print $i == -1.0 ? "ok 6" : "not ok 6", "\n";
360 $i = 0.0; &Mytest::round($i); print $i == 0.0 ? "ok 7" : "not ok 7", "\n";
361 $i = 0.5; &Mytest::round($i); print $i == 1.0 ? "ok 8" : "not ok 8", "\n";
362 $i = 1.2; &Mytest::round($i); print $i == 1.0 ? "ok 9" : "not ok 9", "\n";
c07a80fd 363
364Running "make test" should now print out that all nine tests are okay.
4633a7c4 365
c07a80fd 366You might be wondering if you can round a constant. To see what happens, add
367the following line to test.pl temporarily:
4633a7c4 368
791fa977 369 &Mytest::round(3);
4633a7c4 370
c07a80fd 371Run "make test" and notice that Perl dies with a fatal error. Perl won't let
372you change the value of constants!
4633a7c4 373
c07a80fd 374=head2 WHAT'S NEW HERE?
4633a7c4
LW
375
376Two things are new here. First, we've made some changes to Makefile.PL.
d9d2a7fb 377In this case, we've specified an extra library to link in, the math library
378libm. We'll talk later about how to write XSUBs that can call every routine
379in a library.
4633a7c4
LW
380
381Second, the value of the function is being passed back not as the function's
382return value, but through the same variable that was passed into the function.
383
c07a80fd 384=head2 INPUT AND OUTPUT PARAMETERS
4633a7c4
LW
385
386You specify the parameters that will be passed into the XSUB just after you
791fa977 387declare the function return value and name. Each parameter line starts with
388optional white space, and may have an optional terminating semicolon.
4633a7c4
LW
389
390The list of output parameters occurs after the OUTPUT: directive. The use
391of RETVAL tells Perl that you wish to send this value back as the return
c07a80fd 392value of the XSUB function. In Example 3, the value we wanted returned was
393contained in the same variable we passed in, so we listed it (and not RETVAL)
394in the OUTPUT: section.
4633a7c4 395
c07a80fd 396=head2 THE XSUBPP COMPILER
4633a7c4
LW
397
398The compiler xsubpp takes the XS code in the .xs file and converts it into
399C code, placing it in a file whose suffix is .c. The C code created makes
400heavy use of the C functions within Perl.
401
c07a80fd 402=head2 THE TYPEMAP FILE
4633a7c4
LW
403
404The xsubpp compiler uses rules to convert from Perl's data types (scalar,
405array, etc.) to C's data types (int, char *, etc.). These rules are stored
406in the typemap file ($PERLLIB/ExtUtils/typemap). This file is split into
407three parts.
408
409The first part attempts to map various C data types to a coded flag, which
410has some correspondence with the various Perl types. The second part contains
411C code which xsubpp uses for input parameters. The third part contains C
412code which xsubpp uses for output parameters. We'll talk more about the
413C code later.
414
c07a80fd 415Let's now take a look at a portion of the .c file created for our extension.
4633a7c4 416
791fa977 417 XS(XS_Mytest_round)
4633a7c4
LW
418 {
419 dXSARGS;
c07a80fd 420 if (items != 1)
791fa977 421 croak("Usage: Mytest::round(arg)");
4633a7c4 422 {
c07a80fd 423 double arg = (double)SvNV(ST(0)); /* XXXXX */
4633a7c4
LW
424 if (arg > 0.0) {
425 arg = floor(arg + 0.5);
426 } else if (arg < 0.0) {
427 arg = ceil(arg - 0.5);
c07a80fd 428 } else {
429 arg = 0.0;
4633a7c4 430 }
c07a80fd 431 sv_setnv(ST(0), (double)arg); /* XXXXX */
4633a7c4
LW
432 }
433 XSRETURN(1);
434 }
4633a7c4
LW
435
436Notice the two lines marked with "XXXXX". If you check the first section of
437the typemap file, you'll see that doubles are of type T_DOUBLE. In the
438INPUT section, an argument that is T_DOUBLE is assigned to the variable
439arg by calling the routine SvNV on something, then casting it to double,
440then assigned to the variable arg. Similarly, in the OUTPUT section,
441once arg has its final value, it is passed to the sv_setnv function to
442be passed back to the calling subroutine. These two functions are explained
c07a80fd 443in L<perlguts>; we'll talk more later about what that "ST(0)" means in the
4633a7c4
LW
444section on the argument stack.
445
c07a80fd 446=head2 WARNING
4633a7c4 447
c07a80fd 448In general, it's not a good idea to write extensions that modify their input
184e9718 449parameters, as in Example 3. However, in order to better accommodate calling
4633a7c4 450pre-existing C routines, which often do modify their input parameters,
d9d2a7fb 451this behavior is tolerated. The next example will show how to do this.
791fa977 452
453=head2 EXAMPLE 4
454
455In this example, we'll now begin to write XSUB's that will interact with
456pre-defined C libraries. To begin with, we will build a small library of
457our own, then let h2xs write our .pm and .xs files for us.
458
459Create a new directory called Mytest2 at the same level as the directory
460Mytest. In the Mytest2 directory, create another directory called mylib,
461and cd into that directory.
462
463Here we'll create some files that will generate a test library. These will
464include a C source file and a header file. We'll also create a Makefile.PL
465in this directory. Then we'll make sure that running make at the Mytest2
466level will automatically run this Makefile.PL file and the resulting Makefile.
467
468In the testlib directory, create a file mylib.h that looks like this:
469
470 #define TESTVAL 4
471
472 extern double foo(int, long, const char*);
473
474Also create a file mylib.c that looks like this:
475
476 #include <stdlib.h>
477 #include "./mylib.h"
478
479 double
480 foo(a, b, c)
481 int a;
482 long b;
483 const char * c;
484 {
485 return (a + b + atof(c) + TESTVAL);
486 }
487
488And finally create a file Makefile.PL that looks like this:
489
490 use ExtUtils::MakeMaker;
491 $Verbose = 1;
492 WriteMakefile(
493 'NAME' => 'Mytest2::mylib',
494 'clean' => {'FILES' => 'libmylib.a'},
495 );
496
497
498 sub MY::postamble {
499 '
500 all :: static
501
502 static :: libmylib$(LIB_EXT)
503
504 libmylib$(LIB_EXT): $(O_FILES)
505 $(AR) cr libmylib$(LIB_EXT) $(O_FILES)
506 $(RANLIB) libmylib$(LIB_EXT)
507
508 ';
509 }
510
511We will now create the main top-level Mytest2 files. Change to the directory
512above Mytest2 and run the following command:
513
d9d2a7fb 514 % h2xs -O -n Mytest2 ./Mytest2/mylib/mylib.h
791fa977 515
516This will print out a warning about overwriting Mytest2, but that's okay.
517Our files are stored in Mytest2/mylib, and will be untouched.
518
519The normal Makefile.PL that h2xs generates doesn't know about the mylib
520directory. We need to tell it that there is a subdirectory and that we
521will be generating a library in it. Let's add the following key-value
522pair to the WriteMakefile call:
4633a7c4 523
791fa977 524 'MYEXTLIB' => 'mylib/libmylib$(LIB_EXT)',
525
526and a new replacement subroutine too:
527
528 sub MY::postamble {
529 '
530 $(MYEXTLIB): mylib/Makefile
531 cd mylib && $(MAKE)
532 ';
533 }
534
535(Note: Most makes will require that there be a tab character that indents
536the line "cd mylib && $(MAKE)".)
537
538Let's also fix the MANIFEST file so that it accurately reflects the contents
539of our extension. The single line that says "mylib" should be replaced by
540the following three lines:
541
542 mylib/Makefile.PL
543 mylib/mylib.c
544 mylib/mylib.h
545
546To keep our namespace nice and unpolluted, edit the .pm file and change
d9d2a7fb 547the lines setting @EXPORT to @EXPORT_OK (there are two: one in the line
548beginning "use vars" and one setting the array itself). Finally, in the
549.xs file, edit the #include line to read:
791fa977 550
551 #include "mylib/mylib.h"
552
553And also add the following function definition to the end of the .xs file:
554
555 double
556 foo(a,b,c)
557 int a
558 long b
559 const char * c
560 OUTPUT:
561 RETVAL
562
563Now we also need to create a typemap file because the default Perl doesn't
564currently support the const char * type. Create a file called typemap and
565place the following in it:
566
567 const char * T_PV
568
569Now run perl on the top-level Makefile.PL. Notice that it also created a
570Makefile in the mylib directory. Run make and see that it does cd into
571the mylib directory and run make in there as well.
572
573Now edit the test.pl script and change the BEGIN block to print "1..4",
574and add the following lines to the end of the script:
575
576 print &Mytest2::foo(1, 2, "Hello, world!") == 7 ? "ok 2\n" : "not ok 2\n";
577 print &Mytest2::foo(1, 2, "0.0") == 7 ? "ok 3\n" : "not ok 3\n";
578 print abs(&Mytest2::foo(0, 0, "-3.4") - 0.6) <= 0.01 ? "ok 4\n" : "not ok 4\n";
579
580(When dealing with floating-point comparisons, it is often useful to not check
581for equality, but rather the difference being below a certain epsilon factor,
5820.01 in this case)
583
584Run "make test" and all should be well.
585
84dc3c4d 586=head2 WHAT HAS HAPPENED HERE?
791fa977 587
588Unlike previous examples, we've now run h2xs on a real include file. This
589has caused some extra goodies to appear in both the .pm and .xs files.
590
84dc3c4d 591=over 4
592
791fa977 593=item *
594
595In the .xs file, there's now a #include declaration with the full path to
596the mylib.h header file.
597
598=item *
599
600There's now some new C code that's been added to the .xs file. The purpose
601of the C<constant> routine is to make the values that are #define'd in the
602header file available to the Perl script (in this case, by calling
603C<&main::TESTVAL>). There's also some XS code to allow calls to the
604C<constant> routine.
605
606=item *
607
608The .pm file has exported the name TESTVAL in the @EXPORT array. This
609could lead to name clashes. A good rule of thumb is that if the #define
610is only going to be used by the C routines themselves, and not by the user,
611they should be removed from the @EXPORT array. Alternately, if you don't
612mind using the "fully qualified name" of a variable, you could remove most
613or all of the items in the @EXPORT array.
614
d9d2a7fb 615=item *
616
617If our include file contained #include directives, these would not be
618processed at all by h2xs. There is no good solution to this right now.
619
791fa977 620=back
621
622We've also told Perl about the library that we built in the mylib
623subdirectory. That required only the addition of the MYEXTLIB variable
624to the WriteMakefile call and the replacement of the postamble subroutine
625to cd into the subdirectory and run make. The Makefile.PL for the
626library is a bit more complicated, but not excessively so. Again we
627replaced the postamble subroutine to insert our own code. This code
628simply specified that the library to be created here was a static
629archive (as opposed to a dynamically loadable library) and provided the
630commands to build it.
4633a7c4 631
c07a80fd 632=head2 SPECIFYING ARGUMENTS TO XSUBPP
4633a7c4 633
791fa977 634With the completion of Example 4, we now have an easy way to simulate some
c07a80fd 635real-life libraries whose interfaces may not be the cleanest in the world.
636We shall now continue with a discussion of the arguments passed to the
637xsubpp compiler.
4633a7c4 638
c07a80fd 639When you specify arguments in the .xs file, you are really passing three
640pieces of information for each one listed. The first piece is the order
641of that argument relative to the others (first, second, etc). The second
642is the type of argument, and consists of the type declaration of the
643argument (e.g., int, char*, etc). The third piece is the exact way in
644which the argument should be used in the call to the library function
645from this XSUB. This would mean whether or not to place a "&" before
646the argument or not, meaning the argument expects to be passed the address
647of the specified data type.
4633a7c4 648
c07a80fd 649There is a difference between the two arguments in this hypothetical function:
4633a7c4 650
4633a7c4 651 int
c07a80fd 652 foo(a,b)
653 char &a
654 char * b
4633a7c4 655
c07a80fd 656The first argument to this function would be treated as a char and assigned
657to the variable a, and its address would be passed into the function foo.
658The second argument would be treated as a string pointer and assigned to the
659variable b. The I<value> of b would be passed into the function foo. The
660actual call to the function foo that xsubpp generates would look like this:
4633a7c4 661
c07a80fd 662 foo(&a, b);
4633a7c4 663
791fa977 664Xsubpp will identically parse the following function argument lists:
665
666 char &a
667 char&a
668 char & a
669
670However, to help ease understanding, it is suggested that you place a "&"
671next to the variable name and away from the variable type), and place a
672"*" near the variable type, but away from the variable name (as in the
673complete example above). By doing so, it is easy to understand exactly
674what will be passed to the C function -- it will be whatever is in the
675"last column".
4633a7c4 676
c07a80fd 677You should take great pains to try to pass the function the type of variable
678it wants, when possible. It will save you a lot of trouble in the long run.
4633a7c4 679
c07a80fd 680=head2 THE ARGUMENT STACK
4633a7c4 681
c07a80fd 682If we look at any of the C code generated by any of the examples except
683example 1, you will notice a number of references to ST(n), where n is
684usually 0. The "ST" is actually a macro that points to the n'th argument
685on the argument stack. ST(0) is thus the first argument passed to the
686XSUB, ST(1) is the second argument, and so on.
4633a7c4 687
184e9718 688When you list the arguments to the XSUB in the .xs file, that tells xsubpp
c07a80fd 689which argument corresponds to which of the argument stack (i.e., the first
690one listed is the first argument, and so on). You invite disaster if you
691do not list them in the same order as the function expects them.
4633a7c4 692
c07a80fd 693=head2 EXTENDING YOUR EXTENSION
4633a7c4 694
c07a80fd 695Sometimes you might want to provide some extra methods or subroutines
696to assist in making the interface between Perl and your extension simpler
697or easier to understand. These routines should live in the .pm file.
698Whether they are automatically loaded when the extension itself is loaded
699or only loaded when called depends on where in the .pm file the subroutine
700definition is placed.
4633a7c4 701
c07a80fd 702=head2 DOCUMENTING YOUR EXTENSION
4633a7c4 703
c07a80fd 704There is absolutely no excuse for not documenting your extension.
705Documentation belongs in the .pm file. This file will be fed to pod2man,
791fa977 706and the embedded documentation will be converted to the man page format,
c07a80fd 707then placed in the blib directory. It will be copied to Perl's man
708page directory when the extension is installed.
4633a7c4 709
c07a80fd 710You may intersperse documentation and Perl code within the .pm file.
711In fact, if you want to use method autoloading, you must do this,
712as the comment inside the .pm file explains.
4633a7c4 713
c07a80fd 714See L<perlpod> for more information about the pod format.
4633a7c4 715
c07a80fd 716=head2 INSTALLING YOUR EXTENSION
4633a7c4 717
c07a80fd 718Once your extension is complete and passes all its tests, installing it
719is quite simple: you simply run "make install". You will either need
720to have write permission into the directories where Perl is installed,
721or ask your system administrator to run the make for you.
4633a7c4 722
c07a80fd 723=head2 SEE ALSO
4633a7c4 724
c07a80fd 725For more information, consult L<perlguts>, L<perlxs>, L<perlmod>,
726and L<perlpod>.
4633a7c4 727
c07a80fd 728=head2 Author
4633a7c4 729
184e9718 730Jeff Okamoto E<lt>F<okamoto@corp.hp.com>E<gt>
4633a7c4 731
c07a80fd 732Reviewed and assisted by Dean Roehrich, Ilya Zakharevich, Andreas Koenig,
733and Tim Bunce.
4633a7c4 734
c07a80fd 735=head2 Last Changed
4633a7c4 736
d9d2a7fb 7371996/7/10