home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 February / PCWorld_2000-02_cd.bin / live / usr / lib / perl5 / i386-linux / 5.004 / DynaLoader.pm < prev    next >
Text File  |  1999-02-03  |  23KB  |  694 lines

  1. package DynaLoader;
  2.  
  3. #   And Gandalf said: 'Many folk like to know beforehand what is to
  4. #   be set on the table; but those who have laboured to prepare the
  5. #   feast like to keep their secret; for wonder makes the words of
  6. #   praise louder.'
  7.  
  8. #   (Quote from Tolkien sugested by Anno Siegel.)
  9. #
  10. # See pod text at end of file for documentation.
  11. # See also ext/DynaLoader/README in source tree for other information.
  12. #
  13. # Tim.Bunce@ig.co.uk, August 1994
  14.  
  15. $VERSION = $VERSION = "1.03";    # avoid typo warning
  16.  
  17. require Config;
  18.  
  19. require AutoLoader;
  20. *AUTOLOAD = \&AutoLoader::AUTOLOAD;
  21.  
  22. # The following require can't be removed during maintenance
  23. # releases, sadly, because of the risk of buggy code that does 
  24. # require Carp; Carp::croak "..."; without brackets dying 
  25. # if Carp hasn't been loaded in earlier compile time. :-( 
  26. # We'll let those bugs get found on the development track.
  27. require Carp if $] < 5.00450; 
  28.  
  29.  
  30. # enable debug/trace messages from DynaLoader perl code
  31. $dl_debug = $ENV{PERL_DL_DEBUG} || 0 unless defined $dl_debug;
  32.  
  33. #
  34. # Flags to alter dl_load_file behaviour.  Assigned bits:
  35. #   0x01  make symbols available for linking later dl_load_file's.
  36. #         (only known to work on Solaris 2 using dlopen(RTLD_GLOBAL))
  37. #         (ignored under VMS; effect is built-in to image linking)
  38. #
  39. # This is called as a class method $module->dl_load_flags.  The
  40. # definition here will be inherited and result on "default" loading
  41. # behaviour unless a sub-class of DynaLoader defines its own version.
  42. #
  43.  
  44. sub dl_load_flags { 0x00 }
  45.  
  46.  
  47. ($dl_dlext, $dlsrc)
  48.     = @Config::Config{'dlext', 'dlsrc'};
  49.  
  50. # Some systems need special handling to expand file specifications
  51. # (VMS support by Charles Bailey <bailey@HMIVAX.HUMGEN.UPENN.EDU>)
  52. # See dl_expandspec() for more details. Should be harmless but
  53. # inefficient to define on systems that don't need it.
  54. $do_expand = $Is_VMS = $^O eq 'VMS';
  55.  
  56. @dl_require_symbols = ();       # names of symbols we need
  57. @dl_resolve_using   = ();       # names of files to link with
  58. @dl_library_path    = ();       # path to look for files
  59. @dl_librefs         = ();       # things we have loaded
  60. @dl_modules         = ();       # Modules we have loaded
  61.  
  62. # This is a fix to support DLD's unfortunate desire to relink -lc
  63. @dl_resolve_using = dl_findfile('-lc') if $dlsrc eq "dl_dld.xs";
  64.  
  65. # Initialise @dl_library_path with the 'standard' library path
  66. # for this platform as determined by Configure
  67. push(@dl_library_path, split(' ',$Config::Config{'libpth'}));
  68.  
  69. # Add to @dl_library_path any extra directories we can gather from
  70. # environment variables. So far LD_LIBRARY_PATH is the only known
  71. # variable used for this purpose. Others may be added later.
  72. push(@dl_library_path, split(/:/, $ENV{LD_LIBRARY_PATH}))
  73.     if $ENV{LD_LIBRARY_PATH};
  74.  
  75.  
  76. # No prizes for guessing why we don't say 'bootstrap DynaLoader;' here.
  77. boot_DynaLoader('DynaLoader') if defined(&boot_DynaLoader);
  78.  
  79.  
  80. if ($dl_debug) {
  81.     print STDERR "DynaLoader.pm loaded (@INC, @dl_library_path)\n";
  82.     print STDERR "DynaLoader not linked into this perl\n"
  83.         unless defined(&boot_DynaLoader);
  84. }
  85.  
  86. 1; # End of main code
  87.  
  88.  
  89. sub croak   { require Carp; Carp::croak(@_)   }
  90.  
  91. # The bootstrap function cannot be autoloaded (without complications)
  92. # so we define it here:
  93.  
  94. sub bootstrap {
  95.     # use local vars to enable $module.bs script to edit values
  96.     local(@args) = @_;
  97.     local($module) = $args[0];
  98.     local(@dirs, $file);
  99.  
  100.     unless ($module) {
  101.     require Carp;
  102.     Carp::confess("Usage: DynaLoader::bootstrap(module)");
  103.     }
  104.  
  105.     # A common error on platforms which don't support dynamic loading.
  106.     # Since it's fatal and potentially confusing we give a detailed message.
  107.     croak("Can't load module $module, dynamic loading not available in this perl.\n".
  108.     "  (You may need to build a new perl executable which either supports\n".
  109.     "  dynamic loading or has the $module module statically linked into it.)\n")
  110.     unless defined(&dl_load_file);
  111.  
  112.     my @modparts = split(/::/,$module);
  113.     my $modfname = $modparts[-1];
  114.  
  115.     # Some systems have restrictions on files names for DLL's etc.
  116.     # mod2fname returns appropriate file base name (typically truncated)
  117.     # It may also edit @modparts if required.
  118.     $modfname = &mod2fname(\@modparts) if defined &mod2fname;
  119.  
  120.     my $modpname = join('/',@modparts);
  121.  
  122.     print STDERR "DynaLoader::bootstrap for $module ",
  123.         "(auto/$modpname/$modfname.$dl_dlext)\n" if $dl_debug;
  124.  
  125.     foreach (@INC) {
  126.     chop($_ = VMS::Filespec::unixpath($_)) if $Is_VMS;
  127.     my $dir = "$_/auto/$modpname";
  128.     next unless -d $dir; # skip over uninteresting directories
  129.  
  130.     # check for common cases to avoid autoload of dl_findfile
  131.     my $try = "$dir/$modfname.$dl_dlext";
  132.     last if $file = ($do_expand) ? dl_expandspec($try) : (-f $try && $try);
  133.  
  134.     # no luck here, save dir for possible later dl_findfile search
  135.     push @dirs, $dir;
  136.     }
  137.     # last resort, let dl_findfile have a go in all known locations
  138.     $file = dl_findfile(map("-L$_",@dirs,@INC), $modfname) unless $file;
  139.  
  140.     croak("Can't locate loadable object for module $module in \@INC (\@INC contains: @INC)")
  141.     unless $file;    # wording similar to error from 'require'
  142.  
  143.     my $bootname = "boot_$module";
  144.     $bootname =~ s/\W/_/g;
  145.     @dl_require_symbols = ($bootname);
  146.  
  147.     # Execute optional '.bootstrap' perl script for this module.
  148.     # The .bs file can be used to configure @dl_resolve_using etc to
  149.     # match the needs of the individual module on this architecture.
  150.     my $bs = $file;
  151.     $bs =~ s/(\.\w+)?$/\.bs/; # look for .bs 'beside' the library
  152.     if (-s $bs) { # only read file if it's not empty
  153.         print STDERR "BS: $bs ($^O, $dlsrc)\n" if $dl_debug;
  154.         eval { do $bs; };
  155.         warn "$bs: $@\n" if $@;
  156.     }
  157.  
  158.     # Many dynamic extension loading problems will appear to come from
  159.     # this section of code: XYZ failed at line 123 of DynaLoader.pm.
  160.     # Often these errors are actually occurring in the initialisation
  161.     # C code of the extension XS file. Perl reports the error as being
  162.     # in this perl code simply because this was the last perl code
  163.     # it executed.
  164.  
  165.     my $libref = dl_load_file($file, $module->dl_load_flags) or
  166.     croak("Can't load '$file' for module $module: ".dl_error()."\n");
  167.  
  168.     push(@dl_librefs,$libref);  # record loaded object
  169.  
  170.     my @unresolved = dl_undef_symbols();
  171.     if (@unresolved) {
  172.     require Carp;
  173.     Carp::carp("Undefined symbols present after loading $file: @unresolved\n");
  174.     }
  175.  
  176.     my $boot_symbol_ref = dl_find_symbol($libref, $bootname) or
  177.          croak("Can't find '$bootname' symbol in $file\n");
  178.  
  179.     my $xs = dl_install_xsub("${module}::bootstrap", $boot_symbol_ref, $file);
  180.  
  181.     push(@dl_modules, $module); # record loaded module
  182.  
  183.     # See comment block above
  184.     &$xs(@args);
  185. }
  186.  
  187.  
  188. #sub _check_file {   # private utility to handle dl_expandspec vs -f tests
  189. #    my($file) = @_;
  190. #    return $file if (!$do_expand && -f $file); # the common case
  191. #    return $file if ( $do_expand && ($file=dl_expandspec($file)));
  192. #    return undef;
  193. #}
  194.  
  195.  
  196. # Let autosplit and the autoloader deal with these functions:
  197. __END__
  198.  
  199.  
  200. sub dl_findfile {
  201.     # Read ext/DynaLoader/DynaLoader.doc for detailed information.
  202.     # This function does not automatically consider the architecture
  203.     # or the perl library auto directories.
  204.     my (@args) = @_;
  205.     my (@dirs,  $dir);   # which directories to search
  206.     my (@found);         # full paths to real files we have found
  207.     my $dl_ext= $Config::Config{'dlext'}; # suffix for perl extensions
  208.     my $dl_so = $Config::Config{'so'};    # suffix for shared libraries
  209.  
  210.     print STDERR "dl_findfile(@args)\n" if $dl_debug;
  211.  
  212.     # accumulate directories but process files as they appear
  213.     arg: foreach(@args) {
  214.         #  Special fast case: full filepath requires no search
  215.         if ($Is_VMS && m%[:>/\]]% && -f $_) {
  216.         push(@found,dl_expandspec(VMS::Filespec::vmsify($_)));
  217.         last arg unless wantarray;
  218.         next;
  219.         }
  220.         elsif (m:/: && -f $_ && !$do_expand) {
  221.         push(@found,$_);
  222.         last arg unless wantarray;
  223.         next;
  224.     }
  225.  
  226.         # Deal with directories first:
  227.         #  Using a -L prefix is the preferred option (faster and more robust)
  228.         if (m:^-L:) { s/^-L//; push(@dirs, $_); next; }
  229.  
  230.         #  Otherwise we try to try to spot directories by a heuristic
  231.         #  (this is a more complicated issue than it first appears)
  232.         if (m:/: && -d $_) {   push(@dirs, $_); next; }
  233.  
  234.         # VMS: we may be using native VMS directry syntax instead of
  235.         # Unix emulation, so check this as well
  236.         if ($Is_VMS && /[:>\]]/ && -d $_) {   push(@dirs, $_); next; }
  237.  
  238.         #  Only files should get this far...
  239.         my(@names, $name);    # what filenames to look for
  240.         if (m:-l: ) {          # convert -lname to appropriate library name
  241.             s/-l//;
  242.             push(@names,"lib$_.$dl_so");
  243.             push(@names,"lib$_.a");
  244.         } else {                # Umm, a bare name. Try various alternatives:
  245.             # these should be ordered with the most likely first
  246.             push(@names,"$_.$dl_ext")    unless m/\.$dl_ext$/o;
  247.             push(@names,"$_.$dl_so")     unless m/\.$dl_so$/o;
  248.             push(@names,"lib$_.$dl_so")  unless m:/:;
  249.             push(@names,"$_.a")          if !m/\.a$/ and $dlsrc eq "dl_dld.xs";
  250.             push(@names, $_);
  251.         }
  252.         foreach $dir (@dirs, @dl_library_path) {
  253.             next unless -d $dir;
  254.             chop($dir = VMS::Filespec::unixpath($dir)) if $Is_VMS;
  255.             foreach $name (@names) {
  256.         my($file) = "$dir/$name";
  257.                 print STDERR " checking in $dir for $name\n" if $dl_debug;
  258.         $file = ($do_expand) ? dl_expandspec($file) : (-f $file && $file);
  259.         #$file = _check_file($file);
  260.         if ($file) {
  261.                     push(@found, $file);
  262.                     next arg; # no need to look any further
  263.                 }
  264.             }
  265.         }
  266.     }
  267.     if ($dl_debug) {
  268.         foreach(@dirs) {
  269.             print STDERR " dl_findfile ignored non-existent directory: $_\n" unless -d $_;
  270.         }
  271.         print STDERR "dl_findfile found: @found\n";
  272.     }
  273.     return $found[0] unless wantarray;
  274.     @found;
  275. }
  276.  
  277.  
  278. sub dl_expandspec {
  279.     my($spec) = @_;
  280.     # Optional function invoked if DynaLoader.pm sets $do_expand.
  281.     # Most systems do not require or use this function.
  282.     # Some systems may implement it in the dl_*.xs file in which case
  283.     # this autoload version will not be called but is harmless.
  284.  
  285.     # This function is designed to deal with systems which treat some
  286.     # 'filenames' in a special way. For example VMS 'Logical Names'
  287.     # (something like unix environment variables - but different).
  288.     # This function should recognise such names and expand them into
  289.     # full file paths.
  290.     # Must return undef if $spec is invalid or file does not exist.
  291.  
  292.     my $file = $spec; # default output to input
  293.  
  294.     if ($Is_VMS) { # dl_expandspec should be defined in dl_vms.xs
  295.     require Carp;
  296.     Carp::croak("dl_expandspec: should be defined in XS file!\n");
  297.     } else {
  298.     return undef unless -f $file;
  299.     }
  300.     print STDERR "dl_expandspec($spec) => $file\n" if $dl_debug;
  301.     $file;
  302. }
  303.  
  304. sub dl_find_symbol_anywhere
  305. {
  306.     my $sym = shift;
  307.     my $libref;
  308.     foreach $libref (@dl_librefs) {
  309.     my $symref = dl_find_symbol($libref,$sym);
  310.     return $symref if $symref;
  311.     }
  312.     return undef;
  313. }
  314.  
  315. =head1 NAME
  316.  
  317. DynaLoader - Dynamically load C libraries into Perl code
  318.  
  319. dl_error(), dl_findfile(), dl_expandspec(), dl_load_file(), dl_find_symbol(), dl_find_symbol_anywhere(), dl_undef_symbols(), dl_install_xsub(), dl_load_flags(), bootstrap() - routines used by DynaLoader modules
  320.  
  321. =head1 SYNOPSIS
  322.  
  323.     package YourPackage;
  324.     require DynaLoader;
  325.     @ISA = qw(... DynaLoader ...);
  326.     bootstrap YourPackage;
  327.  
  328.     # optional method for 'global' loading
  329.     sub dl_load_flags { 0x01 }     
  330.  
  331.  
  332. =head1 DESCRIPTION
  333.  
  334. This document defines a standard generic interface to the dynamic
  335. linking mechanisms available on many platforms.  Its primary purpose is
  336. to implement automatic dynamic loading of Perl modules.
  337.  
  338. This document serves as both a specification for anyone wishing to
  339. implement the DynaLoader for a new platform and as a guide for
  340. anyone wishing to use the DynaLoader directly in an application.
  341.  
  342. The DynaLoader is designed to be a very simple high-level
  343. interface that is sufficiently general to cover the requirements
  344. of SunOS, HP-UX, NeXT, Linux, VMS and other platforms.
  345.  
  346. It is also hoped that the interface will cover the needs of OS/2, NT
  347. etc and also allow pseudo-dynamic linking (using C<ld -A> at runtime).
  348.  
  349. It must be stressed that the DynaLoader, by itself, is practically
  350. useless for accessing non-Perl libraries because it provides almost no
  351. Perl-to-C 'glue'.  There is, for example, no mechanism for calling a C
  352. library function or supplying arguments.  A ExtUtils::DynaLib module
  353. is available from CPAN sites which performs that function for some
  354. common system types.
  355.  
  356. DynaLoader Interface Summary
  357.  
  358.   @dl_library_path
  359.   @dl_resolve_using
  360.   @dl_require_symbols
  361.   $dl_debug
  362.   @dl_librefs
  363.   @dl_modules
  364.                                                   Implemented in:
  365.   bootstrap($modulename)                               Perl
  366.   @filepaths = dl_findfile(@names)                     Perl
  367.   $flags = $modulename->dl_load_flags                  Perl
  368.   $symref  = dl_find_symbol_anywhere($symbol)          Perl
  369.  
  370.   $libref  = dl_load_file($filename, $flags)           C
  371.   $symref  = dl_find_symbol($libref, $symbol)          C
  372.   @symbols = dl_undef_symbols()                        C
  373.   dl_install_xsub($name, $symref [, $filename])        C
  374.   $message = dl_error                                  C
  375.  
  376. =over 4
  377.  
  378. =item @dl_library_path
  379.  
  380. The standard/default list of directories in which dl_findfile() will
  381. search for libraries etc.  Directories are searched in order:
  382. $dl_library_path[0], [1], ... etc
  383.  
  384. @dl_library_path is initialised to hold the list of 'normal' directories
  385. (F</usr/lib>, etc) determined by B<Configure> (C<$Config{'libpth'}>).  This should
  386. ensure portability across a wide range of platforms.
  387.  
  388. @dl_library_path should also be initialised with any other directories
  389. that can be determined from the environment at runtime (such as
  390. LD_LIBRARY_PATH for SunOS).
  391.  
  392. After initialisation @dl_library_path can be manipulated by an
  393. application using push and unshift before calling dl_findfile().
  394. Unshift can be used to add directories to the front of the search order
  395. either to save search time or to override libraries with the same name
  396. in the 'normal' directories.
  397.  
  398. The load function that dl_load_file() calls may require an absolute
  399. pathname.  The dl_findfile() function and @dl_library_path can be
  400. used to search for and return the absolute pathname for the
  401. library/object that you wish to load.
  402.  
  403. =item @dl_resolve_using
  404.  
  405. A list of additional libraries or other shared objects which can be
  406. used to resolve any undefined symbols that might be generated by a
  407. later call to load_file().
  408.  
  409. This is only required on some platforms which do not handle dependent
  410. libraries automatically.  For example the Socket Perl extension
  411. library (F<auto/Socket/Socket.so>) contains references to many socket
  412. functions which need to be resolved when it's loaded.  Most platforms
  413. will automatically know where to find the 'dependent' library (e.g.,
  414. F</usr/lib/libsocket.so>).  A few platforms need to be told the
  415. location of the dependent library explicitly.  Use @dl_resolve_using
  416. for this.
  417.  
  418. Example usage:
  419.  
  420.     @dl_resolve_using = dl_findfile('-lsocket');
  421.  
  422. =item @dl_require_symbols
  423.  
  424. A list of one or more symbol names that are in the library/object file
  425. to be dynamically loaded.  This is only required on some platforms.
  426.  
  427. =item @dl_librefs
  428.  
  429. An array of the handles returned by successful calls to dl_load_file(),
  430. made by bootstrap, in the order in which they were loaded.
  431. Can be used with dl_find_symbol() to look for a symbol in any of
  432. the loaded files.
  433.  
  434. =item @dl_modules
  435.  
  436. An array of module (package) names that have been bootstrap'ed.
  437.  
  438. =item dl_error()
  439.  
  440. Syntax:
  441.  
  442.     $message = dl_error();
  443.  
  444. Error message text from the last failed DynaLoader function.  Note
  445. that, similar to errno in unix, a successful function call does not
  446. reset this message.
  447.  
  448. Implementations should detect the error as soon as it occurs in any of
  449. the other functions and save the corresponding message for later
  450. retrieval.  This will avoid problems on some platforms (such as SunOS)
  451. where the error message is very temporary (e.g., dlerror()).
  452.  
  453. =item $dl_debug
  454.  
  455. Internal debugging messages are enabled when $dl_debug is set true.
  456. Currently setting $dl_debug only affects the Perl side of the
  457. DynaLoader.  These messages should help an application developer to
  458. resolve any DynaLoader usage problems.
  459.  
  460. $dl_debug is set to C<$ENV{'PERL_DL_DEBUG'}> if defined.
  461.  
  462. For the DynaLoader developer/porter there is a similar debugging
  463. variable added to the C code (see dlutils.c) and enabled if Perl was
  464. built with the B<-DDEBUGGING> flag.  This can also be set via the
  465. PERL_DL_DEBUG environment variable.  Set to 1 for minimal information or
  466. higher for more.
  467.  
  468. =item dl_findfile()
  469.  
  470. Syntax:
  471.  
  472.     @filepaths = dl_findfile(@names)
  473.  
  474. Determine the full paths (including file suffix) of one or more
  475. loadable files given their generic names and optionally one or more
  476. directories.  Searches directories in @dl_library_path by default and
  477. returns an empty list if no files were found.
  478.  
  479. Names can be specified in a variety of platform independent forms.  Any
  480. names in the form B<-lname> are converted into F<libname.*>, where F<.*> is
  481. an appropriate suffix for the platform.
  482.  
  483. If a name does not already have a suitable prefix and/or suffix then
  484. the corresponding file will be searched for by trying combinations of
  485. prefix and suffix appropriate to the platform: "$name.o", "lib$name.*"
  486. and "$name".
  487.  
  488. If any directories are included in @names they are searched before
  489. @dl_library_path.  Directories may be specified as B<-Ldir>.  Any other
  490. names are treated as filenames to be searched for.
  491.  
  492. Using arguments of the form C<-Ldir> and C<-lname> is recommended.
  493.  
  494. Example: 
  495.  
  496.     @dl_resolve_using = dl_findfile(qw(-L/usr/5lib -lposix));
  497.  
  498.  
  499. =item dl_expandspec()
  500.  
  501. Syntax:
  502.  
  503.     $filepath = dl_expandspec($spec)
  504.  
  505. Some unusual systems, such as VMS, require special filename handling in
  506. order to deal with symbolic names for files (i.e., VMS's Logical Names).
  507.  
  508. To support these systems a dl_expandspec() function can be implemented
  509. either in the F<dl_*.xs> file or code can be added to the autoloadable
  510. dl_expandspec() function in F<DynaLoader.pm>.  See F<DynaLoader.pm> for
  511. more information.
  512.  
  513. =item dl_load_file()
  514.  
  515. Syntax:
  516.  
  517.     $libref = dl_load_file($filename, $flags)
  518.  
  519. Dynamically load $filename, which must be the path to a shared object
  520. or library.  An opaque 'library reference' is returned as a handle for
  521. the loaded object.  Returns undef on error.
  522.  
  523. The $flags argument to alters dl_load_file behaviour.  
  524. Assigned bits:
  525.  
  526.  0x01  make symbols available for linking later dl_load_file's.
  527.        (only known to work on Solaris 2 using dlopen(RTLD_GLOBAL))
  528.        (ignored under VMS; this is a normal part of image linking)
  529.  
  530. (On systems that provide a handle for the loaded object such as SunOS
  531. and HPUX, $libref will be that handle.  On other systems $libref will
  532. typically be $filename or a pointer to a buffer containing $filename.
  533. The application should not examine or alter $libref in any way.)
  534.  
  535. This is the function that does the real work.  It should use the
  536. current values of @dl_require_symbols and @dl_resolve_using if required.
  537.  
  538.     SunOS: dlopen($filename)
  539.     HP-UX: shl_load($filename)
  540.     Linux: dld_create_reference(@dl_require_symbols); dld_link($filename)
  541.     NeXT:  rld_load($filename, @dl_resolve_using)
  542.     VMS:   lib$find_image_symbol($filename,$dl_require_symbols[0])
  543.  
  544. (The dlopen() function is also used by Solaris and some versions of
  545. Linux, and is a common choice when providing a "wrapper" on other
  546. mechanisms as is done in the OS/2 port.)
  547.  
  548. =item dl_loadflags()
  549.  
  550. Syntax:
  551.  
  552.     $flags = dl_loadflags $modulename;
  553.  
  554. Designed to be a method call, and to be overridden by a derived class
  555. (i.e. a class which has DynaLoader in its @ISA).  The definition in
  556. DynaLoader itself returns 0, which produces standard behavior from
  557. dl_load_file().
  558.  
  559. =item dl_find_symbol()
  560.  
  561. Syntax:
  562.  
  563.     $symref = dl_find_symbol($libref, $symbol)
  564.  
  565. Return the address of the symbol $symbol or C<undef> if not found.  If the
  566. target system has separate functions to search for symbols of different
  567. types then dl_find_symbol() should search for function symbols first and
  568. then other types.
  569.  
  570. The exact manner in which the address is returned in $symref is not
  571. currently defined.  The only initial requirement is that $symref can
  572. be passed to, and understood by, dl_install_xsub().
  573.  
  574.     SunOS: dlsym($libref, $symbol)
  575.     HP-UX: shl_findsym($libref, $symbol)
  576.     Linux: dld_get_func($symbol) and/or dld_get_symbol($symbol)
  577.     NeXT:  rld_lookup("_$symbol")
  578.     VMS:   lib$find_image_symbol($libref,$symbol)
  579.  
  580.  
  581. =item dl_find_symbol_anywhere()
  582.  
  583. Syntax:
  584.  
  585.     $symref = dl_find_symbol_anywhere($symbol)
  586.  
  587. Applies dl_find_symbol() to the members of @dl_librefs and returns
  588. the first match found.
  589.  
  590. =item dl_undef_symbols()
  591.  
  592. Example
  593.  
  594.     @symbols = dl_undef_symbols()
  595.  
  596. Return a list of symbol names which remain undefined after load_file().
  597. Returns C<()> if not known.  Don't worry if your platform does not provide
  598. a mechanism for this.  Most do not need it and hence do not provide it,
  599. they just return an empty list.
  600.  
  601.  
  602. =item dl_install_xsub()
  603.  
  604. Syntax:
  605.  
  606.     dl_install_xsub($perl_name, $symref [, $filename])
  607.  
  608. Create a new Perl external subroutine named $perl_name using $symref as
  609. a pointer to the function which implements the routine.  This is simply
  610. a direct call to newXSUB().  Returns a reference to the installed
  611. function.
  612.  
  613. The $filename parameter is used by Perl to identify the source file for
  614. the function if required by die(), caller() or the debugger.  If
  615. $filename is not defined then "DynaLoader" will be used.
  616.  
  617.  
  618. =item bootstrap()
  619.  
  620. Syntax:
  621.  
  622. bootstrap($module)
  623.  
  624. This is the normal entry point for automatic dynamic loading in Perl.
  625.  
  626. It performs the following actions:
  627.  
  628. =over 8
  629.  
  630. =item *
  631.  
  632. locates an auto/$module directory by searching @INC
  633.  
  634. =item *
  635.  
  636. uses dl_findfile() to determine the filename to load
  637.  
  638. =item *
  639.  
  640. sets @dl_require_symbols to C<("boot_$module")>
  641.  
  642. =item *
  643.  
  644. executes an F<auto/$module/$module.bs> file if it exists
  645. (typically used to add to @dl_resolve_using any files which
  646. are required to load the module on the current platform)
  647.  
  648. =item *
  649.  
  650. calls dl_load_flags() to determine how to load the file.
  651.  
  652. =item *
  653.  
  654. calls dl_load_file() to load the file
  655.  
  656. =item *
  657.  
  658. calls dl_undef_symbols() and warns if any symbols are undefined
  659.  
  660. =item *
  661.  
  662. calls dl_find_symbol() for "boot_$module"
  663.  
  664. =item *
  665.  
  666. calls dl_install_xsub() to install it as "${module}::bootstrap"
  667.  
  668. =item *
  669.  
  670. calls &{"${module}::bootstrap"} to bootstrap the module (actually
  671. it uses the function reference returned by dl_install_xsub for speed)
  672.  
  673. =back
  674.  
  675. =back
  676.  
  677.  
  678. =head1 AUTHOR
  679.  
  680. Tim Bunce, 11 August 1994.
  681.  
  682. This interface is based on the work and comments of (in no particular
  683. order): Larry Wall, Robert Sanders, Dean Roehrich, Jeff Okamoto, Anno
  684. Siegel, Thomas Neumann, Paul Marquess, Charles Bailey, myself and others.
  685.  
  686. Larry Wall designed the elegant inherited bootstrap mechanism and
  687. implemented the first Perl 5 dynamic loader using it.
  688.  
  689. Solaris global loading added by Nick Ing-Simmons with design/coding
  690. assistance from Tim Bunce, January 1996.
  691.  
  692. =cut
  693.