mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
0ce407c292
* Use Compress::Zlib instead of gunzip in warning & scrape scripts * Exit with error if warning or scrape scripts fail. * Do not make warning.pl or scrape.pl setuid Bug #344695 r=bear
105 lines
2.6 KiB
Perl
Executable File
105 lines
2.6 KiB
Perl
Executable File
#! /usr/bonsaitools/bin/perl
|
|
# -*- Mode: perl; indent-tabs-mode: nil -*-
|
|
#
|
|
# The contents of this file are subject to the Mozilla 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/MPL/
|
|
#
|
|
# 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 Tinderbox
|
|
#
|
|
# The Initial Developer of the Original Code is Netscape Communications
|
|
# Corporation. Portions created by Netscape are Copyright (C) 1999
|
|
# Netscape Communications Corporation. All Rights Reserved.
|
|
#
|
|
# Contributor(s): Chris McAfee <mcafee@netscape.com>
|
|
|
|
#
|
|
# scrape.pl - Process log-scraped data into scrape.dat
|
|
# Write data to $tree/scrape.dat in the following format,
|
|
#
|
|
# <logfilename>|blurb1|blurb2|blurb3 ...
|
|
#
|
|
|
|
sub usage {
|
|
warn "./scrape.pl <tree> <logfile>";
|
|
}
|
|
|
|
use Compress::Zlib;
|
|
use lib "@TINDERBOX_DIR@";
|
|
require "tbglobals.pl";
|
|
|
|
$ENV{PATH} = "@SETUID_PATH@";
|
|
|
|
unless ($#ARGV == 1) {
|
|
&usage;
|
|
die "Error: Wrong number of arguments\n";
|
|
}
|
|
|
|
($tree, $logfile) = @ARGV;
|
|
|
|
$tree = &trick_taint($tree);
|
|
$logfile = &trick_taint($logfile);
|
|
|
|
die "Error: No tree named $tree" unless -r "$tree/treedata.pl";
|
|
require "$tree/treedata.pl";
|
|
|
|
# Seach the build log for the scrape data
|
|
#
|
|
my $gz = gzopen("$tree/$logfile", "rb")
|
|
or die "gzopen($tree/$logfile): $!\n";
|
|
@scrape_data = find_scrape_data($gz);
|
|
$gz->gzclose();
|
|
|
|
if (!defined(@scrape_data)) {
|
|
print "No scrape data found in log.\n";
|
|
exit(0);
|
|
}
|
|
|
|
# Save the scrape data to 'scrape.dat'
|
|
#
|
|
open(SCRAPE, ">>", "$tree/scrape.dat") or die "Unable to open $tree/scrape.dat";
|
|
print SCRAPE "$logfile|".join('|', @scrape_data)."\n";
|
|
close SCRAPE;
|
|
|
|
#print "scrape_data = ";
|
|
#my $i;
|
|
#foreach $i (@scrape_data) {
|
|
# print "$i ";
|
|
#}
|
|
#print "\n";
|
|
|
|
|
|
# end of main
|
|
#============================================================
|
|
|
|
sub find_scrape_data {
|
|
my ($gz) = $_[0];
|
|
local $_;
|
|
my @rv;
|
|
my @line;
|
|
my ($bytesread, $gzline);
|
|
while (defined($gz) && (($bytesread = $gz->gzreadline($gzline)) > 0)) {
|
|
if ($gzline =~ m/TinderboxPrint:/) {
|
|
# Line format:
|
|
# TinderboxPrint:<general html>
|
|
|
|
# Strip off the TinderboxPrint: part of the line
|
|
chomp($gzline);
|
|
$gzline =~ s/.*TinderboxPrint://;
|
|
|
|
# No longer use ; to create separate lines.
|
|
#@line = split(';', $_);
|
|
|
|
$line[0] = $gzline;
|
|
push(@rv, @line);
|
|
}
|
|
}
|
|
return @rv;
|
|
}
|