home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _5d37446611f2ad74bf725ad8c9c5cb3c < prev    next >
Text File  |  2000-03-23  |  18KB  |  392 lines

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>DynaLoader - Dynamically load C libraries into Perl code</TITLE>
  5. <LINK REL="stylesheet" HREF="../Active.css" TYPE="text/css">
  6. <LINK REV="made" HREF="mailto:">
  7. </HEAD>
  8.  
  9. <BODY>
  10. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  11. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  12. <STRONG><P CLASS=block> DynaLoader - Dynamically load C libraries into Perl code</P></STRONG>
  13. </TD></TR>
  14. </TABLE>
  15.  
  16. <A NAME="__index__"></A>
  17. <!-- INDEX BEGIN -->
  18.  
  19. <UL>
  20.  
  21.     <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI>
  22.  
  23.     <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
  24.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  25.     <LI><A HREF="#author">AUTHOR</A></LI>
  26. </UL>
  27. <!-- INDEX END -->
  28.  
  29. <HR>
  30. <P>
  31. <H1><A NAME="name">NAME</A></H1>
  32. <P>DynaLoader - Dynamically load C libraries into Perl code</P>
  33. <P>dl_error(), dl_findfile(), dl_expandspec(), dl_load_file(), dl_unload_file(), dl_find_symbol(), dl_find_symbol_anywhere(), dl_undef_symbols(), dl_install_xsub(), dl_load_flags(), <A HREF="#item_bootstrap"><CODE>bootstrap()</CODE></A> - routines used by DynaLoader modules</P>
  34. <P>
  35. <HR>
  36. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  37. <UL>
  38. <LI>Linux</LI>
  39. <LI>Solaris</LI>
  40. <LI>Windows</LI>
  41. </UL>
  42. <HR>
  43. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  44. <PRE>
  45.     package YourPackage;
  46.     require DynaLoader;
  47.     @ISA = qw(... DynaLoader ...);
  48.     bootstrap YourPackage;</PRE>
  49. <PRE>
  50.     # optional method for 'global' loading
  51.     sub dl_load_flags { 0x01 }</PRE>
  52. <P>
  53. <HR>
  54. <H1><A NAME="description">DESCRIPTION</A></H1>
  55. <P>This document defines a standard generic interface to the dynamic
  56. linking mechanisms available on many platforms.  Its primary purpose is
  57. to implement automatic dynamic loading of Perl modules.</P>
  58. <P>This document serves as both a specification for anyone wishing to
  59. implement the DynaLoader for a new platform and as a guide for
  60. anyone wishing to use the DynaLoader directly in an application.</P>
  61. <P>The DynaLoader is designed to be a very simple high-level
  62. interface that is sufficiently general to cover the requirements
  63. of SunOS, HP-UX, NeXT, Linux, VMS and other platforms.</P>
  64. <P>It is also hoped that the interface will cover the needs of OS/2, NT
  65. etc and also allow pseudo-dynamic linking (using <CODE>ld -A</CODE> at runtime).</P>
  66. <P>It must be stressed that the DynaLoader, by itself, is practically
  67. useless for accessing non-Perl libraries because it provides almost no
  68. Perl-to-C 'glue'.  There is, for example, no mechanism for calling a C
  69. library function or supplying arguments.  A C::DynaLib module
  70. is available from CPAN sites which performs that function for some
  71. common system types.</P>
  72. <P>DynaLoader Interface Summary</P>
  73. <PRE>
  74.   @dl_library_path
  75.   @dl_resolve_using
  76.   @dl_require_symbols
  77.   $dl_debug
  78.   @dl_librefs
  79.   @dl_modules
  80.                                                   Implemented in:
  81.   bootstrap($modulename)                               Perl
  82.   @filepaths = dl_findfile(@names)                     Perl
  83.   $flags = $modulename->dl_load_flags                  Perl
  84.   $symref  = dl_find_symbol_anywhere($symbol)          Perl</PRE>
  85. <PRE>
  86.   $libref  = dl_load_file($filename, $flags)           C
  87.   $status  = dl_unload_file($libref)                   C
  88.   $symref  = dl_find_symbol($libref, $symbol)          C
  89.   @symbols = dl_undef_symbols()                        C
  90.   dl_install_xsub($name, $symref [, $filename])        C
  91.   $message = dl_error                                  C</PRE>
  92. <DL>
  93. <DT><STRONG><A NAME="item_%40dl_library_path">@dl_library_path</A></STRONG><BR>
  94. <DD>
  95. The standard/default list of directories in which <A HREF="#item_dl_findfile"><CODE>dl_findfile()</CODE></A> will
  96. search for libraries etc.  Directories are searched in order:
  97. $dl_library_path[0], [1], ... etc
  98. <P>@dl_library_path is initialised to hold the list of 'normal' directories
  99. (<EM>/usr/lib</EM>, etc) determined by <STRONG>Configure</STRONG> (<CODE>$Config{'libpth'}</CODE>).  This should
  100. ensure portability across a wide range of platforms.</P>
  101. <P>@dl_library_path should also be initialised with any other directories
  102. that can be determined from the environment at runtime (such as
  103. LD_LIBRARY_PATH for SunOS).</P>
  104. <P>After initialisation @dl_library_path can be manipulated by an
  105. application using push and unshift before calling dl_findfile().
  106. Unshift can be used to add directories to the front of the search order
  107. either to save search time or to override libraries with the same name
  108. in the 'normal' directories.</P>
  109. <P>The load function that <A HREF="#item_dl_load_file"><CODE>dl_load_file()</CODE></A> calls may require an absolute
  110. pathname.  The <A HREF="#item_dl_findfile"><CODE>dl_findfile()</CODE></A> function and @dl_library_path can be
  111. used to search for and return the absolute pathname for the
  112. library/object that you wish to load.</P>
  113. <P></P>
  114. <DT><STRONG><A NAME="item_%40dl_resolve_using">@dl_resolve_using</A></STRONG><BR>
  115. <DD>
  116. A list of additional libraries or other shared objects which can be
  117. used to resolve any undefined symbols that might be generated by a
  118. later call to load_file().
  119. <P>This is only required on some platforms which do not handle dependent
  120. libraries automatically.  For example the Socket Perl extension
  121. library (<EM>auto/Socket/Socket.so</EM>) contains references to many socket
  122. functions which need to be resolved when it's loaded.  Most platforms
  123. will automatically know where to find the 'dependent' library (e.g.,
  124. <EM>/usr/lib/libsocket.so</EM>).  A few platforms need to be told the
  125. location of the dependent library explicitly.  Use @dl_resolve_using
  126. for this.</P>
  127. <P>Example usage:</P>
  128. <PRE>
  129.     @dl_resolve_using = dl_findfile('-lsocket');</PRE>
  130. <P></P>
  131. <DT><STRONG><A NAME="item_%40dl_require_symbols">@dl_require_symbols</A></STRONG><BR>
  132. <DD>
  133. A list of one or more symbol names that are in the library/object file
  134. to be dynamically loaded.  This is only required on some platforms.
  135. <P></P>
  136. <DT><STRONG><A NAME="item_%40dl_librefs">@dl_librefs</A></STRONG><BR>
  137. <DD>
  138. An array of the handles returned by successful calls to dl_load_file(),
  139. made by bootstrap, in the order in which they were loaded.
  140. Can be used with <A HREF="#item_dl_find_symbol"><CODE>dl_find_symbol()</CODE></A> to look for a symbol in any of
  141. the loaded files.
  142. <P></P>
  143. <DT><STRONG><A NAME="item_%40dl_modules">@dl_modules</A></STRONG><BR>
  144. <DD>
  145. An array of module (package) names that have been bootstrap'ed.
  146. <P></P>
  147. <DT><STRONG><A NAME="item_dl_error"><CODE>dl_error()</CODE></A></STRONG><BR>
  148. <DD>
  149. Syntax:
  150. <PRE>
  151.     $message = dl_error();</PRE>
  152. <P>Error message text from the last failed DynaLoader function.  Note
  153. that, similar to errno in unix, a successful function call does not
  154. reset this message.</P>
  155. <P>Implementations should detect the error as soon as it occurs in any of
  156. the other functions and save the corresponding message for later
  157. retrieval.  This will avoid problems on some platforms (such as SunOS)
  158. where the error message is very temporary (e.g., dlerror()).</P>
  159. <P></P>
  160. <DT><STRONG><A NAME="item_%24dl_debug">$dl_debug</A></STRONG><BR>
  161. <DD>
  162. Internal debugging messages are enabled when $dl_debug is set true.
  163. Currently setting $dl_debug only affects the Perl side of the
  164. DynaLoader.  These messages should help an application developer to
  165. resolve any DynaLoader usage problems.
  166. <P>$dl_debug is set to <CODE>$ENV{'PERL_DL_DEBUG'}</CODE> if defined.</P>
  167. <P>For the DynaLoader developer/porter there is a similar debugging
  168. variable added to the C code (see dlutils.c) and enabled if Perl was
  169. built with the <STRONG>-DDEBUGGING</STRONG> flag.  This can also be set via the
  170. PERL_DL_DEBUG environment variable.  Set to 1 for minimal information or
  171. higher for more.</P>
  172. <P></P>
  173. <DT><STRONG><A NAME="item_dl_findfile"><CODE>dl_findfile()</CODE></A></STRONG><BR>
  174. <DD>
  175. Syntax:
  176. <PRE>
  177.     @filepaths = dl_findfile(@names)</PRE>
  178. <P>Determine the full paths (including file suffix) of one or more
  179. loadable files given their generic names and optionally one or more
  180. directories.  Searches directories in @dl_library_path by default and
  181. returns an empty list if no files were found.</P>
  182. <P>Names can be specified in a variety of platform independent forms.  Any
  183. names in the form <STRONG>-lname</STRONG> are converted into <EM>libname.*</EM>, where <EM>.*</EM> is
  184. an appropriate suffix for the platform.</P>
  185. <P>If a name does not already have a suitable prefix and/or suffix then
  186. the corresponding file will be searched for by trying combinations of
  187. prefix and suffix appropriate to the platform: ``$name.o'', ``lib$name.*''
  188. and ``$name''.</P>
  189. <P>If any directories are included in @names they are searched before
  190. @dl_library_path.  Directories may be specified as <STRONG>-Ldir</STRONG>.  Any other
  191. names are treated as filenames to be searched for.</P>
  192. <P>Using arguments of the form <CODE>-Ldir</CODE> and <CODE>-lname</CODE> is recommended.</P>
  193. <P>Example:</P>
  194. <PRE>
  195.     @dl_resolve_using = dl_findfile(qw(-L/usr/5lib -lposix));</PRE>
  196. <P></P>
  197. <DT><STRONG><A NAME="item_dl_expandspec"><CODE>dl_expandspec()</CODE></A></STRONG><BR>
  198. <DD>
  199. Syntax:
  200. <PRE>
  201.     $filepath = dl_expandspec($spec)</PRE>
  202. <P>Some unusual systems, such as VMS, require special filename handling in
  203. order to deal with symbolic names for files (i.e., VMS's Logical Names).</P>
  204. <P>To support these systems a <A HREF="#item_dl_expandspec"><CODE>dl_expandspec()</CODE></A> function can be implemented
  205. either in the <EM>dl_*.xs</EM> file or code can be added to the autoloadable
  206. <A HREF="#item_dl_expandspec"><CODE>dl_expandspec()</CODE></A> function in <EM>DynaLoader.pm</EM>.  See <EM>DynaLoader.pm</EM> for
  207. more information.</P>
  208. <P></P>
  209. <DT><STRONG><A NAME="item_dl_load_file"><CODE>dl_load_file()</CODE></A></STRONG><BR>
  210. <DD>
  211. Syntax:
  212. <PRE>
  213.     $libref = dl_load_file($filename, $flags)</PRE>
  214. <P>Dynamically load $filename, which must be the path to a shared object
  215. or library.  An opaque 'library reference' is returned as a handle for
  216. the loaded object.  Returns undef on error.</P>
  217. <P>The $flags argument to alters dl_load_file behaviour.  
  218. Assigned bits:</P>
  219. <PRE>
  220.  0x01  make symbols available for linking later dl_load_file's.
  221.        (only known to work on Solaris 2 using dlopen(RTLD_GLOBAL))
  222.        (ignored under VMS; this is a normal part of image linking)</PRE>
  223. <P>(On systems that provide a handle for the loaded object such as SunOS
  224. and HPUX, $libref will be that handle.  On other systems $libref will
  225. typically be $filename or a pointer to a buffer containing $filename.
  226. The application should not examine or alter $libref in any way.)</P>
  227. <P>This is the function that does the real work.  It should use the
  228. current values of @dl_require_symbols and @dl_resolve_using if required.</P>
  229. <PRE>
  230.     SunOS: dlopen($filename)
  231.     HP-UX: shl_load($filename)
  232.     Linux: dld_create_reference(@dl_require_symbols); dld_link($filename)
  233.     NeXT:  rld_load($filename, @dl_resolve_using)
  234.     VMS:   lib$find_image_symbol($filename,$dl_require_symbols[0])</PRE>
  235. <P>(The <CODE>dlopen()</CODE> function is also used by Solaris and some versions of
  236. Linux, and is a common choice when providing a ``wrapper'' on other
  237. mechanisms as is done in the OS/2 port.)</P>
  238. <P></P>
  239. <DT><STRONG><A NAME="item_dl_unload_file"><CODE>dl_unload_file()</CODE></A></STRONG><BR>
  240. <DD>
  241. Syntax:
  242. <PRE>
  243.     $status = dl_unload_file($libref)</PRE>
  244. <P>Dynamically unload $libref, which must be an opaque 'library reference' as
  245. returned from dl_load_file.  Returns one on success and zero on failure.</P>
  246. <P>This function is optional and may not necessarily be provided on all platforms.
  247. If it is defined, it is called automatically when the interpreter exits for
  248. every shared object or library loaded by DynaLoader::bootstrap.  All such
  249. library references are stored in @dl_librefs by DynaLoader::Bootstrap as it
  250. loads the libraries.  The files are unloaded in last-in, first-out order.</P>
  251. <P>This unloading is usually necessary when embedding a shared-object perl (e.g.
  252. one configured with -Duseshrplib) within a larger application, and the perl
  253. interpreter is created and destroyed several times within the lifetime of the
  254. application.  In this case it is possible that the system dynamic linker will
  255. unload and then subsequently reload the shared libperl without relocating any
  256. references to it from any files DynaLoaded by the previous incarnation of the
  257. interpreter.  As a result, any shared objects opened by DynaLoader may point to
  258. a now invalid 'ghost' of the libperl shared object, causing apparently random
  259. memory corruption and crashes.  This behaviour is most commonly seen when using
  260. Apache and mod_perl built with the APXS mechanism.</P>
  261. <PRE>
  262.     SunOS: dlclose($libref)
  263.     HP-UX: ???
  264.     Linux: ???
  265.     NeXT:  ???
  266.     VMS:   ???</PRE>
  267. <P>(The <CODE>dlclose()</CODE> function is also used by Solaris and some versions of
  268. Linux, and is a common choice when providing a ``wrapper'' on other
  269. mechanisms as is done in the OS/2 port.)</P>
  270. <P></P>
  271. <DT><STRONG><A NAME="item_dl_loadflags"><CODE>dl_loadflags()</CODE></A></STRONG><BR>
  272. <DD>
  273. Syntax:
  274. <PRE>
  275.     $flags = dl_loadflags $modulename;</PRE>
  276. <P>Designed to be a method call, and to be overridden by a derived class
  277. (i.e. a class which has DynaLoader in its @ISA).  The definition in
  278. DynaLoader itself returns 0, which produces standard behavior from
  279. dl_load_file().</P>
  280. <P></P>
  281. <DT><STRONG><A NAME="item_dl_find_symbol"><CODE>dl_find_symbol()</CODE></A></STRONG><BR>
  282. <DD>
  283. Syntax:
  284. <PRE>
  285.     $symref = dl_find_symbol($libref, $symbol)</PRE>
  286. <P>Return the address of the symbol $symbol or <A HREF="../lib/Pod/perlfunc.html#item_undef"><CODE>undef</CODE></A> if not found.  If the
  287. target system has separate functions to search for symbols of different
  288. types then <A HREF="#item_dl_find_symbol"><CODE>dl_find_symbol()</CODE></A> should search for function symbols first and
  289. then other types.</P>
  290. <P>The exact manner in which the address is returned in $symref is not
  291. currently defined.  The only initial requirement is that $symref can
  292. be passed to, and understood by, dl_install_xsub().</P>
  293. <PRE>
  294.     SunOS: dlsym($libref, $symbol)
  295.     HP-UX: shl_findsym($libref, $symbol)
  296.     Linux: dld_get_func($symbol) and/or dld_get_symbol($symbol)
  297.     NeXT:  rld_lookup("_$symbol")
  298.     VMS:   lib$find_image_symbol($libref,$symbol)</PRE>
  299. <P></P>
  300. <DT><STRONG><A NAME="item_dl_find_symbol_anywhere"><CODE>dl_find_symbol_anywhere()</CODE></A></STRONG><BR>
  301. <DD>
  302. Syntax:
  303. <PRE>
  304.     $symref = dl_find_symbol_anywhere($symbol)</PRE>
  305. <P>Applies <A HREF="#item_dl_find_symbol"><CODE>dl_find_symbol()</CODE></A> to the members of @dl_librefs and returns
  306. the first match found.</P>
  307. <P></P>
  308. <DT><STRONG><A NAME="item_dl_undef_symbols"><CODE>dl_undef_symbols()</CODE></A></STRONG><BR>
  309. <DD>
  310. Example
  311. <PRE>
  312.     @symbols = dl_undef_symbols()</PRE>
  313. <P>Return a list of symbol names which remain undefined after load_file().
  314. Returns <CODE>()</CODE> if not known.  Don't worry if your platform does not provide
  315. a mechanism for this.  Most do not need it and hence do not provide it,
  316. they just return an empty list.</P>
  317. <P></P>
  318. <DT><STRONG><A NAME="item_dl_install_xsub"><CODE>dl_install_xsub()</CODE></A></STRONG><BR>
  319. <DD>
  320. Syntax:
  321. <PRE>
  322.     dl_install_xsub($perl_name, $symref [, $filename])</PRE>
  323. <P>Create a new Perl external subroutine named $perl_name using $symref as
  324. a pointer to the function which implements the routine.  This is simply
  325. a direct call to newXSUB().  Returns a reference to the installed
  326. function.</P>
  327. <P>The $filename parameter is used by Perl to identify the source file for
  328. the function if required by die(), <A HREF="../lib/Pod/perlfunc.html#item_caller"><CODE>caller()</CODE></A> or the debugger.  If
  329. $filename is not defined then ``DynaLoader'' will be used.</P>
  330. <P></P>
  331. <DT><STRONG><A NAME="item_bootstrap"><CODE>bootstrap()</CODE></A></STRONG><BR>
  332. <DD>
  333. Syntax:
  334. <P><A HREF="#item_bootstrap"><CODE>bootstrap($module)</CODE></A></P>
  335. <P>This is the normal entry point for automatic dynamic loading in Perl.</P>
  336. <P>It performs the following actions:</P>
  337. <UL>
  338. <LI>
  339. locates an auto/$module directory by searching @INC
  340. <P></P>
  341. <LI>
  342. uses <A HREF="#item_dl_findfile"><CODE>dl_findfile()</CODE></A> to determine the filename to load
  343. <P></P>
  344. <LI>
  345. sets @dl_require_symbols to <CODE>("boot_$module")</CODE>
  346. <P></P>
  347. <LI>
  348. executes an <EM>auto/$module/$module.bs</EM> file if it exists
  349. (typically used to add to @dl_resolve_using any files which
  350. are required to load the module on the current platform)
  351. <P></P>
  352. <LI>
  353. calls <CODE>dl_load_flags()</CODE> to determine how to load the file.
  354. <P></P>
  355. <LI>
  356. calls <A HREF="#item_dl_load_file"><CODE>dl_load_file()</CODE></A> to load the file
  357. <P></P>
  358. <LI>
  359. calls <A HREF="#item_dl_undef_symbols"><CODE>dl_undef_symbols()</CODE></A> and warns if any symbols are undefined
  360. <P></P>
  361. <LI>
  362. calls <A HREF="#item_dl_find_symbol"><CODE>dl_find_symbol()</CODE></A> for ``boot_$module''
  363. <P></P>
  364. <LI>
  365. calls <A HREF="#item_dl_install_xsub"><CODE>dl_install_xsub()</CODE></A> to install it as ``${module}::bootstrap''
  366. <P></P>
  367. <LI>
  368. calls &{``${module}::bootstrap''} to bootstrap the module (actually
  369. it uses the function reference returned by dl_install_xsub for speed)
  370. <P></P></UL>
  371. </DL>
  372. <P>
  373. <HR>
  374. <H1><A NAME="author">AUTHOR</A></H1>
  375. <P>Tim Bunce, 11 August 1994.</P>
  376. <P>This interface is based on the work and comments of (in no particular
  377. order): Larry Wall, Robert Sanders, Dean Roehrich, Jeff Okamoto, Anno
  378. Siegel, Thomas Neumann, Paul Marquess, Charles Bailey, myself and others.</P>
  379. <P>Larry Wall designed the elegant inherited bootstrap mechanism and
  380. implemented the first Perl 5 dynamic loader using it.</P>
  381. <P>Solaris global loading added by Nick Ing-Simmons with design/coding
  382. assistance from Tim Bunce, January 1996.</P>
  383. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  384. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  385. <STRONG><P CLASS=block> DynaLoader - Dynamically load C libraries into Perl code</P></STRONG>
  386. </TD></TR>
  387. </TABLE>
  388.  
  389. </BODY>
  390.  
  391. </HTML>
  392.