graph-compare-results.sh
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:22k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. ####
  2. #### Hello ... this is a heavily hacked script by Luuk 
  3. #### instead of printing the result it makes a nice gif
  4. #### when you want to look at the code ... beware of the 
  5. #### ugliest code ever seen .... but it works ...
  6. #### and that's sometimes the only thing you want ... isn't it ...
  7. #### as the original script ... Hope you like it
  8. ####
  9. #### Greetz..... Luuk de Boer 1997.
  10. ####
  11. ## if you want the seconds behind the bar printed or not ...
  12. ## or only the one where the bar is too big for the graph ...
  13. ## look at line 535 of this program and below ...
  14. ## look in sub calculate for allmost all hard/soft settings :-)
  15. # a little program to generate a table of results
  16. # just read all the RUN-*.log files and format them nicely
  17. # Made by Luuk de Boer
  18. # Patched by Monty
  19. use Getopt::Long;
  20. use GD;
  21. $opt_server="mysql";
  22. $opt_cmp="mysql,pg,solid";
  23. $opt_cmp="msql,mysql,pg,solid";
  24. $opt_cmp="empress,mysql,pg,solid";
  25. $opt_dir="output";
  26. $opt_machine="";
  27. $opt_relative=$opt_same_server=$opt_help=$opt_Information=$opt_skip_count=0;
  28. GetOptions("Information","help","server=s","cmp=s","machine=s","relative","same-server","dir=s","skip-count") || usage();
  29. usage() if ($opt_help || $opt_Information);
  30. if ($opt_same_server)
  31. {
  32.   $files="$opt_dir/RUN-$opt_server-*$opt_machine";
  33. }
  34. else
  35. {
  36.   $files="$opt_dir/RUN-*$opt_machine";
  37. }
  38. $files.= "-cmp-$opt_cmp" if (length($opt_cmp));
  39. $automatic_files=0;
  40. if ($#ARGV == -1)
  41. {
  42.   @ARGV=glob($files);
  43.   $automatic_files=1;
  44. }
  45. #
  46. # Go trough all RUN files and gather statistics.
  47. #
  48. foreach (@ARGV)
  49. {
  50.   $filename = $_;
  51.   next if (defined($found{$_})); # remove duplicates
  52.   $found{$_}=1;
  53.   /RUN-(.*)$/;
  54.   $prog = $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. $tot{$prog}{'arguments'} = $1;
  69. # Remove some standard, not informative arguments
  70. $tot{$prog}{'arguments'} =~ s/--log|--use-old-results|--server=S+|--cmp=S+|--user=S+|--pass=S+|--machine=S+//g;
  71. $tot{$prog}{'arguments'} =~ s/s+/ /g;
  72.       }
  73.       elsif (/Comments:s+(.+)/i) {
  74. $tot{$prog}{'comments'} = $1;
  75.       } elsif (/^(S+):s*(estimateds|)totalstime:s+(d+)s+secs/i)
  76.       {
  77. $tmp = $1; $tmp =~ s/://;
  78. $tot{$prog}{$tmp} = [ $3, (length($2) ? "+" : "")];
  79. $op1{$tmp} = $tmp;
  80.       } elsif (/Totals per operation:/i) {
  81. $next = 1;
  82. next;
  83.       }
  84.     }
  85.     elsif ($next == 1)
  86.     {
  87.       if (/^(S+)s+([d.]+)s+([d.]+)s+([d.]+)s+([d.]+)s+([d.]+)s*([+|?])*/)
  88.       {
  89. $tot1{$prog}{$1} = [$2,$6,$7];
  90. $op{$1} = $1;
  91. #print "TEST - $_ n * $prog - $1 - $2 - $6 - $7 ****n";
  92. # $prog - filename
  93. # $1 - operation
  94. # $2 - time in secs
  95. # $6 - number of loops
  96. # $7 - nothing / + / ? / * => estimated time ...
  97.       # get the highest value ....
  98.       $highest = ($2/$6) if (($highest < ($2/$6)) && ($1 !~/TOTALS/i));
  99.       $gifcount++;
  100.       $giftotal += ($2/$6);
  101.       }
  102.     }
  103.   }
  104. }
  105. if (!%op)
  106. {
  107.   print "Didn't find any files matching: '$files'n";
  108.   print "Use the --cmp=server,server option to compare benchmarksn";
  109.   exit 1;
  110. }
  111. # everything is loaded ...
  112. # now we have to create a fancy output :-)
  113. # I prefer to redirect scripts instead to force it to file ; Monty
  114. #
  115. # open(RES, ">$resultfile") || die "Can't write to $resultfile: $!n";
  116. # select(RES)
  117. #
  118. #print <<EOF;
  119. #<cut for this moment>
  120. #
  121. #EOF
  122. if ($opt_relative)
  123. {
  124. #  print "Column 1 is in seconds. All other columns are presented relativen";
  125. #  print "to this. 1.00 is the same, bigger numbers indicates slowernn";
  126. }
  127. #print "The result logs which where found and the options:n";
  128. if ($automatic_files)
  129. {
  130.   if ($key_order[$i] =~ /^$opt_server/)
  131.   {
  132.     if ($key_order[$i] =~ /^$opt_server/)
  133.     {
  134.       unshift(@key_order,$key_order[$i]);
  135.       splice(@key_order,$i+1,1);
  136.     }
  137.   }
  138. }
  139. # extra for mysql and mysql_pgcc
  140. #$number1 = shift(@key_order);
  141. #$number2 = shift(@key_order);
  142. #unshift(@key_order,$number1);
  143. #unshift(@key_order,$number2);
  144. # Print header
  145. $column_count=0;
  146. foreach $key (@key_order)
  147. {
  148.   $column_count++;
  149. #  printf "%2d %-40.40s: %s %sn", $column_count, $key,
  150. #  $tot{$key}{'server'}, $tot{$key}{'arguments'};
  151. #  print "Comments: $tot{$key}{'comments'}n"
  152. #    if ($tot{$key}{'comments'} =~ /w+/);
  153. }
  154. #print "n";
  155. $namewidth=$opt_skip_count ? 20 :25;
  156. $colwidth= $opt_relative ? 9 : 6;
  157. print_sep("=");
  158. #printf "%-$namewidth.${namewidth}s|", "Operation";
  159. $count = 1;
  160. foreach $key (@key_order)
  161. {
  162. #  printf "%${colwidth}d|", $count;
  163.   $count++;
  164. }
  165. #print "n";
  166. #print_sep("-");
  167. #print_string("Results per test:");
  168. #print_sep("-");
  169. foreach $key (sort {$a cmp $b} keys %op1)
  170. {
  171. #  printf "%-$namewidth.${namewidth}s|", $key;
  172.   $first=undef();
  173.   foreach $server (@key_order)
  174.   {
  175.     print_value($first,$tot{$server}{$key}->[0],$tot{$server}{$key}->[1]);
  176.     $first=$tot{$server}{$key}->[0] if (!defined($first));
  177.   }
  178. #  print "n";
  179. }
  180. print_sep("-");
  181. print_string("The results per operation:");
  182. print_sep("-");
  183. $luukcounter = 1;
  184. foreach $key (sort {$a cmp $b} keys %op)
  185. {
  186.   next if ($key =~ /TOTALS/i);
  187.   $tmp=$key;
  188.   $tmp.= " (" . $tot1{$key_order[0]}{$key}->[1] . ")" if (!$skip_count);
  189. #  printf "%-$namewidth.${namewidth}s|", $tmp;
  190.   $first=undef();
  191.   foreach $server (@key_order)
  192.   {
  193.     print_value($first,$tot1{$server}{$key}->[0],$tot1{$server}{$key}->[2]);
  194.     $first=$tot1{$server}{$key}->[0] if (!defined($first));
  195.   }
  196. #  print "n";
  197.   $luukcounter++;
  198. }
  199. #print_sep("-");
  200. $key="TOTALS";
  201. #printf "%-$namewidth.${namewidth}s|", $key;
  202. $first=undef();
  203. foreach $server (@key_order)
  204. {
  205. #  print_value($first,$tot1{$server}{$key}->[0],$tot1{$server}{$key}->[2]);
  206.   $first=$tot1{$server}{$key}->[0] if (!defined($first));
  207. }
  208. #print "n";
  209. #print_sep("=");
  210. &make_gif;
  211. exit 0;
  212. #
  213. # some format functions;
  214. #
  215. sub print_sep
  216. {
  217.   my ($sep)=@_;
  218. #  print $sep x ($namewidth + (($colwidth+1) * $column_count)+1),"n";
  219. }
  220. sub print_value
  221. {
  222.   my ($first,$value,$flags)=@_;
  223.   my ($tmp);
  224.   if (defined($value))
  225.   {
  226.     if (!defined($first) || !$opt_relative)
  227.     {
  228.       $tmp=sprintf("%d",$value);
  229.     }
  230.     else
  231.     {
  232.       $first=1 if (!$first); # Assume that it took one second instead of 0
  233.       $tmp= sprintf("%.2f",$value/$first);
  234.     }
  235.     if (defined($flags))
  236.     {
  237.       $tmp="+".$tmp if ($flags =~ /+/);
  238.       $tmp="?".$tmp if ($flags =~ /?/);
  239.     }
  240.   }
  241.   else
  242.   {
  243.     $tmp="";
  244.   }
  245.   $tmp= " " x ($colwidth-length($tmp)) . $tmp if (length($tmp) < $colwidth);
  246. #  print $tmp . "|";
  247. }
  248. sub print_string
  249. {
  250.   my ($str)=@_;
  251.   my ($width);
  252.   $width=$namewidth + ($colwidth+1)*$column_count;
  253.   $str=substr($str,1,$width) if (length($str) > $width);
  254. #  print($str," " x ($width - length($str)),"|n");
  255. }
  256. sub usage
  257. {
  258.   exit(0);
  259. }
  260. ###########################################
  261. ###########################################
  262. ###########################################
  263. # making here a gif of the results ... (lets try it :-))
  264. # luuk .... 1997
  265. ###########################################
  266. ## take care that $highest / $giftotal / $gifcount / $luukcounter 
  267. ## are getting there value above ... so don't forget them while 
  268. ## copying the code to some other program ....
  269. sub make_gif {
  270.   &gd; # some base things ....
  271.   &legend; # make the nice legend
  272.   &lines; # yep sometimes you have to print some lines
  273.   &gif("gif/benchmark2-".$opt_cmp); # and finally we can print all to a gif file ...
  274. }
  275. ##### mmm we are finished now ... 
  276. # first we have to calculate some limits and some other stuff
  277. sub calculate {
  278. # here is the list which I have to know to make everything .....
  279. # the small border width ...  $sm_border = 
  280. # the border default $border = 
  281. # the step default ... if it must be calculated then no value $step =
  282. # the highest number $highest = 
  283. # the max length of the text of the x borders $max_len_lb=
  284. # the max length of a legend entry $max_len_le=
  285. # number of entries in the legend $num_legen =
  286. # the length of the color blocks for the legend $legend_block=
  287. # the width of the gif ...if it must be calculated - no value   $width =
  288. # the height of the gif .. if it must be calculated - no value $height =
  289. # the width of the grey field '  ' ' ' $width_grey=
  290. # the height of the grey field ' ' ' ' $height_grey=
  291. # number of dashed lines $lines=
  292. # if bars must overlap how much they must be overlapped $overlap=
  293. # titlebar title of graph in two colors big $titlebar=
  294. # titlebar1 sub title of graph in small font in black $titlebar1=
  295. # xlabel $xlabel=
  296. # ylabel $ylabel=
  297. # the name of the gif ... $name=
  298. # then the following things must be knows .....
  299. # xlabel below or on the left side ?
  300. # legend yes/no?
  301. # where must the legend be placed?
  302. # must the xlabel be printed horizontal or vertical?
  303. # must the ylabel be printed horizontal or vertical?
  304. # must the graph be a line or a bar graph?
  305. # is a xlabel several different entries or some sub entries of one?
  306. #    so xlabel 1 => test1=10, test2=15, test3=7 etc
  307. #    or xlabel 1 => test1a=12, test1b=10, test1c=7 etc
  308. # must the bars overlap (only with the second example I think)
  309. # must the number be printed above or next to the bar?
  310. # when must the number be printed .... only when it extends the graph ...???
  311. # the space between the bars .... are that the same width of the bars ...
  312. #    or is it a separate space ... defined ???
  313. # must the date printed below or some where else ....
  314. #calculate all space for text and other things ....
  315.   $sm_border = 8; # the grey border around ...
  316.   $border = 40; #default ...
  317.   $left_border = 2.75 * $border; #default ...
  318.   $right_border = $border; #default ...
  319.   $up_border = $border; #default ...
  320.   $down_border = $border; # default ...
  321.   $step = ($height - $up_border - $down_border)/ ($luukcounter + (($#key_order + 1) * $luukcounter));
  322.   # can set $step to get nice graphs ... and change the format ...
  323.   $step = 8; # set hard the step value
  324.   
  325.   $gifavg = ($giftotal/$gifcount);
  326.   $highest = 2 * $gifavg;
  327.   $highest = 1; # set hard the highest value ...
  328.   $xhigh = int($highest + .5 * $highest);
  329.   
  330.   # here to get the max lenght of the test entries ...
  331.   # so we can calculate the with of the left border
  332.   foreach $oper (sort keys (%op)) {
  333.     $max_len_lb = length($oper) if (length($oper) > $max_len_lb);
  334. #    print "oper = $oper - $max_len_lbn";
  335.   }
  336.   $max_len_lb = $max_len_lb * gdSmallFont->width;
  337.   $left_border = (3*$sm_border) + $max_len_lb;
  338.   $down_border = (4*$sm_border) + (gdSmallFont->width*(length($xhigh)+3)) + (gdSmallFont->height *2); 
  339.   $right_border = (3*$sm_border) + 3 + (gdSmallFont->width*(length($highest)+5));
  340.   # calculate the space for the legend .....
  341.   foreach $key (@key_order) {
  342.     $tmp = $key;
  343.     $tmp =~ s/-cmp-$opt_cmp//i;
  344.     $giflegend = sprintf "%-24.24s: %-40.40s",$tmp,$tot{$key}{'server'};
  345.     $max_len_le = length($giflegend) if (length($giflegend) > $max_len_le);
  346.   }
  347.   $max_len_le = $max_len_le * gdSmallFont->width;
  348.   $legend_block = 10; # the length of the block in the legend
  349.   $max_high_le = (($#key_order + 1)*(gdSmallFont->height+2)) + (2*$legend_block);
  350.   $down_border += $max_high_le;
  351.   $up_border = (5 * $sm_border) + gdSmallFont->height + gdLargeFont->height;
  352.   
  353.   print "Here some things we already know ....n";
  354. #  print "luukcounter = $luukcounter (number of tests)n";
  355. #  print "gifcount = $gifcount (number of total entries)n";
  356. #  print "giftotal = $giftotal (total secs)n";
  357. #  print "gifavg = $gifavgn";
  358. #  print "highest = $highestn";
  359. #  print "xhigh = $xhighn";
  360. #  print "step = $step -- $#key_ordern";
  361. #  print "max_len_lb = $max_len_lbn";
  362. #  printf "Small- width %d - height %sn",gdSmallFont->width,gdSmallFont->height;
  363. #  printf "Tiny- width %d - height %sn",gdTinyFont->width,gdTinyFont->height;
  364. }
  365. sub gd {
  366.   &calculate;
  367.   $width = 600; # the width ....
  368.   $height = 500; # the height ... 
  369.   $width_greyfield = 430;
  370.   # when $step is set ... count the height ....????
  371.   $width = $width_greyfield + $left_border + $right_border;
  372.   $height = ($step * ($luukcounter + ($luukcounter * ($#key_order + 1)))) + $down_border + $up_border;
  373.   $b_width = $width - ($left_border + $right_border); # width within the grey field
  374.   $overlap = 0; # how far each colum can fall over each other ...nice :-)
  375.   # make the gif image ....
  376.   $im = new GD::Image($width,$height);
  377.   # allocate the colors to use ...
  378.   $white  = $im->colorAllocate(255,255,255);
  379.   $black  = $im->colorAllocate(0,0,0);
  380.   $paper_white  = $im->colorAllocate(220, 220, 220);
  381.   $grey1  = $im->colorAllocate(240, 240, 240);
  382.   $grey4  = $im->colorAllocate(229, 229, 229);
  383.   $grey2  = $im->colorAllocate(102, 102, 102);
  384.   $grey3  = $im->colorAllocate(153, 153, 153);
  385.   
  386.   $red  = $im->colorAllocate(205,0,0); # msql
  387.   $lred  = $im->colorAllocate(255,0,0);
  388.   $blue  = $im->colorAllocate(0,0,205); # mysql
  389.   $lblue  = $im->colorAllocate(0,0,255); # mysql_pgcc
  390.   $green  = $im->colorAllocate(0, 205, 0); # postgres
  391.   $lgreen  = $im->colorAllocate(0, 255, 0); # pg_fast
  392.   $orange  = $im->colorAllocate(205,133, 0); # solid
  393.   $lorange  = $im->colorAllocate(255, 165, 0); # Adabas
  394.   $yellow  = $im->colorAllocate(205,205,0);  # empress
  395.   $lyellow  = $im->colorAllocate(255,255,0);
  396.   $magenta  = $im->colorAllocate(255,0,255); # oracle
  397.   $lmagenta  = $im->colorAllocate(255,200,255);
  398.   $cyan  = $im->colorAllocate(0,205,205); # sybase
  399.   $lcyan  = $im->colorAllocate(0,255,255);
  400.   $sienna  = $im->colorAllocate(139,71,38); # db2
  401.   $lsienna  = $im->colorAllocate(160,82,45);
  402.   $coral  = $im->colorAllocate(205,91,69); # Informix
  403.   $lcoral  = $im->colorAllocate(255,114,86);
  404.   $peach = $im->colorAllocate(205,175,149);
  405.   $lpeach = $im->colorAllocate(255,218,185);
  406.   
  407.   @colors = ($red, $blue, $green, $orange, $yellow, $magenta, $cyan, $sienna, $coral, $peach);
  408.   @lcolors = ($lred, $lblue, $lgreen, $lorange, $lyellow, $lmagenta, $lcyan, $lsienna, $lcoral, $lpeach);
  409.   # set a color per server so in every result it has the same color ....
  410.   foreach $key (@key_order) {
  411.     if ($tot{$key}{'server'} =~ /mysql/i) {
  412.       if ($key =~ /mysql_pgcc/i || $key =~ /mysql_odbc/i || $key =~ /mysql_fast/i) {
  413.         $tot{$key}{'color'} = $lblue;
  414.       } else {
  415.         $tot{$key}{'color'} = $blue;
  416.       }
  417.     } elsif ($tot{$key}{'server'} =~ /msql/i) {
  418.       $tot{$key}{'color'} = $lred;
  419.     } elsif ($tot{$key}{'server'} =~ /postgres/i) {
  420.       if ($key =~ /pg_fast/i) {
  421.         $tot{$key}{'color'} = $lgreen;
  422.       } else {
  423.         $tot{$key}{'color'} = $green;
  424.       }
  425.     } elsif ($tot{$key}{'server'} =~ /solid/i) {
  426.       $tot{$key}{'color'} = $lorange;
  427.     } elsif ($tot{$key}{'server'} =~ /empress/i) {
  428.       $tot{$key}{'color'} = $lyellow;
  429.     } elsif ($tot{$key}{'server'} =~ /oracle/i) {
  430.       $tot{$key}{'color'} = $magenta;
  431.     } elsif ($tot{$key}{'server'} =~ /sybase/i) {
  432.       $tot{$key}{'color'} = $cyan;
  433.     } elsif ($tot{$key}{'server'} =~ /db2/i) {
  434.       $tot{$key}{'color'} = $sienna;
  435.     } elsif ($tot{$key}{'server'} =~ /informix/i) {
  436.       $tot{$key}{'color'} = $coral;
  437.     } elsif ($tot{$key}{'server'} =~ /microsoft/i) {
  438.       $tot{$key}{'color'} = $peach;
  439.     } elsif ($tot{$key}{'server'} =~ /access/i) {
  440.       $tot{$key}{'color'} = $lpeach;
  441.     } elsif ($tot{$key}{'server'} =~ /adabas/i) {
  442.       $tot{$key}{'color'} = $lorange;
  443.     }
  444.   }
  445.   # make the nice little borders
  446.   # left bar
  447.   $poly0 = new GD::Polygon;
  448.   $poly0->addPt(0,0);
  449.   $poly0->addPt($sm_border,$sm_border);
  450.   $poly0->addPt($sm_border,($height - $sm_border));
  451.   $poly0->addPt(0,$height);
  452.   $im->filledPolygon($poly0,$grey1);
  453.   $im->polygon($poly0, $grey4);
  454.   # upper bar
  455.   $poly3 = new GD::Polygon;
  456.   $poly3->addPt(0,0);
  457.   $poly3->addPt($sm_border,$sm_border);
  458.   $poly3->addPt(($width - $sm_border),$sm_border);
  459.   $poly3->addPt($width,0);
  460.   $im->polygon($poly3, $grey4);
  461.   $tmptime = localtime(time);
  462.   $im->string(gdSmallFont,($width - $sm_border - (gdSmallFont->width * length($tmptime))),($height - ($sm_border) - gdSmallFont->height), $tmptime, $grey3);
  463.   
  464.   # right bar
  465.   $poly1 = new GD::Polygon;
  466.   $poly1->addPt($width,0);
  467.   $poly1->addPt(($width - $sm_border),$sm_border);
  468.   $poly1->addPt(($width - $sm_border),($height - $sm_border));
  469.   $poly1->addPt($width,$height);
  470.   $im->filledPolygon($poly1, $grey3);
  471.   $im->stringUp(gdSmallFont,($width - 10),($height - (2 * $sm_border)), "Made by Luuk de Boer - 1997 (c)", $blue);
  472.   #below bar
  473.   $poly2 = new GD::Polygon;
  474.   $poly2->addPt(0,$height);
  475.   $poly2->addPt($sm_border,($height - $sm_border));
  476.   $poly2->addPt(($width - $sm_border),($height - $sm_border));
  477.   $poly2->addPt($width,$height);
  478.   $im->filledPolygon($poly2, $grey2);
  479.   
  480.   # do the black line around where in you will print ... (must be done at last
  481.   # but is hard to develop with ... but the filled grey must be done first :-)
  482.   $im->filledRectangle($left_border,$up_border,($width - ($right_border)),($height-$down_border),$grey4);
  483.   # print the nice title ...
  484.   $titlebar = "MySQL Benchmark results"; # head title ...
  485.   $titlebar1 = "Compare $opt_cmp "; # sub title
  486.   $header2 = "seconds/test"; # header value
  487.   $center = ($width / 2) - ((gdLargeFont->width * length($titlebar)) / 2);
  488.   $center1 = ($width / 2) - ((gdSmallFont->width * length($titlebar1)) / 2);
  489.   $center2 = ($width_greyfield/2) - ((gdSmallFont->width*length($header2))/2);
  490.   $bovenkant = $sm_border * 3;
  491.   $bovenkant1 = $bovenkant + gdLargeFont->height + (.5*$sm_border);
  492.   $bovenkant2 = $height - $down_border + (1*$sm_border) + (gdSmallFont->width*(length($xhigh)+3)); 
  493.   $im->string(gdLargeFont,($center),($bovenkant + 1), $titlebar, $grey3);
  494.   $im->string(gdLargeFont,($center),($bovenkant), $titlebar, $red);
  495.   $im->string(gdSmallFont,($center1),($bovenkant1), $titlebar1, $black);
  496.   $im->string(gdSmallFont,($left_border + $center2),($bovenkant2), $header2, $black);
  497.   $xlength = $width - $left_border - $right_border;
  498.   $lines = 10; # hard coded number of dashed lines
  499.   $xverh = $xlength / $xhigh;
  500. #  print " de verhouding ===> $xverh --- $xlength -- $xhigh n";
  501.   $xstep = ($xhigh / $lines) * $xverh;
  502.   $teller = 0;
  503.   # make the nice dashed lines and print the values ...
  504.   for ($i = 0; $i <= $lines; $i++) {
  505.     $st2 = ($left_border) + ($i * $xstep);
  506.     $im->dashedLine($st2,($height-$down_border),$st2,($up_border), $grey3);
  507.     if (($i != 0) && ($teller == 2)) {
  508.       $st3 = sprintf("%.2f", $i*($xhigh/$lines));
  509.       $im->stringUp(gdTinyFont,($st2 - (gdSmallFont->height/2)),($height - $down_border +(.5*$sm_border) + (gdSmallFont->width*(length($xhigh)+3))), $st3, $black);
  510.       $teller = 0;
  511.     }
  512.     $teller++;
  513.   }
  514.   $im->rectangle($left_border,$up_border,($width - ($right_border)),($height-$down_border),$black);
  515. }
  516. sub legend {
  517.   # make the legend ...
  518.   $legxbegin = $left_border;
  519.   $legybegin = $height - $down_border + (2*$sm_border) + (gdSmallFont->width * (length($xhigh) + 3)) + gdSmallFont->height;
  520.   $legxend = $legxbegin + $max_len_le + (4*$legend_block);
  521.   $legxend = $legxbegin + $width_greyfield;
  522.   $legyend = $legybegin + $max_high_le;
  523.   $im->filledRectangle($legxbegin,$legybegin,$legxend,$legyend,$grey4);
  524.   $im->rectangle($legxbegin,$legybegin,$legxend,$legyend,$black);
  525.   # calculate the space for the legend .....
  526.   $c = 0; $i = 1;
  527.   $legybegin += $legend_block;
  528.   foreach $key (@key_order) {
  529.     $xtmp = $legxbegin + $legend_block;
  530.     $ytmp = $legybegin + ($c * (gdSmallFont->height +2));
  531.     $xtmp1 = $xtmp + $legend_block;
  532.     $ytmp1 = $ytmp + gdSmallFont->height;
  533.     $im->filledRectangle($xtmp,$ytmp,$xtmp1,$ytmp1,$tot{$key}{'color'});
  534.     $im->rectangle($xtmp,$ytmp,$xtmp1,$ytmp1,$black);
  535.     $tmp = $key;
  536.     $tmp =~ s/-cmp-$opt_cmp//i;
  537.     $giflegend = sprintf "%-24.24s: %-40.40s",$tmp,$tot{$key}{'server'};
  538.     $xtmp2 = $xtmp1 + $legend_block;
  539.     $im->string(gdSmallFont,$xtmp2,$ytmp,"$giflegend",$black);
  540.     $c++;
  541.     $i++;
  542. #    print "$c $i -> $giflegendn";
  543.   }
  544.   
  545. }
  546. sub lines {
  547.   $g = 0;
  548.   $i = 0;
  549.   $ybegin = $up_border + ((($#key_order + 2)/2)*$step);
  550.   $xbegin = $left_border;
  551.   foreach $key (sort {$a cmp $b} keys %op) {
  552.     next if ($key =~ /TOTALS/i);
  553.     $c = 0;
  554. #    print "key - $keyn";
  555.     foreach $server (@key_order) {
  556.       $tot1{$server}{$key}->[1] = 1 if ($tot1{$server}{$key}->[1] == 0);
  557.       $entry = $tot1{$server}{$key}->[0]/$tot1{$server}{$key}->[1];
  558.       $ytmp = $ybegin + ($i * $step) ;
  559.       $xtmp = $xbegin + ($entry * $xverh) ;
  560.       $ytmp1 = $ytmp + $step;
  561. #      print "$server -- $entry --x $xtmp -- y $ytmp - $cn";
  562.       $entry1 = sprintf("%.2f", $entry);
  563.       if ($entry < $xhigh) {
  564.         $im->filledRectangle($xbegin, $ytmp, $xtmp, $ytmp1, $tot{$server}{'color'});
  565.         $im->rectangle($xbegin, $ytmp, $xtmp, $ytmp1, $black);
  566. # print the seconds behind the bar (look below for another entry)
  567. # this entry is for the bars that are not greater then the max width
  568. # of the grey field ...
  569. #        $im->string(gdTinyFont,(($xtmp+3),($ytmp),"$entry1",$black));
  570. # if you want the seconds in the color of the bar just uncomment it (below)
  571. #        $im->string(gdTinyFont,(($xtmp+3),($ytmp),"$entry1",$tot{$server}{'color'}));
  572.       } else {
  573.         $im->filledRectangle($xbegin, $ytmp, ($xbegin + ($xhigh*$xverh)), $ytmp1, $tot{$server}{'color'});
  574.         $im->rectangle($xbegin, $ytmp, ($xbegin + ($xhigh*$xverh)), $ytmp1, $black);
  575. # print the seconds behind the bar (look below for another entry)
  576. # here is the seconds printed behind the bar is the bar is too big for 
  577. # the graph ... (seconds is greater then xhigh ...)
  578.         $im->string(gdTinyFont, ($xbegin + ($xhigh*$xverh)+3),($ytmp),"$entry1",$black);
  579. # if you want the seconds in the color of the bar just uncomment it (below)
  580. #        $im->string(gdTinyFont, ($xbegin + ($xhigh*$xverh)+3),($ytmp),"$entry1",$colors[$c]);
  581.       }
  582.       $c++;
  583.       $i++;
  584.     }
  585.     # see if we can center the text between the bars ...
  586.     $ytmp2 = $ytmp1 - (((($c)*$step) + gdSmallFont->height)/2);
  587.     $im->string(gdSmallFont,($sm_border*2),$ytmp2,$key, $black);
  588.     $i++;
  589.   }
  590. }
  591. sub gif {
  592.   my ($name) = @_;
  593.   $name_gif = $name . ".gif";
  594.   print "name --> $name_gifn";
  595.   open (GIF, "> $name_gif") || die "Can't open $name_gif: $!n";
  596.   print GIF $im->gif;
  597.   close (GIF);
  598. }