mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
115 lines
4.1 KiB
Perl
Executable File
115 lines
4.1 KiB
Perl
Executable File
#!/usr/bin/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.
|
|
#####################################################
|
|
|
|
# usage: perl -Ibin makeindex.pl
|
|
# Look at all the results files and create a top level index
|
|
|
|
unless ($resultbase) { # pick up systematic defaults, if needed
|
|
do 'args.pl'|| die $@;
|
|
parseArgs(); # parse command line
|
|
}
|
|
|
|
($testname = $params{WORKLOAD}) =~ s:conf/::;
|
|
$testname =~ s:.wld::;
|
|
|
|
my $entry = "";
|
|
|
|
$entry .= "<TR><TD><BR><A HREF=\"$params{TSTAMP}/results.html\">$params{TSTAMP}</A></TD>";
|
|
$entry .= "<TD>$testname</TD>\n";
|
|
$entry .= "<TD>$params{TITLE}</TD>\n";
|
|
$entry .= "<TD>$params{TIME}</TD>\n";
|
|
$entry .= "<TD>$params{CLIENTCOUNT}</TD>\n";
|
|
$entry .= "<TD><A HREF=\"$params{TSTAMP}/all.wld\">workload</A></TD>\n";
|
|
$entry .= "<TD><A HREF=\"$params{TSTAMP}/stderr\">stderr</A></TD></TR>\n";
|
|
|
|
if (-r "$resultbase/index.html") {
|
|
fileInsertAfter ("$resultbase/index.html",
|
|
"^<!-- INSERT TAGS HERE",
|
|
$entry);
|
|
} else { # create index from scratch
|
|
open(INDEXNEW, ">$resultbase/index.new") ||
|
|
die "Couldn't open $resultbase/index.new: $!";
|
|
|
|
print INDEXNEW <<END;
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
|
<HTML>
|
|
<TITLE>
|
|
MailStone Results
|
|
</TITLE>
|
|
<HEAD>
|
|
</HEAD>
|
|
<BODY TEXT="#000000" BGCOLOR="#FFFFFF" LINK="#0000FF" VLINK="#FF0000" ALINK="#000088">
|
|
<A HREF=$mailstoneURL>Mailstone documentation</A><BR>
|
|
<TABLE BORDER=2>
|
|
<CAPTION> Netscape MailStone Results Index </CAPTION>
|
|
<TR>
|
|
<TH>Run</TH> <TH>Testname</TH> <TH> Title </TH>
|
|
<TH>Duration</TH> <TH>Clients</TH> <TH>Details</TH> <TH>Error log</TH>
|
|
</TR>
|
|
<!-- INSERT TAGS HERE - DO NOT DELETE THIS LINE -->
|
|
END
|
|
|
|
print INDEXNEW $entry; # put in this entry
|
|
|
|
# Add in any existing entries
|
|
# get a list of all the results files
|
|
@resall = <$resultbase/*/results.html>;
|
|
# Write out all the links
|
|
# This could be rather slow, but we only do it when index.html is missing
|
|
foreach $filefull (reverse @resall) {
|
|
my $file = $filefull;
|
|
$file =~ s:$resultbase/::;
|
|
if ($file eq $params{TSTAMP}) { next; } # written above
|
|
my $dir = $file;
|
|
$dir =~ s:/results.html::;
|
|
# dont read in old workloads, it will override the current one
|
|
print INDEXNEW "<TR><TD><BR><A HREF=\"$file\">$dir</A></TD>\n";
|
|
print INDEXNEW "<TD> </TD><TD> </TD><TD> </TD><TD> </TD>\n";
|
|
print INDEXNEW "<TD><A HREF=\"$dir/all.wld\">workload</A></TD>\n";
|
|
print INDEXNEW "<TD><A HREF=\"$dir/stderr\">stderr</A></TD></TR>\n";
|
|
}
|
|
|
|
print INDEXNEW <<END;
|
|
</TABLE>
|
|
</BODY>
|
|
</HTML>
|
|
END
|
|
close (INDEXNEW);
|
|
fileBackup ("$resultbase/index.html");
|
|
rename ("$resultbase/index.new", "$resultbase/index.html");
|
|
print "Created $resultbase/index.html\n";
|
|
}
|
|
|
|
return 1;
|