home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / perl502b.zip / lib / auto / DynaLoader / dl_expandspec.al < prev    next >
Text File  |  1996-02-20  |  12KB  |  355 lines

  1. # NOTE: Derived from lib/DynaLoader.pm.  Changes made here will be lost.
  2. package DynaLoader;
  3.  
  4. sub dl_expandspec {
  5.     my($spec) = @_;
  6.     # Optional function invoked if DynaLoader.pm sets $do_expand.
  7.     # Most systems do not require or use this function.
  8.     # Some systems may implement it in the dl_*.xs file in which case
  9.     # this autoload version will not be called but is harmless.
  10.  
  11.     # This function is designed to deal with systems which treat some
  12.     # 'filenames' in a special way. For example VMS 'Logical Names'
  13.     # (something like unix environment variables - but different).
  14.     # This function should recognise such names and expand them into
  15.     # full file paths.
  16.     # Must return undef if $spec is invalid or file does not exist.
  17.  
  18.     my $file = $spec; # default output to input
  19.  
  20.     if ($osname eq 'VMS') { # dl_expandspec should be defined in dl_vms.xs
  21.     Carp::croak("dl_expandspec: should be defined in XS file!\n");
  22.     } else {
  23.     return undef unless -f $file;
  24.     }
  25.     print STDERR "dl_expandspec($spec) => $file\n" if $dl_debug;
  26.     $file;
  27. }
  28.  
  29.  
  30. =head1 NAME
  31.  
  32. DynaLoader - Dynamically load C libraries into Perl code
  33.  
  34. dl_error(), dl_findfile(), dl_expandspec(), dl_load_file(), dl_find_symbol(), dl_undef_symbols(), dl_install_xsub(), boostrap() - routines used by DynaLoader modules
  35.  
  36. =head1 SYNOPSIS
  37.  
  38.     package YourPackage;
  39.     require DynaLoader;
  40.     @ISA = qw(... DynaLoader ...);
  41.     bootstrap YourPackage;
  42.  
  43.  
  44. =head1 DESCRIPTION
  45.  
  46. This document defines a standard generic interface to the dynamic
  47. linking mechanisms available on many platforms.  Its primary purpose is
  48. to implement automatic dynamic loading of Perl modules.
  49.  
  50. This document serves as both a specification for anyone wishing to
  51. implement the DynaLoader for a new platform and as a guide for
  52. anyone wishing to use the DynaLoader directly in an application.
  53.  
  54. The DynaLoader is designed to be a very simple high-level
  55. interface that is sufficiently general to cover the requirements
  56. of SunOS, HP-UX, NeXT, Linux, VMS and other platforms.
  57.  
  58. It is also hoped that the interface will cover the needs of OS/2, NT
  59. etc and also allow pseudo-dynamic linking (using C<ld -A> at runtime).
  60.  
  61. It must be stressed that the DynaLoader, by itself, is practically
  62. useless for accessing non-Perl libraries because it provides almost no
  63. Perl-to-C 'glue'.  There is, for example, no mechanism for calling a C
  64. library function or supplying arguments.  It is anticipated that any
  65. glue that may be developed in the future will be implemented in a
  66. separate dynamically loaded module.
  67.  
  68. DynaLoader Interface Summary
  69.  
  70.   @dl_library_path
  71.   @dl_resolve_using
  72.   @dl_require_symbols
  73.   $dl_debug
  74.                                                   Implemented in:
  75.   bootstrap($modulename)                               Perl
  76.   @filepaths = dl_findfile(@names)                     Perl
  77.  
  78.   $libref  = dl_load_file($filename)                   C
  79.   $symref  = dl_find_symbol($libref, $symbol)          C
  80.   @symbols = dl_undef_symbols()                        C
  81.   dl_install_xsub($name, $symref [, $filename])        C
  82.   $message = dl_error                                  C
  83.  
  84. =over 4
  85.  
  86. =item @dl_library_path
  87.  
  88. The standard/default list of directories in which dl_findfile() will
  89. search for libraries etc.  Directories are searched in order:
  90. $dl_library_path[0], [1], ... etc
  91.  
  92. @dl_library_path is initialised to hold the list of 'normal' directories
  93. (F</usr/lib>, etc) determined by B<Configure> (C<$Config{'libpth'}>).  This should
  94. ensure portability across a wide range of platforms.
  95.  
  96. @dl_library_path should also be initialised with any other directories
  97. that can be determined from the environment at runtime (such as
  98. LD_LIBRARY_PATH for SunOS).
  99.  
  100. After initialisation @dl_library_path can be manipulated by an
  101. application using push and unshift before calling dl_findfile().
  102. Unshift can be used to add directories to the front of the search order
  103. either to save search time or to override libraries with the same name
  104. in the 'normal' directories.
  105.  
  106. The load function that dl_load_file() calls may require an absolute
  107. pathname.  The dl_findfile() function and @dl_library_path can be
  108. used to search for and return the absolute pathname for the
  109. library/object that you wish to load.
  110.  
  111. =item @dl_resolve_using
  112.  
  113. A list of additional libraries or other shared objects which can be
  114. used to resolve any undefined symbols that might be generated by a
  115. later call to load_file().
  116.  
  117. This is only required on some platforms which do not handle dependent
  118. libraries automatically.  For example the Socket Perl extension library
  119. (F<auto/Socket/Socket.so>) contains references to many socket functions
  120. which need to be resolved when it's loaded.  Most platforms will
  121. automatically know where to find the 'dependent' library (e.g.,
  122. F</usr/lib/libsocket.so>).  A few platforms need to to be told the location
  123. of the dependent library explicitly.  Use @dl_resolve_using for this.
  124.  
  125. Example usage:
  126.  
  127.     @dl_resolve_using = dl_findfile('-lsocket');
  128.  
  129. =item @dl_require_symbols
  130.  
  131. A list of one or more symbol names that are in the library/object file
  132. to be dynamically loaded.  This is only required on some platforms.
  133.  
  134. =item dl_error()
  135.  
  136. Syntax:
  137.  
  138.     $message = dl_error();
  139.  
  140. Error message text from the last failed DynaLoader function.  Note
  141. that, similar to errno in unix, a successful function call does not
  142. reset this message.
  143.  
  144. Implementations should detect the error as soon as it occurs in any of
  145. the other functions and save the corresponding message for later
  146. retrieval.  This will avoid problems on some platforms (such as SunOS)
  147. where the error message is very temporary (e.g., dlerror()).
  148.  
  149. =item $dl_debug
  150.  
  151. Internal debugging messages are enabled when $dl_debug is set true.
  152. Currently setting $dl_debug only affects the Perl side of the
  153. DynaLoader.  These messages should help an application developer to
  154. resolve any DynaLoader usage problems.
  155.  
  156. $dl_debug is set to C<$ENV{'PERL_DL_DEBUG'}> if defined.
  157.  
  158. For the DynaLoader developer/porter there is a similar debugging
  159. variable added to the C code (see dlutils.c) and enabled if Perl was
  160. built with the B<-DDEBUGGING> flag.  This can also be set via the
  161. PERL_DL_DEBUG environment variable.  Set to 1 for minimal information or
  162. higher for more.
  163.  
  164. =item dl_findfile()
  165.  
  166. Syntax:
  167.  
  168.     @filepaths = dl_findfile(@names)
  169.  
  170. Determine the full paths (including file suffix) of one or more
  171. loadable files given their generic names and optionally one or more
  172. directories.  Searches directories in @dl_library_path by default and
  173. returns an empty list if no files were found.
  174.  
  175. Names can be specified in a variety of platform independent forms.  Any
  176. names in the form B<-lname> are converted into F<libname.*>, where F<.*> is
  177. an appropriate suffix for the platform.
  178.  
  179. If a name does not already have a suitable prefix and/or suffix then
  180. the corresponding file will be searched for by trying combinations of
  181. prefix and suffix appropriate to the platform: "$name.o", "lib$name.*"
  182. and "$name".
  183.  
  184. If any directories are included in @names they are searched before
  185. @dl_library_path.  Directories may be specified as B<-Ldir>.  Any other
  186. names are treated as filenames to be searched for.
  187.  
  188. Using arguments of the form C<-Ldir> and C<-lname> is recommended.
  189.  
  190. Example: 
  191.  
  192.     @dl_resolve_using = dl_findfile(qw(-L/usr/5lib -lposix));
  193.  
  194.  
  195. =item dl_expandspec()
  196.  
  197. Syntax:
  198.  
  199.     $filepath = dl_expandspec($spec)
  200.  
  201. Some unusual systems, such as VMS, require special filename handling in
  202. order to deal with symbolic names for files (i.e., VMS's Logical Names).
  203.  
  204. To support these systems a dl_expandspec() function can be implemented
  205. either in the F<dl_*.xs> file or code can be added to the autoloadable
  206. dl_expandspec() function in F<DynaLoader.pm>.  See F<DynaLoader.pm> for
  207. more information.
  208.  
  209. =item dl_load_file()
  210.  
  211. Syntax:
  212.  
  213.     $libref = dl_load_file($filename)
  214.  
  215. Dynamically load $filename, which must be the path to a shared object
  216. or library.  An opaque 'library reference' is returned as a handle for
  217. the loaded object.  Returns undef on error.
  218.  
  219. (On systems that provide a handle for the loaded object such as SunOS
  220. and HPUX, $libref will be that handle.  On other systems $libref will
  221. typically be $filename or a pointer to a buffer containing $filename.
  222. The application should not examine or alter $libref in any way.)
  223.  
  224. This is function that does the real work.  It should use the current
  225. values of @dl_require_symbols and @dl_resolve_using if required.
  226.  
  227.     SunOS: dlopen($filename)
  228.     HP-UX: shl_load($filename)
  229.     Linux: dld_create_reference(@dl_require_symbols); dld_link($filename)
  230.     NeXT:  rld_load($filename, @dl_resolve_using)
  231.     VMS:   lib$find_image_symbol($filename,$dl_require_symbols[0])
  232.     OS/2:  DosLoadModule(,,$filename,)
  233.  
  234.  
  235. =item dl_find_symbol()
  236.  
  237. Syntax:
  238.  
  239.     $symref = dl_find_symbol($libref, $symbol)
  240.  
  241. Return the address of the symbol $symbol or C<undef> if not found.  If the
  242. target system has separate functions to search for symbols of different
  243. types then dl_find_symbol() should search for function symbols first and
  244. then other types.
  245.  
  246. The exact manner in which the address is returned in $symref is not
  247. currently defined.  The only initial requirement is that $symref can
  248. be passed to, and understood by, dl_install_xsub().
  249.  
  250.     SunOS: dlsym($libref, $symbol)
  251.     HP-UX: shl_findsym($libref, $symbol)
  252.     Linux: dld_get_func($symbol) and/or dld_get_symbol($symbol)
  253.     NeXT:  rld_lookup("_$symbol")
  254.     VMS:   lib$find_image_symbol($libref,$symbol)
  255.     OS/2:  DosQueryProcAddr($libref,0,$symbol,)
  256.  
  257.  
  258. =item dl_undef_symbols()
  259.  
  260. Example
  261.  
  262.     @symbols = dl_undef_symbols()
  263.  
  264. Return a list of symbol names which remain undefined after load_file().
  265. Returns C<()> if not known.  Don't worry if your platform does not provide
  266. a mechanism for this.  Most do not need it and hence do not provide it,
  267. they just return an empty list.
  268.  
  269.  
  270. =item dl_install_xsub()
  271.  
  272. Syntax:
  273.  
  274.     dl_install_xsub($perl_name, $symref [, $filename])
  275.  
  276. Create a new Perl external subroutine named $perl_name using $symref as
  277. a pointer to the function which implements the routine.  This is simply
  278. a direct call to newXSUB().  Returns a reference to the installed
  279. function.
  280.  
  281. The $filename parameter is used by Perl to identify the source file for
  282. the function if required by die(), caller() or the debugger.  If
  283. $filename is not defined then "DynaLoader" will be used.
  284.  
  285.  
  286. =item boostrap()
  287.  
  288. Syntax:
  289.  
  290. bootstrap($module)
  291.  
  292. This is the normal entry point for automatic dynamic loading in Perl.
  293.  
  294. It performs the following actions:
  295.  
  296. =over 8
  297.  
  298. =item *
  299.  
  300. locates an auto/$module directory by searching @INC
  301.  
  302. =item *
  303.  
  304. uses dl_findfile() to determine the filename to load
  305.  
  306. =item *
  307.  
  308. sets @dl_require_symbols to C<("boot_$module")>
  309.  
  310. =item *
  311.  
  312. executes an F<auto/$module/$module.bs> file if it exists
  313. (typically used to add to @dl_resolve_using any files which
  314. are required to load the module on the current platform)
  315.  
  316. =item *
  317.  
  318. calls dl_load_file() to load the file
  319.  
  320. =item *
  321.  
  322. calls dl_undef_symbols() and warns if any symbols are undefined
  323.  
  324. =item *
  325.  
  326. calls dl_find_symbol() for "boot_$module"
  327.  
  328. =item *
  329.  
  330. calls dl_install_xsub() to install it as "${module}::bootstrap"
  331.  
  332. =item *
  333.  
  334. calls &{"${module}::bootstrap"} to bootstrap the module (actually
  335. it uses the function reference returned by dl_install_xsub for speed)
  336.  
  337. =back
  338.  
  339. =back
  340.  
  341.  
  342. =head1 AUTHOR
  343.  
  344. Tim Bunce, 11 August 1994.
  345.  
  346. This interface is based on the work and comments of (in no particular
  347. order): Larry Wall, Robert Sanders, Dean Roehrich, Jeff Okamoto, Anno
  348. Siegel, Thomas Neumann, Paul Marquess, Charles Bailey, myself and others.
  349.  
  350. Larry Wall designed the elegant inherited bootstrap mechanism and
  351. implemented the first Perl 5 dynamic loader using it.
  352.  
  353. =cut
  354. 1;
  355.