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

通讯编程

开发平台:

Visual C++

  1. #
  2. # Copyright (c) 1995-1997 The Regents of the University of California.
  3. # All rights reserved.
  4. #
  5. # Redistribution and use in source and binary forms, with or without
  6. # modification, are permitted provided that the following conditions
  7. # are met:
  8. # 1. Redistributions of source code must retain the above copyright
  9. #    notice, this list of conditions and the following disclaimer.
  10. # 2. Redistributions in binary form must reproduce the above copyright
  11. #    notice, this list of conditions and the following disclaimer in the
  12. #    documentation and/or other materials provided with the distribution.
  13. # 3. All advertising materials mentioning features or use of this software
  14. #    must display the following acknowledgement:
  15. # This product includes software developed by the Computer Systems
  16. # Engineering Group at Lawrence Berkeley Laboratory.
  17. # 4. Neither the name of the University nor of the Laboratory may be used
  18. #    to endorse or promote products derived from this software without
  19. #    specific prior written permission.
  20. #
  21. # THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  22. # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  23. # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  24. # ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  25. # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  26. # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  27. # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  28. # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  29. # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  30. # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  31. # SUCH DAMAGE.
  32. #
  33. # To run all tests: test-all-vq
  34. source misc_simple.tcl
  35. remove-all-packet-headers       ; # removes all except common
  36. add-packet-header Flags IP TCP  ; # hdrs reqd for validation test
  37.  
  38. # FOR UPDATING GLOBAL DEFAULTS:
  39. Agent/TCP set precisionReduce_ false ;   # default changed on 2006/1/24.
  40. Agent/TCP set rtxcur_init_ 6.0 ;      # Default changed on 2006/01/21
  41. Agent/TCP set updated_rttvar_ false ;  # Variable added on 2006/1/21
  42. Agent/TCP set minrto_ 1
  43. # default changed on 10/14/2004.
  44. Agent/TCP set tcpTick_ 0.1
  45. # The default for tcpTick_ is being changed to reflect a changing reality.
  46. Agent/TCP set rfc2988_ false
  47. # The default for rfc2988_ is being changed to true.
  48. Agent/TCP set singledup_ 0
  49. Agent/TCP set overhead_ 0.001
  50. Queue/Vq set buflim_ 0.25
  51. # The default is being changed to 1
  52. Queue/Vq set queue_in_bytes_ false
  53. Queue/Vq set gamma_ 0.895
  54. # The defaults for queue_in_bytes_ and gamma_ are being changed.
  55. set flowfile fairflow.tr; # file where flow data is written
  56. set flowgraphfile fairflow.xgr; # file given to graph tool 
  57. TestSuite instproc finish file {
  58. global quiet PERL
  59. $self instvar ns_ tchan_ testName_
  60.         exec $PERL ../../bin/getrc -s 2 -d 3 all.tr | 
  61.           $PERL ../../bin/raw2xg -a -s 0.01 -m 90 -t $file > temp.rands
  62. if {$quiet == "false"} {
  63.          exec xgraph -bb -tk -nl -m -x time -y packets temp.rands &
  64. }
  65.         ## now use default graphing tool to make a data file
  66.         ## if so desired
  67. if { [info exists tchan_] && $quiet == "false" } {
  68. $self plotQueue $testName_
  69. }
  70. $ns_ halt
  71. }
  72. TestSuite instproc enable_tracequeue ns {
  73. $self instvar tchan_ node_
  74. set vqq [[$ns link $node_(r1) $node_(r2)] queue]
  75. set tchan_ [open all.q w]
  76. $vqq trace curq_
  77. $vqq attach $tchan_
  78. }
  79. Class Topology
  80. Topology instproc node? num {
  81.     $self instvar node_
  82.     return $node_($num)
  83. }
  84. Class Topology/net2 -superclass Topology
  85. Topology/net2 instproc init ns {
  86.     $self instvar node_
  87.     set node_(s1) [$ns node]
  88.     set node_(s2) [$ns node]    
  89.     set node_(r1) [$ns node]    
  90.     set node_(r2) [$ns node]    
  91.     set node_(s3) [$ns node]    
  92.     set node_(s4) [$ns node]    
  93.     $self next 
  94.     $ns duplex-link $node_(s1) $node_(r1) 10Mb 2ms DropTail
  95.     $ns duplex-link $node_(s2) $node_(r1) 10Mb 3ms DropTail
  96.     $ns duplex-link $node_(r1) $node_(r2) 1.5Mb 20ms Vq
  97.     $ns queue-limit $node_(r1) $node_(r2) 25
  98.     $ns queue-limit $node_(r2) $node_(r1) 25
  99.     $ns duplex-link $node_(s3) $node_(r2) 10Mb 4ms DropTail
  100.     $ns duplex-link $node_(s4) $node_(r2) 10Mb 5ms DropTail
  101.  
  102.     $ns duplex-link-op $node_(s1) $node_(r1) orient right-down
  103.     $ns duplex-link-op $node_(s2) $node_(r1) orient right-up
  104.     $ns duplex-link-op $node_(r1) $node_(r2) orient right
  105.     $ns duplex-link-op $node_(r1) $node_(r2) queuePos 0
  106.     $ns duplex-link-op $node_(r2) $node_(r1) queuePos 0
  107.     $ns duplex-link-op $node_(s3) $node_(r2) orient left-down
  108.     $ns duplex-link-op $node_(s4) $node_(r2) orient left-up
  109. }   
  110. Class Topology/net3 -superclass Topology
  111. Topology/net3 instproc init ns {
  112.     $self instvar node_
  113.     set node_(s1) [$ns node]
  114.     set node_(s2) [$ns node]    
  115.     set node_(r1) [$ns node]    
  116.     set node_(r2) [$ns node]    
  117.     set node_(s3) [$ns node]    
  118.     set node_(s4) [$ns node]    
  119.     $self next 
  120.     $ns duplex-link $node_(s1) $node_(r1) 10Mb 0ms DropTail
  121.     $ns duplex-link $node_(s2) $node_(r1) 10Mb 1ms DropTail
  122.     $ns duplex-link $node_(r1) $node_(r2) 1.5Mb 10ms Vq
  123.     $ns duplex-link $node_(r2) $node_(r1) 1.5Mb 10ms Vq
  124.     $ns queue-limit $node_(r1) $node_(r2) 100
  125.     $ns queue-limit $node_(r2) $node_(r1) 100
  126.     $ns duplex-link $node_(s3) $node_(r2) 10Mb 2ms DropTail
  127.     $ns duplex-link $node_(s4) $node_(r2) 10Mb 3ms DropTail
  128.  
  129.     $ns duplex-link-op $node_(s1) $node_(r1) orient right-down
  130.     $ns duplex-link-op $node_(s2) $node_(r1) orient right-up
  131.     $ns duplex-link-op $node_(r1) $node_(r2) orient right
  132.     $ns duplex-link-op $node_(r1) $node_(r2) queuePos 0
  133.     $ns duplex-link-op $node_(r2) $node_(r1) queuePos 0
  134.     $ns duplex-link-op $node_(s3) $node_(r2) orient left-down
  135.     $ns duplex-link-op $node_(s4) $node_(r2) orient left-up
  136. }   
  137. TestSuite instproc plotQueue file {
  138. global quiet
  139. $self instvar tchan_
  140. #
  141. # Plot the queue size and average queue size, for Vq gateways.
  142. #
  143. set awkCode {
  144. {
  145. if ($1 == "Q" && NF>2) {
  146. print $2, $3 >> "temp.q";
  147. set end $2
  148. }
  149. }
  150. }
  151. set f [open temp.queue w]
  152. puts $f "TitleText: $file"
  153. puts $f "Device: Postscript"
  154. if { [info exists tchan_] } {
  155. close $tchan_
  156. }
  157. exec rm -f temp.q
  158. exec touch temp.q
  159. exec awk $awkCode all.q
  160. puts $f "queue
  161. exec cat temp.q >@ $f  
  162. close $f
  163. if {$quiet == "false"} {
  164. exec xgraph -bb -tk -x time -y queue temp.queue &
  165. }
  166. }
  167. TestSuite instproc tcpDumpAll { tcpSrc interval label } {
  168.     global quiet
  169.     $self instvar dump_inst_ ns_
  170.     if ![info exists dump_inst_($tcpSrc)] {
  171. set dump_inst_($tcpSrc) 1
  172. set report $label/window=[$tcpSrc set window_]/packetSize=[$tcpSrc set packetSize_]
  173. if {$quiet == "false"} {
  174. puts $report
  175. }
  176. $ns_ at 0.0 "$self tcpDumpAll $tcpSrc $interval $label"
  177. return
  178.     }
  179.     $ns_ at [expr [$ns_ now] + $interval] "$self tcpDumpAll $tcpSrc $interval $label"
  180.     set report time=[$ns_ now]/class=$label/ack=[$tcpSrc set ack_]/packets_resent=[$tcpSrc set nrexmitpack_]
  181.     if {$quiet == "false"} {
  182.      puts $report
  183.     }
  184. }       
  185. Class Test/vq1 -superclass TestSuite
  186. Test/vq1 instproc init {} {
  187.     $self instvar net_ test_
  188.     set net_ net2 
  189.     set test_ vq1
  190.     Queue/Vq set buflim_ 0.25
  191.     $self next pktTraceFile
  192. }
  193. Test/vq1 instproc run {} {
  194.     $self instvar ns_ node_ testName_ net_
  195.     $self setTopo
  196.     set vqq [[$ns_ link $node_(r1) $node_(r2)] queue]
  197.     $vqq set markpkts_ false 
  198.     $vqq set queue_in_bytes_ false 
  199.     set stoptime 10.0
  200.     $vqq set markpkts_ false 
  201.     $vqq set queue_in_bytes_ false 
  202.     set tcp1 [$ns_ create-connection TCP/Sack1 $node_(s1) TCPSink/Sack1 $node_(s3) 0]
  203.     $tcp1 set window_ 15
  204.     set tcp2 [$ns_ create-connection TCP/Sack1 $node_(s2) TCPSink/Sack1 $node_(s3) 1]
  205.     $tcp2 set window_ 15
  206.     set ftp1 [$tcp1 attach-app FTP]
  207.     set ftp2 [$tcp2 attach-app FTP]
  208.     $self enable_tracequeue $ns_
  209.     $ns_ at 0.0 "$ftp1 start"
  210.     $ns_ at 3.0 "$ftp2 start"
  211.     $self tcpDump $tcp1 5.0
  212.     # trace only the bottleneck link
  213.     #$self traceQueues $node_(r1) [$self openTrace $stoptime $testName_]
  214.     $ns_ at $stoptime "$self cleanupAll $testName_"
  215.     $ns_ run
  216. }
  217. Class Test/ecn -superclass TestSuite
  218. Test/ecn instproc init {} {
  219.     $self instvar net_ test_
  220.     Queue/Vq set setbit_ true
  221.     Agent/TCP set old_ecn_ 1
  222.     set net_ net2
  223.     set test_ ecn
  224.     $self next pktTraceFile
  225. }
  226. Test/ecn instproc run {} {
  227.     $self instvar ns_ node_ testName_
  228.     $self setTopo 
  229.     set stoptime 10.0
  230.     set vqq [[$ns_ link $node_(r1) $node_(r2)] queue]
  231.     $vqq set markpkts_ true 
  232.     $vqq set queue_in_bytes_ false 
  233.     set tcp1 [$ns_ create-connection TCP/Sack1 $node_(s1) TCPSink/Sack1 $node_(s3) 0]
  234.     $tcp1 set window_ 15
  235.     $tcp1 set ecn_ 1
  236.     set tcp2 [$ns_ create-connection TCP/Sack1 $node_(s2) TCPSink/Sack1 $node_(s3) 1]
  237.     $tcp2 set window_ 15
  238.     $tcp2 set ecn_ 1
  239.         
  240.     set ftp1 [$tcp1 attach-app FTP]
  241.     set ftp2 [$tcp2 attach-app FTP]
  242.         
  243.     $self enable_tracequeue $ns_
  244.     $ns_ at 0.0 "$ftp1 start"
  245.     $ns_ at 3.0 "$ftp2 start"
  246.         
  247.     $self tcpDump $tcp1 5.0
  248.         
  249.     # trace only the bottleneck link
  250.     #$self traceQueues $node_(r1) [$self openTrace $stoptime $testName_]
  251.     $ns_ at $stoptime "$self cleanupAll $testName_"
  252.         
  253.     $ns_ run
  254. }
  255. Class Test/vq2 -superclass TestSuite
  256. Test/vq2 instproc init {} {
  257.     $self instvar net_ test_
  258.     set net_ net3
  259.     set test_ vq2
  260.     $self next pktTraceFile
  261. }
  262. Test/vq2 instproc run {} {
  263.     $self instvar ns_ node_ testName_
  264.     $self setTopo
  265.     set stoptime 10.0
  266.     set vqq [[$ns_ link $node_(r1) $node_(r2)] queue]
  267.     $vqq set markpkts_ false 
  268.     $vqq set queue_in_bytes_ false 
  269.     set tcp1 [$ns_ create-connection TCP/Sack1 $node_(s1) TCPSink/Sack1 $node_(s3) 0]
  270.     $tcp1 set window_ 100 
  271.     set tcp2 [$ns_ create-connection TCP/Sack1 $node_(s2) TCPSink/Sack1 $node_(s3) 1]
  272.     $tcp2 set window_ 100
  273.     set ftp1 [$tcp1 attach-app FTP]
  274.     set ftp2 [$tcp2 attach-app FTP]
  275.     $self enable_tracequeue $ns_
  276.     $ns_ at 0.0 "$ftp1 start"
  277.     $ns_ at 3.0 "$ftp2 start"
  278.     $self tcpDump $tcp1 5.0
  279.     
  280.     # trace only the bottleneck link
  281.     #$self traceQueues $node_(r1) [$self openTrace $stoptime $testName_]
  282.     $ns_ at $stoptime "$self cleanupAll $testName_"
  283.     $ns_ run
  284. }
  285. # The queue is measured in "packets".
  286. Class Test/vq_twoway -superclass TestSuite
  287. Test/vq_twoway instproc init {} {
  288.     $self instvar net_ test_
  289.     set net_ net3
  290.     set test_ vq_twoway
  291.     $self next pktTraceFile
  292. }
  293. Test/vq_twoway instproc run {} {
  294.     $self instvar ns_ node_ testName_
  295.     $self setTopo
  296.     set stoptime 10.0
  297.     set vqq [[$ns_ link $node_(r1) $node_(r2)] queue]
  298.     $vqq set markpkts_ false 
  299.     $vqq set queue_in_bytes_ false 
  300.     set tcp1 [$ns_ create-connection TCP/Sack1 $node_(s1) TCPSink/Sack1 $node_(s3) 0]
  301.     $tcp1 set window_ 100 
  302.     set tcp2 [$ns_ create-connection TCP/Sack1 $node_(s2) TCPSink/Sack1 $node_(s4) 1]
  303.     $tcp2 set window_ 100 
  304.     set ftp1 [$tcp1 attach-app FTP]
  305.     set ftp2 [$tcp2 attach-app FTP]
  306.     set tcp3 [$ns_ create-connection TCP/Sack1 $node_(s3) TCPSink/Sack1 $node_(s1) 2]
  307.     $tcp3 set window_ 100 
  308.     set tcp4 [$ns_ create-connection TCP/Sack1 $node_(s4) TCPSink/Sack1 $node_(s2) 3]
  309.     $tcp4 set window_ 100 
  310.     set ftp3 [$tcp3 attach-app FTP]
  311.     set telnet1 [$tcp4 attach-app Telnet] ; $telnet1 set interval_ 0
  312.     $self enable_tracequeue $ns_
  313.     $ns_ at 0.0 "$ftp1 start"
  314.     $ns_ at 2.0 "$ftp2 start"
  315.     $ns_ at 3.5 "$ftp3 start"
  316.     $ns_ at 1.0 "$telnet1 start"
  317.     $self tcpDump $tcp1 5.0
  318.     # trace only the bottleneck link
  319.     #$self traceQueues $node_(r1) [$self openTrace $stoptime $testName_]
  320.     $ns_ at $stoptime "$self cleanupAll $testName_"
  321.     $ns_ run
  322. }
  323. # The queue is measured in "bytes".
  324. Class Test/vq_twowaybytes -superclass TestSuite
  325. Test/vq_twowaybytes instproc init {} {
  326.     $self instvar net_ test_
  327.     set net_ net2
  328.     set test_ vq_twowaybytes
  329.     $self next pktTraceFile
  330. }
  331. Test/vq_twowaybytes instproc run {} {
  332.     $self instvar ns_ node_ testName_
  333.     $self setTopo
  334.     set stoptime 10.0
  335.     set vqq [[$ns_ link $node_(r1) $node_(r2)] queue]
  336.     $vqq set markpkts_ false 
  337.     $vqq set queue_in_bytes_ false 
  338.     set tcp1 [$ns_ create-connection TCP/Sack1 $node_(s1) TCPSink/Sack1 $node_(s3) 0]
  339.     $tcp1 set window_ 15
  340.     set tcp2 [$ns_ create-connection TCP/Sack1 $node_(s2) TCPSink/Sack1 $node_(s4) 1]
  341.     $tcp2 set window_ 15
  342.     set ftp1 [$tcp1 attach-app FTP]
  343.     set ftp2 [$tcp2 attach-app FTP]
  344.     set tcp3 [$ns_ create-connection TCP/Sack1 $node_(s3) TCPSink/Sack1 $node_(s1) 2]
  345.     $tcp3 set window_ 15
  346.     set tcp4 [$ns_ create-connection TCP/Sack1 $node_(s4) TCPSink/Sack1 $node_(s2) 3]
  347.     $tcp4 set window_ 15
  348.     set ftp3 [$tcp3 attach-app FTP]
  349.     set telnet1 [$tcp4 attach-app Telnet] ; $telnet1 set interval_ 0
  350.     $self enable_tracequeue $ns_
  351.     $ns_ at 0.0 "$ftp1 start"
  352.     $ns_ at 2.0 "$ftp2 start"
  353.     $ns_ at 3.5 "$ftp3 start"
  354.     $ns_ at 1.0 "$telnet1 start"
  355.     $self tcpDump $tcp1 5.0
  356.     # trace only the bottleneck link
  357.     #$self traceQueues $node_(r1) [$self openTrace $stoptime $testName_]
  358.     $ns_ at $stoptime "$self cleanupAll $testName_"
  359.     $ns_ run
  360. }
  361. #
  362. #######################################################################
  363. TestSuite instproc create_flowstats {} {
  364. global flowfile flowchan
  365. $self instvar ns_ node_ r1fm_
  366. set r1fm_ [$ns_ makeflowmon Fid]
  367. set flowchan [open $flowfile w]
  368. $r1fm_ attach $flowchan
  369. $ns_ attach-fmon [$ns_ link $node_(r1) $node_(r2)] $r1fm_ 1
  370. }
  371. #
  372. # awk code used to produce:
  373. #       x axis: # arrivals for this flow+category / # total arrivals [bytes]
  374. #       y axis: # drops for this flow+category / # drops this category [pkts]
  375. # (verified compatible for ns2 - kfall, 10/30/97)
  376. TestSuite instproc unforcedmakeawk { } {
  377.         set awkCode {
  378.             {
  379.                 if ($2 != prev) {
  380.                         print " "; print ""flow " $2;
  381. if ($13 > 0 && $14 > 0) {
  382.     print 100.0 * $9/$13, 100.0 * $10 / $14
  383. }
  384. prev = $2;
  385.                 } else if ($13 > 0 && $14 > 0) {
  386.                         print 100.0 * $9 / $13, 100.0 * $10 / $14
  387. }
  388.             }
  389.         }
  390.         return $awkCode
  391. }
  392. #
  393. # awk code used to produce:
  394. #       x axis: # arrivals for this flow+category / # total arrivals [bytes]
  395. #       y axis: # drops for this flow+category / # drops this category [bytes]
  396. # (modified for compatibility with ns2 flowmon - kfall, 10/30/97)
  397. TestSuite instproc forcedmakeawk { } {
  398.         set awkCode {
  399.             BEGIN { print ""flow 0" }
  400.             {
  401.                 if ($2 != prev) {
  402.                         print " "; print ""flow " $2;
  403. if ($13 > 0 && ($17 - $15) > 0) {
  404. print 100.0 * $9/$13, 100.0 * ($19 - $11) / ($17 - $15);
  405. }
  406. prev = $2;
  407.                 } else if ($13 > 0 && ($17 - $15) > 0) {
  408.                         print 100.0 * $9 / $13, 100.0 * ($19 - $11) / ($17 - $15)
  409. }
  410.             }
  411.         }
  412.         return $awkCode
  413. }
  414. #
  415. # awk code used to produce:
  416. #      x axis: # arrivals for this flow+category / # total arrivals [bytes]
  417. #      y axis: # drops for this flow / # drops [pkts and bytes combined]
  418. TestSuite instproc allmakeawk { } {
  419.     set awkCode {
  420.         BEGIN {prev=-1; tot_bytes=0; tot_packets=0; forced_total=0; unforced_total=0}
  421.         {
  422.             if ($5 != prev) {
  423.                 print " "; print ""flow ",$5;
  424.                 prev = $5
  425.             }
  426.             tot_bytes = $19-$11;
  427.             forced_total= $16-$14;
  428.             tot_packets = $10;
  429.             tot_arrivals = $9;
  430.             unforced_total = $14;
  431.             if (unforced_total + forced_total > 0) {
  432.                 if ($14 > 0) {
  433.                     frac_packets = tot_packets/$14;
  434.                 }
  435.                 else { frac_packets = 0;}
  436.                 if ($17-$15 > 0) {
  437.                     frac_bytes = tot_bytes/($17-$15);
  438.                 }
  439.                 else {frac_bytes = 0;} 
  440.                 if ($13 > 0) {
  441.                     frac_arrivals = tot_arrivals/$13;
  442.                 }
  443.                 else {frac_arrivals = 0;}
  444.                 if (frac_packets + frac_bytes > 0) {
  445.                     unforced_total_part = frac_packets * unforced_total / ( unforced_total + forced_total)
  446.                     forced_total_part = frac_bytes * forced_total / ( unforced_total + forced_total)
  447.                     print 100.0 * frac_arrivals, 100.0 * ( unforced_total_part +forced_total_part)
  448.                 }
  449.             }
  450.         }
  451.     }
  452.     return $awkCode
  453. }
  454. TestSuite instproc create_flow_graph { graphtitle graphfile } {
  455.         global flowfile quiet
  456. $self instvar awkprocedure_
  457.         if {$quiet == "false"} {
  458. puts "awkprocedure: $awkprocedure_"
  459. }
  460.         set tmpfile1 /tmp/fg1[pid]
  461.         set tmpfile2 /tmp/fg2[pid]
  462.         exec rm -f $graphfile
  463.         set outdesc [open $graphfile w]
  464.         #
  465.         # this next part is xgraph specific
  466.         #
  467.         puts $outdesc "TitleText: $graphtitle"
  468.         puts $outdesc "Device: Postscript"
  469.         exec rm -f $tmpfile1 $tmpfile2
  470. if {$quiet == "false"} {
  471.          puts "writing flow xgraph data to $graphfile..."
  472. }
  473.         exec sort -n -k2 -o $flowfile $flowfile
  474.         exec awk [$self $awkprocedure_] $flowfile >@ $outdesc
  475.         close $outdesc
  476. }
  477. TestSuite instproc finish_flows testname {
  478. global flowgraphfile flowfile flowchan quiet
  479. $self instvar r1fm_
  480. $r1fm_ dump
  481. close $flowchan
  482. $self create_flow_graph $testname $flowgraphfile
  483. if {$quiet == "false"} {
  484. puts "running xgraph..."
  485. }
  486. exec cp $flowgraphfile temp.rands
  487. if {$quiet == "false"} {
  488. exec xgraph -bb -tk -nl -m -lx 0,100 -ly 0,100 -x "% of data bytes" -y "% of discards" $flowgraphfile &
  489. }
  490. exit 0
  491. }
  492. TestSuite instproc new_tcp { startTime source dest window fid verbose size } {
  493. $self instvar ns_
  494. set tcp [$ns_ create-connection TCP/Sack1 $source TCPSink/Sack1 $dest $fid]
  495. $tcp set window_ $window
  496. if {$size > 0}  {$tcp set packetSize_ $size }
  497. set ftp [$tcp attach-app FTP]
  498. $ns_ at $startTime "$ftp start"
  499. if {$verbose == "1"} {
  500.   $self tcpDumpAll $tcp 20.0 $fid 
  501. }
  502. }
  503. TestSuite instproc new_cbr { startTime source dest pktSize interval fid } {
  504. $self instvar ns_
  505.     set s_agent [new Agent/UDP]
  506.     set d_agent [new Agent/LossMonitor]
  507.     $s_agent set fid_ $fid 
  508.     $d_agent set fid_ $fid 
  509.     set cbr [new Application/Traffic/CBR]
  510.     $cbr attach-agent $s_agent
  511.     $ns_ attach-agent $source $s_agent
  512.     $ns_ attach-agent $dest $d_agent
  513.     $ns_ connect $s_agent $d_agent
  514.     if {$pktSize > 0} {
  515. $cbr set packetSize_ $pktSize
  516.     }
  517.     $cbr set rate_ [expr 8 * $pktSize / $interval]
  518.     $ns_ at $startTime "$cbr start"
  519. }
  520. TestSuite instproc dumpflows interval {
  521.     $self instvar dumpflows_inst_ ns_ r1fm_
  522.     $self instvar awkprocedure_ dump_pthresh_
  523.     global flowchan
  524.     if ![info exists dumpflows_inst_] {
  525.         set dumpflows_inst_ 1
  526.         $ns_ at 0.0 "$self dumpflows $interval"
  527.         return  
  528.     }
  529.     if { $awkprocedure_ == "unforcedmakeawk" } {
  530. set pcnt [$r1fm_ set epdrops_]
  531.     } elseif { $awkprocedure_ == "forcedmakeawk" } {
  532. set pcnt [expr [$r1fm_ set pdrops_] - [$r1fm_ set epdrops_]]
  533.     } elseif { $awkprocedure_ == "allmakeawk" } {
  534. set pcnt [$r1fm_ set pdrops_]
  535.     } else {
  536. puts stderr "unknown handling of flow dumps!"
  537. exit 1
  538.     }
  539.     if { $pcnt >= $dump_pthresh_ } {
  540.     $r1fm_ dump
  541.     flush $flowchan
  542.     foreach f [$r1fm_ flows] {
  543. $f reset
  544.     }
  545.     $r1fm_ reset
  546.     set interval 2.0
  547.     } else {
  548.     set interval 1.0
  549.     }
  550.     $ns_ at [expr [$ns_ now] + $interval] "$self dumpflows $interval"
  551. }   
  552. TestSuite instproc droptest { stoptime } {
  553. $self instvar ns_ node_ testName_ r1fm_ awkprocedure_
  554. set forwq [[$ns_ link $node_(r1) $node_(r2)] queue]
  555. set revq [[$ns_ link $node_(r2) $node_(r1)] queue]
  556. $forwq set mean_pktsize_ 1000
  557. $revq set mean_pktsize_ 1000
  558. $forwq set linterm_ 10
  559. $revq set linterm_ 10
  560. $forwq set limit_ 100
  561. $revq set limit_ 100
  562. $self create_flowstats 
  563. $self dumpflows 10.0
  564. $forwq set bytes_ true
  565. $forwq set queue_in_bytes_ true
  566. $forwq set wait_ false
  567.         $self new_tcp 1.0 $node_(s1) $node_(s3) 100 1 1 1000
  568. $self new_tcp 1.2 $node_(s2) $node_(s4) 100 2 1 50
  569. $self new_cbr 1.4 $node_(s1) $node_(s4) 190 0.003 3
  570. $ns_ at $stoptime "$self finish_flows $testName_"
  571. $ns_ run
  572. }
  573. TestSuite runTest