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

通讯编程

开发平台:

Visual C++

  1. #
  2. # Copyright (C) 1997 by USC/ISI
  3. # All rights reserved.                                            
  4. #                                                                
  5. # Redistribution and use in source and binary forms are permitted
  6. # provided that the above copyright notice and this paragraph are
  7. # duplicated in all such forms and that any documentation, advertising
  8. # materials, and other materials related to such distribution and use
  9. # acknowledge that the software was developed by the University of
  10. # Southern California, Information Sciences Institute.  The name of the
  11. # University may not be used to endorse or promote products derived from
  12. # this software without specific prior written permission.
  13. # THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
  14. # WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
  15. # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  16. #
  17. # Maintainer: Kannan Varadhan <kannan@isi.edu>
  18. # Version Date: $Date: 2000/02/18 10:41:50 $
  19. #
  20. # @(#) $Header: /cvsroot/nsnam/ns-2/tcl/ex/srm.tcl,v 1.9 2000/02/18 10:41:50 polly Exp $ (USC/ISI)
  21. #
  22. # updated to use -multicast on and allocaddr by Lloyd Wood
  23. if [string match {*.tcl} $argv0] {
  24. set prog [string range $argv0 0 [expr [string length $argv0] - 5]]
  25. } else {
  26. set prog $argv0
  27. }
  28. source ../mcast/srm-nam.tcl ;# to separate control messages.
  29. #source ../mcast/srm-debug.tcl ;# to trace delay compute fcn. details.
  30. set ns [new Simulator -multicast on]
  31. $ns trace-all [open out.tr w]
  32. $ns namtrace-all [open out.nam w]
  33. $ns color 0 white ;# data source
  34. $ns color 40 blue ;# session
  35. $ns color 41 red ;# request
  36. $ns color 42 green ;# repair
  37. $ns color 1 Khaki ;# source node
  38. $ns color 2 goldenrod
  39. $ns color 3 sienna
  40. $ns color 4 HotPink
  41. $ns color 5 maroon
  42. $ns color 6 orchid
  43. $ns color 7 purple
  44. $ns color 8 snow4
  45. $ns color 9 PeachPuff1
  46. # make the nodes
  47. for {set i 0} {$i <= 3} {incr i} {
  48. set n($i) [$ns node]
  49. }
  50. $n(0) shape "other"
  51. # now the links
  52. for {set i 1} {$i <= 3} {incr i} {
  53. $ns duplex-link $n($i) $n(0) 1.5Mb 10ms DropTail
  54. }
  55. $ns duplex-link-op $n(0) $n(1) orient left
  56. $ns duplex-link-op $n(0) $n(2) orient right-up
  57. $ns duplex-link-op $n(0) $n(3) orient right-down
  58. set group [Node allocaddr]
  59. set mh [$ns mrtproto DM {}]
  60. #$ns at 0.3 "$mh switch-treetype $group" ;# for centralised multicast
  61. # now the multicast, and the agents
  62. set srmStats [open srmStats.tr w]
  63. set srmEvents [open srmEvents.tr w]
  64. set fid 0
  65. foreach i [array names n] {
  66. set srm($i) [new Agent/SRM]
  67. $srm($i) set dst_addr_ $group
  68. $srm($i) set dst_port_ 0
  69. $srm($i) set fid_ [incr fid]
  70. $srm($i) log $srmStats
  71. $srm($i) trace $srmEvents
  72. # $ns at 1.0 "$srm($i) start"
  73. $ns attach-agent $n($i) $srm($i)
  74. }
  75. # Attach a data source to srm(0)
  76. set packetSize 210
  77. set exp0 [new Application/Traffic/Exponential]
  78. $exp0 set packetSize_ $packetSize
  79. $exp0 set burst_time_ 500ms
  80. $exp0 set idle_time_ 500ms
  81. $exp0 set rate_ 100k
  82. $exp0 attach-agent $srm(0)
  83. $srm(0) set tg_ $exp0
  84. $srm(0) set app_fid_ 0
  85. $srm(0) set packetSize_ $packetSize ;# so repairs are correct
  86. $ns at 0.5 "$srm(0) start; $srm(0) start-source"
  87. $ns at 1.0 "$srm(1) start"
  88. $ns at 1.1 "$srm(2) start"
  89. $ns at 1.2 "$srm(3) start"
  90. proc distDump interval {
  91. global ns srm
  92. foreach i [array names srm] {
  93. set dist [$srm($i) distances?]
  94. if {$dist != ""} {
  95. puts "[format %7.4f [$ns now]] distances $dist"
  96. }
  97. }
  98. $ns at [expr [$ns now] + $interval] "distDump $interval"
  99. }
  100. $ns at 0.0 "distDump 1"
  101. proc finish src {
  102. $src stop
  103. global prog ns srmStats srmEvents
  104. $ns flush-trace
  105. close $srmStats
  106. close $srmEvents
  107. puts "running nam..."
  108. exec nam out.nam &
  109. exit 0
  110. }
  111. $ns at 5.0 "finish $exp0"
  112. #$ns gen-map
  113. $ns run