srm-chain-session.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/09 03:29:48 $
  19. #
  20. # @(#) $Header: /cvsroot/nsnam/ns-2/tcl/ex/srm-chain-session.tcl,v 1.6 1999/09/09 03:29:48 salehi 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 Deterministic
  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 SessionSim]
  35. $ns trace-all [open out.tr w]
  36. # make the nodes
  37. set nmax 5
  38. for {set i 0} {$i <= $nmax} {incr i} {
  39.     set n($i) [$ns node]
  40. }
  41. # now the links
  42. set chainMax [expr $nmax - 1]
  43. set j 0
  44. for {set i 1} {$i <= $chainMax} {incr i} {
  45.     $ns duplex-link $n($i) $n($j) 1.5Mb 10ms DropTail
  46.     set j $i
  47. }
  48. $ns duplex-link $n([expr $nmax - 2]) $n($nmax) 1.5Mb 10ms DropTail
  49. #$ns queue-limit $n(0) $n(1) 2 ;# q-limit is 1 more than max #packets in q.
  50. #$ns queue-limit $n(1) $n(0) 2
  51. set group [Node allocaddr]
  52. # now the multicast, and the agents
  53. set srmStats [open srmStatsSes.tr w]
  54. set srmEvents [open srmEventsSes.tr w]
  55. #$ns rtmodel-at 3.519 down $n(0) $n(1) ;# this ought to drop exactly one
  56. #$ns rtmodel-at 3.521 up   $n(0) $n(1) ;# data packet?
  57. set loss_module [new SRMErrorModel]
  58. $loss_module drop-packet 2 10 1
  59. $loss_module drop-target [$ns set nullAgent_]
  60. $ns insert-loss $loss_module 0 1
  61. set fid 0
  62. for {set i 0} {$i <= 5} {incr i} {
  63.     set srm($i) [new Agent/SRM/$srmSimType]
  64.     $srm($i) set dst_addr_ $group
  65.     $srm($i) set dst_port_ 0
  66.     $srm($i) set fid_ [incr fid]
  67.     $srm($i) trace $srmEvents
  68.     $srm($i) log $srmStats
  69.     $ns at 1.0 "$srm($i) start"
  70.     $ns attach-agent $n($i) $srm($i)
  71.     set sessionhelper($i) [$ns create-session $n($i) $srm($i)]
  72. }
  73. # Attach a data source to srm(1)
  74. set packetSize 800
  75. set s [new Application/Traffic/CBR]
  76. $s set packetSize_ $packetSize
  77. $s set interval_ 0.04
  78. $s attach-agent $srm(0)
  79. $srm(0) set tg_ $s
  80. $srm(0) set app_fid_ 0
  81. $srm(0) set packetSize_ $packetSize
  82. $ns at 3.5 "$srm(0) start-source"
  83. proc distDump {} {
  84.     global srm
  85.     foreach i [array names srm] {
  86. puts "distances [$srm($i) distances?]"
  87.     }
  88.     puts "---"
  89. }
  90. $ns at 3.3 "distDump"
  91. proc finish src {
  92.     $src stop
  93.     global prog ns srmStats srmEvents srm
  94.     $ns flush-trace ;# NB>  Did not really close out.tr...:-)
  95.     close $srmStats
  96.     close $srmEvents
  97.     set avg_info [open ses-avg-info w]
  98.     puts $avg_info "avg:trep-delaytreq-delaytrep-dupttreq-dup"
  99.     foreach index [lsort -integer [array name srm]] {
  100. set tmplist [$srm($index) array get stats_]
  101. 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]]"
  102.     }
  103.     flush $avg_info
  104.     close $avg_info
  105.     exit 0
  106. }
  107. $ns at 4.0 "finish $s"
  108. $ns run