mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
88d823c0dd
repository it uses.
218 lines
5.3 KiB
Perl
Executable File
218 lines
5.3 KiB
Perl
Executable File
#!/usr/bonsaitools/bin/perl --
|
|
# -*- Mode: perl; indent-tabs-mode: nil -*-
|
|
#
|
|
# The contents of this file are subject to the Netscape Public License
|
|
# Version 1.0 (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 Tinderbox build tool.
|
|
#
|
|
# The Initial Developer of the Original Code is Netscape Communications
|
|
# Corporation. Portions created by Netscape are Copyright (C) 1998
|
|
# Netscape Communications Corporation. All Rights Reserved.
|
|
|
|
|
|
use lib "../bonsai";
|
|
require 'lloydcgi.pl';
|
|
require 'globals.pl';
|
|
|
|
umask O666;
|
|
|
|
|
|
$|=1;
|
|
|
|
check_password();
|
|
|
|
print "Content-type: text/html\n\n<HTML>\n";
|
|
|
|
$command = $form{'command'};
|
|
$tree= $form{'tree'};
|
|
|
|
if( $command eq 'create_tree' ){
|
|
&create_tree;
|
|
}
|
|
elsif( $command eq 'remove_build' ){
|
|
&remove_build;
|
|
}
|
|
elsif( $command eq 'trim_logs' ){
|
|
&trim_logs;
|
|
}
|
|
elsif( $command eq 'set_message' ){
|
|
&set_message;
|
|
}
|
|
elsif( $command eq 'disable_builds' ){
|
|
&disable_builds;
|
|
} else {
|
|
print "Unknown command: \"$command\".";
|
|
}
|
|
|
|
sub trim_logs {
|
|
$days = $form{'days'};
|
|
$tree = $form{'tree'};
|
|
|
|
print "<h2>Trimming Log files for $tree...</h2>\n<p>";
|
|
|
|
$min_date = time - (60*60*24 * $days);
|
|
|
|
#
|
|
# Nuke the old log files
|
|
#
|
|
$i = 0;
|
|
opendir( D, 'DogbertTip' );
|
|
while( $fn = readdir( D ) ){
|
|
if( $fn =~ /\.gz$/ ){
|
|
($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,
|
|
$ctime,$blksize,$blocks) = stat("$tree/$fn");
|
|
if( $mtime && ($mtime < $min_date) ){
|
|
print "$fn\n";
|
|
$tblocks += $blocks;
|
|
unlink( "$tree/$fn" );
|
|
$i++;
|
|
}
|
|
}
|
|
}
|
|
closedir( D );
|
|
$k = $tblocks*512/1024;
|
|
print "<br><b>$i Logfiles ( $k K bytes ) removed</b><br>\n";
|
|
|
|
#
|
|
# Trim build.dat
|
|
#
|
|
$builds_removed = 0;
|
|
open(BD, "<$tree/build.dat");
|
|
open(NBD, ">$tree/build.dat.new");
|
|
while( <BD> ){
|
|
($mailtime,$buildtime,$buildname) = split( /\|/ );
|
|
if( $buildtime >= $min_date ){
|
|
print NBD $_;
|
|
}
|
|
else {
|
|
$builds_removed++;
|
|
}
|
|
}
|
|
close( BD );
|
|
close( NBD );
|
|
|
|
rename( "$tree/build.dat", "$tree/build.dat.old" );
|
|
rename( "$tree/build.dat.new", "$tree/build.dat" );
|
|
|
|
print "<h2>$builds_removed Builds removed from build.dat</h2>\n";
|
|
}
|
|
|
|
sub create_tree {
|
|
$treename = $form{'treename'};
|
|
my $repository = $form{'repository'};
|
|
$modulename = $form{'modulename'};
|
|
$branchname = $form{'branchname'};
|
|
|
|
if( -r $treename ){
|
|
chmod 0777, $treename;
|
|
}
|
|
else {
|
|
mkdir( $treename, 0777 ) || die "<h1> Cannot mkdir $treename</h1>";
|
|
}
|
|
open( F, ">$treename/treedata.pl" );
|
|
print F "\$cvs_module='$modulename';\n";
|
|
print F "\$cvs_branch='$branchname';\n";
|
|
if ($repository ne "") {
|
|
print F "\$cvs_root='$repository';\n";
|
|
}
|
|
close( F );
|
|
|
|
open( F, ">$treename/build.dat" );
|
|
close( F );
|
|
|
|
open( F, ">$treename/who.dat" );
|
|
close( F );
|
|
|
|
open( F, ">$treename/notes.txt" );
|
|
close( F );
|
|
|
|
chmod 0777, "$treename/build.dat", "$treename/who.dat", "$treename/notes.txt",
|
|
"$treename/treedata.pl";
|
|
|
|
print "<h2><a href=showbuilds.cgi?tree=$treename>Tree created or modified</a></h2>\n";
|
|
}
|
|
|
|
sub remove_build {
|
|
$build_name = $form{'build'};
|
|
|
|
#
|
|
# Trim build.dat
|
|
#
|
|
$builds_removed = 0;
|
|
open(BD, "<$tree/build.dat");
|
|
open(NBD, ">$tree/build.dat.new");
|
|
while( <BD> ){
|
|
($mailtime,$buildtime,$bname) = split( /\|/ );
|
|
if( $bname ne $build_name ){
|
|
print NBD $_;
|
|
}
|
|
else {
|
|
$builds_removed++;
|
|
}
|
|
}
|
|
close( BD );
|
|
close( NBD );
|
|
chmod( 0777, "$tree/build.dat.new");
|
|
|
|
rename( "$tree/build.dat", "$tree/build.dat.old" );
|
|
rename( "$tree/build.dat.new", "$tree/build.dat" );
|
|
|
|
print "<h2><a href=showbuilds.cgi?tree=$tree>
|
|
$builds_removed Builds removed from build.dat</a></h2>\n";
|
|
}
|
|
|
|
sub disable_builds {
|
|
my $i,%buildnames;
|
|
$build_name = $form{'build'};
|
|
|
|
#
|
|
# Trim build.dat
|
|
#
|
|
open(BD, "<$tree/build.dat");
|
|
while( <BD> ){
|
|
($mailtime,$buildtime,$bname) = split( /\|/ );
|
|
$buildnames{$bname} = 0;
|
|
}
|
|
close( BD );
|
|
|
|
for $i (keys %form) {
|
|
if ($i =~ /^build_/ ){
|
|
$i =~ s/^build_//;
|
|
$buildnames{$i} = 1;
|
|
}
|
|
}
|
|
|
|
open(IGNORE, ">$tree/ignorebuilds.pl");
|
|
print IGNORE '$ignore_builds = {' . "\n";
|
|
for $i ( sort keys %buildnames ){
|
|
if( $buildnames{$i} == 0 ){
|
|
print IGNORE "\t\t'$i' => 1,\n";
|
|
}
|
|
}
|
|
print IGNORE "\t};\n";
|
|
|
|
chmod( 0777, "$tree/ignorebuilds.pl");
|
|
print "<h2><a href=showbuilds.cgi?tree=$treename>Build state Changed</a></h2>\n";
|
|
}
|
|
|
|
|
|
sub set_message {
|
|
$m = $form{'message'};
|
|
$m =~ s/\'/\\'/g;
|
|
open(MOD, ">$tree/mod.pl");
|
|
print MOD "\$message_of_day = \'$m\'\;\n1;";
|
|
close(MOD);
|
|
chmod( 0777, "$tree/mod.pl");
|
|
print "<h2><a href=showbuilds.cgi?tree=$tree>
|
|
Message Changed</a></h2>\n";
|
|
}
|
|
|