srm-star.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-star.tcl,v 1.12 2000/02/18 10:41:50 polly Exp $ (USC/ISI)
  21. #
  22. if [string match {*.tcl} $argv0] {
  23.     set prog [string range $argv0 0 [expr [string length $argv0] - 5]]
  24. } else {
  25.     set prog $argv0
  26. }
  27. if {[llength $argv] > 0} {
  28.     set srmSimType [lindex $argv 0]
  29. } else {
  30.     set srmSimType Probabilistic
  31. }
  32. source ../mcast/srm-nam.tcl ;# to separate control messages.
  33. #source ../mcast/srm-debug.tcl ;# to trace delay compute fcn. details.
  34. set ns [new Simulator -multicast on]
  35. $ns trace-all [open out.tr w]
  36. $ns namtrace-all [open out.nam w]
  37. # make the nodes
  38. set nmax 8
  39. for {set i 0} {$i <= $nmax} {incr i} {
  40.     set n($i) [$ns node]
  41. }
  42. # now the links
  43. for {set i 1} {$i <= $nmax} {incr i} {
  44.     $ns duplex-link $n($i) $n(0) 1.5Mb 10ms DropTail
  45. }
  46. set group [Node allocaddr]
  47. set cmc [$ns mrtproto CtrMcast {}]
  48. $ns at 0.3 "$cmc switch-treetype $group"
  49. # now the multicast, and the agents
  50. set srmStats [open srmStats.tr w]
  51. set srmEvents [open srmEvents.tr w]
  52. set fid 0
  53. for {set i 1} {$i <= $nmax} {incr i} {
  54.     set srm($i) [new Agent/SRM/$srmSimType]
  55.     $srm($i) set dst_addr_ $group
  56.     $srm($i) set dst_port_ 0
  57.     $srm($i) set fid_ [incr fid]
  58.     $srm($i) log $srmStats
  59.     $srm($i) trace $srmEvents
  60.     $ns at 1.0 "$srm($i) start"
  61.     $ns attach-agent $n($i) $srm($i)
  62. }
  63. # Attach a data source to srm(1)
  64. set packetSize 800
  65. set s [new Application/Traffic/CBR]
  66. $s set packetSize_ $packetSize
  67. $s set interval_ 0.02
  68. $s attach-agent $srm(1)
  69. $srm(1) set tg_ $s
  70. $srm(1) set app_fid_ 0
  71. $srm(1) set packetSize_ $packetSize
  72. $ns at 3.5 "$srm(1) start-source"
  73. #$ns rtmodel-at 3.519 down $n(0) $n(1) ;# this ought to drop exactly one
  74. #$ns rtmodel-at 3.521 up   $n(0) $n(1) ;# data packet?
  75. set loss_module [new SRMErrorModel]
  76. $loss_module drop-packet 2 10 1
  77. $loss_module drop-target [$ns set nullAgent_]
  78. $ns at 1.25 "$ns lossmodel $loss_module $n(1) $n(0)"
  79. $ns at 4.0 "finish $s"
  80. proc distDump interval {
  81.     global ns srm
  82.     foreach i [array names srm] {
  83. set dist [$srm($i) distances?]
  84. if {$dist != ""} {
  85.     puts "[format %7.4f [$ns now]] distances $dist"
  86. }
  87.     }
  88.     $ns at [expr [$ns now] + $interval] "distDump $interval"
  89. }
  90. #$ns at 0.0 "distDump 1"
  91. proc finish src {
  92.     global prog ns env srmStats srmEvents srm nmax
  93.     
  94.     $src stop
  95.     $ns flush-trace ;# NB>  Did not really close out.tr...:-)
  96.     close $srmStats
  97.     close $srmEvents
  98.     set avg_info [open srm-avg-info w]
  99.     puts $avg_info "avg:trep-delaytreq-delaytrep-dupttreq-dup"
  100.     foreach index [lsort -integer [array name srm]] {
  101. set tmplist [$srm($index) array get stats_]
  102. 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]]"
  103.     }
  104.     flush $avg_info
  105.     close $avg_info
  106.     #puts "converting output to nam format..."
  107.     #exec awk -f ../nam-demo/nstonam.awk out.tr > $prog-nam.tr 
  108.     if [info exists env(DISPLAY)] {
  109. puts "running nam..."
  110. exec nam out.nam &
  111.     } else {
  112. exec cat srmStats.tr >@stdout
  113.     }
  114.     exit 0
  115. }
  116. $ns run