home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / cslockserv.tcl < prev    next >
Text File  |  1997-11-05  |  2KB  |  72 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1996
  4. #
  5. #      File:           @(#)cslockserv.tcl    /main/titanic/7
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)cslockserv.tcl    /main/titanic/7   5 Nov 1997 Copyright 1996 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "csserverno.tcl"
  15.  
  16. Class CSLockServerNode : {CSServerNode} {
  17.     constructor
  18.     method destructor
  19.     method childObjects
  20.     method createChild
  21.     method shutdown
  22.     method doUpdate
  23. }
  24.  
  25. constructor CSLockServerNode {class this name i_server} {
  26.     set this [CSServerNode::constructor $class $this $name $i_server]
  27.     # Start constructor user section
  28.  
  29.         $this label [$i_server name]
  30.         $this icon rep_locksrv_16
  31.         $this activeIcon rep_locksrv_16
  32.  
  33.     # End constructor user section
  34.     return $this
  35. }
  36.  
  37. method CSLockServerNode::destructor {this} {
  38.     # Start destructor user section
  39.     # End destructor user section
  40.     $this CSServerNode::destructor
  41. }
  42.  
  43. method CSLockServerNode::childObjects {this} {
  44.     set server [$this server]
  45.     return [osort pid -integer [$server clients]]
  46. }
  47.  
  48. method CSLockServerNode::createChild {this object} {
  49.     return [CSClientNode new $this.[$this childName $object] $object]
  50. }
  51.  
  52. method CSLockServerNode::shutdown {this {confirm 1}} {
  53.     if $confirm {
  54.         $this confirmShutdown "Lockserver" \
  55.             "Are you sure you want to shutdown the lockserver?" \
  56.             shutdownLockServer
  57.         return
  58.     }
  59.  
  60.     $this CSServerNode::shutdown $confirm
  61. }
  62.  
  63. method CSLockServerNode::doUpdate {this {rebuild 1}} {
  64.     $this CSServerNode::doUpdate $rebuild
  65.  
  66.     set lockServer [$this server]
  67.     $lockServer disconnect
  68. }
  69.  
  70. # Do not delete this line -- regeneration end marker
  71.  
  72.