More POD fixes ; regenerate perltoc and perlmodlib.
[p5sagit/p5-mst-13.2.git] / ext / DynaLoader / DynaLoader_pm.PL
CommitLineData
03c9e98c 1use Config;
2
3sub to_string {
4 my ($value) = @_;
146174a9 5 $value =~ s/\\/\\\\/g;
03c9e98c 6 $value =~ s/'/\\'/g;
7 return "'$value'";
8}
9
10unlink "DynaLoader.pm" if -f "DynaLoader.pm";
11open OUT, ">DynaLoader.pm" or die $!;
12print OUT <<'EOT';
13
d0a5ed9f 14# Generated from DynaLoader.pm.PL
03c9e98c 15
a0d0e21e 16package DynaLoader;
17
8e07c86e 18# And Gandalf said: 'Many folk like to know beforehand what is to
19# be set on the table; but those who have laboured to prepare the
20# feast like to keep their secret; for wonder makes the words of
21# praise louder.'
22
6662521e 23# (Quote from Tolkien suggested by Anno Siegel.)
8e07c86e 24#
25# See pod text at end of file for documentation.
26# See also ext/DynaLoader/README in source tree for other information.
27#
28# Tim.Bunce@ig.co.uk, August 1994
29
632a9a7f 30use vars qw($VERSION *AUTOLOAD);
31
6eac7260 32$VERSION = '1.04'; # avoid typo warning
dc848c6f 33
dc848c6f 34require AutoLoader;
35*AUTOLOAD = \&AutoLoader::AUTOLOAD;
8e07c86e 36
7e9f3af8 37use Config;
38
fb73857a 39# The following require can't be removed during maintenance
40# releases, sadly, because of the risk of buggy code that does
41# require Carp; Carp::croak "..."; without brackets dying
42# if Carp hasn't been loaded in earlier compile time. :-(
43# We'll let those bugs get found on the development track.
44require Carp if $] < 5.00450;
45
8e07c86e 46# enable debug/trace messages from DynaLoader perl code
47$dl_debug = $ENV{PERL_DL_DEBUG} || 0 unless defined $dl_debug;
48
ff7f3c60 49#
50# Flags to alter dl_load_file behaviour. Assigned bits:
51# 0x01 make symbols available for linking later dl_load_file's.
52# (only known to work on Solaris 2 using dlopen(RTLD_GLOBAL))
f86702cc 53# (ignored under VMS; effect is built-in to image linking)
ff7f3c60 54#
55# This is called as a class method $module->dl_load_flags. The
56# definition here will be inherited and result on "default" loading
57# behaviour unless a sub-class of DynaLoader defines its own version.
58#
59
60sub dl_load_flags { 0x00 }
61
03c9e98c 62# ($dl_dlext, $dlsrc)
63# = @Config::Config{'dlext', 'dlsrc'};
64EOT
65
66print OUT " (\$dl_dlext, \$dlsrc) = (",
67 to_string($Config::Config{'dlext'}), ",",
68 to_string($Config::Config{'dlsrc'}), ")\n;" ;
ff7f3c60 69
03c9e98c 70print OUT <<'EOT';
8e07c86e 71
72# Some systems need special handling to expand file specifications
73# (VMS support by Charles Bailey <bailey@HMIVAX.HUMGEN.UPENN.EDU>)
74# See dl_expandspec() for more details. Should be harmless but
75# inefficient to define on systems that don't need it.
632a9a7f 76$Is_VMS = $^O eq 'VMS';
77$do_expand = $Is_VMS;
78$Is_MacOS = $^O eq 'MacOS';
8e07c86e 79
d5201bd2 80my $Mac_FS;
81$Mac_FS = eval { require Mac::FileSpec::Unixish } if $Is_MacOS;
82
8e07c86e 83@dl_require_symbols = (); # names of symbols we need
84@dl_resolve_using = (); # names of files to link with
85@dl_library_path = (); # path to look for files
bff25830 86
87#XSLoader.pm may have added elements before we were required
88#@dl_librefs = (); # things we have loaded
89#@dl_modules = (); # Modules we have loaded
8e07c86e 90
91# This is a fix to support DLD's unfortunate desire to relink -lc
92@dl_resolve_using = dl_findfile('-lc') if $dlsrc eq "dl_dld.xs";
93
d0a5ed9f 94EOT
03c9e98c 95
d0a5ed9f 96my $cfg_dl_library_path = <<'EOT';
632a9a7f 97push(@dl_library_path, split(' ', $Config::Config{libpth}));
03c9e98c 98EOT
99
d0a5ed9f 100sub dquoted_comma_list {
101 join(", ", map {qq("$_")} @_);
102}
03c9e98c 103
d0a5ed9f 104if ($ENV{PERL_BUILD_EXPAND_CONFIG_VARS}) {
105 eval $cfg_dl_library_path;
106 if (!$ENV{PERL_BUILD_EXPAND_ENV_VARS}) {
107 my $dl_library_path = dquoted_comma_list(@dl_library_path);
108 print OUT <<EOT;
7e9f3af8 109# The below \@dl_library_path has been expanded (%Config) in Perl build time.
d0a5ed9f 110
111\@dl_library_path = ($dl_library_path);
112
113EOT
114 }
115}
116else {
117 print OUT <<EOT;
118# Initialise \@dl_library_path with the 'standard' library path
119# for this platform as determined by Configure.
120
121$cfg_dl_library_path
122
123EOT
124}
8e07c86e 125
8225e35f 126my $ldlibpthname;
7e9f3af8 127my $ldlibpthname_defined;
8225e35f 128my $pthsep;
129
130if ($ENV{PERL_BUILD_EXPAND_CONFIG_VARS}) {
7e9f3af8 131 $ldlibpthname = $Config::Config{ldlibpthname};
132 $ldlibpthname_defined = defined $Config::Config{ldlibpthname} ? 1 : 0;
133 $pthsep = $Config::Config{path_sep};
8225e35f 134}
135else {
7e9f3af8 136 $ldlibpthname = q($Config::Config{ldlibpthname});
137 $ldlibpthname_defined = q(defined $Config::Config{ldlibpthname});
138 $pthsep = q($Config::Config{path_sep});
8225e35f 139 print OUT <<EOT;
7e9f3af8 140my \$ldlibpthname = $ldlibpthname;
141my \$ldlibpthname_defined = $ldlibpthname_defined;
142my \$pthsep = $pthsep;
8225e35f 143
144EOT
145}
146
7e9f3af8 147my $env_dl_library_path = <<'EOT';
148if ($ldlibpthname_defined &&
149 exists $ENV{$ldlibpthname}) {
150 push(@dl_library_path, split(/$pthsep/, $ENV{$ldlibpthname}));
8225e35f 151}
152
5cf1d1f1 153# E.g. HP-UX supports both its native SHLIB_PATH *and* LD_LIBRARY_PATH.
8225e35f 154
7e9f3af8 155if ($ldlibpthname_defined &&
156 $ldlibpthname ne 'LD_LIBRARY_PATH' &&
157 exists $ENV{LD_LIBRARY_PATH}) {
158 push(@dl_library_path, split(/$pthsep/, $ENV{LD_LIBRARY_PATH}));
d0a5ed9f 159}
e6197cab 160EOT
161
d0a5ed9f 162if ($ENV{PERL_BUILD_EXPAND_CONFIG_VARS} && $ENV{PERL_BUILD_EXPAND_ENV_VARS}) {
163 eval $env_dl_library_path;
e6197cab 164}
d0a5ed9f 165else {
166 print OUT <<EOT;
167# Add to \@dl_library_path any extra directories we can gather from environment
168# during runtime.
e6197cab 169
d0a5ed9f 170$env_dl_library_path
171
172EOT
e6197cab 173}
174
d0a5ed9f 175if ($ENV{PERL_BUILD_EXPAND_CONFIG_VARS} && $ENV{PERL_BUILD_EXPAND_ENV_VARS}) {
176 my $dl_library_path = dquoted_comma_list(@dl_library_path);
177 print OUT <<EOT;
7e9f3af8 178# The below \@dl_library_path has been expanded (%Config, %ENV)
179# in Perl build time.
d0a5ed9f 180
181\@dl_library_path = ($dl_library_path);
182
183EOT
146174a9 184}
8e07c86e 185
d0a5ed9f 186print OUT <<'EOT';
8e07c86e 187# No prizes for guessing why we don't say 'bootstrap DynaLoader;' here.
b4cea227 188# NOTE: All dl_*.xs (including dl_none.xs) define a dl_error() XSUB
bb3913c7 189boot_DynaLoader('DynaLoader') if defined(&boot_DynaLoader) &&
b4cea227 190 !defined(&dl_error);
8e07c86e 191
192if ($dl_debug) {
193 print STDERR "DynaLoader.pm loaded (@INC, @dl_library_path)\n";
194 print STDERR "DynaLoader not linked into this perl\n"
195 unless defined(&boot_DynaLoader);
196}
197
1981; # End of main code
199
200
fb73857a 201sub croak { require Carp; Carp::croak(@_) }
202
146174a9 203sub bootstrap_inherit {
204 my $module = $_[0];
205 local *isa = *{"$module\::ISA"};
206 local @isa = (@isa, 'DynaLoader');
207 # Cannot goto due to delocalization. Will report errors on a wrong line?
208 bootstrap(@_);
209}
210
8e07c86e 211# The bootstrap function cannot be autoloaded (without complications)
212# so we define it here:
213
214sub bootstrap {
215 # use local vars to enable $module.bs script to edit values
216 local(@args) = @_;
217 local($module) = $args[0];
218 local(@dirs, $file);
219
fb73857a 220 unless ($module) {
221 require Carp;
222 Carp::confess("Usage: DynaLoader::bootstrap(module)");
223 }
8e07c86e 224
225 # A common error on platforms which don't support dynamic loading.
226 # Since it's fatal and potentially confusing we give a detailed message.
fb73857a 227 croak("Can't load module $module, dynamic loading not available in this perl.\n".
8e07c86e 228 " (You may need to build a new perl executable which either supports\n".
229 " dynamic loading or has the $module module statically linked into it.)\n")
230 unless defined(&dl_load_file);
231
59ad941d 232EOT
233
234print OUT <<'EOT' if $^O eq 'os2';
235 # Can dynaload, but cannot dynaload Perl modules...
236 die 'Dynaloaded Perl modules are not available in this build of Perl' if $OS2::is_static;
237
238EOT
239
240print OUT <<'EOT';
8e07c86e 241 my @modparts = split(/::/,$module);
242 my $modfname = $modparts[-1];
243
244 # Some systems have restrictions on files names for DLL's etc.
245 # mod2fname returns appropriate file base name (typically truncated)
246 # It may also edit @modparts if required.
247 $modfname = &mod2fname(\@modparts) if defined &mod2fname;
248
1a95e36d 249 # Truncate the module name to 8.3 format for NetWare
f355267c 250 if (($^O eq 'NetWare') && (length($modfname) > 8)) {
251 $modfname = substr($modfname, 0, 8);
252 }
253
146174a9 254 my $modpname = join(($Is_MacOS ? ':' : '/'),@modparts);
8e07c86e 255
256 print STDERR "DynaLoader::bootstrap for $module ",
146174a9 257 ($Is_MacOS
6662521e 258 ? "(:auto:$modpname:$modfname.$dl_dlext)\n" :
259 "(auto/$modpname/$modfname.$dl_dlext)\n")
146174a9 260 if $dl_debug;
8e07c86e 261
262 foreach (@INC) {
54d6a3b3 263 chop($_ = VMS::Filespec::unixpath($_)) if $Is_VMS;
146174a9 264 my $dir;
265 if ($Is_MacOS) {
e69a2255 266 my $path = $_;
5b865721 267 if ($Mac_FS && ! -d $path) {
d5201bd2 268 $path = Mac::FileSpec::Unixish::nativize($path);
269 }
e69a2255 270 $path .= ":" unless /:$/;
271 $dir = "${path}auto:$modpname";
146174a9 272 } else {
273 $dir = "$_/auto/$modpname";
274 }
1a95e36d 275
276 next unless -d $dir; # skip over uninteresting directories
277
8e07c86e 278 # check for common cases to avoid autoload of dl_findfile
146174a9 279 my $try = $Is_MacOS ? "$dir:$modfname.$dl_dlext" : "$dir/$modfname.$dl_dlext";
1a95e36d 280 last if $file = ($do_expand) ? dl_expandspec($try) : ((-f $try) && $try);
281
8e07c86e 282 # no luck here, save dir for possible later dl_findfile search
fb73857a 283 push @dirs, $dir;
8e07c86e 284 }
285 # last resort, let dl_findfile have a go in all known locations
fb73857a 286 $file = dl_findfile(map("-L$_",@dirs,@INC), $modfname) unless $file;
8e07c86e 287
fb73857a 288 croak("Can't locate loadable object for module $module in \@INC (\@INC contains: @INC)")
289 unless $file; # wording similar to error from 'require'
8e07c86e 290
7e9f3af8 291 $file = uc($file) if $Is_VMS && $Config::Config{d_vms_case_sensitive_symbols};
8e07c86e 292 my $bootname = "boot_$module";
293 $bootname =~ s/\W/_/g;
294 @dl_require_symbols = ($bootname);
295
296 # Execute optional '.bootstrap' perl script for this module.
297 # The .bs file can be used to configure @dl_resolve_using etc to
298 # match the needs of the individual module on this architecture.
299 my $bs = $file;
3f45a6dd 300 $bs =~ s/(\.\w+)?(;\d*)?$/\.bs/; # look for .bs 'beside' the library
8e07c86e 301 if (-s $bs) { # only read file if it's not empty
d404d5bf 302 print STDERR "BS: $bs ($^O, $dlsrc)\n" if $dl_debug;
8e07c86e 303 eval { do $bs; };
304 warn "$bs: $@\n" if $@;
305 }
306
588cafc8 307 my $boot_symbol_ref;
308
309 if ($^O eq 'darwin') {
310 if ($boot_symbol_ref = dl_find_symbol(0, $bootname)) {
311 goto boot; #extension library has already been loaded, e.g. darwin
312 }
313 }
314
8e07c86e 315 # Many dynamic extension loading problems will appear to come from
316 # this section of code: XYZ failed at line 123 of DynaLoader.pm.
317 # Often these errors are actually occurring in the initialisation
318 # C code of the extension XS file. Perl reports the error as being
319 # in this perl code simply because this was the last perl code
320 # it executed.
321
ff7f3c60 322 my $libref = dl_load_file($file, $module->dl_load_flags) or
549a6b10 323 croak("Can't load '$file' for module $module: ".dl_error());
8e07c86e 324
ff7f3c60 325 push(@dl_librefs,$libref); # record loaded object
326
8e07c86e 327 my @unresolved = dl_undef_symbols();
fb73857a 328 if (@unresolved) {
329 require Carp;
330 Carp::carp("Undefined symbols present after loading $file: @unresolved\n");
331 }
8e07c86e 332
588cafc8 333 $boot_symbol_ref = dl_find_symbol($libref, $bootname) or
fb73857a 334 croak("Can't find '$bootname' symbol in $file\n");
8e07c86e 335
ff7f3c60 336 push(@dl_modules, $module); # record loaded module
337
588cafc8 338 boot:
339 my $xs = dl_install_xsub("${module}::bootstrap", $boot_symbol_ref, $file);
340
8e07c86e 341 # See comment block above
342 &$xs(@args);
343}
344
345
fb73857a 346#sub _check_file { # private utility to handle dl_expandspec vs -f tests
347# my($file) = @_;
348# return $file if (!$do_expand && -f $file); # the common case
349# return $file if ( $do_expand && ($file=dl_expandspec($file)));
350# return undef;
351#}
8e07c86e 352
353
354# Let autosplit and the autoloader deal with these functions:
355__END__
356
357
358sub dl_findfile {
359 # Read ext/DynaLoader/DynaLoader.doc for detailed information.
360 # This function does not automatically consider the architecture
361 # or the perl library auto directories.
362 my (@args) = @_;
363 my (@dirs, $dir); # which directories to search
364 my (@found); # full paths to real files we have found
03c9e98c 365EOT
366
367print OUT ' my $dl_ext= ' . to_string($Config::Config{'dlext'}) .
368 "; # \$Config::Config{'dlext'} suffix for perl extensions\n";
369print OUT ' my $dl_so = ' . to_string($Config::Config{'so'}) .
370 "; # \$Config::Config{'so'} suffix for shared libraries\n";
371
372print OUT <<'EOT';
8e07c86e 373
374 print STDERR "dl_findfile(@args)\n" if $dl_debug;
375
376 # accumulate directories but process files as they appear
377 arg: foreach(@args) {
378 # Special fast case: full filepath requires no search
54d6a3b3 379 if ($Is_VMS && m%[:>/\]]% && -f $_) {
380 push(@found,dl_expandspec(VMS::Filespec::vmsify($_)));
381 last arg unless wantarray;
382 next;
383 }
146174a9 384 elsif ($Is_MacOS) {
385 if (m/:/ && -f $_) {
386 push(@found,$_);
387 last arg unless wantarray;
388 }
389 }
54d6a3b3 390 elsif (m:/: && -f $_ && !$do_expand) {
8e07c86e 391 push(@found,$_);
392 last arg unless wantarray;
393 next;
394 }
395
396 # Deal with directories first:
397 # Using a -L prefix is the preferred option (faster and more robust)
398 if (m:^-L:) { s/^-L//; push(@dirs, $_); next; }
399
146174a9 400 if ($Is_MacOS) {
401 # Otherwise we try to try to spot directories by a heuristic
402 # (this is a more complicated issue than it first appears)
403 if (m/:/ && -d $_) { push(@dirs, $_); next; }
404 # Only files should get this far...
405 my(@names, $name); # what filenames to look for
406 s/^-l//;
407 push(@names, $_);
408 foreach $dir (@dirs, @dl_library_path) {
409 next unless -d $dir;
410 $dir =~ s/^([^:]+)$/:$1/;
411 $dir =~ s/:$//;
412 foreach $name (@names) {
413 my($file) = "$dir:$name";
414 print STDERR " checking in $dir for $name\n" if $dl_debug;
415 if (-f $file) {
416 push(@found, $file);
417 next arg; # no need to look any further
418 }
419 }
420 }
421 next;
422 }
423
8e07c86e 424 # Otherwise we try to try to spot directories by a heuristic
425 # (this is a more complicated issue than it first appears)
426 if (m:/: && -d $_) { push(@dirs, $_); next; }
427
7e9f3af8 428 # VMS: we may be using native VMS directory syntax instead of
8e07c86e 429 # Unix emulation, so check this as well
54d6a3b3 430 if ($Is_VMS && /[:>\]]/ && -d $_) { push(@dirs, $_); next; }
8e07c86e 431
432 # Only files should get this far...
433 my(@names, $name); # what filenames to look for
434 if (m:-l: ) { # convert -lname to appropriate library name
435 s/-l//;
436 push(@names,"lib$_.$dl_so");
437 push(@names,"lib$_.a");
438 } else { # Umm, a bare name. Try various alternatives:
439 # these should be ordered with the most likely first
d404d5bf 440 push(@names,"$_.$dl_ext") unless m/\.$dl_ext$/o;
8e07c86e 441 push(@names,"$_.$dl_so") unless m/\.$dl_so$/o;
442 push(@names,"lib$_.$dl_so") unless m:/:;
8e07c86e 443 push(@names,"$_.a") if !m/\.a$/ and $dlsrc eq "dl_dld.xs";
444 push(@names, $_);
445 }
446 foreach $dir (@dirs, @dl_library_path) {
447 next unless -d $dir;
54d6a3b3 448 chop($dir = VMS::Filespec::unixpath($dir)) if $Is_VMS;
8e07c86e 449 foreach $name (@names) {
450 my($file) = "$dir/$name";
451 print STDERR " checking in $dir for $name\n" if $dl_debug;
fb73857a 452 $file = ($do_expand) ? dl_expandspec($file) : (-f $file && $file);
453 #$file = _check_file($file);
8e07c86e 454 if ($file) {
455 push(@found, $file);
456 next arg; # no need to look any further
457 }
458 }
459 }
460 }
461 if ($dl_debug) {
462 foreach(@dirs) {
463 print STDERR " dl_findfile ignored non-existent directory: $_\n" unless -d $_;
464 }
465 print STDERR "dl_findfile found: @found\n";
466 }
467 return $found[0] unless wantarray;
468 @found;
469}
470
471
472sub dl_expandspec {
473 my($spec) = @_;
474 # Optional function invoked if DynaLoader.pm sets $do_expand.
475 # Most systems do not require or use this function.
476 # Some systems may implement it in the dl_*.xs file in which case
477 # this autoload version will not be called but is harmless.
478
479 # This function is designed to deal with systems which treat some
480 # 'filenames' in a special way. For example VMS 'Logical Names'
481 # (something like unix environment variables - but different).
482 # This function should recognise such names and expand them into
483 # full file paths.
484 # Must return undef if $spec is invalid or file does not exist.
485
486 my $file = $spec; # default output to input
487
d404d5bf 488 if ($Is_VMS) { # dl_expandspec should be defined in dl_vms.xs
fb73857a 489 require Carp;
4633a7c4 490 Carp::croak("dl_expandspec: should be defined in XS file!\n");
8e07c86e 491 } else {
492 return undef unless -f $file;
493 }
494 print STDERR "dl_expandspec($spec) => $file\n" if $dl_debug;
495 $file;
496}
497
ff7f3c60 498sub dl_find_symbol_anywhere
499{
500 my $sym = shift;
501 my $libref;
502 foreach $libref (@dl_librefs) {
503 my $symref = dl_find_symbol($libref,$sym);
504 return $symref if $symref;
505 }
506 return undef;
507}
8e07c86e 508
3b35bae3 509=head1 NAME
510
511DynaLoader - Dynamically load C libraries into Perl code
512
3b35bae3 513=head1 SYNOPSIS
514
8e07c86e 515 package YourPackage;
3b35bae3 516 require DynaLoader;
c2960299 517 @ISA = qw(... DynaLoader ...);
8e07c86e 518 bootstrap YourPackage;
3b35bae3 519
ff7f3c60 520 # optional method for 'global' loading
521 sub dl_load_flags { 0x01 }
522
3b35bae3 523
524=head1 DESCRIPTION
525
c2960299 526This document defines a standard generic interface to the dynamic
3b35bae3 527linking mechanisms available on many platforms. Its primary purpose is
528to implement automatic dynamic loading of Perl modules.
529
c2960299 530This document serves as both a specification for anyone wishing to
531implement the DynaLoader for a new platform and as a guide for
532anyone wishing to use the DynaLoader directly in an application.
533
3b35bae3 534The DynaLoader is designed to be a very simple high-level
535interface that is sufficiently general to cover the requirements
536of SunOS, HP-UX, NeXT, Linux, VMS and other platforms.
537
c2960299 538It is also hoped that the interface will cover the needs of OS/2, NT
539etc and also allow pseudo-dynamic linking (using C<ld -A> at runtime).
3b35bae3 540
541It must be stressed that the DynaLoader, by itself, is practically
542useless for accessing non-Perl libraries because it provides almost no
543Perl-to-C 'glue'. There is, for example, no mechanism for calling a C
03c9e98c 544library function or supplying arguments. A C::DynaLib module
90248788 545is available from CPAN sites which performs that function for some
1f98619c 546common system types. And since the year 2000, there's also Inline::C,
547a module that allows you to write Perl subroutines in C. Also available
548from your local CPAN site.
3b35bae3 549
550DynaLoader Interface Summary
551
552 @dl_library_path
553 @dl_resolve_using
554 @dl_require_symbols
555 $dl_debug
ff7f3c60 556 @dl_librefs
557 @dl_modules
3b35bae3 558 Implemented in:
559 bootstrap($modulename) Perl
560 @filepaths = dl_findfile(@names) Perl
ff7f3c60 561 $flags = $modulename->dl_load_flags Perl
562 $symref = dl_find_symbol_anywhere($symbol) Perl
3b35bae3 563
ff7f3c60 564 $libref = dl_load_file($filename, $flags) C
abb9e9dc 565 $status = dl_unload_file($libref) C
3b35bae3 566 $symref = dl_find_symbol($libref, $symbol) C
567 @symbols = dl_undef_symbols() C
568 dl_install_xsub($name, $symref [, $filename]) C
569 $message = dl_error C
570
571=over 4
572
573=item @dl_library_path
574
575The standard/default list of directories in which dl_findfile() will
576search for libraries etc. Directories are searched in order:
577$dl_library_path[0], [1], ... etc
578
579@dl_library_path is initialised to hold the list of 'normal' directories
580(F</usr/lib>, etc) determined by B<Configure> (C<$Config{'libpth'}>). This should
581ensure portability across a wide range of platforms.
582
583@dl_library_path should also be initialised with any other directories
584that can be determined from the environment at runtime (such as
585LD_LIBRARY_PATH for SunOS).
586
587After initialisation @dl_library_path can be manipulated by an
588application using push and unshift before calling dl_findfile().
589Unshift can be used to add directories to the front of the search order
590either to save search time or to override libraries with the same name
591in the 'normal' directories.
592
593The load function that dl_load_file() calls may require an absolute
594pathname. The dl_findfile() function and @dl_library_path can be
595used to search for and return the absolute pathname for the
596library/object that you wish to load.
597
598=item @dl_resolve_using
599
600A list of additional libraries or other shared objects which can be
601used to resolve any undefined symbols that might be generated by a
602later call to load_file().
603
604This is only required on some platforms which do not handle dependent
7a2e2cd6 605libraries automatically. For example the Socket Perl extension
606library (F<auto/Socket/Socket.so>) contains references to many socket
607functions which need to be resolved when it's loaded. Most platforms
608will automatically know where to find the 'dependent' library (e.g.,
609F</usr/lib/libsocket.so>). A few platforms need to be told the
610location of the dependent library explicitly. Use @dl_resolve_using
611for this.
3b35bae3 612
613Example usage:
614
615 @dl_resolve_using = dl_findfile('-lsocket');
616
617=item @dl_require_symbols
618
619A list of one or more symbol names that are in the library/object file
620to be dynamically loaded. This is only required on some platforms.
621
ff7f3c60 622=item @dl_librefs
623
624An array of the handles returned by successful calls to dl_load_file(),
625made by bootstrap, in the order in which they were loaded.
626Can be used with dl_find_symbol() to look for a symbol in any of
627the loaded files.
628
629=item @dl_modules
630
631An array of module (package) names that have been bootstrap'ed.
632
3b35bae3 633=item dl_error()
634
635Syntax:
636
637 $message = dl_error();
638
639Error message text from the last failed DynaLoader function. Note
640that, similar to errno in unix, a successful function call does not
641reset this message.
642
643Implementations should detect the error as soon as it occurs in any of
644the other functions and save the corresponding message for later
645retrieval. This will avoid problems on some platforms (such as SunOS)
646where the error message is very temporary (e.g., dlerror()).
647
648=item $dl_debug
649
650Internal debugging messages are enabled when $dl_debug is set true.
651Currently setting $dl_debug only affects the Perl side of the
652DynaLoader. These messages should help an application developer to
653resolve any DynaLoader usage problems.
654
655$dl_debug is set to C<$ENV{'PERL_DL_DEBUG'}> if defined.
656
657For the DynaLoader developer/porter there is a similar debugging
658variable added to the C code (see dlutils.c) and enabled if Perl was
659built with the B<-DDEBUGGING> flag. This can also be set via the
660PERL_DL_DEBUG environment variable. Set to 1 for minimal information or
661higher for more.
662
663=item dl_findfile()
664
665Syntax:
666
667 @filepaths = dl_findfile(@names)
668
669Determine the full paths (including file suffix) of one or more
670loadable files given their generic names and optionally one or more
671directories. Searches directories in @dl_library_path by default and
672returns an empty list if no files were found.
673
674Names can be specified in a variety of platform independent forms. Any
675names in the form B<-lname> are converted into F<libname.*>, where F<.*> is
676an appropriate suffix for the platform.
677
678If a name does not already have a suitable prefix and/or suffix then
679the corresponding file will be searched for by trying combinations of
680prefix and suffix appropriate to the platform: "$name.o", "lib$name.*"
681and "$name".
682
683If any directories are included in @names they are searched before
c2960299 684@dl_library_path. Directories may be specified as B<-Ldir>. Any other
685names are treated as filenames to be searched for.
3b35bae3 686
687Using arguments of the form C<-Ldir> and C<-lname> is recommended.
688
689Example:
690
691 @dl_resolve_using = dl_findfile(qw(-L/usr/5lib -lposix));
692
693
694=item dl_expandspec()
695
696Syntax:
697
698 $filepath = dl_expandspec($spec)
699
700Some unusual systems, such as VMS, require special filename handling in
701order to deal with symbolic names for files (i.e., VMS's Logical Names).
702
703To support these systems a dl_expandspec() function can be implemented
704either in the F<dl_*.xs> file or code can be added to the autoloadable
c2960299 705dl_expandspec() function in F<DynaLoader.pm>. See F<DynaLoader.pm> for
706more information.
3b35bae3 707
708=item dl_load_file()
709
710Syntax:
711
ff7f3c60 712 $libref = dl_load_file($filename, $flags)
3b35bae3 713
714Dynamically load $filename, which must be the path to a shared object
715or library. An opaque 'library reference' is returned as a handle for
716the loaded object. Returns undef on error.
717
ff7f3c60 718The $flags argument to alters dl_load_file behaviour.
719Assigned bits:
720
721 0x01 make symbols available for linking later dl_load_file's.
722 (only known to work on Solaris 2 using dlopen(RTLD_GLOBAL))
f86702cc 723 (ignored under VMS; this is a normal part of image linking)
ff7f3c60 724
3b35bae3 725(On systems that provide a handle for the loaded object such as SunOS
726and HPUX, $libref will be that handle. On other systems $libref will
727typically be $filename or a pointer to a buffer containing $filename.
728The application should not examine or alter $libref in any way.)
729
ff7f3c60 730This is the function that does the real work. It should use the
731current values of @dl_require_symbols and @dl_resolve_using if required.
3b35bae3 732
733 SunOS: dlopen($filename)
734 HP-UX: shl_load($filename)
735 Linux: dld_create_reference(@dl_require_symbols); dld_link($filename)
736 NeXT: rld_load($filename, @dl_resolve_using)
737 VMS: lib$find_image_symbol($filename,$dl_require_symbols[0])
738
ff7f3c60 739(The dlopen() function is also used by Solaris and some versions of
740Linux, and is a common choice when providing a "wrapper" on other
741mechanisms as is done in the OS/2 port.)
742
abb9e9dc 743=item dl_unload_file()
744
745Syntax:
746
747 $status = dl_unload_file($libref)
748
749Dynamically unload $libref, which must be an opaque 'library reference' as
750returned from dl_load_file. Returns one on success and zero on failure.
751
752This function is optional and may not necessarily be provided on all platforms.
753If it is defined, it is called automatically when the interpreter exits for
754every shared object or library loaded by DynaLoader::bootstrap. All such
755library references are stored in @dl_librefs by DynaLoader::Bootstrap as it
22851543 756loads the libraries. The files are unloaded in last-in, first-out order.
abb9e9dc 757
758This unloading is usually necessary when embedding a shared-object perl (e.g.
759one configured with -Duseshrplib) within a larger application, and the perl
760interpreter is created and destroyed several times within the lifetime of the
761application. In this case it is possible that the system dynamic linker will
762unload and then subsequently reload the shared libperl without relocating any
763references to it from any files DynaLoaded by the previous incarnation of the
764interpreter. As a result, any shared objects opened by DynaLoader may point to
765a now invalid 'ghost' of the libperl shared object, causing apparently random
766memory corruption and crashes. This behaviour is most commonly seen when using
767Apache and mod_perl built with the APXS mechanism.
768
769 SunOS: dlclose($libref)
770 HP-UX: ???
771 Linux: ???
772 NeXT: ???
773 VMS: ???
774
775(The dlclose() function is also used by Solaris and some versions of
776Linux, and is a common choice when providing a "wrapper" on other
777mechanisms as is done in the OS/2 port.)
778
2307c6d0 779=item dl_load_flags()
ff7f3c60 780
781Syntax:
782
2307c6d0 783 $flags = dl_load_flags $modulename;
ff7f3c60 784
785Designed to be a method call, and to be overridden by a derived class
786(i.e. a class which has DynaLoader in its @ISA). The definition in
787DynaLoader itself returns 0, which produces standard behavior from
788dl_load_file().
3b35bae3 789
790=item dl_find_symbol()
791
792Syntax:
793
794 $symref = dl_find_symbol($libref, $symbol)
795
796Return the address of the symbol $symbol or C<undef> if not found. If the
797target system has separate functions to search for symbols of different
798types then dl_find_symbol() should search for function symbols first and
799then other types.
800
801The exact manner in which the address is returned in $symref is not
802currently defined. The only initial requirement is that $symref can
803be passed to, and understood by, dl_install_xsub().
804
805 SunOS: dlsym($libref, $symbol)
806 HP-UX: shl_findsym($libref, $symbol)
807 Linux: dld_get_func($symbol) and/or dld_get_symbol($symbol)
808 NeXT: rld_lookup("_$symbol")
809 VMS: lib$find_image_symbol($libref,$symbol)
810
811
ff7f3c60 812=item dl_find_symbol_anywhere()
813
814Syntax:
815
816 $symref = dl_find_symbol_anywhere($symbol)
817
818Applies dl_find_symbol() to the members of @dl_librefs and returns
819the first match found.
820
3b35bae3 821=item dl_undef_symbols()
822
823Example
824
825 @symbols = dl_undef_symbols()
826
827Return a list of symbol names which remain undefined after load_file().
828Returns C<()> if not known. Don't worry if your platform does not provide
c2960299 829a mechanism for this. Most do not need it and hence do not provide it,
830they just return an empty list.
3b35bae3 831
832
833=item dl_install_xsub()
834
835Syntax:
836
837 dl_install_xsub($perl_name, $symref [, $filename])
838
839Create a new Perl external subroutine named $perl_name using $symref as
840a pointer to the function which implements the routine. This is simply
841a direct call to newXSUB(). Returns a reference to the installed
842function.
843
844The $filename parameter is used by Perl to identify the source file for
845the function if required by die(), caller() or the debugger. If
846$filename is not defined then "DynaLoader" will be used.
847
848
1fef88e7 849=item bootstrap()
3b35bae3 850
851Syntax:
852
853bootstrap($module)
854
855This is the normal entry point for automatic dynamic loading in Perl.
856
857It performs the following actions:
858
859=over 8
860
861=item *
862
863locates an auto/$module directory by searching @INC
864
865=item *
866
867uses dl_findfile() to determine the filename to load
868
869=item *
870
871sets @dl_require_symbols to C<("boot_$module")>
872
873=item *
874
875executes an F<auto/$module/$module.bs> file if it exists
876(typically used to add to @dl_resolve_using any files which
877are required to load the module on the current platform)
878
879=item *
880
ff7f3c60 881calls dl_load_flags() to determine how to load the file.
882
883=item *
884
3b35bae3 885calls dl_load_file() to load the file
886
887=item *
888
889calls dl_undef_symbols() and warns if any symbols are undefined
890
891=item *
892
893calls dl_find_symbol() for "boot_$module"
894
895=item *
896
897calls dl_install_xsub() to install it as "${module}::bootstrap"
898
899=item *
900
8e07c86e 901calls &{"${module}::bootstrap"} to bootstrap the module (actually
902it uses the function reference returned by dl_install_xsub for speed)
3b35bae3 903
904=back
905
906=back
907
908
909=head1 AUTHOR
910
c2960299 911Tim Bunce, 11 August 1994.
912
3b35bae3 913This interface is based on the work and comments of (in no particular
914order): Larry Wall, Robert Sanders, Dean Roehrich, Jeff Okamoto, Anno
c2960299 915Siegel, Thomas Neumann, Paul Marquess, Charles Bailey, myself and others.
3b35bae3 916
917Larry Wall designed the elegant inherited bootstrap mechanism and
918implemented the first Perl 5 dynamic loader using it.
919
ff7f3c60 920Solaris global loading added by Nick Ing-Simmons with design/coding
921assistance from Tim Bunce, January 1996.
922
3b35bae3 923=cut
03c9e98c 924EOT
925
926close OUT or die $!;
927