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