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

通讯编程

开发平台:

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:49 $
  19. #
  20. # @(#) $Header: /cvsroot/nsnam/ns-2/tcl/ex/srm-session.tcl,v 1.5 2000/02/18 10:41:49 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. source ../mcast/srm-nam.tcl ;# to separate control messages.
  28. #source ../mcast/srm-debug.tcl ;# to trace delay compute fcn. details.
  29. set ns [new SessionSim]
  30. # make the nodes
  31. for {set i 0} {$i <= 3} {incr i} {
  32. set n($i) [$ns node]
  33. }
  34. # now the links
  35. for {set i 1} {$i <= 3} {incr i} {
  36. $ns duplex-link $n($i) $n(0) 1.5Mb 10ms DropTail
  37. }
  38. set group [Node allocaddr]
  39. # now the multicast, and the agents
  40. set srmStats [open srmStatsSes.tr w]
  41. set srmEvents [open srmEventsSes.tr w]
  42. set fid 0
  43. foreach i [array names n] {
  44. set srm($i) [new Agent/SRM]
  45. $srm($i) set dst_addr_ $group
  46. $srm($i) set dst_port_ 0
  47. $srm($i) set fid_ [incr fid]
  48. $srm($i) log $srmStats
  49. $srm($i) trace $srmEvents
  50. $ns attach-agent $n($i) $srm($i)
  51.         $ns create-session $n($i) $srm($i) ;# add this line to add session helpers
  52. }
  53. # Attach a data source to srm(0)
  54. set packetSize 210
  55. set exp0 [new Application/Traffic/Exponential]
  56. $exp0 set packetSize_ $packetSize
  57. $exp0 set burst_time_ 500ms
  58. $exp0 set idle_time_ 500ms
  59. $exp0 set rate_ 100k
  60. $exp0 attach-agent $srm(0)
  61. $srm(0) set tg_ $exp0
  62. $srm(0) set app_fid_ 0
  63. $srm(0) set packetSize_ $packetSize ;# so repairs are correct
  64. $ns at 0.5 "$srm(0) start; $srm(0) start-source"
  65. $ns at 1.0 "$srm(1) start"
  66. $ns at 1.1 "$srm(2) start"
  67. $ns at 1.2 "$srm(3) start"
  68. proc distDump interval {
  69. global ns srm
  70. foreach i [array names srm] {
  71. set dist [$srm($i) distances?]
  72. if {$dist != ""} {
  73. puts "[format %7.4f [$ns now]] distances $dist"
  74. }
  75. }
  76. $ns at [expr [$ns now] + $interval] "distDump $interval"
  77. }
  78. $ns at 0.0 "distDump 1"
  79. proc finish src {
  80. $src stop
  81. global prog ns srmStats srmEvents
  82. $ns flush-trace
  83. close $srmStats
  84. close $srmEvents
  85. exit 0
  86. }
  87. $ns at 5.0 "finish $exp0"
  88. #$ns gen-map
  89. $ns run