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