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

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>Devel::SelfStubber - generate stubs for a SelfLoading module</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> Devel::SelfStubber - generate stubs for a SelfLoading module</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. </UL>
  26. <!-- INDEX END -->
  27.  
  28. <HR>
  29. <P>
  30. <H1><A NAME="name">NAME</A></H1>
  31. <P>Devel::SelfStubber - generate stubs for a SelfLoading module</P>
  32. <P>
  33. <HR>
  34. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  35. <UL>
  36. <LI>Linux</LI>
  37. <LI>Solaris</LI>
  38. <LI>Windows</LI>
  39. </UL>
  40. <HR>
  41. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  42. <P>To generate just the stubs:</P>
  43. <PRE>
  44.     use Devel::SelfStubber;
  45.     Devel::SelfStubber->stub('MODULENAME','MY_LIB_DIR');</PRE>
  46. <P>or to generate the whole module with stubs inserted correctly</P>
  47. <PRE>
  48.     use Devel::SelfStubber;
  49.     $Devel::SelfStubber::JUST_STUBS=0;
  50.     Devel::SelfStubber->stub('MODULENAME','MY_LIB_DIR');</PRE>
  51. <P>MODULENAME is the Perl module name, e.g. Devel::SelfStubber,
  52. NOT 'Devel/SelfStubber' or 'Devel/SelfStubber.pm'.</P>
  53. <P>MY_LIB_DIR defaults to '.' if not present.</P>
  54. <P>
  55. <HR>
  56. <H1><A NAME="description">DESCRIPTION</A></H1>
  57. <P>Devel::SelfStubber prints the stubs you need to put in the module
  58. before the __DATA__ token (or you can get it to print the entire
  59. module with stubs correctly placed). The stubs ensure that if
  60. a method is called, it will get loaded. They are needed specifically
  61. for inherited autoloaded methods.</P>
  62. <P>This is best explained using the following example:</P>
  63. <P>Assume four classes, A,B,C & D.</P>
  64. <P>A is the root class, B is a subclass of A, C is a subclass of B,
  65. and D is another subclass of A.</P>
  66. <PRE>
  67.                         A
  68.                        / \
  69.                       B   D
  70.                      /
  71.                     C</PRE>
  72. <P>If D calls an autoloaded method 'foo' which is defined in class A,
  73. then the method is loaded into class A, then executed. If C then
  74. calls method 'foo', and that method was reimplemented in class
  75. B, but set to be autoloaded, then the lookup mechanism never gets to
  76. the AUTOLOAD mechanism in B because it first finds the method
  77. already loaded in A, and so erroneously uses that. If the method
  78. foo had been stubbed in B, then the lookup mechanism would have
  79. found the stub, and correctly loaded and used the sub from B.</P>
  80. <P>So, for classes and subclasses to have inheritance correctly
  81. work with autoloading, you need to ensure stubs are loaded.</P>
  82. <P>The SelfLoader can load stubs automatically at module initialization
  83. with the statement 'SelfLoader->load_stubs()';, but you may wish to
  84. avoid having the stub loading overhead associated with your
  85. initialization (though note that the SelfLoader::load_stubs method
  86. will be called sooner or later - at latest when the first sub
  87. is being autoloaded). In this case, you can put the sub stubs
  88. before the __DATA__ token. This can be done manually, but this
  89. module allows automatic generation of the stubs.</P>
  90. <P>By default it just prints the stubs, but you can set the
  91. global $Devel::SelfStubber::JUST_STUBS to 0 and it will
  92. print out the entire module with the stubs positioned correctly.</P>
  93. <P>At the very least, this is useful to see what the SelfLoader
  94. thinks are stubs - in order to ensure future versions of the
  95. SelfStubber remain in step with the SelfLoader, the
  96. SelfStubber actually uses the SelfLoader to determine which
  97. stubs are needed.</P>
  98. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  99. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  100. <STRONG><P CLASS=block> Devel::SelfStubber - generate stubs for a SelfLoading module</P></STRONG>
  101. </TD></TR>
  102. </TABLE>
  103.  
  104. </BODY>
  105.  
  106. </HTML>
  107.