mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-25 13:51:41 +00:00
237 lines
7.2 KiB
Perl
237 lines
7.2 KiB
Perl
# The contents of this file are subject to the Netscape Public
|
|
# License Version 1.1 (the "License"); you may not use this file
|
|
# except in compliance with the License. You may obtain a copy of
|
|
# the License at http://www.mozilla.org/NPL/
|
|
#
|
|
# Software distributed under the License is distributed on an "AS
|
|
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
# implied. See the License for the specific language governing
|
|
# rights and limitations under the License.
|
|
#
|
|
# The Original Code is the Netscape Mailstone utility,
|
|
# released March 17, 2000.
|
|
#
|
|
# The Initial Developer of the Original Code is Netscape
|
|
# Communications Corporation. Portions created by Netscape are
|
|
# Copyright (C) 1997-2000 Netscape Communications Corporation. All
|
|
# Rights Reserved.
|
|
#
|
|
# Contributor(s): Dan Christian <robodan@netscape.com>
|
|
# Marcel DePaolis <marcel@netcape.com>
|
|
#
|
|
# Alternatively, the contents of this file may be used under the
|
|
# terms of the GNU Public License (the "GPL"), in which case the
|
|
# provisions of the GPL are applicable instead of those above.
|
|
# If you wish to allow use of your version of this file only
|
|
# under the terms of the GPL and not to allow others to use your
|
|
# version of this file under the NPL, indicate your decision by
|
|
# deleting the provisions above and replace them with the notice
|
|
# and other provisions required by the GPL. If you do not delete
|
|
# the provisions above, a recipient may use your version of this
|
|
# file under either the NPL or the GPL.
|
|
#####################################################
|
|
|
|
# This file deals with the graphs data only
|
|
# Interfaces to gnuplot to generate gifs for HTML inclusion.
|
|
|
|
# sub function to write data files, fire off gnuscript, and clean up
|
|
# Uses global startTime and endTime figured above
|
|
# genPlot counterName title label \@protocols \@variables
|
|
sub genPlot {
|
|
my $name = shift;
|
|
my $title = shift;
|
|
my $label = shift;
|
|
my $protos = shift || die "genPlot: '$name' missing protocols";
|
|
my $f = shift;
|
|
my $vars = shift || die "genPlot: '$name' missing vars";
|
|
|
|
my $runlist = "";
|
|
my $totPoints = 0;
|
|
my $totProtos = 0;
|
|
my @realProtos;
|
|
my @goodProtos;
|
|
|
|
# user fewer data points than pixels to look good.
|
|
# on 640x480 gif, the graph is about 579x408
|
|
my $maxData = int (($params{CHARTWIDTH}-60) * 0.9);
|
|
my $averageCnt = int (($endTime - $startTime + ($maxData - 1))/$maxData);
|
|
if ($averageCnt < 1) { $averageCnt = 1; } # must be a positive int
|
|
|
|
($params{DEBUG}) && print "$name: averageCnt=$averageCnt vars = @$vars \n";
|
|
|
|
foreach $p (@$protos) { # First see if there is anything to graph
|
|
($p =~ /^Total$/o) && next; # derived if needed
|
|
my $pPoints = 0;
|
|
my $gp = $graphs{$p};
|
|
ALLVAR: foreach $vm (@$vars) {
|
|
my $vp = ($f) ? $gp->{$vm}->{$f} : $gp->{$vm};
|
|
|
|
unless (($vp) && (scalar %$vp)) {
|
|
#print "genplot Checking: $p $vm $f => NO\n";
|
|
next;
|
|
}
|
|
#print "genplot Checking: $p $vm $f => ";
|
|
foreach $time (keys %$vp) {
|
|
next unless ($vp->{$time} != 0);
|
|
$totPoints++;
|
|
$pPoints++;
|
|
#print "VALUES\n";
|
|
last ALLVAR;
|
|
}
|
|
#print "nothing\n"
|
|
}
|
|
if ($pPoints > 0) { # count how many protocols have non 0
|
|
$totProtos++;
|
|
push @goodProtos, $p;
|
|
}
|
|
}
|
|
($params{DEBUG}) && print "\tprotocols: @goodProtos\n";
|
|
|
|
if ($totPoints == 0) { # nothing in any protocol
|
|
print "No data for graph '$name', variables '@$vars'\n";
|
|
return 0;
|
|
}
|
|
|
|
foreach $p (@$protos) {
|
|
unlink ("$tmpdir/$name.$p"); # remove any previous runs
|
|
|
|
(($p =~ /^Total$/o) && ($totProtos <= 1))
|
|
&& next; # skip Totally if only 1 protocol plus total
|
|
|
|
($p !~ /^Total$/o) && push @realProtos, $p; # everything but Total
|
|
|
|
# if ($p =~ /^Total$/o) { # move from last to first
|
|
# $runlist = "\'$name.$p\' with lines, " . $runlist;
|
|
# next;
|
|
# }
|
|
|
|
$runlist .= ", " if ($runlist); # later ones
|
|
|
|
$runlist .= "\'$name.$p\' with lines";
|
|
}
|
|
|
|
$totPoints = 0;
|
|
foreach $p (@realProtos) { # create the plot data files
|
|
open(DATA, ">$tmpdir/$name.$p") ||
|
|
die "Can't open $tmpdir/$name.$p:$!";
|
|
my $gp = $graphs{$p};
|
|
my $n = 0;
|
|
my $s = 0.0;
|
|
my $sTime = 0.0;
|
|
my $vp = ($f) ? $gp->{$vars->[0]}->{$f} : $gp->{$vars->[0]};
|
|
|
|
# foreach $time (sort numeric keys %$vp) {
|
|
for (my $tm = $startTime; $tm <= $endTime; $tm++) {
|
|
my $v = 0.0;
|
|
foreach $vm (@$vars) {
|
|
$vp = ($f) ? $gp->{$vm}->{$f} : $gp->{$vm};
|
|
|
|
$totPoints++;
|
|
|
|
# due to optimization in updateDelta,
|
|
# 0 entries are undefined (also avoids warning)
|
|
$v += ($vp->{$tm}) ? $vp->{$tm} : 0;
|
|
|
|
# if ($vp->{$tm} < 0) {
|
|
# print $name, ": proto=", $p, " var=", $vm,
|
|
# " value=", $vp->{$tm}, "\n";
|
|
# }
|
|
}
|
|
$s += $v;
|
|
$n += 1;
|
|
if ($n == 1) { # NOTE: shifts left in sliding window
|
|
$sTime = $tm-$startTime;
|
|
}
|
|
if ($n >= $averageCnt) {
|
|
printf (DATA "%d %f\n", $sTime * $timeStep, $s/$n);
|
|
$n = 0;
|
|
$s = 0.0;
|
|
}
|
|
}
|
|
if ($n > 0) { # handle end case
|
|
printf (DATA "%d %f\n", $sTime * $timeStep, $s/$n);
|
|
}
|
|
close(DATA);
|
|
}
|
|
#($params{DEBUG}) && print "\tpoints: $totPoints\n";
|
|
|
|
# need to handle "Total" case
|
|
# read the other files and write out the sum
|
|
# FIX: total my be mis-aligned with data
|
|
if (($#$protos > $#realProtos) && ($totProtos > 1)) {
|
|
unlink ("$tmpdir/$name.Total");
|
|
open(DATA, ">$tmpdir/$name.Total") ||
|
|
die "Can't open $tmpdir/$name.Total:$!";
|
|
|
|
foreach $r (@goodProtos) { # get file handles
|
|
open($r, "$tmpdir/$name.$r")
|
|
|| die "Couldn't open $tmpdir/$name.$r: $!";
|
|
}
|
|
# ASSUMES files are identical in order
|
|
my $first = shift @goodProtos;
|
|
# print "First protocol: $first Rest: @realProtos\n";
|
|
while (<$first>) {
|
|
my ($t, $s) = split ' ', $_;
|
|
foreach $r (@goodProtos) { # get file handles
|
|
$l = <$r>;
|
|
if ($l) {
|
|
my ($tt, $v) = split ' ', $l;
|
|
$t = $tt unless ($t); # in case first proto missing time
|
|
$s += $v;
|
|
}
|
|
}
|
|
printf (DATA "%d %f\n", $t, $s);
|
|
}
|
|
|
|
foreach $r (@goodProtos) { close($r); }
|
|
close (DATA);
|
|
}
|
|
|
|
# Create a script to feed to gnuplot, which creates a .gif graph.
|
|
$runTime = ($endTime - $startTime + 1) * $timeStep;
|
|
unlink("$tmpdir/$name.gpt");
|
|
open(SCRIPT, ">$tmpdir/$name.gpt")
|
|
|| die "Can't open $tmpdir/$name.gpt:$!";
|
|
|
|
$gnuplot = $params{GNUPLOT};
|
|
if ($gnuplot !~ /^\//) { # if not absolute, adjust for cd $tmpbase
|
|
$gnuplot = "../../$gnuplot"; # ASSUME $tmpbase is single dir
|
|
}
|
|
#print "gnuplot is $gnuplot $params{GNUPLOT}\n";
|
|
|
|
my $varstring = ""; # create display version of names
|
|
foreach $t (@$vars) {
|
|
$varstring .= ", " if ($varstring);
|
|
$varstring .= ($timerNames{$t}) ? $timerNames{$t} : $t;
|
|
}
|
|
print SCRIPT<<"!GROK!THIS!";
|
|
set terminal gif small size $params{CHARTWIDTH},$params{CHARTHEIGHT}
|
|
set output "../../$resultdir/$name.gif" # ASSUME $tmpbase is single dir
|
|
set autoscale
|
|
set xlabel "Test time (seconds)"
|
|
set ylabel "$label"
|
|
set title "$title ($varstring) -- $params{TSTAMP}"
|
|
plot [0:$runTime] $runlist
|
|
!GROK!THIS!
|
|
close(SCRIPT);
|
|
|
|
# run script from tmpbase to clean up line labeling
|
|
# my $olddir=getcwd();
|
|
chdir $tmpdir;
|
|
system (split (/\s/, $gnuplot), "$name.gpt");
|
|
chdir "../..";
|
|
# chdir $olddir;
|
|
|
|
unless ($params{DEBUG}) {
|
|
# cleanup the plot data (or leave around for debugging)
|
|
foreach $p (@$protos) {
|
|
unlink("$tmpdir/$name.$p");
|
|
}
|
|
unlink("$tmpdir/$name.gpt");
|
|
}
|
|
return 1;
|
|
}
|
|
|
|
|
|
return 1;
|