1998-05-26 19:46:36 +00:00
|
|
|
|
=head1 NAME
|
|
|
|
|
|
1998-05-29 22:53:12 +00:00
|
|
|
|
B<Moz> - routines for automating CodeWarrior builds, and some extra-curricular activities related to building Mozilla
|
1998-05-26 19:46:36 +00:00
|
|
|
|
|
1998-05-29 22:53:12 +00:00
|
|
|
|
=head1 SYNOPSIS
|
1998-05-26 19:46:36 +00:00
|
|
|
|
|
1998-05-29 22:53:12 +00:00
|
|
|
|
use Moz;
|
1998-05-26 19:46:36 +00:00
|
|
|
|
|
1998-05-29 22:53:12 +00:00
|
|
|
|
OpenErrorLog(":::BuildLog");
|
|
|
|
|
StopForErrors();
|
1998-05-26 19:46:36 +00:00
|
|
|
|
|
1998-06-05 00:32:15 +00:00
|
|
|
|
$Moz::QUIET = 1;
|
|
|
|
|
InstallFromManifest(":projects:MANIFEST", $dist_dir);
|
|
|
|
|
|
1998-05-29 22:53:12 +00:00
|
|
|
|
BuildProjectClean(":projects:SomeProject.mcp", "SomeTarget");
|
|
|
|
|
MakeAlias(":projects:SomeProject.shlb", $dist_dir);
|
1998-05-26 19:46:36 +00:00
|
|
|
|
|
1998-05-29 22:53:12 +00:00
|
|
|
|
DontStopForErrors();
|
1998-05-26 19:46:36 +00:00
|
|
|
|
|
1998-05-29 22:53:12 +00:00
|
|
|
|
BuildProject(":projects:SomeOtherProject.mcp", "SomeTarget");
|
|
|
|
|
|
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
|
|
|
|
|
|
B<Moz> comprises the routines needed to slap CodeWarrior around, force it to build a sequence of projects, report the results, and a few other things.
|
1998-05-26 19:46:36 +00:00
|
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
|
|
|
1998-05-20 08:12:13 +00:00
|
|
|
|
|
1998-05-29 22:53:12 +00:00
|
|
|
|
|
1998-05-20 08:12:13 +00:00
|
|
|
|
package Moz;
|
|
|
|
|
require Exporter;
|
1999-03-25 04:00:56 +00:00
|
|
|
|
|
|
|
|
|
use Mac::Types;
|
1999-02-02 00:51:09 +00:00
|
|
|
|
use Mac::Events;
|
1999-03-25 04:00:56 +00:00
|
|
|
|
use Mac::Processes;
|
1998-05-20 08:12:13 +00:00
|
|
|
|
|
|
|
|
|
@ISA = qw(Exporter);
|
1999-04-21 00:37:37 +00:00
|
|
|
|
@EXPORT = qw(BuildProject BuildProjectClean OpenErrorLog MakeAlias StopForErrors DontStopForErrors InstallFromManifest InstallResources SetBuildNumber SetAgentString SetTimeBomb Delay ActivateApplication);
|
1998-06-05 00:32:15 +00:00
|
|
|
|
@EXPORT_OK = qw(CloseErrorLog UseCodeWarriorLib QUIET);
|
1998-05-20 08:12:13 +00:00
|
|
|
|
|
|
|
|
|
use Cwd;
|
1998-05-27 19:52:28 +00:00
|
|
|
|
use File::Path;
|
1998-05-30 03:13:10 +00:00
|
|
|
|
use ExtUtils::Manifest 'maniread';
|
1998-05-20 08:12:13 +00:00
|
|
|
|
|
1998-07-30 01:09:52 +00:00
|
|
|
|
use CodeWarriorLib;
|
|
|
|
|
|
1998-05-20 08:12:13 +00:00
|
|
|
|
sub current_directory()
|
|
|
|
|
{
|
|
|
|
|
my $current_directory = cwd();
|
|
|
|
|
chop($current_directory) if ( $current_directory =~ m/:$/ );
|
|
|
|
|
return $current_directory;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sub full_path_to($)
|
|
|
|
|
{
|
|
|
|
|
my ($path) = @_;
|
|
|
|
|
if ( $path =~ m/^[^:]+$/ )
|
|
|
|
|
{
|
|
|
|
|
$path = ":" . $path;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( $path =~ m/^:/ )
|
|
|
|
|
{
|
|
|
|
|
$path = current_directory() . $path;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $path;
|
|
|
|
|
}
|
|
|
|
|
|
1998-05-29 22:53:12 +00:00
|
|
|
|
=head2 Setup
|
|
|
|
|
|
|
|
|
|
Pretty much, everything is taken care of for you.
|
|
|
|
|
However, B<Moz> does use a little compiled AppleScript library (the file CodeWarriorLib) for some of its communcication with CodeWarrior.
|
|
|
|
|
If this library isn't in the same directory as "Moz.pm", then you need to tell B<Moz> where to find it.
|
|
|
|
|
Call C<UseCodeWarriorLib($path_to_CodeWarriorLib)>.
|
|
|
|
|
This routine is not exported by default, nor are you likely to need it.
|
|
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
1998-05-20 08:12:13 +00:00
|
|
|
|
sub UseCodeWarriorLib($)
|
|
|
|
|
{
|
1998-07-30 01:09:52 +00:00
|
|
|
|
# ($CodeWarriorLib) = @_;
|
|
|
|
|
# $CodeWarriorLib = full_path_to($CodeWarriorLib);
|
1998-05-20 08:12:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sub activate_CodeWarrior()
|
|
|
|
|
{
|
1998-07-30 01:09:52 +00:00
|
|
|
|
#MacPerl::DoAppleScript(<<END_OF_APPLESCRIPT);
|
|
|
|
|
# tell (load script file "$CodeWarriorLib") to ActivateCodeWarrior()
|
|
|
|
|
#END_OF_APPLESCRIPT
|
1998-05-20 08:12:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BEGIN
|
|
|
|
|
{
|
1998-07-30 01:09:52 +00:00
|
|
|
|
# UseCodeWarriorLib(":CodeWarriorLib");
|
|
|
|
|
# activate_CodeWarrior();
|
|
|
|
|
CodeWarriorLib::activate();
|
1998-05-20 08:12:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$logging = 0;
|
|
|
|
|
$recent_errors_file = "";
|
1998-05-20 23:09:53 +00:00
|
|
|
|
$stop_on_1st_error = 1;
|
1998-06-05 00:32:15 +00:00
|
|
|
|
$QUIET = 0;
|
1998-05-29 22:53:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
=head2 Logging all the errors and warnings - C<OpenErrorLog($log_file)>, C<CloseErrorLog()>
|
|
|
|
|
|
|
|
|
|
The warnings and errors generated in the course of building projects can be logged to a file.
|
|
|
|
|
Tinderbox uses this facility to show why a remote build failed.
|
|
|
|
|
|
|
|
|
|
Logging is off by default.
|
|
|
|
|
Start logging at any point in your build process with C<OpenErrorLog($log_file)>.
|
|
|
|
|
Stop with C<CloseErrorLog()>.
|
|
|
|
|
You never need to close the log explicitly, unless you want to just log a couple of projects in the middle of a big list.
|
|
|
|
|
C<CloseErrorLog()> is not exported by default.
|
|
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
1998-05-20 08:12:13 +00:00
|
|
|
|
sub CloseErrorLog()
|
|
|
|
|
{
|
|
|
|
|
if ( $logging )
|
|
|
|
|
{
|
|
|
|
|
close(ERROR_LOG);
|
|
|
|
|
$logging = 0;
|
1998-05-29 22:53:12 +00:00
|
|
|
|
StopForErrors() if $stop_on_1st_error;
|
1998-05-20 08:12:13 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1998-05-29 22:53:12 +00:00
|
|
|
|
|
|
|
|
|
|
1998-05-20 08:12:13 +00:00
|
|
|
|
sub OpenErrorLog($)
|
|
|
|
|
{
|
|
|
|
|
my ($log_file) = @_;
|
|
|
|
|
|
|
|
|
|
CloseErrorLog();
|
|
|
|
|
if ( $log_file )
|
|
|
|
|
{
|
|
|
|
|
$log_file = full_path_to($log_file);
|
1998-12-12 00:02:38 +00:00
|
|
|
|
|
|
|
|
|
open(ERROR_LOG, ">$log_file") || die "Can't open logfile, check the file path.\n";
|
1998-12-16 23:48:55 +00:00
|
|
|
|
MacPerl::SetFileInfo("CWIE", "TEXT", $log_file);
|
1998-05-20 08:12:13 +00:00
|
|
|
|
|
|
|
|
|
$log_file =~ m/.+:(.+)/;
|
|
|
|
|
$recent_errors_file = full_path_to("$1.part");
|
|
|
|
|
$logging = 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1998-05-29 22:53:12 +00:00
|
|
|
|
|
|
|
|
|
=head2 Stopping before it's too late - C<StopForErrors()>, C<DontStopForErrors()>
|
|
|
|
|
|
|
|
|
|
When building a long list of projects, you decide whether to continue building subsequent projects when one fails.
|
|
|
|
|
By default, your build script will C<die> after the first project that generates an error while building.
|
|
|
|
|
Change this behavior with C<DontStopForErrors()>.
|
|
|
|
|
Re-enable it with C<StopForErrors()>.
|
|
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
1998-05-20 23:09:53 +00:00
|
|
|
|
sub StopForErrors()
|
|
|
|
|
{
|
|
|
|
|
$stop_on_1st_error = 1;
|
1998-05-26 19:46:36 +00:00
|
|
|
|
|
|
|
|
|
# Can't stop for errors unless we notice them.
|
|
|
|
|
# Can't notice them unless we are logging.
|
|
|
|
|
# If the user didn't explicitly request logging, log to a temporary file.
|
|
|
|
|
|
|
|
|
|
if ( ! $recent_errors_file )
|
|
|
|
|
{
|
|
|
|
|
OpenErrorLog("${TMPDIR}BuildResults");
|
|
|
|
|
}
|
1998-05-20 23:09:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sub DontStopForErrors()
|
|
|
|
|
{
|
|
|
|
|
$stop_on_1st_error = 0;
|
|
|
|
|
}
|
|
|
|
|
|
1998-05-20 08:12:13 +00:00
|
|
|
|
sub log_message($)
|
|
|
|
|
{
|
|
|
|
|
if ( $logging )
|
|
|
|
|
{
|
|
|
|
|
my ($message) = @_;
|
|
|
|
|
print ERROR_LOG $message;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sub log_message_with_time($)
|
|
|
|
|
{
|
|
|
|
|
if ( $logging )
|
|
|
|
|
{
|
|
|
|
|
my ($message) = @_;
|
|
|
|
|
my $time_stamp = localtime();
|
|
|
|
|
log_message("$message ($time_stamp)\n");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1998-05-21 02:41:11 +00:00
|
|
|
|
sub log_recent_errors($)
|
1998-05-20 08:12:13 +00:00
|
|
|
|
{
|
1998-05-21 02:41:11 +00:00
|
|
|
|
my ($project_name) = @_;
|
1998-05-20 23:09:53 +00:00
|
|
|
|
my $found_errors = 0;
|
1998-06-26 22:28:20 +00:00
|
|
|
|
|
1998-05-20 08:12:13 +00:00
|
|
|
|
if ( $logging )
|
|
|
|
|
{
|
|
|
|
|
open(RECENT_ERRORS, "<$recent_errors_file");
|
|
|
|
|
|
|
|
|
|
while( <RECENT_ERRORS> )
|
|
|
|
|
{
|
1999-03-25 04:00:56 +00:00
|
|
|
|
if ( /^Error/ || /^Couldn<64>t find project file/ || /^Link Error/ )
|
1998-05-20 23:09:53 +00:00
|
|
|
|
{
|
1998-11-13 22:06:10 +00:00
|
|
|
|
# if (!$found_errors)
|
|
|
|
|
# print $_;
|
1998-05-20 23:09:53 +00:00
|
|
|
|
$found_errors = 1;
|
|
|
|
|
}
|
1998-05-20 08:12:13 +00:00
|
|
|
|
print ERROR_LOG $_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
close(RECENT_ERRORS);
|
|
|
|
|
unlink("$recent_errors_file");
|
|
|
|
|
}
|
1998-06-26 22:28:20 +00:00
|
|
|
|
|
1998-05-20 23:09:53 +00:00
|
|
|
|
if ( $stop_on_1st_error && $found_errors )
|
|
|
|
|
{
|
|
|
|
|
print ERROR_LOG "### Build failed.\n";
|
1998-05-21 02:41:11 +00:00
|
|
|
|
die "### Errors encountered building \"$project_name\".\n";
|
1998-05-20 23:09:53 +00:00
|
|
|
|
}
|
1998-05-20 08:12:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
1998-05-28 00:15:54 +00:00
|
|
|
|
sub build_project($$$)
|
1998-05-20 08:12:13 +00:00
|
|
|
|
{
|
1998-05-28 00:15:54 +00:00
|
|
|
|
my ($project_path, $target_name, $clean_build) = @_;
|
1998-05-20 08:12:13 +00:00
|
|
|
|
$project_path = full_path_to($project_path);
|
|
|
|
|
|
1998-07-30 01:09:52 +00:00
|
|
|
|
# $project_path =~ m/.+:(.+)/;
|
|
|
|
|
# my $project_name = $1;
|
1998-05-20 08:12:13 +00:00
|
|
|
|
|
|
|
|
|
log_message_with_time("### Building \"$project_path\"");
|
|
|
|
|
|
1998-06-04 07:35:50 +00:00
|
|
|
|
# Check that the given project exists
|
|
|
|
|
if (! -e $project_path)
|
|
|
|
|
{
|
|
|
|
|
print ERROR_LOG "### Build failed.\n";
|
|
|
|
|
die "### Can't find project file \"$project_path\".\n";
|
|
|
|
|
}
|
|
|
|
|
|
1998-11-12 19:34:14 +00:00
|
|
|
|
print "Building \"$project_path\[$target_name\]\"\n";
|
1998-06-04 07:35:50 +00:00
|
|
|
|
|
1998-07-30 01:09:52 +00:00
|
|
|
|
$had_errors = CodeWarriorLib::build_project(
|
|
|
|
|
$project_path, $target_name, $recent_errors_file, $clean_build
|
|
|
|
|
);
|
1999-02-02 00:51:09 +00:00
|
|
|
|
WaitNextEvent();
|
1998-07-30 01:09:52 +00:00
|
|
|
|
|
|
|
|
|
# $had_errors =
|
|
|
|
|
#MacPerl::DoAppleScript(<<END_OF_APPLESCRIPT);
|
|
|
|
|
# tell (load script file "$CodeWarriorLib") to BuildProject("$project_path", "$project_name", "$target_name", "$recent_errors_file", $clean_build)
|
|
|
|
|
#END_OF_APPLESCRIPT
|
1998-05-20 08:12:13 +00:00
|
|
|
|
|
|
|
|
|
# Append any errors to the globally accumulated log file
|
1999-02-02 00:51:09 +00:00
|
|
|
|
# if ( $had_errors ) # Removed this test, because we want warnings, too. -- jrm
|
1998-05-20 08:12:13 +00:00
|
|
|
|
{
|
1998-05-21 02:41:11 +00:00
|
|
|
|
log_recent_errors($project_path);
|
1998-05-20 08:12:13 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1998-05-29 22:53:12 +00:00
|
|
|
|
=head2 Getting CodeWarrior to build projects - C<BuildProject($project, $opt_target)>, C<BuildProjectClean($project, $opt_target)>
|
|
|
|
|
|
|
|
|
|
C<BuildProject()> and C<BuildProjectClean()> are identical, except that the latter first removes object code.
|
|
|
|
|
In both, CodeWarrior opens the project if it wasn't already open; builds the given (or else current) target; and finally closes
|
|
|
|
|
the project, if it wasn't already open.
|
|
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
1998-05-28 00:15:54 +00:00
|
|
|
|
sub BuildProject($;$)
|
|
|
|
|
{
|
|
|
|
|
my ($project_path, $target_name) = @_;
|
1998-08-03 20:20:53 +00:00
|
|
|
|
build_project($project_path, $target_name, 0);
|
1998-05-28 00:15:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sub BuildProjectClean($;$)
|
|
|
|
|
{
|
|
|
|
|
my ($project_path, $target_name) = @_;
|
1998-08-03 20:20:53 +00:00
|
|
|
|
build_project($project_path, $target_name, 1);
|
1998-05-28 00:15:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
1998-05-29 22:53:12 +00:00
|
|
|
|
|
|
|
|
|
=head2 Miscellaneous
|
|
|
|
|
|
|
|
|
|
C<MakeAlias($old_file, $new_file)> functions like C<symlink()>, except with better argument defaulting and more explicit error messages.
|
|
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
|
|
sub MakeAlias($$)
|
1998-05-27 19:52:28 +00:00
|
|
|
|
{
|
|
|
|
|
my ($old_file, $new_file) = @_;
|
|
|
|
|
|
|
|
|
|
# if the directory to hold $new_file doesn't exist, create it
|
|
|
|
|
if ( ($new_file =~ m/(.+:)/) && !-d $1 )
|
|
|
|
|
{
|
|
|
|
|
mkpath($1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# if a leaf name wasn't specified for $new_file, use the leaf from $old_file
|
|
|
|
|
if ( ($new_file =~ m/:$/) && ($old_file =~ m/.+:(.+)/) )
|
|
|
|
|
{
|
|
|
|
|
$new_file .= $1;
|
|
|
|
|
}
|
|
|
|
|
|
1998-07-30 01:09:52 +00:00
|
|
|
|
my $message = "Can't create a Finder alias (at \"$new_file\")\n for \"$old_file\"; because ";
|
|
|
|
|
|
|
|
|
|
die "$message \"$old_file\" doesn't exist.\n" unless -e $old_file;
|
|
|
|
|
die "$message I won't replace an existing (non-alias) file with an alias.\n" if ( -e $new_file && ! -l $new_file );
|
|
|
|
|
|
|
|
|
|
# now: $old_file exists; $new_file doesn't (or else, is an alias already)
|
|
|
|
|
|
|
|
|
|
if ( -l $new_file )
|
|
|
|
|
{
|
|
|
|
|
# ...then see if it already points to $old_file
|
|
|
|
|
my $current_target = full_path_to(readlink($new_file));
|
|
|
|
|
my $new_target = full_path_to($old_file);
|
|
|
|
|
|
|
|
|
|
return if ( $current_target eq $new_target );
|
|
|
|
|
# if the desired alias already exists and points to the right thing, then we're done
|
|
|
|
|
|
|
|
|
|
unlink $new_file;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
symlink($old_file, $new_file) || die "$message symlink returned an unexpected error.\n";
|
1998-05-27 19:52:28 +00:00
|
|
|
|
}
|
1998-06-04 07:35:50 +00:00
|
|
|
|
|
|
|
|
|
|
1998-05-30 03:13:10 +00:00
|
|
|
|
=pod
|
|
|
|
|
|
|
|
|
|
C<InstallFromManifest()>
|
|
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
1999-06-02 02:05:36 +00:00
|
|
|
|
sub InstallFromManifest($;$$)
|
1998-05-30 03:13:10 +00:00
|
|
|
|
{
|
1999-06-02 02:05:36 +00:00
|
|
|
|
my ($manifest_file, $dest_dir, $flat) = @_;
|
|
|
|
|
|
|
|
|
|
$flat = 0 unless defined($flat); # if $flat, all rel. paths in MANIFEST get aliased to the root of $dest_dir
|
1998-05-30 03:13:10 +00:00
|
|
|
|
|
|
|
|
|
$dest_dir ||= ":";
|
|
|
|
|
|
|
|
|
|
$manifest_file =~ m/(.+):/;
|
|
|
|
|
my $source_dir = $1;
|
|
|
|
|
|
|
|
|
|
chop($dest_dir) if $dest_dir =~ m/:$/;
|
|
|
|
|
|
1999-02-02 00:51:09 +00:00
|
|
|
|
#Mac::Events->import();
|
|
|
|
|
WaitNextEvent();
|
1999-06-02 02:05:36 +00:00
|
|
|
|
if ($flat)
|
|
|
|
|
{
|
|
|
|
|
print "Doing manifest on \"$manifest_file\" FLAT\n" unless $QUIET;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
print "Doing manifest on \"$manifest_file\"\n" unless $QUIET;
|
|
|
|
|
}
|
1998-06-04 07:35:50 +00:00
|
|
|
|
|
1998-05-30 03:13:10 +00:00
|
|
|
|
my $read = maniread(full_path_to($manifest_file));
|
|
|
|
|
foreach $file (keys %$read)
|
|
|
|
|
{
|
|
|
|
|
next unless $file;
|
|
|
|
|
|
|
|
|
|
$subdir = ":";
|
1999-06-02 02:05:36 +00:00
|
|
|
|
if (!$flat && ($file =~ /:.+:/ ))
|
1998-05-30 03:13:10 +00:00
|
|
|
|
{
|
|
|
|
|
$subdir = $&;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$file = ":$file" unless $file =~ m/^:/;
|
|
|
|
|
MakeAlias("$source_dir$file", "$dest_dir$subdir");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1999-04-21 00:37:37 +00:00
|
|
|
|
|
|
|
|
|
=pod
|
|
|
|
|
|
|
|
|
|
C<InstallResources()>
|
|
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
|
|
# parameters are path to MANIFEST file, destination dir, true (to make copies) or false (to make aliases)
|
|
|
|
|
sub InstallResources($;$;$)
|
|
|
|
|
{
|
|
|
|
|
my ($manifest_file, $dest_dir, $copy_files) = @_;
|
|
|
|
|
|
|
|
|
|
$dest_dir ||= ":";
|
|
|
|
|
|
|
|
|
|
$manifest_file =~ m/(.+):/;
|
|
|
|
|
my $source_dir = $1;
|
|
|
|
|
|
|
|
|
|
chop($dest_dir) if $dest_dir =~ m/:$/;
|
|
|
|
|
|
|
|
|
|
WaitNextEvent();
|
|
|
|
|
print "Installing resources from \"$manifest_file\"\n" unless $QUIET;
|
|
|
|
|
|
|
|
|
|
my $read = maniread(full_path_to($manifest_file));
|
|
|
|
|
foreach $file (keys %$read)
|
|
|
|
|
{
|
|
|
|
|
next unless $file;
|
|
|
|
|
|
|
|
|
|
if ($copy_files)
|
|
|
|
|
{
|
|
|
|
|
print "Implement this if you need it";
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
MakeAlias("$source_dir:$file", "$dest_dir:$file");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1998-09-02 22:52:49 +00:00
|
|
|
|
sub SetBuildNumber
|
|
|
|
|
{
|
1998-05-30 03:13:10 +00:00
|
|
|
|
|
1998-09-02 22:52:49 +00:00
|
|
|
|
open (OUTPUT, ">:mozilla:config:build_number") || die "could not open buildnumber";
|
|
|
|
|
|
|
|
|
|
open (BDATE, "perl :mozilla:config:bdate.pl|");
|
|
|
|
|
|
|
|
|
|
while (<BDATE>) {
|
|
|
|
|
print OUTPUT $_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
close (BDATE);
|
|
|
|
|
close (OUTPUT);
|
|
|
|
|
|
1999-07-16 00:07:18 +00:00
|
|
|
|
system ("perl :mozilla:config:aboutime.pl :mozilla:xpfe:browser:resources:content:navigator.xul :mozilla:config:build_number");
|
1999-03-29 18:41:38 +00:00
|
|
|
|
|
1998-09-02 22:52:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sub SetAgentString
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
open (BDATE, ":mozilla:config:build_number") || die "could not open buildnumber";
|
|
|
|
|
|
|
|
|
|
while (<BDATE>) {
|
|
|
|
|
$build_number = $_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
close (BDATE);
|
|
|
|
|
|
|
|
|
|
open (ORIGFILE, ":mozilla:cmd:macfe:restext:custom.r") || die "no original file";
|
|
|
|
|
open (OUTPUT, ">:mozilla:cmd:macfe:restext:agent.r") || die "no output file";
|
|
|
|
|
|
|
|
|
|
chop($build_number);
|
|
|
|
|
|
|
|
|
|
while (<ORIGFILE>) {
|
|
|
|
|
|
|
|
|
|
$tempstring = $_;
|
|
|
|
|
if ($tempstring =~ "\#define VERSION_MAJOR_STR") {
|
|
|
|
|
$tempstring = "\#define VERSION_MAJOR_STR \"5.0a1-" . $build_number . " Development\"\n";
|
|
|
|
|
}
|
|
|
|
|
print OUTPUT $tempstring;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
close (ORIGFILE);
|
|
|
|
|
close (OUTPUT);
|
|
|
|
|
|
|
|
|
|
unlink (":mozilla:cmd:macfe:restext:custom.r");
|
|
|
|
|
rename (":mozilla:cmd:macfe:restext:agent.r", ":mozilla:cmd:macfe:restext:custom.r");
|
|
|
|
|
}
|
|
|
|
|
|
1998-09-02 23:31:57 +00:00
|
|
|
|
sub SetTimeBomb($$)
|
|
|
|
|
|
1998-09-02 22:52:49 +00:00
|
|
|
|
{
|
1998-09-02 23:31:57 +00:00
|
|
|
|
my ($warn_days, $bomb_days) = @_;
|
|
|
|
|
|
1998-09-09 01:37:41 +00:00
|
|
|
|
system("perl :mozilla:config:mac-set-timebomb.pl $warn_days $bomb_days");
|
1998-09-02 22:52:49 +00:00
|
|
|
|
|
|
|
|
|
}
|
1998-05-27 19:52:28 +00:00
|
|
|
|
|
1998-09-21 17:48:17 +00:00
|
|
|
|
sub Delay($)
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
my ($delay_seconds) = @_;
|
|
|
|
|
|
|
|
|
|
$now = time;
|
|
|
|
|
|
|
|
|
|
$exit_time = $now + $delay_seconds;
|
|
|
|
|
|
|
|
|
|
while ($exit_time > $now) {
|
|
|
|
|
$now = time;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1999-03-25 04:00:56 +00:00
|
|
|
|
sub ActivateApplication($)
|
|
|
|
|
{
|
|
|
|
|
my ($appSignature) = @_;
|
|
|
|
|
my ($psi, $found);
|
|
|
|
|
my ($appPSN);
|
|
|
|
|
|
|
|
|
|
$found = 0;
|
|
|
|
|
|
|
|
|
|
foreach $psi (values(%Process))
|
|
|
|
|
{
|
|
|
|
|
if ($psi->processSignature() eq $appSignature)
|
|
|
|
|
{
|
|
|
|
|
$appPSN = $psi->processNumber();
|
|
|
|
|
$found = 1;
|
|
|
|
|
last;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ($found == 0)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SetFrontProcess($appPSN);
|
|
|
|
|
|
|
|
|
|
while (GetFrontProcess() != $appPSN)
|
|
|
|
|
{
|
|
|
|
|
WaitNextEvent();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
1998-05-27 21:14:11 +00:00
|
|
|
|
1;
|
1998-05-29 22:53:12 +00:00
|
|
|
|
|
|
|
|
|
=head1 AUTHORS
|
|
|
|
|
|
1998-09-02 22:52:49 +00:00
|
|
|
|
Scott Collins <scc@netscape.com>, Simon Fraser <sfraser@netscape.com>, Chris Yeh <cyeh@netscape.com>
|
1998-05-29 22:53:12 +00:00
|
|
|
|
|
|
|
|
|
=head1 SEE ALSO
|
|
|
|
|
|
|
|
|
|
BuildMozillaDebug.pl (et al), BuildList.pm, CodeWarriorLib (an AppleScript library)
|
|
|
|
|
|
|
|
|
|
=head1 COPYRIGHT
|
|
|
|
|
|
|
|
|
|
The contents of this file are subject to the Netscape Public License
|
|
|
|
|
Version 1.0 (the "NPL"); you may not use this file except in
|
|
|
|
|
compliance with the NPL. You may obtain a copy of the NPL at
|
|
|
|
|
http://www.mozilla.org/NPL/
|
|
|
|
|
|
|
|
|
|
Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
|
|
|
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
|
|
|
for the specific language governing rights and limitations under the
|
|
|
|
|
NPL.
|
|
|
|
|
|
|
|
|
|
The Initial Developer of this code under the NPL is Netscape
|
|
|
|
|
Communications Corporation. Portions created by Netscape are
|
|
|
|
|
Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
|
|
|
Reserved.
|
|
|
|
|
|
|
|
|
|
=cut
|