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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1996
  4. #
  5. #      File:           @(#)csnameserv.tcl    /main/titanic/8
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)csnameserv.tcl    /main/titanic/8   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 CSNameServerNode : {CSServerNode} {
  17.     constructor
  18.     method destructor
  19.     method childObjects
  20.     method createChild
  21.     method changeableParameters
  22.     method logRegistrations
  23.     method shutdown
  24.     method doUpdate
  25. }
  26.  
  27. constructor CSNameServerNode {class this name i_server} {
  28.     set this [CSServerNode::constructor $class $this $name $i_server]
  29.     # Start constructor user section
  30.  
  31.         $this label [$i_server name]
  32.         $this icon rep_namesrv_16
  33.         $this activeIcon rep_namesrv_16
  34.  
  35.         $this canLogRegistrations 1
  36.  
  37.     # End constructor user section
  38.     return $this
  39. }
  40.  
  41. method CSNameServerNode::destructor {this} {
  42.     # Start destructor user section
  43.     # End destructor user section
  44.     $this CSServerNode::destructor
  45. }
  46.  
  47. method CSNameServerNode::childObjects {this} {
  48.     set server [$this server]
  49.     return [osort pid -integer [$server clients]]
  50. }
  51.  
  52. method CSNameServerNode::createChild {this object} {
  53.     return [CSClientNode new $this.[$this childName $object] $object]
  54. }
  55.  
  56. method CSNameServerNode::changeableParameters {this} {
  57.     return [list orb_timeout]
  58. }
  59.  
  60. method CSNameServerNode::logRegistrations {this} {
  61.     [ORB::nameServer] logRegistrations 255
  62.  
  63.     set brokerHost [[$this server] host]
  64.     set dlg [$this view].showlogdlg-$brokerHost
  65.     if [isCommand $dlg] {
  66.         $dlg refresh
  67.     }
  68. }
  69.  
  70. method CSNameServerNode::shutdown {this {confirm 1}} {
  71.     if $confirm {
  72.         $this confirmShutdown "Nameserver" \
  73.             "Are you sure you want to shutdown the nameserver?" \
  74.             shutdownNameServer
  75.         return
  76.     }
  77.  
  78.     $this CSServerNode::shutdown $confirm
  79. }
  80.  
  81. method CSNameServerNode::doUpdate {this {rebuild 1}} {
  82.     $this CSServerNode::doUpdate $rebuild
  83. }
  84.  
  85. # Do not delete this line -- regeneration end marker
  86.  
  87.