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

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>IO::WrapTie - wrap tieable objects in IO::Handle interface</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> IO::WrapTie - wrap tieable objects in IO::Handle interface</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="#how it all works">HOW IT ALL WORKS</A></LI>
  26.     <UL>
  27.  
  28.         <LI><A HREF="#the data structures">The data structures</A></LI>
  29.         <LI><A HREF="#how wraptie() works">How <CODE>wraptie()</CODE> works</A></LI>
  30.         <LI><A HREF="#how i/o operators work (on the master)">How I/O operators work (on the master)</A></LI>
  31.         <LI><A HREF="#how methods work (on the master)">How methods work (on the master)</A></LI>
  32.     </UL>
  33.  
  34.     <LI><A HREF="#notes">NOTES</A></LI>
  35.     <LI><A HREF="#warnings">WARNINGS</A></LI>
  36.     <LI><A HREF="#author">AUTHOR</A></LI>
  37. </UL>
  38. <!-- INDEX END -->
  39.  
  40. <HR>
  41. <P>
  42. <H1><A NAME="name">NAME</A></H1>
  43. <P>IO::WrapTie - wrap tieable objects in IO::Handle interface</P>
  44. <P><EM>This is currently Alpha code, released for comments.  
  45.   Please give me your feedback!</EM></P>
  46. <P>
  47. <HR>
  48. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  49. <UL>
  50. <LI>Linux</LI>
  51. <LI>Solaris</LI>
  52. <LI>Windows</LI>
  53. </UL>
  54. <HR>
  55. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  56. <P>First of all, you'll need tie(), so:</P>
  57. <PRE>
  58.    require 5.004;</PRE>
  59. <P><EM>Function interface (experimental).</EM>
  60. Use this with any existing class...</P>
  61. <PRE>
  62.    use IO::WrapTie;
  63.    use FooHandle;                  # implements TIEHANDLE interface
  64. </PRE>
  65. <PRE>
  66.  
  67.    # Suppose we want a "FooHandle->new(&FOO_RDWR, 2)".
  68.    # We can instead say...</PRE>
  69. <PRE>
  70.  
  71.    $FH = wraptie('FooHandle', &FOO_RDWR, 2);</PRE>
  72. <PRE>
  73.  
  74.    # Now we can use...    
  75.    print $FH "Hello, ";            # traditional operator syntax...
  76.    $FH->print("world!\n");         # ...and OO syntax as well!</PRE>
  77. <P><EM>OO interface (preferred).</EM>
  78. You can inherit from the IO::WrapTie::Slave mixin to get a
  79. nifty <CODE>new_tie()</CODE> constructor...</P>
  80. <PRE>
  81.    #------------------------------    
  82.    package FooHandle;                        # a class which can TIEHANDLE
  83. </PRE>
  84. <PRE>
  85.  
  86.    use IO::WrapTie;  
  87.    @ISA = qw(IO::WrapTie::Slave);            # inherit new_tie()
  88.    ...</PRE>
  89. <PRE>
  90.  
  91.    #------------------------------    
  92.    package main;</PRE>
  93. <PRE>
  94.  
  95.    $FH = FooHandle->new_tie(&FOO_RDWR, 2);   # $FH is an IO::WrapTie::Master
  96.    print $FH "Hello, ";                      # traditional operator syntax
  97.    $FH->print("world!\n");                   # OO syntax</PRE>
  98. <P>See IO::Scalar as an example.  It also shows you how to create classes
  99. which work both with and without 5.004.</P>
  100. <P>
  101. <HR>
  102. <H1><A NAME="description">DESCRIPTION</A></H1>
  103. <P>Suppose you have a class <CODE>FooHandle</CODE>, where...</P>
  104. <UL>
  105. <LI>
  106. <STRONG>FooHandle does not inherit from IO::Handle;</STRONG> that is, it performs
  107. filehandle-like I/O, but to something other than an underlying
  108. file descriptor.  Good examples are IO::Scalar (for printing to a
  109. string) and IO::Lines (for printing to an array of lines).
  110. <P></P>
  111. <LI>
  112. <STRONG>FooHandle implements the TIEHANDLE interface</STRONG> (see <A HREF="../../../lib/Pod/perltie.html">the perltie manpage</A>);
  113. that is, it provides methods TIEHANDLE, GETC, PRINT, PRINTF,
  114. READ, and READLINE.
  115. <P></P>
  116. <LI>
  117. <STRONG>FooHandle implements the traditional OO interface</STRONG> of
  118. FileHandle and IO::Handle; i.e., it contains methods like getline(), 
  119. read(), print(), seek(), tell(), eof(), etc.
  120. <P></P></UL>
  121. <P>Normally, users of your class would have two options:</P>
  122. <UL>
  123. <LI>
  124. <STRONG>Use only OO syntax,</STRONG> and forsake named I/O operators like 'print'.
  125. <P></P>
  126. <LI>
  127. <STRONG>Use with tie,</STRONG> and forsake treating it as a first-class object 
  128. (i.e., class-specific methods can only be invoked through the underlying
  129. object via tied()... giving the object a ``split personality'').
  130. <P></P></UL>
  131. <P>But now with IO::WrapTie, you can say:</P>
  132. <PRE>
  133.     $WT = wraptie('FooHandle', &FOO_RDWR, 2);
  134.     $WT->print("Hello, world\n");   # OO syntax
  135.     print $WT "Yes!\n";             # Named operator syntax too!
  136.     $WT->weird_stuff;               # Other methods!</PRE>
  137. <P>And if you're authoring a class like FooHandle, just have it inherit 
  138. from <CODE>IO::WrapTie::Slave</CODE> and that first line becomes even prettier:</P>
  139. <PRE>
  140.     $WT = FooHandle->new_tie(&FOO_RDWR, 2);</PRE>
  141. <P><STRONG>The bottom line:</STRONG> now, almost any class can look and work exactly like
  142. an IO::Handle... and be used both with OO and non-OO filehandle syntax.</P>
  143. <P>
  144. <HR>
  145. <H1><A NAME="how it all works">HOW IT ALL WORKS</A></H1>
  146. <P>
  147. <H2><A NAME="the data structures">The data structures</A></H2>
  148. <P>Consider this example code, using classes in this distribution:</P>
  149. <PRE>
  150.     use IO::Scalar;
  151.     use IO::WrapTie;
  152. </PRE>
  153. <PRE>
  154.  
  155.     $WT = wraptie('IO::Scalar',\$s);
  156.     print $WT "Hello, ";
  157.     $WT->print("world!\n");</PRE>
  158. <P>In it, the <CODE>wraptie()</CODE> function creates a data structure as follows:</P>
  159. <PRE>
  160.                           * $WT is a blessed reference to a tied filehandle
  161.               $WT           glob; that glob is tied to the "Slave" object.
  162.                |          * You would do all your i/o with $WT directly.
  163.                |       
  164.                |
  165.                |     ,---isa--> IO::WrapTie::Master >--isa--> IO::Handle
  166.                V    /
  167.         .-------------. 
  168.         |             | 
  169.         |             |   * Perl i/o operators work on the tied object,  
  170.         |  "Master"   |     invoking the TIEHANDLE methods.
  171.         |             |   * Method invocations are delegated to the tied 
  172.         |             |     slave.
  173.         `-------------' 
  174.                |    
  175.     tied(*$WT) |     .---isa--> IO::WrapTie::Slave
  176.                V    /   
  177.         .-------------.
  178.         |             |
  179.         |   "Slave"   |   * Instance of FileHandle-like class which doesn't
  180.         |             |     actually use file descriptors, like IO::Scalar.
  181.         |  IO::Scalar |   * The slave can be any kind of object.
  182.         |             |   * Must implement the TIEHANDLE interface.
  183.         `-------------'</PRE>
  184. <P><EM>NOTE:</EM> just as an IO::Handle is really just a blessed reference to a 
  185. <EM>traditional</EM> filehandle glob... so also, an IO::WrapTie::Master 
  186. is really just a blessed reference to a filehandle 
  187. glob <EM>which has been tied to some ``slave'' class.</EM></P>
  188. <P>
  189. <H2><A NAME="how wraptie() works">How <CODE>wraptie()</CODE> works</A></H2>
  190. <OL>
  191. <LI>
  192. The call to function <CODE>wraptie(SLAVECLASS, TIEARGS...)</CODE> is 
  193. passed onto <CODE>IO::WrapTie::Master::new()</CODE>.  
  194. Note that class IO::WrapTie::Master is a subclass of IO::Handle.
  195. <P></P>
  196. <LI>
  197. The <CODE>IO::WrapTie::Master::new</CODE> method creates a new IO::Handle object,
  198. reblessed into class IO::WrapTie::Master.  This object is the <EM>master</EM>, 
  199. which will be returned from the constructor.  At the same time...
  200. <P></P>
  201. <LI>
  202. The <CODE>new</CODE> method also creates the <EM>slave</EM>: this is an instance 
  203. of SLAVECLASS which is created by tying the master's IO::Handle 
  204. to SLAVECLASS via <A HREF="../../../lib/Pod/perlfunc.html#item_tie"><CODE>tie(HANDLE, SLAVECLASS, TIEARGS...)</CODE></A>.  
  205. This call to <A HREF="../../../lib/Pod/perlfunc.html#item_tie"><CODE>tie()</CODE></A> creates the slave in the following manner:
  206. <P></P>
  207. <LI>
  208. Class SLAVECLASS is sent the message <CODE>TIEHANDLE(TIEARGS...)</CODE>; it 
  209. will usually delegate this to <CODE>SLAVECLASS::new(TIEARGS...)</CODE>, resulting
  210. in a new instance of SLAVECLASS being created and returned.
  211. <P></P>
  212. <LI>
  213. Once both master and slave have been created, the master is returned
  214. to the caller.
  215. <P></P></OL>
  216. <P>
  217. <H2><A NAME="how i/o operators work (on the master)">How I/O operators work (on the master)</A></H2>
  218. <P>Consider using an i/o operator on the master:</P>
  219. <PRE>
  220.     print $WT "Hello, world!\n";</PRE>
  221. <P>Since the master ($WT) is really a [blessed] reference to a glob, 
  222. the normal Perl i/o operators like <A HREF="../../../lib/Pod/perlfunc.html#item_print"><CODE>print</CODE></A> may be used on it.
  223. They will just operate on the symbol part of the glob.</P>
  224. <P>Since the glob is tied to the slave, the slave's PRINT method 
  225. (part of the TIEHANDLE interface) will be automatically invoked.</P>
  226. <P>If the slave is an IO::Scalar, that means IO::Scalar::PRINT will be 
  227. invoked, and that method happens to delegate to the <A HREF="../../../lib/Pod/perlfunc.html#item_print"><CODE>print()</CODE></A> method 
  228. of the same class.  So the <EM>real</EM> work is ultimately done by 
  229. IO::Scalar::print().</P>
  230. <P>
  231. <H2><A NAME="how methods work (on the master)">How methods work (on the master)</A></H2>
  232. <P>Consider using a method on the master:</P>
  233. <PRE>
  234.     $WT->print("Hello, world!\n");</PRE>
  235. <P>Since the master ($WT) is blessed into the class IO::WrapTie::Master,
  236. Perl first attempts to find a <A HREF="../../../lib/Pod/perlfunc.html#item_print"><CODE>print()</CODE></A> method there.  Failing that,
  237. Perl next attempts to find a <A HREF="../../../lib/Pod/perlfunc.html#item_print"><CODE>print()</CODE></A> method in the superclass,
  238. IO::Handle.  It just so happens that there <EM>is</EM> such a method;
  239. that method merely invokes the <A HREF="../../../lib/Pod/perlfunc.html#item_print"><CODE>print</CODE></A> i/o operator on the self object...
  240. and for that, see above!</P>
  241. <P>But let's suppose we're dealing with a method which <EM>isn't</EM> part
  242. of IO::Handle... for example:</P>
  243. <PRE>
  244.     my $sref = $WT->sref;</PRE>
  245. <P>In this case, the intuitive behavior is to have the master delegate the
  246. method invocation to the slave (now do you see where the designations
  247. come from?).  This is indeed what happens: IO::WrapTie::Master contains
  248. an AUTOLOAD method which performs the delegation.</P>
  249. <P>So: when <CODE>sref()</CODE> can't be found in IO::Handle, the AUTOLOAD method
  250. of IO::WrapTie::Master is invoked, and the standard behavior of
  251. delegating the method to the underlying slave (here, an IO::Scalar)
  252. is done.</P>
  253. <P>Sometimes, to get this to work properly, you may need to create 
  254. a subclass of IO::WrapTie::Master which is an effective master for
  255. <EM>your</EM> class, and do the delegation there.</P>
  256. <P>
  257. <HR>
  258. <H1><A NAME="notes">NOTES</A></H1>
  259. <P><STRONG>Why not simply use the object's OO interface?</STRONG> 
  260.     Because that means forsaking the use of named operators
  261. like print(), and you may need to pass the object to a subroutine
  262. which will attempt to use those operators:</P>
  263. <PRE>
  264.     $O = FooHandle->new(&FOO_RDWR, 2);
  265.     $O->print("Hello, world\n");  # OO syntax is okay, BUT....
  266. </PRE>
  267. <PRE>
  268.  
  269.     sub nope { print $_[0] "Nope!\n" }
  270.  X  nope($O);                     # ERROR!!! (not a glob ref)</PRE>
  271. <P><STRONG>Why not simply use tie()?</STRONG> 
  272.     Because (1) you have to use <A HREF="../../../lib/Pod/perlfunc.html#item_tied"><CODE>tied()</CODE></A> to invoke methods in the
  273. object's public interface (yuck), and (2) you may need to pass 
  274. the tied symbol to another subroutine which will attempt to treat 
  275. it in an OO-way... and that will break it:</P>
  276. <PRE>
  277.     tie *T, 'FooHandle', &FOO_RDWR, 2; 
  278.     print T "Hello, world\n";     # Operator is okay, BUT... 
  279. </PRE>
  280. <PRE>
  281.  
  282.     tied(*T)->other_stuff;        # yuck! AND...</PRE>
  283. <PRE>
  284.  
  285.     sub nope { shift->print("Nope!\n") }
  286.  X  nope(\*T);                    # ERROR!!! (method "print" on unblessed ref)</PRE>
  287. <P><STRONG>Why a master and slave? 
  288.   Why not simply write FooHandle to inherit from IO::Handle?</STRONG>
  289.     I tried this, with an implementation similar to that of IO::Socket.  
  290. The problem is that <EM>the whole point is to use this with objects
  291. that don't have an underlying file/socket descriptor.</EM>.
  292. Subclassing IO::Handle will work fine for the OO stuff, and fine with 
  293. named operators <EM>if</EM> you tie()... but if you just attempt to say:</P>
  294. <PRE>
  295.     $IO = FooHandle->new(&FOO_RDWR, 2);
  296.     print $IO "Hello!\n";</PRE>
  297. <P>you get a warning from Perl like:</P>
  298. <PRE>
  299.     Filehandle GEN001 never opened</PRE>
  300. <P>because it's trying to do system-level i/o on an (unopened) file 
  301. descriptor.  To avoid this, you apparently have to <A HREF="../../../lib/Pod/perlfunc.html#item_tie"><CODE>tie()</CODE></A> the handle...
  302. which brings us right back to where we started!  At least the
  303. IO::WrapTie mixin lets us say:</P>
  304. <PRE>
  305.     $IO = FooHandle->new_tie(&FOO_RDWR, 2);
  306.     print $IO "Hello!\n";</PRE>
  307. <P>and so is not <EM>too</EM> bad.  <CODE>:-)</CODE></P>
  308. <P>
  309. <HR>
  310. <H1><A NAME="warnings">WARNINGS</A></H1>
  311. <P>Remember: this stuff is for doing FileHandle-like i/o on things
  312. <EM>without underlying file descriptors</EM>.  If you have an underlying
  313. file descriptor, you're better off just inheriting from IO::Handle.</P>
  314. <P><STRONG>Be aware that <CODE>new_tie()</CODE> always returns an instance of a
  315. kind of IO::WrapTie::Master...</STRONG> it does <STRONG>not</STRONG> return an instance 
  316. of the i/o class you're tying to!</P>
  317. <P>Invoking some methods on the master object causes AUTOLOAD to delegate
  318. them to the slave object... so it <EM>looks</EM> like you're manipulating a 
  319. ``FooHandle'' object directly, but you're not.</P>
  320. <P>I have not explored all the ramifications of this use of tie().
  321. <EM>Here there be dragons</EM>.</P>
  322. <P>
  323. <HR>
  324. <H1><A NAME="author">AUTHOR</A></H1>
  325. <P>Eryq (<EM><A HREF="mailto:eryq@zeegee.com">eryq@zeegee.com</A></EM>).
  326. President, ZeeGee Software Inc (<EM><A HREF="http://www.zeegee.com">http://www.zeegee.com</A></EM>).</P>
  327. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  328. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  329. <STRONG><P CLASS=block> IO::WrapTie - wrap tieable objects in IO::Handle interface</P></STRONG>
  330. </TD></TR>
  331. </TABLE>
  332.  
  333. </BODY>
  334.  
  335. </HTML>
  336.