compare-results.sh
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:16k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. #!@PERL@
  2. # Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  3. #
  4. # This library is free software; you can redistribute it and/or
  5. # modify it under the terms of the GNU Library General Public
  6. # License as published by the Free Software Foundation; either
  7. # version 2 of the License, or (at your option) any later version.
  8. #
  9. # This library is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12. # Library General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU Library General Public
  15. # License along with this library; if not, write to the Free
  16. # Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  17. # MA 02111-1307, USA
  18. #
  19. # a little program to generate a table of results
  20. # just read all the RUN-*.log files and format them nicely
  21. # Made by Luuk de Boer
  22. # Patched by Monty
  23. use Getopt::Long;
  24. $opt_server="mysql";
  25. $opt_dir="output";
  26. $opt_machine="";
  27. $opt_relative=$opt_same_server=$opt_help=$opt_Information=$opt_skip_count=$opt_no_bars=$opt_verbose=0;
  28. GetOptions("Information","help","server=s","cmp=s","machine=s","relative","same-server","dir=s","skip-count","no-bars","html","verbose") || usage();
  29. usage() if ($opt_help || $opt_Information);
  30. $opt_cmp=lc(join(",",sort(split(',',$opt_cmp))));
  31. if ($opt_same_server)
  32. {
  33.   $files="$opt_dir/RUN-$opt_server*$opt_machine";
  34. }
  35. else
  36. {
  37.   $files="$opt_dir/RUN-*$opt_machine";
  38. }
  39. $files.= "-cmp-$opt_cmp" if (length($opt_cmp));
  40. #
  41. # Go trough all RUN files and gather statistics.
  42. #
  43. if ($#ARGV == -1)
  44. {
  45.   @ARGV=glob($files);
  46.   $automatic_files=1;
  47. }
  48. else
  49. {
  50.   $opt_cmp="";
  51. }
  52. foreach (@ARGV)
  53. {
  54.   next if (!$opt_cmp && /-cmp-/ && $automatic_files || defined($found{$_}));
  55.   $prog=$filename = $_;
  56.   $found{$_}=1; # Remove dupplicates
  57.   /RUN-(.*)$/;
  58.   $tot{$prog}{'version'}=$1;
  59.   push(@key_order,$prog);
  60.   $next = 0;
  61.   open(TMP, "<$filename") || die "Can't open $filename: $!n";
  62.   while (<TMP>)
  63.   {
  64.     chomp;
  65.     if ($next == 0) {
  66.       if (/Server version:s+(S+.*)/i)
  67.       {
  68. $tot{$prog}{'server'} = $1;
  69.       }
  70.       elsif (/Arguments:s+(.+)/i)
  71.       {
  72. $arguments= $1;
  73. # Remove some standard, not informative arguments
  74. $arguments =~ s/--force|--log|--use-oldS*|--server=S+|--cmp=S+|--user=S+|--pass=S+|--machine=S+|--dir=S+//g;
  75. if (($tmp=index($arguments,"--comment")) >= 0)
  76. {
  77.   if (($end=index($arguments,$tmp+2,"--")) >= 0)
  78.   {
  79.     substr($arguments,$tmp,($end-$tmp))="";
  80.   }
  81.   else
  82.   {
  83.     $arguments=substr($arguments,0,$tmp);
  84.   }
  85. }
  86. $arguments =~ s/s+/ /g;
  87. $tot{$prog}{'arguments'}=$arguments;
  88.       }
  89.       elsif (/Comments:s+(.+)/i) {
  90. $tot{$prog}{'comments'} = $1;
  91.       } elsif (/^(S+):s*(estimateds|)totalstime:s+([d.]+)s+(wallclocks|)secs/i)
  92.       {
  93. $tmp = $1; $tmp =~ s/://;
  94. $tot{$prog}{$tmp} = [ $3, (length($2) ? "+" : "")];
  95. $op1{$tmp} = $tmp;
  96.       } elsif (/Totals per operation:/i) {
  97. $next = 1;
  98. next;
  99.       }
  100.     }
  101.     elsif ($next == 1)
  102.     {
  103.       if (/^(S+)s+([d.]+)s+([d.]+)s+([d.]+)s+([d.]+)s+([d.]+)s*([+|?])*/)
  104.       {
  105. $tot1{$prog}{$1} = [$2,$6,$7];
  106. $op{$1} = $1;
  107.       }
  108.     }
  109.   }
  110. }
  111. if (!%op)
  112. {
  113.   print "Didn't find any files matching: '$files'n";
  114.   print "Use the --cmp=server,server option to compare benchmarksn";
  115.   exit 1;
  116. }
  117. # everything is loaded ...
  118. # now we have to create a fancy output :-)
  119. # I prefer to redirect scripts instead to force it to file ; Monty
  120. #
  121. # open(RES, ">$resultfile") || die "Can't write to $resultfile: $!n";
  122. # select(RES)
  123. #
  124. if ($opt_html) {
  125.   html_output();
  126. } else {
  127.   ascii_output();
  128. }
  129. exit 0;
  130. #
  131. # some output + format functions;
  132. #
  133. sub ascii_output {
  134.   print <<EOF;
  135. This is the result file of the different benchmark tests.
  136. The number in () after each tests shows how many SQL commands the particular
  137. test did.  As one test may have many different parameters this gives only
  138. a rough picture of what was done.  Check the source for more information :)
  139. Keep in mind that one can't compare benchmarks run with different --cmp
  140. options. The --cmp options sets the all limits according to the worst
  141. limit for all server in the benchmark.
  142. Numbers marked with '+' are estimated according to previous runs because
  143. the query took longer than a given time-limit to finish. The estimation
  144. shouldn't be far from the real result thought.
  145. Numbers marked with '?' contains results that gave wrong result. This can only
  146. be used as an indication of how long it took for the server to produce a wrong
  147. result :)
  148. Numbers marked with '*' are tests that was run a different number times
  149. than the test in the first column.  The reason for this is normally that the
  150. marked test was run with different options that affects the number of tests
  151. or that the test was from another version of the MySQL benchmarks.
  152. Hope this will give you some idea how each db is performing at what thing ....
  153. Hope you like it .... Luuk & Monty (1997)
  154. EOF
  155.   if ($opt_relative)
  156.   {
  157.     print "Column 1 is in seconds. All other columns are presented relativen";
  158.     print "to this. 1.00 is the same, bigger numbers indicates slowernn";
  159.   }
  160.   if ($opt_verbose)
  161.   {
  162.     print "The test values is printed in the format 'time:number of tests'n";
  163.   }
  164.   if (length($opt_cmp))
  165.   {
  166.     print "The test was run with limits from: $opt_cmpnn";
  167.   }
  168.   print "The result logs which where found and the options:n";
  169.   $bar= $opt_no_bars ? " " : "|";
  170.   # Move $opt_server first in array if not filename on command line
  171.   if ($automatic_files)
  172.   {
  173.     @key_order=sort {$a cmp $b} keys %tot;
  174.     for ($i=0; $i <= $#key_order; $i++)
  175.     {
  176.       if ($tot{$key_order[$i]}{'version'} =~ /^$opt_server-/)
  177.       {
  178. unshift(@key_order,$key_order[$i]);
  179. splice(@key_order,$i+1,1);
  180. last;
  181.       }
  182.     }
  183.   }
  184.   # Print header
  185.   $column_count=0;
  186.   foreach $key (@key_order)
  187.   {
  188.     $tmp=$tmp=$tot{$key}{'version'};
  189.     $tmp =~ s/-cmp-$opt_cmp// if (length($opt_cmp));
  190.     $column_count++;
  191.     printf "%2d %-40.40s: %s %sn", $column_count, $tmp,
  192.     $tot{$key}{'server'}, $tot{$key}{'arguments'};
  193.     print "  $tot{$key}{'comments'}n"
  194.       if ($tot{$key}{'comments'} =~ /w+/);
  195.   }
  196.   print "n";
  197.   $namewidth=($opt_skip_count && !$opt_verbose) ? 29 : 36;
  198.   $colwidth= $opt_relative ? 10 : 7;
  199.   $count_width=7;
  200.   $colwidth+=$count_width if ($opt_verbose);
  201.   print_sep("=");
  202.   printf "%-$namewidth.${namewidth}s${bar}", "Operation";
  203.   $count = 1;
  204.   foreach $key (@key_order)
  205.   {
  206.     printf "%${colwidth}d${bar}", $count;
  207.     $count++;
  208.   }
  209.   printf "n%-$namewidth.${namewidth}s${bar}", "";
  210.   foreach $key (@key_order)
  211.   {
  212.     $ver=$tot{$key}{'version'};
  213.     $ver =~ s/-[a-zA-Z0-9_.]+-cmp-$opt-cmp$//;
  214.     printf "%${colwidth}.${colwidth}s${bar}", $ver;
  215.   }
  216.   print "n";
  217.   print_sep("-");
  218.   print_string($opt_relative ? "Relative results per test (First column is in seconds):" : "Results per test in seconds:");
  219.   print_sep("-");
  220.   foreach $key (sort {$a cmp $b} keys %op1)
  221.   {
  222.     printf "%-$namewidth.${namewidth}s${bar}", $key;
  223.     $first=undef();
  224.     foreach $server (@key_order)
  225.     {
  226.       print_value($first,$tot{$server}{$key}->[0],undef(),$tot{$server}{$key}->[1]);
  227.       $first=$tot{$server}{$key}->[0] if (!defined($first));
  228.     }
  229.     print "n";
  230.   }
  231.   print_sep("-");
  232.   print_string("The results per operation:");
  233.   print_sep("-");
  234.   foreach $key (sort {$a cmp $b} keys %op)
  235.   {
  236.     next if ($key =~ /TOTALS/i);
  237.     $tmp=$key;
  238.     $count=$tot1{$key_order[0]}{$key}->[1];
  239.     $tmp.= " (" . $count .  ")" if (!$skip_count);
  240.     printf "%-$namewidth.${namewidth}s${bar}", $tmp;
  241.     $first=undef();
  242.     foreach $server (@key_order)
  243.     {
  244.       $tmp= $count != $tot1{$server}{$key}->[1] ? "*" : "";
  245.       print_value($first,$tot1{$server}{$key}->[0],$tot1{$server}{$key}->[1],
  246.   $tot1{$server}{$key}->[2] . $tmp);
  247.       $first=$tot1{$server}{$key}->[0] if (!defined($first));
  248.     }
  249.     print "n";
  250.   }
  251.   print_sep("-");
  252.   $key="TOTALS";
  253.   printf "%-$namewidth.${namewidth}s${bar}", $key;
  254.   $first=undef();
  255.   foreach $server (@key_order)
  256.   {
  257.     print_value($first,$tot1{$server}{$key}->[0],undef(),
  258. $tot1{$server}{$key}->[2]);
  259.     $first=$tot1{$server}{$key}->[0] if (!defined($first));
  260.   }
  261.   print "n";
  262.   print_sep("=");
  263. }
  264. sub html_output
  265. {
  266.   my $template="template.html";
  267.   my $title="MySQL | | Information | Benchmarks | Compare with $opt_cmp";
  268.   my $image="info.gif";
  269.   $bar="";
  270.   open(TEMPLATE, $template) || die;
  271.   while (<TEMPLATE>)
  272.   {
  273.     if (/<center>/)
  274.     {
  275.       print $_;
  276.       print "<!---- This is AUTOMATICALLY Generated. Do not edit here! ---->n";
  277.     }
  278.     elsif (/TITLE:SUBTITLE/)
  279.     {
  280.       s|TITLE:SUBTITLE|$title|;
  281.       print $_;
  282.     }
  283.     elsif (/TITLE:COMPARE/)
  284.     {
  285.       s|TITLE:COMPARE|$opt_cmp|;
  286.       print $_;
  287.     }
  288.     elsif (/ subchapter name /)
  289.     {
  290.       # Nothing here for now
  291.       print $_;
  292.     }
  293.     elsif (/ text of chapter /)
  294.     {
  295.       print $_;
  296.       print_html_body();
  297.     }
  298.     else
  299.     {
  300.       print $_;
  301.     }
  302.   }
  303.   close(TEMPLATE);
  304. }
  305. sub print_html_body
  306. {
  307.   my ($title,$count,$key);
  308.   print <<EOF;
  309. <center>
  310. <font size=+4><b>MySQL Benchmark Results</b></font><br>
  311. <font size=+1><b>Compare with $opt_cmp</b></font><p><p>
  312. </center>
  313. This is the result file of the different benchmark tests.
  314. <p>
  315. The number in () after each tests shows how many SQL commands the particular
  316. test did.  As one test may have many different parameters this gives only
  317. a rough picture of what was done.  Check the source for more information.
  318. <p>
  319. Keep in mind that one can't compare benchmarks run with different --cmp
  320. options. The --cmp options sets the all limits according to the worst
  321. limit for all server in the benchmark.
  322. <p>
  323. Numbers marked with '+' are estimated according to previous runs because
  324. the query took longer than a given time-limit to finish. The estimation
  325. shouldn't be far from the real result thought.
  326. <p>
  327. Numbers marked with '?' contains results that gave wrong result. This can only
  328. be used as an indication of how long it took for the server to produce a wrong
  329. result :)
  330. <p>
  331. Hope this will give you some idea how each db is performing at what thing ....
  332. <br>
  333. Hope you like it .... Luuk & Monty (1997)
  334. <p><p>
  335. EOF
  336.   if ($opt_relative)
  337.   {
  338.     print "Column 1 is in seconds. All other columns are presented relative<br>n";
  339.     print "to this. 1.00 is the same, bigger numbers indicates slower<p>nn";
  340.   }
  341.   if (length($opt_cmp))
  342.   {
  343.     print "The test was run with limits from: $opt_cmpnn";
  344.   }
  345.   print "The result logs which where found and the options:<br>n";
  346.   # Move $opt_server first in array
  347.   if ($automatic_files)
  348.   {
  349.     @key_order=sort {$a cmp $b} keys %tot;
  350.     for ($i=0; $i <= $#key_order; $i++)
  351.     {
  352.       if ($tot{$key_order[$i]}{'version'} =~ /^$opt_server-/)
  353.       {
  354. unshift(@key_order,$key_order[$i]);
  355. splice(@key_order,$i+1,1);
  356. last;
  357.       }
  358.     }
  359.   }
  360.   # Print header
  361.   print "<p><center><table border=1 width=100%>n";
  362.   $column_count=0;
  363.   foreach $key (@key_order)
  364.   {
  365.     $tmp=$tot{$key}{'version'};
  366.     $tmp =~ s/-cmp-$opt_cmp// if (length($opt_cmp));
  367.     $column_count++;
  368. #    printf "<tr><td>%2d<td>%-36.36s<td>%s %s</tr>n", $column_count, $tmp,
  369.     printf "<tr><td>%2d</td><td>%s</td><td>%s %s</td></tr>n",
  370.     $column_count, $tmp, $tot{$key}{'server'}, $tot{$key}{'arguments'};
  371.     print "<tr><td colspan=3>$tot{$key}{'comments'}</td></tr>n"
  372.       if ($tot{$key}{'comments'} =~ /w+/);
  373.   }
  374.   print "</table></center><p><center><table border=1 width=100%>n";
  375.   $namewidth=$opt_skip_count ? 22 :29;
  376.   $colwidth= $opt_relative ? 10 : 7;
  377.   $count_width=7;
  378.   printf "<tr><td><b>%s</b></td>n", "Operation";
  379.   $count = 1;
  380.   foreach $key (@key_order)
  381.   {
  382.     $ver=$tot{$key}{'version'};
  383.     printf "<td align=center><b>%d", $count;
  384.     printf "<br>%${colwidth}.${colwidth}s</b></td>n", substr($ver,0,index($ver,"-"));
  385.     $count++;
  386.   }
  387.   print "</tr>n";
  388.   $title = $opt_relative ? "Relative results per test (First column is in seconds):" : "Results per test in seconds:";
  389.   printf "<tr><td colspan=%d><b>%s</b></td></tr>n", $count, $title;
  390.   foreach $key (sort {$a cmp $b} keys %op1)
  391.   {
  392.     if (!$opt_html)
  393.     {
  394.       printf "<tr><td>%-$namewidth.${namewidth}s</td>", $key;
  395.     }
  396.     else
  397.     {
  398.       print "<tr><td>$key</td>";
  399.     }
  400.     $first=undef();
  401.     foreach $server (@key_order)
  402.     {
  403.       print_value($first,$tot{$server}{$key}->[0],undef(),
  404.   $tot{$server}{$key}->[1]);
  405.       $first=$tot{$server}{$key}->[0] if (!defined($first));
  406.     }
  407.     print "</tr>n";
  408.   }
  409.   $title = "The results per operation:";
  410.   printf "<tr><td colspan=%d><b>%s</b></td></tr>n", $count, $title;
  411.   foreach $key (sort {$a cmp $b} keys %op)
  412.   {
  413.     next if ($key =~ /TOTALS/i);
  414.     $tmp=$key;
  415.     $tmp.= " (" . $tot1{$key_order[0]}{$key}->[1] . ")" if (!$skip_count);
  416.     if (!$opt_html)
  417.     {
  418.       printf "<tr><td>%-$namewidth.${namewidth}s</td>", $tmp;
  419.     }
  420.     else
  421.     {
  422.       print "<tr><td>$tmp</td>";
  423.     }
  424.     $first=undef();
  425.     foreach $server (@key_order)
  426.     {
  427.       print_value($first,$tot1{$server}{$key}->[0],
  428.   $tot1{$server}{$key}->[1],
  429.   $tot1{$server}{$key}->[2]);
  430.       $first=$tot1{$server}{$key}->[0] if (!defined($first));
  431.     }
  432.     print "</tr>n";
  433.   }
  434.   $key="TOTALS";
  435.   printf "<tr><td><b>%-$namewidth.${namewidth}s</b></td>", $key;
  436.   $first=undef();
  437.   foreach $server (@key_order)
  438.   {
  439.     print_value($first,$tot1{$server}{$key}->[0],undef(),
  440. $tot1{$server}{$key}->[2]);
  441.     $first=$tot1{$server}{$key}->[0] if (!defined($first));
  442.   }
  443.   print "</tr>n</table>n";
  444. }
  445. sub print_sep
  446. {
  447.   my ($sep)=@_;
  448.   print $sep x ($namewidth + (($colwidth+1) * $column_count)+1),"n";
  449. }
  450. sub print_value
  451. {
  452.   my ($first,$value,$count,$flags)=@_;
  453.   my ($tmp,$width);
  454.   if (defined($value))
  455.   {
  456.     if (!defined($first) || !$opt_relative)
  457.     {
  458.       $tmp=sprintf("%.2f",$value);
  459.     }
  460.     else
  461.     {
  462.       $first=1 if ($first == 0); # Assume that it took one second instead of 0
  463.       $tmp= sprintf("%.2f",$value/$first);
  464.     }
  465.     if (defined($flags))
  466.     {
  467.       $tmp="+".$tmp if ($flags =~ /+/);
  468.       $tmp="?".$tmp if ($flags =~ /?/);
  469.       $tmp="*".$tmp if ($flags =~ /*/);
  470.     }
  471.   }
  472.   else
  473.   {
  474.     $tmp="";
  475.   }
  476.   $width= ($opt_verbose ? $colwidth - $count_width : $colwidth);
  477.   if (!$opt_html)
  478.   {
  479.     $tmp= " " x ($width-length($tmp)) . $tmp if (length($tmp) < $width);
  480.   }
  481.   if ($opt_verbose)
  482.   {
  483.     if ($count)
  484.     {
  485.       $tmp.= ":" . " " x ($count_width-1-length($count)) . $count;
  486.     }
  487.     else
  488.     {
  489.       $tmp.= " " x ($count_width);
  490.     }
  491.   }
  492.   if (!$opt_html) {
  493.     print $tmp . "${bar}";
  494.   } else {
  495.     print "<td align=right>$tmp</td>";
  496.   }
  497. }
  498. sub print_string
  499. {
  500.   my ($str)=@_;
  501.   if (!$opt_html)
  502.   {
  503.     my ($width);
  504.     $width=$namewidth + ($colwidth+1)*$column_count;
  505.     $str=substr($str,1,$width) if (length($str) > $width);
  506.     print($str," " x ($width - length($str)),"${bar}n");
  507.   }
  508.   else
  509.   {
  510.     print $str,"n";
  511.   }
  512. }
  513. sub usage
  514. {
  515.     print <<EOF;
  516. $0  Ver 1.2
  517. This program parses all RUN files from old 'run-all-tests --log' scripts
  518. and makes a nice comparable table.
  519. $0 takes currently the following options:
  520. --help or --Information
  521.   Shows this help
  522. --cmp=server,server,server (Default $opt_cmp)
  523. Compares all runs that are done with the same --cmp options to run-all-tests.
  524. The most normal options are '--cmp=mysql,pg,solid' and '--cmp ""'
  525. --dir=...  (Default $opt_dir)
  526. From which directory one should get the runs.  All runs made by
  527. run-all-tests --log is saved in the 'output' directory.
  528. In the 'results' directory you may have some example runs from different
  529. databases.
  530. --html
  531.   Print the table in html format.
  532. --machine='full-machine-name' (Default $opt_machine)
  533. Use only runs that match this machine.
  534. --relative
  535. Show all numbers in times of the first server where the time for the
  536. first server is 1.0
  537. --same-server
  538. Compare all runs for --server=....  The --machine is not used in this case
  539. This is nice to compare how the same server runs on different machines.
  540. --server='server name'  (Default $opt_server)
  541. Put this server in the first result column.
  542. --skip-count
  543. Do not write the number of tests after the test-name.
  544. --verbose
  545. Write the number of tests in each column. This is useful when some column
  546. is marked with '*'.
  547. EOF
  548.   exit(0);
  549. }