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