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

通讯编程

开发平台:

Visual C++

  1. #
  2. # Copyright (c) @ Regents of the University of California.
  3. # All rights reserved.
  4. # Redistribution and use in source and binary forms, with or without
  5. # modification, are permitted provided that the following conditions
  6. # are met:
  7. # 1. Redistributions of source code must retain the above copyright
  8. #    notice, this list of conditions and the following disclaimer.
  9. # 2. Redistributions in binary form must reproduce the above copyright
  10. #    notice, this list of conditions and the following disclaimer in the
  11. #    documentation and/or other materials provided with the distribution.
  12. # 3. All advertising materials mentioning features or use of this software
  13. #    must display the following acknowledgement:
  14. #  This product includes software developed by the MASH Research
  15. #  Group at the University of California Berkeley.
  16. # 4. Neither the name of the University nor of the Research Group may be
  17. #    used to endorse or promote products derived from this software without
  18. #    specific prior written permission.
  19. # THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  20. # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  21. # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  22. # ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  23. # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  24. # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  25. # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  26. # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  27. # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  28. # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  29. # SUCH DAMAGE.
  30. #
  31. # @(#) $Header: /cvsroot/nsnam/ns-2/tcl/ex/scuba/noscuba-equal/demo.tcl,v 1.1 1997/06/14 00:16:02 elan Exp $
  32. #
  33. set tcldir ../../../
  34. source $tcldir/rtp/session-scuba.tcl
  35. source $tcldir/rtp/session-rtp.tcl
  36. proc trace_annotate { s } {
  37. global ns
  38. set f [$ns set traceAllFile_]
  39. puts $f [format "v %s %s {set sim_annotation {%s}}" [$ns now] eval $s]
  40. }
  41. set ns [new MultiSim]
  42. for { set i 0 } { $i < 8 } { incr i } {
  43. set node($i) [$ns node]
  44. }
  45. set f [open out.tr w]
  46. $ns trace-all $f
  47. Queue set limit_ 10
  48. proc makelinks { bw delay pairs } {
  49. global ns node
  50. foreach p $pairs {
  51. set src $node([lindex $p 0])
  52. set dst $node([lindex $p 1])
  53. $ns duplex-link $src $dst $bw $delay DropTail
  54. }
  55. }
  56. makelinks 1.5Mb 10ms {
  57. { 0 3 }
  58. { 1 3 }
  59. { 2 3 }
  60. { 4 7 }
  61. { 5 7 }
  62. { 6 7 }
  63. }
  64. makelinks 400kb 50ms {
  65. { 3 7 }
  66. }
  67. for { set i 0 } { $i < 8 } { incr i } {
  68. set dm($i) [new DM $ns $node($i)]
  69. }
  70. $ns at 0.0 "$ns run-mcast"
  71. set sessbw 400kb/s
  72. foreach n { 0 1 2 4 5 6 } {
  73. set sess($n) [new Session/RTP]
  74. $sess($n) session_bw $sessbw
  75. $sess($n) attach-node $node($n)
  76. }
  77. $ns at 1.0 {
  78. global sess
  79. foreach n { 0 1 2 4 5 6 } {
  80. $sess($n) join-group 0x8000
  81. }
  82. }
  83. foreach n { 0 1 2 } {
  84. set d [$sess($n) set dchan_]
  85. $d set class_ [expr $n]
  86. }
  87. $ns at 1.0 "trace_annotate {Starting receivers...}"
  88. # start receivers
  89. $ns at 1.0 {
  90. global sess
  91. $sess(4) start
  92. $sess(5) start
  93. $sess(6) start
  94. }
  95. # start senders
  96. $ns at 1.0 "trace_annotate {Starting sender 1 at 130kb/s...}"
  97. $ns at 1.0 "$sess(0) start"
  98. $ns at 1.0 "$sess(0) transmit 130kb/s"
  99. $ns at 2.0 "trace_annotate {Starting sender 2 at 130kb/s...}"
  100. $ns at 2.0 "$sess(1) start"
  101. $ns at 2.0 "$sess(1) transmit 130kb/s
  102. "
  103. $ns at 3.0 "trace_annotate {Starting sender 3 at 130kb/s...}"
  104. $ns at 3.0 "$sess(2) start"
  105. $ns at 3.0 "$sess(2) transmit 130kb/s"
  106. $ns at 5.0 "finish"
  107. proc finish {} {
  108. global tcldir
  109. puts "converting output to nam format..."
  110.         global ns
  111.         $ns flush-trace
  112. exec awk -f $tcldir/nam-demo/nstonam.awk out.tr > demo-nam.tr
  113. exec rm -f out
  114.         #XXX
  115. puts "running nam..."
  116. exec /usr/local/src/nam/nam demo-nam &
  117.         exit 0
  118. }
  119. $ns run