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

通讯编程

开发平台:

Visual C++

  1. #
  2. # example of adding nam traces separately without using namtrace-all
  3. #
  4. # $Header: /cvsroot/nsnam/ns-2/tcl/ex/nam-separate-trace.tcl,v 1.6 1999/09/10 22:08:42 haoboy Exp $
  5. #
  6. # updated to use -multicast on by Lloyd Wood
  7. if [string match {*.tcl} $argv0] {
  8. set prog [string range $argv0 0 [expr [string length $argv0] - 5]]
  9. } else {
  10. set prog $argv0
  11. }
  12. if {[llength $argv] > 0} {
  13. set srmSimType [lindex $argv 0]
  14. } else {
  15. set srmSimType Adaptive
  16. }
  17. #source ../mcast/srm-nam.tcl ;# to separate control messages.
  18. #source ../mcast/srm-debug.tcl ;# to trace delay compute fcn. details.
  19. ns-random 1
  20. set ns [new Simulator -multicast on]
  21. #$ns trace-all [open out.tr w]
  22. # Instead of namtrace-all, we use namtrace-config to write config informations
  23. # such as node/link/color and annotations. Note that if you add traces for 
  24. # other objects later, their trace file name should be the same as this one,
  25. # otherwise there will not be config informations in those trace files.
  26. set mytrace [open out.nam w]
  27. $ns namtrace-config $mytrace
  28. set srmStats [open srm-stats.tr w]
  29. # define color index
  30. $ns color 0 red
  31. $ns color 1 blue
  32. $ns color 2 chocolate
  33. $ns color 3 red
  34. $ns color 4 brown
  35. $ns color 5 tan
  36. $ns color 6 gold
  37. $ns color 7 black
  38. # create node with given shape and color
  39. set n(0) [$ns node]
  40. $n(0) color "black" 
  41. $n(0) shape "circle"
  42. set n(1) [$ns node]
  43. $n(1) color "blue" 
  44. $n(1) shape "circle"
  45. set n(2) [$ns node]
  46. $n(2) shape "circle" 
  47. $n(2) color "chocolate"
  48. set n(3) [$ns node]
  49. $n(3) shape "circle" 
  50. $n(3) color "gold"
  51. set n(4) [$ns node]
  52. $n(4) shape "circle" 
  53. $n(4) color "tan"
  54. set n(5) [$ns node]
  55. $n(5) shape "circle" 
  56. $n(5) color "red"
  57. # create links and layout
  58. $ns duplex-link $n(0) $n(1) 1.5Mb 10ms DropTail
  59. $ns duplex-link-op $n(0) $n(1) orient right
  60. $ns duplex-link $n(1) $n(2) 1.5Mb 10ms DropTail
  61. $ns duplex-link-op $n(1) $n(2) orient right
  62. $ns duplex-link $n(2) $n(3) 1.5Mb 10ms DropTail
  63. $ns duplex-link-op $n(2) $n(3) orient right
  64. $ns duplex-link $n(3) $n(4) 1.5Mb 10ms DropTail
  65. $ns duplex-link-op $n(3) $n(4) orient right-up
  66. $ns duplex-link $n(3) $n(5) 1.5Mb 10ms DropTail
  67. $ns duplex-link-op $n(3) $n(5) 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. $ns namtrace-queue $n(0) $n(1) $mytrace
  71. $ns namtrace-queue $n(1) $n(0) $mytrace
  72. # set routing
  73. set group [Node allocaddr]
  74. #XXX do *NOT* use DM here, it won't work with rtmodel!
  75. #set mh [$ns mrtproto DM {}]
  76. #$ns at 0.0 "$ns run-mcast"
  77. set cmc [$ns mrtproto CtrMcast {}]
  78. $ns at 0.3 "$cmc switch-treetype $group"
  79. # set group members
  80. set fid  0
  81. for {set i 0} {$i <= 5} {incr i} {
  82. set srm($i) [new Agent/SRM/$srmSimType]
  83. $srm($i) set dst_addr_ $group
  84. $srm($i) set dst_port_ 0
  85. $srm($i) set fid_ [incr fid]
  86. $srm($i) trace $srmStats
  87. $ns at 1.0 "$srm($i) start"
  88. $ns attach-agent $n($i) $srm($i)
  89. # Without namtrace-all, you need to explicitly add trace file name
  90. $ns add-agent-trace $srm($i) srm($i) $mytrace
  91. $ns monitor-agent-trace $srm($i) ;# turn nam monitor on from the start
  92. $srm($i) tracevar C1_
  93. $srm($i) tracevar C2_
  94. }
  95. # set traffic source
  96. set packetSize 800
  97. set s [new Application/Traffic/CBR]
  98. $s set packetSize_ $packetSize
  99. $s set interval_ 0.02
  100. $s attach-agent $srm(0)
  101. $srm(0) set tg_ $s
  102. $srm(0) set app_fid_ 0
  103. $srm(0) set packetSize_ $packetSize
  104. $ns at 3.5 "$srm(0) start-source"
  105. $ns at 3.5 "$n(0) color red"
  106. $ns at 3.5 "$ns trace-annotate "node 0 changed color""
  107. # add/remove node marks (concentric circles around nodes)
  108. $ns at 4.0 "$n(0) add-mark m1 blue circle"
  109. $ns at 4.0 "$ns trace-annotate "node 0 added one mark""
  110. $ns at 4.5 "$n(0) add-mark m2 purple hexagon"
  111. $ns at 4.5 "$ns trace-annotate "node 0 added second mark""
  112. $ns at 5.0 "$n(0) delete-mark m1"
  113. $ns at 5.0 "$ns trace-annotate "node 0 deleted one mark""
  114. $ns at 5.5 "$n(0) delete-mark m2"
  115. $ns at 5.5 "$ns trace-annotate "node 0 deleted second mark""
  116. $ns at 3.7 "$n(0) color cyan"
  117. $ns at 3.7 "$ns trace-annotate "node 0 changed color again""
  118. $ns at 10.0 "$ns trace-annotate "simu finished""
  119. $ns at 10.0 "finish"
  120. # Fake a dropped packet by incrementing seqno.
  121. #
  122. # XXX 
  123. # To make dynamics tracing work, you must add nam trace file yourself.
  124. set rtm [$ns rtmodel Deterministic {2.61 0.98 0.02} $n(0) $n(1)]
  125. $rtm trace $ns $mytrace "nam"
  126. proc finish {} {
  127.     global s srm
  128.     $s stop
  129.     global ns srmStats
  130.     $ns flush-trace ;# NB>  Did not really close out.tr...:-)
  131.     close $srmStats
  132.     global argv0
  133.     if [string match {*.tcl} $argv0] {
  134. set prog [string range $argv0 0 [expr [string length $argv0] - 5]]
  135.     } else {
  136. set prog $argv0
  137.     }
  138.     for {set i 0} {$i <= 5} {incr i} {
  139.     $ns delete-agent-trace $srm($i)
  140.     }
  141.     puts "running nam..."
  142.     exec nam -f dynamic-nam.conf out.nam &
  143.     exit 0
  144. }
  145. $ns at 0.0 "$ns set-animation-rate 0.1ms"
  146. $ns run