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

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>Tie::Watch - place watchpoints on Perl variables.</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> Tie::Watch - place watchpoints on Perl variables.</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="#methods">METHODS</A></LI>
  26.     <LI><A HREF="#efficiency considerations">EFFICIENCY CONSIDERATIONS</A></LI>
  27.     <LI><A HREF="#author">AUTHOR</A></LI>
  28.     <LI><A HREF="#history">HISTORY</A></LI>
  29.     <LI><A HREF="#copyright">COPYRIGHT</A></LI>
  30. </UL>
  31. <!-- INDEX END -->
  32.  
  33. <HR>
  34. <P>
  35. <H1><A NAME="name">NAME</A></H1>
  36. <PRE>
  37.  Tie::Watch - place watchpoints on Perl variables.</PRE>
  38. <P>
  39. <HR>
  40. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  41. <UL>
  42. <LI>Linux</LI>
  43. <LI>Solaris</LI>
  44. <LI>Windows</LI>
  45. </UL>
  46. <HR>
  47. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  48. <PRE>
  49.  use Tie::Watch;</PRE>
  50. <PRE>
  51.  $watch = Tie::Watch->new(
  52.      -variable => \$frog,
  53.      -debug    => 1,
  54.      -shadow   => 0,                      
  55.      -fetch    => [\&fetch, 'arg1', 'arg2', ..., 'argn'],
  56.      -store    => \&store,
  57.      -destroy  => sub {print "Final value=$frog.\n"},
  58.  }
  59.  %vinfo = $watch->Info;
  60.  $args  = $watch->Args(-fetch);
  61.  $val   = $watch->Fetch;
  62.  print "val=", $watch->Say($val), ".\n";
  63.  $watch->Store('Hello');
  64.  $watch->Unwatch;</PRE>
  65. <P>
  66. <HR>
  67. <H1><A NAME="description">DESCRIPTION</A></H1>
  68. <P>This class module binds one or more subroutines of your devising to a
  69. Perl variable.  All variables can have <STRONG>FETCH</STRONG>, <STRONG>STORE</STRONG> and
  70. <STRONG>DESTROY</STRONG> callbacks.  Additionally, arrays can define <STRONG>CLEAR</STRONG>, <STRONG>EXTEND</STRONG>,
  71. <STRONG>FETCHSIZE</STRONG>, <STRONG>POP</STRONG>, <STRONG>PUSH</STRONG>, <STRONG>SHIFT</STRONG>, <STRONG>SPLICE</STRONG>, <STRONG>STORESIZE</STRONG> and
  72. <STRONG>UNSHIFT</STRONG> callbacks, and hashes can define <STRONG>CLEAR</STRONG>, <STRONG>DELETE</STRONG>, <STRONG>EXISTS</STRONG>,
  73. <STRONG>FIRSTKEY</STRONG> and <STRONG>NEXTKEY</STRONG> callbacks.  If these term are unfamiliar to you,
  74. I <EM>really</EM> suggest you read <A HREF="../../../lib/Pod/perltie.html">the perltie manpage</A>.</P>
  75. <P>With Tie::Watch you can:</P>
  76. <PRE>
  77.  . alter a variable's value
  78.  . prevent a variable's value from being changed
  79.  . invoke a Perl/Tk callback when a variable changes
  80.  . trace references to a variable</PRE>
  81. <P>Callback format is patterned after the Perl/Tk scheme: supply either a
  82. code reference, or, supply an array reference and pass the callback
  83. code reference in the first element of the array, followed by callback
  84. arguments.  (See examples in the Synopsis, above.)</P>
  85. <P>Tie::Watch provides default callbacks for any that you fail to
  86. specify.  Other than negatively impacting performance, they perform
  87. the standard action that you'd expect, so the variable behaves
  88. ``normally''.  Once you override a default callback, perhaps to insert
  89. debug code like print statements, your callback normally finishes by
  90. calling the underlying (overridden) method.  But you don't have to!</P>
  91. <P>To map a tied method name to a default callback name simply lowercase
  92. the tied method name and uppercase its first character.  So FETCH
  93. becomes Fetch, NEXTKEY becomes Nextkey, etcetera.</P>
  94. <P>Here are two callbacks for a scalar. The <STRONG>FETCH</STRONG> (read) callback does
  95. nothing other than illustrate the fact that it returns the value to
  96. assign the variable.  The <STRONG>STORE</STRONG> (write) callback uppercases the
  97. variable and returns it.  In all cases the callback <EM>must</EM> return the
  98. correct read or write value - typically, it does this by invoking the
  99. underlying method.</P>
  100. <PRE>
  101.  my $fetch_scalar = sub {
  102.      my($self) = @_;
  103.      $self->Fetch;
  104.  };</PRE>
  105. <PRE>
  106.  my $store_scalar = sub {
  107.      my($self, $new_val) = @_;
  108.      $self->Store(uc $new_val);
  109.  };</PRE>
  110. <P>Here are <STRONG>FETCH</STRONG> and <STRONG>STORE</STRONG> callbacks for either an array or hash.
  111. They do essentially the same thing as the scalar callbacks, but
  112. provide a little more information.</P>
  113. <PRE>
  114.  my $fetch = sub {
  115.      my($self, $key) = @_;
  116.      my $val = $self->Fetch($key);
  117.      print "In fetch callback, key=$key, val=", $self->Say($val);
  118.      my $args = $self->Args(-fetch);
  119.      print ", args=('", join("', '",  @$args), "')" if $args;
  120.      print ".\n";
  121.      $val;
  122.  };</PRE>
  123. <PRE>
  124.  my $store = sub {
  125.      my($self, $key, $new_val) = @_;
  126.      my $val = $self->Fetch($key);
  127.      $new_val = uc $new_val;
  128.      $self->Store($key, $new_val);
  129.      print "In store callback, key=$key, val=", $self->Say($val),
  130.        ", new_val=", $self->Say($new_val);
  131.      my $args = $self->Args(-store);
  132.      print ", args=('", join("', '",  @$args), "')" if $args;
  133.      print ".\n";
  134.      $new_val;
  135.  };</PRE>
  136. <P>In all cases, the first parameter is a reference to the Watch object,
  137. used to invoke the following class methods.</P>
  138. <P>
  139. <HR>
  140. <H1><A NAME="methods">METHODS</A></H1>
  141. <DL>
  142. <DT><STRONG><A NAME="item_new">$watch = Tie::Watch->new(-options => values);</A></STRONG><BR>
  143. <DD>
  144. The watchpoint constructor method that accepts option/value pairs to
  145. create and configure the Watch object.  The only required option is
  146. <STRONG>-variable</STRONG>.
  147. <P><STRONG>-variable</STRONG> is a <EM>reference</EM> to a scalar, array or hash variable.</P>
  148. <P><STRONG>-debug</STRONG> (default 0) is 1 to activate debug print statements internal
  149. to Tie::Watch.</P>
  150. <P><STRONG>-shadow</STRONG> (default 1) is 0 to disable array and hash shadowing.  To
  151. prevent infinite recursion Tie::Watch maintains parallel variables for
  152. arrays and hashes.  When the watchpoint is created the parallel shadow
  153. variable is initialized with the watched variable's contents, and when
  154. the watchpoint is deleted the shadow variable is copied to the original
  155. variable.  Thus, changes made during the watch process are not lost.
  156. Shadowing is on my default.  If you disable shadowing any changes made
  157. to an array or hash are lost when the watchpoint is deleted.</P>
  158. <P>Specify any of the following relevant callback parameters, in the
  159. format described above: <STRONG>-fetch</STRONG>, <STRONG>-store</STRONG>, <STRONG>-destroy</STRONG>.
  160. Additionally for arrays: <STRONG>-clear</STRONG>, <STRONG>-extend</STRONG>, <STRONG>-fetchsize</STRONG>,
  161. <STRONG>-pop</STRONG>, <STRONG>-push</STRONG>, <STRONG>-shift</STRONG>, <STRONG>-splice</STRONG>, <STRONG>-storesize</STRONG> and
  162. <STRONG>-unshift</STRONG>.  Additionally for hashes: <STRONG>-clear</STRONG>, <STRONG>-delete</STRONG>,
  163. <STRONG>-exists</STRONG>, <STRONG>-firstkey</STRONG> and <STRONG>-nextkey</STRONG>.</P>
  164. <P></P>
  165. <DT><STRONG><A NAME="item_Args">$args = $watch->Args(-fetch);</A></STRONG><BR>
  166. <DD>
  167. Returns a reference to a list of arguments for the specified callback,
  168. or undefined if none.
  169. <P></P>
  170. <DT><STRONG><A NAME="item_Fetch">$watch->Fetch();  $watch->Fetch($key);</A></STRONG><BR>
  171. <DD>
  172. Returns a variable's current value.  $key is required for an array or
  173. hash.
  174. <P></P>
  175. <DT><STRONG><A NAME="item_Info">%vinfo = $watch->Info();</A></STRONG><BR>
  176. <DD>
  177. Returns a hash detailing the internals of the Watch object, with these
  178. keys:
  179. <PRE>
  180.  %vinfo = {
  181.      -variable =>  SCALAR(0x200737f8)
  182.      -debug    =>  '0'
  183.      -shadow   =>  '1'
  184.      -value    =>  'HELLO SCALAR'
  185.      -destroy  =>  ARRAY(0x200f86cc)
  186.      -fetch    =>  ARRAY(0x200f8558)
  187.      -store    =>  ARRAY(0x200f85a0)
  188.      -legible  =>  above data formatted as a list of string, for printing
  189.  }</PRE>
  190. <P>For array and hash Watch objects, the <STRONG>-value</STRONG> key is replaced with a
  191. <STRONG>-ptr</STRONG> key which is a reference to the parallel array or hash.
  192. Additionally, for an array or hash, there are key/value pairs for
  193. all the variable specific callbacks.</P>
  194. <P></P>
  195. <DT><STRONG><A NAME="item_Say">$watch->Say($val);</A></STRONG><BR>
  196. <DD>
  197. Used mainly for debugging, it returns $val in quotes if required, or
  198. the string ``undefined'' for undefined values.
  199. <P></P>
  200. <DT><STRONG><A NAME="item_Store">$watch->Store($new_val);  $watch->Store($key, $new_val);</A></STRONG><BR>
  201. <DD>
  202. Store a variable's new value.  $key is required for an array or hash.
  203. <P></P>
  204. <DT><STRONG><A NAME="item_Unwatch">$watch->Unwatch();</A></STRONG><BR>
  205. <DD>
  206. Stop watching the variable.
  207. <P></P></DL>
  208. <P>
  209. <HR>
  210. <H1><A NAME="efficiency considerations">EFFICIENCY CONSIDERATIONS</A></H1>
  211. <P>If you can live using the class methods provided, please do so.  You
  212. can meddle with the object hash directly and improved watch
  213. performance, at the risk of your code breaking in the future.</P>
  214. <P>
  215. <HR>
  216. <H1><A NAME="author">AUTHOR</A></H1>
  217. <P><A HREF="mailto:Stephen.O.Lidie@Lehigh.EDU">Stephen.O.Lidie@Lehigh.EDU</A></P>
  218. <P>
  219. <HR>
  220. <H1><A NAME="history">HISTORY</A></H1>
  221. <PRE>
  222.  lusol@Lehigh.EDU, LUCC, 96/05/30
  223.  . Original version 0.92 release, based on the Trace module from Hans Mulder,
  224.    and ideas from Tim Bunce.</PRE>
  225. <PRE>
  226.  lusol@Lehigh.EDU, LUCC, 96/12/25
  227.  . Version 0.96, release two inner references detected by Perl 5.004.</PRE>
  228. <PRE>
  229.  lusol@Lehigh.EDU, LUCC, 97/01/11
  230.  . Version 0.97, fix Makefile.PL and MANIFEST (thanks Andreas Koenig).
  231.    Make sure test.pl doesn't fail if Tk isn't installed.</PRE>
  232. <PRE>
  233.  Stephen.O.Lidie@Lehigh.EDU, Lehigh University Computing Center, 97/10/03
  234.  . Version 0.98, implement -shadow option for arrays and hashes.</PRE>
  235. <PRE>
  236.  Stephen.O.Lidie@Lehigh.EDU, Lehigh University Computing Center, 98/02/11
  237.  . Version 0.99, finally, with Perl 5.004_57, we can completely watch arrays.
  238.    With tied array support this module is essentially complete, so its been
  239.    optimized for speed at the expense of clarity - sorry about that. The
  240.    Delete() method has been renamed Unwatch() because it conflicts with the
  241.    builtin delete().</PRE>
  242. <PRE>
  243.  Stephen.O.Lidie@Lehigh.EDU, Lehigh University Computing Center, 99/04/04
  244.  . Version 1.0, for Perl 5.005_03, update Makefile.PL for ActiveState, and
  245.    add two examples (one for Perl/Tk).</PRE>
  246. <P>
  247. <HR>
  248. <H1><A NAME="copyright">COPYRIGHT</A></H1>
  249. <P>Copyright (C) 1996 - 1999 Stephen O. Lidie. All rights reserved.</P>
  250. <P>This program is free software; you can redistribute it and/or modify it under
  251. the same terms as Perl itself.</P>
  252. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  253. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  254. <STRONG><P CLASS=block> Tie::Watch - place watchpoints on Perl variables.</P></STRONG>
  255. </TD></TR>
  256. </TABLE>
  257.  
  258. </BODY>
  259.  
  260. </HTML>
  261.