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