ranLoadGen.pl
上传用户:sy_wanhua
上传日期:2013-07-25
资源大小:3048k
文件大小:6k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. #!/usr/bin/perl -w
  2. #
  3. # ====================================================================
  4. # The Vovida Software License, Version 1.0 
  5. # Copyright (c) 2000 Vovida Networks, Inc.  All rights reserved.
  6. # Redistribution and use in source and binary forms, with or without
  7. # modification, are permitted provided that the following conditions
  8. # are met:
  9. # 1. Redistributions of source code must retain the above copyright
  10. #    notice, this list of conditions and the following disclaimer.
  11. # 2. Redistributions in binary form must reproduce the above copyright
  12. #    notice, this list of conditions and the following disclaimer in
  13. #    the documentation and/or other materials provided with the
  14. #    distribution.
  15. # 3. The names "VOCAL", "Vovida Open Communication Application Library",
  16. #    and "Vovida Open Communication Application Library (VOCAL)" must
  17. #    not be used to endorse or promote products derived from this
  18. #    software without prior written permission. For written
  19. #    permission, please contact vocal@vovida.org.
  20. # 4. Products derived from this software may not be called "VOCAL", nor
  21. #    may "VOCAL" appear in their name, without prior written
  22. #    permission of Vovida Networks, Inc.
  23. # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
  24. # WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  25. # OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
  26. # NON-INFRINGEMENT ARE DISCLAIMED.  IN NO EVENT SHALL VOVIDA
  27. # NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES
  28. # IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL,
  29. # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  30. # PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  31. # PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
  32. # OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  33. # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
  34. # USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
  35. # DAMAGE.
  36. # ====================================================================
  37. # This software consists of voluntary contributions made by Vovida
  38. # Networks, Inc. and many individuals on behalf of Vovida Networks,
  39. # Inc.  For more information on Vovida Networks, Inc., please see
  40. # <http://www.vovida.org/>.
  41. ###############################################################################
  42. #
  43. # script to randomly select a calling user and a called user,
  44. #        fix up their respectively ua.cfg files, launch respective
  45. #        ua's, let ua make x calls, then select another pair of
  46. #        user accounts and repeat the whole process....
  47. #
  48. # Usage: ranGenLoad rand-offset rand-limit calls-per-run
  49. #
  50. #
  51. # $Id: ranLoadGen.pl,v 1.2 2001/05/13 10:54:01 icahoon Exp $
  52. #
  53. #
  54. ###############################################################################
  55. # display usage message
  56. #
  57. if (@ARGV != 4 ) {
  58.   die "Usage:  $0  rand-base rand-limit calls-per-run times-to-runn";
  59. }
  60. # verbose mode
  61. $verbose = 1;
  62. # parse arguments
  63. $randbase = $ARGV[0];
  64. $randlimit = $ARGV[1];
  65. $callsprun = $ARGV[2];
  66. $times2run = $ARGV[3];
  67. # set default calling/ called user ids:
  68. $calling = 10000;
  69. $called  = 10001;
  70. # set default paths where calling/ called ua to be invoked:
  71. $callingpath = "/root/ldgen/call/ua.call.cfg";
  72. $calledpath  = "/root/ldgen/rec/ua.rec.cfg";
  73. # setup path to ua:
  74. $uapath = "/root/ldgen/ua"; 
  75. # seed the random number generator
  76. srand( time() ^ ($$ + ($$ << 15)) );
  77. # generate calling/ called users a random
  78. sub genUsers {
  79.    $range = $randlimit - $randbase;  # 0..n
  80.    $calling = int(rand $range) + $randbase;
  81.    $called  = int(rand $range) + $randbase;
  82.    printf( "calling = %d, called = %dn", $calling, $called ) if $verbose;
  83.    
  84.    if ($calling eq $called) {
  85.       $called = $called - 1;
  86.       printf( "calling = %d, called = %dn", $calling, $called ) if $verbose;
  87.    }
  88. }
  89. # fix up the ua.cfg files, called by prepareData()
  90. sub fixUaCfg {
  91.    $clg = $_[0];    # calling number
  92.    $cld = $_[1];    # called number
  93.    # assume <UA> and <OUTFILE> are already opened:
  94.    while (<UA>)
  95.    {
  96.        $line = $_;
  97.        chomp($line);
  98.        if (/(^User_Name)/) {
  99.           @fields = split(/s+/, $line);
  100.           printf( "f1=%s f2=%s f3=%sn", $fields[0], $fields[1], $fields[2] ) if $verbose;
  101.           $newline = "$fields[0]     $fields[1]     $clg";
  102.           print OUTFILE "$newlinen"; 
  103.           printf( "newline = $newlinen" );
  104.           next;
  105.        }
  106.        if (/(^CallUrl)/) {
  107.           @fields = split(/s+/, $line);
  108.           printf( "f1=%s f2=%s f3=%sn", $fields[0], $fields[1], $fields[2] ) if $verbose;
  109.           @sipurl = split(/@/, $fields[2]);
  110.           $newline = "$fields[0]     $fields[1]     sip:$cld@".$sipurl[1];
  111.           print OUTFILE "$newlinen"; 
  112.           printf( "newline = $newlinen" );
  113.           next;
  114.        }
  115.        if (/(^NumOfCalls)/) {
  116.           @fields = split(/s+/, $line);
  117.           printf( "f1=%s f2=%s f3=%sn", $fields[0], $fields[1], $fields[2] ) if $verbose;
  118.           $newline = "$fields[0]     $fields[1]     $callsprun";
  119.           print OUTFILE "$newlinen"; 
  120.           printf( "newline = $newlinenn" );
  121.           next;
  122.        }
  123.        # ignore the rest of cfg data, just output to OUTFILE:
  124.        print OUTFILE "$linen";
  125.    }
  126. }
  127. # set up data used to fix up the ua config files:
  128. sub prepareData {
  129.    $temp = "temp.out";
  130.    if (-e $temp )
  131.    {
  132.       rmdir $temp;
  133.    }
  134.    # first, fix up the calling ua.cfg
  135.    open( UA, "<" . $callingpath) || die "Could not open $callingpathn";
  136.    open(OUTFILE, ">$temp");
  137.       fixUaCfg( $calling, $called );
  138.    close( UA );
  139.    close( OUTFILE );
  140.    rmdir  "$callingpath".".bak";
  141.    rename $callingpath, "$callingpath".".bak";
  142.    rename $temp, $callingpath;
  143.    # now, fix up the called ua.cfg
  144.    rmdir $temp;
  145.    open(UA, "<" . $calledpath ) || die "Could not open $calledpathn";
  146.    open(OUTFILE, ">$temp");
  147.        fixUaCfg( $called, $calling );
  148.    close(UA);
  149.    close( OUTFILE );
  150.    rmdir  "$calledpath".".bak";
  151.    rename $calledpath, "$calledpath".".bak";
  152.    rename $temp, $calledpath;
  153. }
  154. # launch ua -f ua.cfg respectively
  155. sub startUas {
  156.    system("./start-uaxterms startupUa.sxt");
  157.    print "done calling start-xtermsn";
  158.    sleep $callsprun*(rand(20)+1);
  159.    print "done sleepingn";
  160. }
  161. # main prog
  162. sub main {
  163.    # loop $times2run
  164.    $i = $times2run;
  165.    while ($i) {
  166.        genUsers();
  167.        prepareData();     
  168.        startUas();
  169.        $i--;           # comment this out if run forever
  170.    }   
  171. }
  172. main();
  173. ## end of program