.\" -*- mode: troff; coding: utf-8 -*- .\" Automatically generated by Pod::Man 5.01 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" \*(C` and \*(C' are quotes in nroff, nothing in troff, for use with C<>. .ie n \{\ . ds C` "" . ds C' "" 'br\} .el\{\ . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "Tie::Watch 3" .TH Tie::Watch 3 2023-07-25 Tk804.036 "perl/Tk Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH NAME .Vb 1 \& Tie::Watch \- place watchpoints on Perl variables. .Ve .SH SYNOPSIS .IX Header "SYNOPSIS" .Vb 1 \& use Tie::Watch; \& \& $watch = Tie::Watch\->new( \& \-variable => \e$frog, \& \-debug => 1, \& \-shadow => 0, \& \-fetch => [\e&fetch, \*(Aqarg1\*(Aq, \*(Aqarg2\*(Aq, ..., \*(Aqargn\*(Aq], \& \-store => \e&store, \& \-destroy => sub {print "Final value=$frog.\en"}, \& } \& %vinfo = $watch\->Info; \& $args = $watch\->Args(\-fetch); \& $val = $watch\->Fetch; \& print "val=", $watch\->Say($val), ".\en"; \& $watch\->Store(\*(AqHello\*(Aq); \& $watch\->Unwatch; .Ve .SH DESCRIPTION .IX Header "DESCRIPTION" This class module binds one or more subroutines of your devising to a Perl variable. All variables can have \fBFETCH\fR, \fBSTORE\fR and \&\fBDESTROY\fR callbacks. Additionally, arrays can define \fBCLEAR\fR, \&\fBDELETE\fR, \fBEXISTS\fR, \fBEXTEND\fR, \fBFETCHSIZE\fR, \fBPOP\fR, \fBPUSH\fR, \&\fBSHIFT\fR, \fBSPLICE\fR, \fBSTORESIZE\fR and \fBUNSHIFT\fR callbacks, and hashes can define \fBCLEAR\fR, \fBDELETE\fR, \fBEXISTS\fR, \fBFIRSTKEY\fR and \fBNEXTKEY\fR callbacks. If these term are unfamiliar to you, I \fIreally\fR suggest you read perltie. .PP With Tie::Watch you can: .PP .Vb 4 \& . alter a variable\*(Aqs value \& . prevent a variable\*(Aqs value from being changed \& . invoke a Perl/Tk callback when a variable changes \& . trace references to a variable .Ve .PP Callback format is patterned after the Perl/Tk scheme: supply either a code reference, or, supply an array reference and pass the callback code reference in the first element of the array, followed by callback arguments. (See examples in the Synopsis, above.) .PP Tie::Watch provides default callbacks for any that you fail to specify. Other than negatively impacting performance, they perform the standard action that you'd expect, so the variable behaves "normally". Once you override a default callback, perhaps to insert debug code like print statements, your callback normally finishes by calling the underlying (overridden) method. But you don't have to! .PP To map a tied method name to a default callback name simply lowercase the tied method name and uppercase its first character. So FETCH becomes Fetch, NEXTKEY becomes Nextkey, etcetera. .PP Here are two callbacks for a scalar. The \fBFETCH\fR (read) callback does nothing other than illustrate the fact that it returns the value to assign the variable. The \fBSTORE\fR (write) callback uppercases the variable and returns it. In all cases the callback \fImust\fR return the correct read or write value \- typically, it does this by invoking the underlying method. .PP .Vb 4 \& my $fetch_scalar = sub { \& my($self) = @_; \& $self\->Fetch; \& }; \& \& my $store_scalar = sub { \& my($self, $new_val) = @_; \& $self\->Store(uc $new_val); \& }; .Ve .PP Here are \fBFETCH\fR and \fBSTORE\fR callbacks for either an array or hash. They do essentially the same thing as the scalar callbacks, but provide a little more information. .PP .Vb 9 \& my $fetch = sub { \& my($self, $key) = @_; \& my $val = $self\->Fetch($key); \& print "In fetch callback, key=$key, val=", $self\->Say($val); \& my $args = $self\->Args(\-fetch); \& print ", args=(\*(Aq", join("\*(Aq, \*(Aq", @$args), "\*(Aq)" if $args; \& print ".\en"; \& $val; \& }; \& \& my $store = sub { \& my($self, $key, $new_val) = @_; \& my $val = $self\->Fetch($key); \& $new_val = uc $new_val; \& $self\->Store($key, $new_val); \& print "In store callback, key=$key, val=", $self\->Say($val), \& ", new_val=", $self\->Say($new_val); \& my $args = $self\->Args(\-store); \& print ", args=(\*(Aq", join("\*(Aq, \*(Aq", @$args), "\*(Aq)" if $args; \& print ".\en"; \& $new_val; \& }; .Ve .PP In all cases, the first parameter is a reference to the Watch object, used to invoke the following class methods. .SH METHODS .IX Header "METHODS" .ie n .IP "$watch = Tie::Watch\->new(\-options => values);" 4 .el .IP "\f(CW$watch\fR = Tie::Watch\->new(\-options => values);" 4 .IX Item "$watch = Tie::Watch->new(-options => values);" The watchpoint constructor method that accepts option/value pairs to create and configure the Watch object. The only required option is \&\fB\-variable\fR. .Sp \&\fB\-variable\fR is a \fIreference\fR to a scalar, array or hash variable. .Sp \&\fB\-debug\fR (default 0) is 1 to activate debug print statements internal to Tie::Watch. .Sp \&\fB\-shadow\fR (default 1) is 0 to disable array and hash shadowing. To prevent infinite recursion Tie::Watch maintains parallel variables for arrays and hashes. When the watchpoint is created the parallel shadow variable is initialized with the watched variable's contents, and when the watchpoint is deleted the shadow variable is copied to the original variable. Thus, changes made during the watch process are not lost. Shadowing is on my default. If you disable shadowing any changes made to an array or hash are lost when the watchpoint is deleted. .Sp Specify any of the following relevant callback parameters, in the format described above: \fB\-fetch\fR, \fB\-store\fR, \fB\-destroy\fR. Additionally for arrays: \fB\-clear\fR, \fB\-extend\fR, \fB\-fetchsize\fR, \&\fB\-pop\fR, \fB\-push\fR, \fB\-shift\fR, \fB\-splice\fR, \fB\-storesize\fR and \&\fB\-unshift\fR. Additionally for hashes: \fB\-clear\fR, \fB\-delete\fR, \&\fB\-exists\fR, \fB\-firstkey\fR and \fB\-nextkey\fR. .ie n .IP "$args = $watch\->Args(\-fetch);" 4 .el .IP "\f(CW$args\fR = \f(CW$watch\fR\->Args(\-fetch);" 4 .IX Item "$args = $watch->Args(-fetch);" Returns a reference to a list of arguments for the specified callback, or undefined if none. .ie n .IP "$watch\->\fBFetch()\fR; $watch\->Fetch($key);" 4 .el .IP "\f(CW$watch\fR\->\fBFetch()\fR; \f(CW$watch\fR\->Fetch($key);" 4 .IX Item "$watch->Fetch(); $watch->Fetch($key);" Returns a variable's current value. \f(CW$key\fR is required for an array or hash. .ie n .IP "%vinfo = $watch\->\fBInfo()\fR;" 4 .el .IP "\f(CW%vinfo\fR = \f(CW$watch\fR\->\fBInfo()\fR;" 4 .IX Item "%vinfo = $watch->Info();" Returns a hash detailing the internals of the Watch object, with these keys: .Sp .Vb 10 \& %vinfo = { \& \-variable => SCALAR(0x200737f8) \& \-debug => \*(Aq0\*(Aq \& \-shadow => \*(Aq1\*(Aq \& \-value => \*(AqHELLO SCALAR\*(Aq \& \-destroy => ARRAY(0x200f86cc) \& \-fetch => ARRAY(0x200f8558) \& \-store => ARRAY(0x200f85a0) \& \-legible => above data formatted as a list of string, for printing \& } .Ve .Sp For array and hash Watch objects, the \fB\-value\fR key is replaced with a \&\fB\-ptr\fR key which is a reference to the parallel array or hash. Additionally, for an array or hash, there are key/value pairs for all the variable specific callbacks. .ie n .IP $watch\->Say($val); 4 .el .IP \f(CW$watch\fR\->Say($val); 4 .IX Item "$watch->Say($val);" Used mainly for debugging, it returns \f(CW$val\fR in quotes if required, or the string "undefined" for undefined values. .ie n .IP "$watch\->Store($new_val); $watch\->Store($key, $new_val);" 4 .el .IP "\f(CW$watch\fR\->Store($new_val); \f(CW$watch\fR\->Store($key, \f(CW$new_val\fR);" 4 .IX Item "$watch->Store($new_val); $watch->Store($key, $new_val);" Store a variable's new value. \f(CW$key\fR is required for an array or hash. .ie n .IP $watch\->\fBUnwatch()\fR; 4 .el .IP \f(CW$watch\fR\->\fBUnwatch()\fR; 4 .IX Item "$watch->Unwatch();" Stop watching the variable. .SH "EFFICIENCY CONSIDERATIONS" .IX Header "EFFICIENCY CONSIDERATIONS" If you can live using the class methods provided, please do so. You can meddle with the object hash directly and improved watch performance, at the risk of your code breaking in the future. .SH AUTHOR .IX Header "AUTHOR" Stephen O. Lidie .SH HISTORY .IX Header "HISTORY" .Vb 3 \& lusol@Lehigh.EDU, LUCC, 96/05/30 \& . Original version 0.92 release, based on the Trace module from Hans Mulder, \& and ideas from Tim Bunce. \& \& lusol@Lehigh.EDU, LUCC, 96/12/25 \& . Version 0.96, release two inner references detected by Perl 5.004. \& \& lusol@Lehigh.EDU, LUCC, 97/01/11 \& . Version 0.97, fix Makefile.PL and MANIFEST (thanks Andreas Koenig). \& Make sure test.pl doesn\*(Aqt fail if Tk isn\*(Aqt installed. \& \& Stephen.O.Lidie@Lehigh.EDU, Lehigh University Computing Center, 97/10/03 \& . Version 0.98, implement \-shadow option for arrays and hashes. \& \& Stephen.O.Lidie@Lehigh.EDU, Lehigh University Computing Center, 98/02/11 \& . Version 0.99, finally, with Perl 5.004_57, we can completely watch arrays. \& With tied array support this module is essentially complete, so its been \& optimized for speed at the expense of clarity \- sorry about that. The \& Delete() method has been renamed Unwatch() because it conflicts with the \& builtin delete(). \& \& Stephen.O.Lidie@Lehigh.EDU, Lehigh University Computing Center, 99/04/04 \& . Version 1.0, for Perl 5.005_03, update Makefile.PL for ActiveState, and \& add two examples (one for Perl/Tk). \& \& sol0@lehigh.edu, Lehigh University Computing Center, 2003/06/07 \& . Version 1.1, for Perl 5.8, can trace a reference now, patch from Slaven \& Rezic. \& \& sol0@lehigh.edu, Lehigh University Computing Center, 2005/05/17 \& . Version 1.2, for Perl 5.8, per Rob Seegel\*(Aqs suggestion, support array \& DELETE and EXISTS. .Ve .SH COPYRIGHT .IX Header "COPYRIGHT" Copyright (C) 1996 \- 2005 Stephen O. Lidie. All rights reserved. .PP This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.