This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
[win32] don't share TARG unless -DUSE_BROKEN_PAD_RESET
[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
5f05dabc 13completely explained until later in the tutorial to ease the
14reader slowly 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
a6006777 28In versions of Perl 5.002 prior to the gamma version, the test script
29in Example 1 will not function properly. You need to change the "use
30lib" line to read:
d9d2a7fb 31
32 use lib './blib';
33
34=item *
35
a6006777 36In versions of Perl 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
a6006777 42In versions of Perl 5.002 prior to version 5.002b1h, the test.pl file was not
791fa977 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
54310121 58This document assumes that the executable named "perl" is Perl version 5.
c07a80fd 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
5f05dabc 66load a library dynamically, 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
54310121 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
54310121 188
d9d2a7fb 189 use ExtUtils::testlib;
54310121 190
791fa977 191 use Mytest;
54310121 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
54310121 225Now rerun 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
5f05dabc 230To test that our extension works, we now need to look at the
c07a80fd 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 }
189b2af5 431 SvSetMagicNV(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,
189b2af5
GS
441once arg has its final value, it is passed to the SvSetMagicNV() macro
442(which calls the sv_setnv() function) to be passed back to the calling
443subroutine. These macros/functions are explained in L<perlguts>; we'll talk
444more later about what that "ST(0)" means in the section on the argument stack.
4633a7c4 445
c07a80fd 446=head2 WARNING
4633a7c4 447
c07a80fd 448In general, it's not a good idea to write extensions that modify their input
5f05dabc 449parameters, as in Example 3. However, to accommodate better 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
68dc0745 455In this example, we'll now begin to write XSUBs that will interact with
54310121 456predefined C libraries. To begin with, we will build a small library of
791fa977 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"
54310121 478
791fa977 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(
8227f81c
IZ
493 NAME => 'Mytest2::mylib',
494 SKIP => [qw(all static static_lib dynamic dynamic_lib)],
495 clean => {'FILES' => 'libmylib$(LIB_EXT)'},
791fa977 496 );
497
498
8227f81c 499 sub MY::top_targets {
791fa977 500 '
501 all :: static
502
503 static :: libmylib$(LIB_EXT)
504
505 libmylib$(LIB_EXT): $(O_FILES)
506 $(AR) cr libmylib$(LIB_EXT) $(O_FILES)
507 $(RANLIB) libmylib$(LIB_EXT)
508
509 ';
510 }
511
512We will now create the main top-level Mytest2 files. Change to the directory
513above Mytest2 and run the following command:
514
d9d2a7fb 515 % h2xs -O -n Mytest2 ./Mytest2/mylib/mylib.h
791fa977 516
517This will print out a warning about overwriting Mytest2, but that's okay.
518Our files are stored in Mytest2/mylib, and will be untouched.
519
520The normal Makefile.PL that h2xs generates doesn't know about the mylib
521directory. We need to tell it that there is a subdirectory and that we
522will be generating a library in it. Let's add the following key-value
523pair to the WriteMakefile call:
4633a7c4 524
791fa977 525 'MYEXTLIB' => 'mylib/libmylib$(LIB_EXT)',
526
527and a new replacement subroutine too:
528
529 sub MY::postamble {
530 '
531 $(MYEXTLIB): mylib/Makefile
88785b6d 532 cd mylib && $(MAKE) $(PASTHRU)
791fa977 533 ';
534 }
535
536(Note: Most makes will require that there be a tab character that indents
88785b6d 537the line C<cd mylib && $(MAKE) $(PASTHRU)>, similarly for the Makefile in the
8227f81c 538subdirectory.)
791fa977 539
540Let's also fix the MANIFEST file so that it accurately reflects the contents
541of our extension. The single line that says "mylib" should be replaced by
542the following three lines:
543
544 mylib/Makefile.PL
545 mylib/mylib.c
546 mylib/mylib.h
547
548To keep our namespace nice and unpolluted, edit the .pm file and change
d9d2a7fb 549the lines setting @EXPORT to @EXPORT_OK (there are two: one in the line
550beginning "use vars" and one setting the array itself). Finally, in the
551.xs file, edit the #include line to read:
791fa977 552
553 #include "mylib/mylib.h"
554
555And also add the following function definition to the end of the .xs file:
556
557 double
558 foo(a,b,c)
559 int a
560 long b
561 const char * c
562 OUTPUT:
563 RETVAL
564
565Now we also need to create a typemap file because the default Perl doesn't
566currently support the const char * type. Create a file called typemap and
567place the following in it:
568
569 const char * T_PV
570
571Now run perl on the top-level Makefile.PL. Notice that it also created a
572Makefile in the mylib directory. Run make and see that it does cd into
573the mylib directory and run make in there as well.
574
575Now edit the test.pl script and change the BEGIN block to print "1..4",
576and add the following lines to the end of the script:
577
578 print &Mytest2::foo(1, 2, "Hello, world!") == 7 ? "ok 2\n" : "not ok 2\n";
579 print &Mytest2::foo(1, 2, "0.0") == 7 ? "ok 3\n" : "not ok 3\n";
580 print abs(&Mytest2::foo(0, 0, "-3.4") - 0.6) <= 0.01 ? "ok 4\n" : "not ok 4\n";
581
5f05dabc 582(When dealing with floating-point comparisons, it is often useful not to check
791fa977 583for equality, but rather the difference being below a certain epsilon factor,
5840.01 in this case)
585
586Run "make test" and all should be well.
587
84dc3c4d 588=head2 WHAT HAS HAPPENED HERE?
791fa977 589
590Unlike previous examples, we've now run h2xs on a real include file. This
591has caused some extra goodies to appear in both the .pm and .xs files.
592
84dc3c4d 593=over 4
594
791fa977 595=item *
596
597In the .xs file, there's now a #include declaration with the full path to
598the mylib.h header file.
599
600=item *
601
602There's now some new C code that's been added to the .xs file. The purpose
603of the C<constant> routine is to make the values that are #define'd in the
604header file available to the Perl script (in this case, by calling
605C<&main::TESTVAL>). There's also some XS code to allow calls to the
606C<constant> routine.
607
608=item *
609
610The .pm file has exported the name TESTVAL in the @EXPORT array. This
611could lead to name clashes. A good rule of thumb is that if the #define
5f05dabc 612is going to be used by only the C routines themselves, and not by the user,
791fa977 613they should be removed from the @EXPORT array. Alternately, if you don't
614mind using the "fully qualified name" of a variable, you could remove most
615or all of the items in the @EXPORT array.
616
d9d2a7fb 617=item *
618
619If our include file contained #include directives, these would not be
620processed at all by h2xs. There is no good solution to this right now.
621
791fa977 622=back
623
624We've also told Perl about the library that we built in the mylib
5f05dabc 625subdirectory. That required the addition of only the MYEXTLIB variable
791fa977 626to the WriteMakefile call and the replacement of the postamble subroutine
627to cd into the subdirectory and run make. The Makefile.PL for the
628library is a bit more complicated, but not excessively so. Again we
629replaced the postamble subroutine to insert our own code. This code
5f05dabc 630specified simply that the library to be created here was a static
791fa977 631archive (as opposed to a dynamically loadable library) and provided the
632commands to build it.
4633a7c4 633
c07a80fd 634=head2 SPECIFYING ARGUMENTS TO XSUBPP
4633a7c4 635
791fa977 636With the completion of Example 4, we now have an easy way to simulate some
c07a80fd 637real-life libraries whose interfaces may not be the cleanest in the world.
638We shall now continue with a discussion of the arguments passed to the
639xsubpp compiler.
4633a7c4 640
c07a80fd 641When you specify arguments in the .xs file, you are really passing three
642pieces of information for each one listed. The first piece is the order
643of that argument relative to the others (first, second, etc). The second
644is the type of argument, and consists of the type declaration of the
645argument (e.g., int, char*, etc). The third piece is the exact way in
646which the argument should be used in the call to the library function
647from this XSUB. This would mean whether or not to place a "&" before
648the argument or not, meaning the argument expects to be passed the address
649of the specified data type.
4633a7c4 650
c07a80fd 651There is a difference between the two arguments in this hypothetical function:
4633a7c4 652
4633a7c4 653 int
c07a80fd 654 foo(a,b)
655 char &a
656 char * b
4633a7c4 657
c07a80fd 658The first argument to this function would be treated as a char and assigned
659to the variable a, and its address would be passed into the function foo.
660The second argument would be treated as a string pointer and assigned to the
661variable b. The I<value> of b would be passed into the function foo. The
662actual call to the function foo that xsubpp generates would look like this:
4633a7c4 663
c07a80fd 664 foo(&a, b);
4633a7c4 665
791fa977 666Xsubpp will identically parse the following function argument lists:
667
668 char &a
669 char&a
670 char & a
671
672However, to help ease understanding, it is suggested that you place a "&"
673next to the variable name and away from the variable type), and place a
674"*" near the variable type, but away from the variable name (as in the
675complete example above). By doing so, it is easy to understand exactly
676what will be passed to the C function -- it will be whatever is in the
677"last column".
4633a7c4 678
c07a80fd 679You should take great pains to try to pass the function the type of variable
680it wants, when possible. It will save you a lot of trouble in the long run.
4633a7c4 681
c07a80fd 682=head2 THE ARGUMENT STACK
4633a7c4 683
c07a80fd 684If we look at any of the C code generated by any of the examples except
685example 1, you will notice a number of references to ST(n), where n is
686usually 0. The "ST" is actually a macro that points to the n'th argument
687on the argument stack. ST(0) is thus the first argument passed to the
688XSUB, ST(1) is the second argument, and so on.
4633a7c4 689
184e9718 690When you list the arguments to the XSUB in the .xs file, that tells xsubpp
c07a80fd 691which argument corresponds to which of the argument stack (i.e., the first
692one listed is the first argument, and so on). You invite disaster if you
693do not list them in the same order as the function expects them.
4633a7c4 694
c07a80fd 695=head2 EXTENDING YOUR EXTENSION
4633a7c4 696
c07a80fd 697Sometimes you might want to provide some extra methods or subroutines
698to assist in making the interface between Perl and your extension simpler
699or easier to understand. These routines should live in the .pm file.
700Whether they are automatically loaded when the extension itself is loaded
5f05dabc 701or loaded only when called depends on where in the .pm file the subroutine
c07a80fd 702definition is placed.
4633a7c4 703
c07a80fd 704=head2 DOCUMENTING YOUR EXTENSION
4633a7c4 705
c07a80fd 706There is absolutely no excuse for not documenting your extension.
707Documentation belongs in the .pm file. This file will be fed to pod2man,
54310121 708and the embedded documentation will be converted to the manpage format,
c07a80fd 709then placed in the blib directory. It will be copied to Perl's man
710page directory when the extension is installed.
4633a7c4 711
c07a80fd 712You may intersperse documentation and Perl code within the .pm file.
713In fact, if you want to use method autoloading, you must do this,
714as the comment inside the .pm file explains.
4633a7c4 715
c07a80fd 716See L<perlpod> for more information about the pod format.
4633a7c4 717
c07a80fd 718=head2 INSTALLING YOUR EXTENSION
4633a7c4 719
c07a80fd 720Once your extension is complete and passes all its tests, installing it
54310121 721is quite simple: you simply run "make install". You will either need
c07a80fd 722to have write permission into the directories where Perl is installed,
723or ask your system administrator to run the make for you.
4633a7c4 724
c07a80fd 725=head2 SEE ALSO
4633a7c4 726
c07a80fd 727For more information, consult L<perlguts>, L<perlxs>, L<perlmod>,
728and L<perlpod>.
4633a7c4 729
c07a80fd 730=head2 Author
4633a7c4 731
9607fc9c 732Jeff Okamoto <F<okamoto@corp.hp.com>>
4633a7c4 733
c07a80fd 734Reviewed and assisted by Dean Roehrich, Ilya Zakharevich, Andreas Koenig,
735and Tim Bunce.
4633a7c4 736
c07a80fd 737=head2 Last Changed
4633a7c4 738
d9d2a7fb 7391996/7/10