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

通讯编程

开发平台:

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-adapt-req.tcl,v 1.10 1999/09/10 22:08:46 haoboy Exp $ (USC/ISI)
  21. #
  22. # updated to use -multicast on and Node allocaddr by Lloyd Wood
  23. #
  24. # simple 8 node star topology, runs for 50s, tests Adaptive timers.
  25. #
  26. if [string match {*.tcl} $argv0] {
  27.     set prog [string range $argv0 0 [expr [string length $argv0] - 5]]
  28. } else {
  29.     set prog $argv0
  30. }
  31. if {[llength $argv] > 0} {
  32.     set srmSimType [lindex $argv 0]
  33. } else {
  34.     set srmSimType Adaptive
  35. }
  36. source ../mcast/srm-nam.tcl ;# to separate control messages.
  37. #source ../mcast/srm-debug.tcl ;# to trace delay compute fcn. details.
  38. set ns [new Simulator -multicast on]
  39. $ns trace-all [open out.tr w]
  40. $ns namtrace-all [open out.nam w]
  41. $ns color 0 white ;# data packets
  42. $ns color 40 blue ;# session
  43. $ns color 41 red ;# request
  44. $ns color 42 green ;# repair
  45. $ns color 1 Khaki ;# source node
  46. $ns color 2 goldenrod
  47. $ns color 3 sienna
  48. $ns color 4 HotPink
  49. $ns color 5 maroon
  50. $ns color 6 orchid
  51. $ns color 7 purple
  52. $ns color 8 snow4
  53. $ns color 9 PeachPuff1
  54. # make the nodes
  55. set nmax 8
  56. for {set i 0} {$i <= $nmax} {incr i} {
  57.     set n($i) [$ns node]
  58. }
  59. $n(0) shape "other"
  60. $n(1) shape "box"
  61. # now the links
  62. for {set i 1} {$i <= $nmax} {incr i} {
  63.     $ns duplex-link $n($i) $n(0) 1.5Mb 10ms DropTail
  64. }
  65. $ns duplex-link-op $n(1) $n(0) orient right
  66. $ns duplex-link-op $n(2) $n(0) orient right-down
  67. $ns duplex-link-op $n(3) $n(0) orient up
  68. $ns duplex-link-op $n(4) $n(0) orient left-down
  69. $ns duplex-link-op $n(5) $n(0) orient left
  70. $ns duplex-link-op $n(6) $n(0) orient left-up
  71. $ns duplex-link-op $n(7) $n(0) orient down
  72. $ns duplex-link-op $n(8) $n(0) orient right-up
  73. $ns duplex-link-op $n(0) $n(1) queuePos 0
  74. # configure multicast
  75. set group [Node allocaddr]
  76. set cmc [$ns mrtproto CtrMcast {}]
  77. $ns at 0.3 "$cmc switch-treetype $group"
  78. # now the agents
  79. set srmStats [open srmStats.tr w]
  80. set srmEvents [open srmEvents.tr w]
  81. set fid 0
  82. for {set i 1} {$i <= $nmax} {incr i} {
  83.     set srm($i) [new Agent/SRM/$srmSimType]
  84.     $srm($i) set dst_addr_ $group
  85.     $srm($i) set dst_port_ 0
  86.     $srm($i) set fid_ [incr fid]
  87.     $srm($i) log $srmStats
  88.     $srm($i) trace $srmEvents
  89.     $ns at 1.0 "$srm($i) start"
  90.     $ns attach-agent $n($i) $srm($i)
  91. }
  92. #$srm(4) set C1_ 0.5
  93. #$srm(4) set C2_ 1.0
  94. # And, finally, attach a data source to srm(1)
  95. set packetSize 800
  96. set s [new Application/Traffic/CBR]
  97. $s set packetSize_ $packetSize
  98. $s set interval_ 0.02
  99. $s attach-agent $srm(1)
  100. $srm(1) set tg_ $s
  101. $srm(1) set app_fid_ 0
  102. $srm(1) set packetSize_ $packetSize
  103. $ns at 3.5 "$srm(1) start-source"
  104. # Drop a packet every 0.5 secs. starting at 3.52s.
  105. # Drops packets from the source so all receivers see the loss.
  106. #$ns rtmodel Deterministic {3.021 0.498 0.002} $n(0) $n(1)
  107. set loss_module [new SRMErrorModel]
  108. $loss_module drop-packet 2 200 1
  109. $loss_module drop-target [$ns set nullAgent_]
  110. $ns lossmodel $loss_module $n(1) $n(0)
  111. $ns at 150 "finish $s"
  112. proc finish src {
  113.     $src stop
  114.     global ns srmStats srmEvents srm 
  115.     $ns flush-trace ;# NB>  Did not really close out.tr...:-)
  116.     close $srmStats
  117.     close $srmEvents
  118.     set avg_info [open srm-avg-info w]
  119.     puts $avg_info "avg:trep-delaytreq-delaytrep-dupttreq-dup"
  120.     foreach index [lsort -integer [array name srm]] {
  121. set tmplist [$srm($index) array get stats_]
  122. 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]]"
  123.     }
  124.     flush $avg_info
  125.     close $avg_info
  126.     exit 0
  127. }
  128. set ave [open ave.tr w]
  129. proc doDump {now i tag} {
  130.     global srm ave
  131.     puts $ave [list $now $i
  132.     [$srm($i) set stats_(ave-dup-${tag})]
  133.     [$srm($i) set stats_(ave-${tag}-delay)]]
  134. }
  135. proc dumparams intvl {
  136.     global ns nmax
  137.     set now [$ns now]
  138.     doDump $now 1 rep
  139.     for {set i 2} { $i <= $nmax} {incr i} {
  140. doDump $now $i req
  141.     }
  142.     $ns at [expr $now + $intvl] "dumparams $intvl"
  143. }
  144. $ns at 4.0 "dumparams 0.5"
  145. $ns run