ns-bsnode.tcl
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:4k
源码类别:

通讯编程

开发平台:

Visual C++

  1. # -*- Mode:tcl; tcl-indent-level:8; tab-width:8; indent-tabs-mode:t -*-
  2. #
  3. # Copyright (c) 1996-1998 Regents of the University of California.
  4. # All rights reserved.
  5. # Redistribution and use in source and binary forms, with or without
  6. # modification, are permitted provided that the following conditions
  7. # are met:
  8. # 1. Redistributions of source code must retain the above copyright
  9. #    notice, this list of conditions and the following disclaimer.
  10. # 2. Redistributions in binary form must reproduce the above copyright
  11. #    notice, this list of conditions and the following disclaimer in the
  12. #    documentation and/or other materials provided with the distribution.
  13. # 3. All advertising materials mentioning features or use of this software
  14. #    must display the following acknowledgement:
  15. #  This product includes software developed by the MASH Research
  16. #  Group at the University of California Berkeley.
  17. # 4. Neither the name of the University nor of the Research Group may be
  18. #    used to endorse or promote products derived from this software without
  19. #    specific prior written permission.
  20. # THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  21. # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  22. # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  23. # ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  24. # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  25. # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  26. # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  27. # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  28. # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  29. # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  30. # SUCH DAMAGE.
  31. #
  32. # $Header: /cvsroot/nsnam/ns-2/tcl/lib/ns-bsnode.tcl,v 1.8 2000/09/14 18:19:27 haoboy Exp $
  33. #
  34. #THE CODE INCLUDED IN THIS FILE IS USED FOR BACKWARD COMPATIBILITY ONLY
  35. #
  36. #
  37. # Special Base station nodes for communicating between wired and 
  38. # wireless topologies in ns. Base stations are a hybrid form between 
  39. # mobilenodes and hierarchical nodes. 
  40. #
  41. # XXX does otcl support multiple inheritence? then maybe could 
  42. # inheriting from hiernode and mobilenode.
  43. #
  44. #
  45. # The Node/MobileNode/BaseStationNode class
  46. #
  47. # ======================================================================
  48. Class Node/MobileNode/BaseStationNode -superclass Node/MobileNode
  49. Node/MobileNode/BaseStationNode instproc init args {
  50. $self next $args
  51. }
  52. Node/MobileNode/BaseStationNode instproc mk-default-classifier {} {
  53. $self instvar classifiers_ 
  54. set levels [AddrParams hlevel]
  55. for {set n 1} {$n <= $levels} {incr n} {
  56. set classifiers_($n) [new Classifier/Hash/Dest/Bcast 32]
  57. $classifiers_($n) set mask_ [AddrParams NodeMask $n]
  58. $classifiers_($n) set shift_ [AddrParams NodeShift $n]
  59. }
  60. }
  61. Node/MobileNode/BaseStationNode instproc entry {} {
  62. #XXX although mcast is not supported with wireless networking currently
  63. $self instvar ns_
  64. if ![info exist ns_] {
  65. set ns_ [Simulator instance]
  66. }
  67. if [$ns_ multicast?] { 
  68. $self instvar switch_
  69. return $switch_
  70. }
  71. $self instvar classifiers_
  72. return $classifiers_(1)
  73. }
  74. Node/MobileNode/BaseStationNode instproc add-target {agent port } {
  75. $self instvar dmux_ classifiers_
  76. $agent set sport_ $port
  77. set level [AddrParams hlevel]
  78. if { $port == [Node set rtagent_port_] } {
  79. if { [Simulator set RouterTrace_] == "ON" } {
  80. #
  81. # Send Target
  82. #
  83. set sndT [cmu-trace Send "RTR" $self]
  84. $sndT target [$self set ll_(0)]
  85. $agent target $sndT
  86. #
  87. # Recv Target
  88. #
  89. set rcvT [cmu-trace Recv "RTR" $self]
  90. $rcvT target $agent
  91. for {set i 1} {$i <= $level} {incr i} {
  92. $classifiers_($i) defaulttarget $rcvT
  93. $classifiers_($i) bcast-receiver $rcvT
  94. }
  95. $dmux_ install $port $rcvT
  96. } else {
  97. $agent target [$self set ll_(0)]
  98. for {set i 1} {$i <= $level} {incr i} {
  99. $classifiers_($i) bcast-receiver $agent
  100. $classifiers_($i) defaulttarget $agent
  101. }
  102. $dmux_ install $port $agent
  103. }
  104. } else {
  105. if { [Simulator set AgentTrace_] == "ON" } {
  106. #
  107. # Send Target
  108. #
  109. set sndT [cmu-trace Send AGT $self]
  110. $sndT target [$self entry]
  111. $agent target $sndT
  112. #
  113. # Recv Target
  114. #
  115. set rcvT [cmu-trace Recv AGT $self]
  116. $rcvT target $agent
  117. $dmux_ install $port $rcvT
  118. } else {
  119. $agent target [$self entry]
  120. $dmux_ install $port $agent
  121. }
  122. }
  123. }