home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 June / PCWorld_2005-06_cd.bin / software / vyzkuste / firewally / firewally.exe / framework-2.3.exe / scopedobject.itcl < prev    next >
Text File  |  2003-09-01  |  5KB  |  182 lines

  1. #
  2. # Scopedobject
  3. # -----------------------------------------------------------------------------
  4. # Implements a base class for defining Itcl classes which posses
  5. # scoped behavior like Tcl variables.  The objects are only accessible
  6. # within the procedure in which they are instantiated and are deleted
  7. # when the procedure returns.
  8. #
  9. # Option(s):
  10. #
  11. #   -enterscopecommand: Tcl command to invoke when a object enters scope
  12. #                       (i.e. when it is created ...).
  13. #
  14. #   -exitscopecommand: Tcl command to invoke when a object exits scope
  15. #                       (i.e. when it is deleted ...).
  16. #
  17. # Note(s):
  18. #
  19. # Although a Scopedobject instance will automatically destroy itself
  20. # when it goes out of scope, one may explicity delete an instance
  21. # before it destroys itself.
  22. #
  23. # Example(s):
  24. #
  25. #  Creating an instance at local scope in a procedure provides
  26. #  an opportunity for tracing the entry and exiting of that
  27. #  procedure.  Users can register their proc/method tracing handlers
  28. #  with the Scopedobject class via either of the following two ways:
  29. #
  30. #  1.) configure the "-exitscopecommand" on a Scopedobject instance;
  31. #      e.g.
  32. #      #!/usr/local/bin/wish
  33. #
  34. #      proc tracedProc {} {
  35. #        scopedobject #auto \
  36. #            -exitscopecommand {puts "enter tracedProc"} \
  37. #            -exitscopecommand {puts "exit tracedProc"}
  38. #      }
  39. #
  40. #  2.) deriving from the Scopedobject and implementing the exit handling
  41. #      in their derived classes destructor.
  42. #      e.g.
  43. #
  44. #      #!/usr/local/bin/wish
  45. #
  46. #      class Proctrace {
  47. #        inherit Scopedobject
  48. #
  49. #        proc procname {} {
  50. #          return [info level -1]
  51. #        }
  52. #
  53. #        constructor {args} {
  54. #          puts "enter [procname]"
  55. #          eval configure $args
  56. #        }
  57. #
  58. #        destructor {
  59. #          puts "exit [procname]"
  60. #        }
  61. #      }
  62. #
  63. #      proc tracedProc {} {
  64. #        Proctrace #auto
  65. #      }
  66. #
  67. # -----------------------------------------------------------------------------
  68. #   AUTHOR:  John Tucker
  69. #            DSC Communications Corp  
  70. # -----------------------------------------------------------------------------
  71.  
  72. itcl::class iwidgets::Scopedobject {
  73.  
  74.   #
  75.   # OPTIONS:
  76.   #
  77.   public {
  78.     variable enterscopecommand {}
  79.     variable exitscopecommand {}
  80.   }
  81.  
  82.   #
  83.   # PUBLIC:
  84.   #
  85.   constructor {args} {}
  86.   destructor {}
  87.  
  88.   #
  89.   # PRIVATE:
  90.   #
  91.   private {
  92.  
  93.     # Implements the Tcl trace command callback which is responsible
  94.     # for destroying a Scopedobject instance when its corresponding
  95.     # Tcl variable goes out of scope.
  96.     #
  97.     method _traceCommand {varName varValue op}
  98.  
  99.     # Stores the stack level of the invoking procedure in which
  100.     # a Scopedobject instance in created.
  101.     #
  102.     variable _level 0
  103.   }
  104. }
  105.  
  106. #
  107. # Provide a lowercased access method for the Scopedobject class.
  108. proc ::iwidgets::scopedobject {pathName args} {
  109.     uplevel ::iwidgets::Scopedobject $pathName $args
  110. }
  111.  
  112. #--------------------------------------------------------------------------------
  113. # CONSTRUCTOR
  114. #--------------------------------------------------------------------------------
  115. itcl::body iwidgets::Scopedobject::constructor {args} {
  116.  
  117.   # Create a local variable in the procedure which this instance was created,
  118.   # and then register out instance deletion command (i.e. _traceCommand)
  119.   # to be called whenever the local variable is unset.
  120.   #
  121.   # If this is a derived class, then we will need to perform the variable creation
  122.   # and tracing N levels up the stack frame, where:
  123.   #   N = depth of inheritance hierarchy.
  124.   #
  125.   set depth [llength [$this info heritage]]
  126.   set _level "#[uplevel $depth info level]"
  127.   uplevel $_level set _localVar($this) $this
  128.   uplevel $_level trace variable _localVar($this) u \"[itcl::code $this _traceCommand]\"
  129.  
  130.   eval configure $args
  131.  
  132.   if {$enterscopecommand != {}} {
  133.     eval $enterscopecommand
  134.   }
  135. }
  136.  
  137. #--------------------------------------------------------------------------------
  138. # DESTRUCTOR
  139. #--------------------------------------------------------------------------------
  140. itcl::body iwidgets::Scopedobject::destructor {} {
  141.  
  142.   uplevel $_level trace vdelete _localVar($this) u \"[itcl::code $this _traceCommand]\"
  143.  
  144.   if {$exitscopecommand != {}} {
  145.     eval $exitscopecommand
  146.   }
  147. }
  148.  
  149. #--------------------------------------------------------------------------------#
  150. #
  151. # METHOD: _traceCommand
  152. #
  153. # PURPOSE: 
  154. # Callback used to destroy instances when their locally created variable
  155. # goes out of scope.
  156. #
  157. itcl::body iwidgets::Scopedobject::_traceCommand {varName varValue op} {
  158.   delete object $this
  159. }
  160.  
  161. #------------------------------------------------------------------------------
  162. #
  163. # OPTION: -enterscopecommand
  164. #
  165. # PURPOSE:
  166. # Specifies a Tcl command to invoke when a object enters scope.
  167. #
  168. itcl::configbody iwidgets::Scopedobject::enterscopecommand {
  169. }
  170.  
  171. #------------------------------------------------------------------------------
  172. #
  173. # OPTION: -exitscopecommand
  174. #
  175. # PURPOSE:
  176. # Specifies a Tcl command to invoke when an object exits scope.
  177. #
  178. itcl::configbody iwidgets::Scopedobject::exitscopecommand {
  179. }
  180.  
  181.