srm-chain.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: 1999/09/10 22:08:46 $
  19. #
  20. # @(#) $Header: /cvsroot/nsnam/ns-2/tcl/ex/srm-chain.tcl,v 1.11 1999/09/10 22:08:46 haoboy Exp $ (USC/ISI)
  21. #
  22. # updated to use -multicast on and allocaddr by Lloyd Wood
  23. #
  24. if [string match {*.tcl} $argv0] {
  25.     set prog [string range $argv0 0 [expr [string length $argv0] - 5]]
  26. } else {
  27.     set prog $argv0
  28. }
  29. if {[llength $argv] > 0} {
  30.     set srmSimType [lindex $argv 0]
  31. } else {
  32.     set srmSimType Deterministic
  33. }
  34. source ../mcast/srm-nam.tcl ;# to separate control messages.
  35. #source ../mcast/srm-debug.tcl ;# to trace delay compute fcn. details.
  36. set ns [new Simulator -multicast on]
  37. $ns trace-all [open out.tr w]
  38. $ns namtrace-all [open out.nam w]
  39. $ns color 0 white ;# data source
  40. $ns color 40 blue ;# session
  41. $ns color 41 red ;# request
  42. $ns color 42 green ;# repair
  43. $ns color 1 Khaki ;# source node
  44. $ns color 2 goldenrod
  45. $ns color 3 sienna
  46. $ns color 4 HotPink
  47. $ns color 5 maroon
  48. $ns color 6 orchid
  49. $ns color 7 purple
  50. $ns color 8 snow4
  51. $ns color 9 PeachPuff1
  52. # make the nodes
  53. set nmax 5
  54. for {set i 0} {$i <= $nmax} {incr i} {
  55.     set n($i) [$ns node]
  56. }
  57. # now the links
  58. set chainMax [expr $nmax - 1]
  59. set j 0
  60. for {set i 1} {$i <= $chainMax} {incr i} {
  61.     $ns duplex-link $n($i) $n($j) 1.5Mb 10ms DropTail
  62.     $ns duplex-link-op $n($j) $n($i) orient right
  63.     set j $i
  64. }
  65. $ns duplex-link $n([expr $nmax - 2]) $n($nmax) 1.5Mb 10ms DropTail
  66. $ns duplex-link-op $n([expr $nmax - 2]) $n($nmax) orient right-up
  67. $ns duplex-link-op $n([expr $nmax - 2]) $n([expr $nmax-1]) orient right-down
  68. $ns queue-limit $n(0) $n(1) 2 ;# q-limit is 1 more than max #packets in q.
  69. $ns queue-limit $n(1) $n(0) 2
  70. set group [Node allocaddr]
  71. set mh [$ns mrtproto CtrMcast {}]
  72. $ns at 0.3 "$mh switch-treetype $group"
  73. # now the multicast, and the agents
  74. set srmStats [open srmStats.tr w]
  75. set srmEvents [open srmEvents.tr w]
  76. set fid 0
  77. for {set i 0} {$i <= 5} {incr i} {
  78.     set srm($i) [new Agent/SRM/$srmSimType]
  79.     $srm($i) set dst_addr_ $group
  80.     $srm($i) set dst_port_ 0
  81.     $srm($i) set fid_ [incr fid]
  82.     $srm($i) trace $srmEvents
  83.     $srm($i) log $srmStats
  84.     $ns at 1.0 "$srm($i) start"
  85.     $ns attach-agent $n($i) $srm($i)
  86. }
  87. # Attach a data source to srm(1)
  88. set packetSize 800
  89. set s [new Application/Traffic/CBR]
  90. $s set packetSize_ $packetSize
  91. $s set interval_ 0.04
  92. $s attach-agent $srm(0)
  93. $srm(0) set tg_ $s
  94. $srm(0) set app_fid_ 0
  95. $srm(0) set packetSize_ $packetSize
  96. $ns at 3.5 "$srm(0) start-source"
  97. #$ns rtmodel-at 3.519 down $n(0) $n(1) ;# this ought to drop exactly one
  98. #$ns rtmodel-at 3.521 up   $n(0) $n(1) ;# data packet?
  99. set loss_module [new SRMErrorModel]
  100. $loss_module drop-packet 2 10 1
  101. $loss_module drop-target [$ns set nullAgent_]
  102. $ns at 1.25 "$ns lossmodel $loss_module $n(0) $n(1)"
  103. proc distDump {} {
  104.     global srm
  105.     foreach i [array names srm] {
  106. puts "distances [$srm($i) distances?]"
  107.     }
  108.     puts "---"
  109. }
  110. $ns at 3.3 "distDump"
  111. proc finish src {
  112.     $src stop
  113.     global prog ns srmStats srmEvents srm nmax
  114.     $ns flush-trace ;# NB>  Did not really close out.tr...:-)
  115.     close $srmStats
  116.     close $srmEvents
  117.     set avg_info [open srm-avg-info w]
  118.     puts $avg_info "avg:trep-delaytreq-delaytrep-dupttreq-dup"
  119.     foreach index [lsort -integer [array name srm]] {
  120. set tmplist [$srm($index) array get stats_]
  121. puts $avg_info "$indext[format %7.4f [lindex $tmplist 1]]tt[format %7.4f [lindex $tmplist 5]]tt[format %7.4f [lindex $tmplist 9]]tt[format %7.4f [lindex $tmplist 13]]"
  122.     }
  123.     flush $avg_info
  124.     close $avg_info
  125.     puts "running nam..."
  126.     exec nam out.nam &
  127.     exit 0
  128. }
  129. $ns at 4.0 "finish $s"
  130. $ns run