mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
373 lines
11 KiB
Perl
Executable File
373 lines
11 KiB
Perl
Executable File
#!c:\perl\bin\perl
|
|
#
|
|
# ***** BEGIN LICENSE BLOCK *****
|
|
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
#
|
|
# 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 Mozilla Communicator client code, released
|
|
# March 31, 1998.
|
|
#
|
|
# The Initial Developer of the Original Code is
|
|
# Netscape Communications Corporation.
|
|
# Portions created by the Initial Developer are Copyright (C) 1998-1999
|
|
# the Initial Developer. All Rights Reserved.
|
|
#
|
|
# Contributor(s):
|
|
# Sean Su <ssu@netscape.com>
|
|
# Howard Chu <hyc@symas.com>
|
|
#
|
|
# Alternatively, the contents of this file may be used under the terms of
|
|
# either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
# in which case the provisions of the GPL or the LGPL are applicable instead
|
|
# of those above. If you wish to allow use of your version of this file only
|
|
# under the terms of either the GPL or the LGPL, and not to allow others to
|
|
# use your version of this file under the terms of the MPL, indicate your
|
|
# decision by deleting the provisions above and replace them with the notice
|
|
# and other provisions required by the GPL or the LGPL. If you do not delete
|
|
# the provisions above, a recipient may use your version of this file under
|
|
# the terms of any one of the MPL, the GPL or the LGPL.
|
|
#
|
|
# ***** END LICENSE BLOCK *****
|
|
|
|
#
|
|
# This perl script parses the input file for special variables
|
|
# in the format of $Variable$ and replace it with the appropriate
|
|
# value(s).
|
|
#
|
|
# Input: .it file
|
|
# - which is a .ini template
|
|
#
|
|
# version
|
|
# - version to display on the blue background
|
|
#
|
|
# Path to staging area
|
|
# - path on where the seamonkey built bits are staged to
|
|
#
|
|
# xpi path
|
|
# - path on where xpi files will be located at
|
|
#
|
|
# redirect file url
|
|
# - url to where the redirect.ini file will be staged at.
|
|
# Either ftp:// or http:// can be used
|
|
# ie: ftp://ftp.netscape.com/pub/seamonkey
|
|
#
|
|
# xpi url
|
|
# - url to where the .xpi files will be staged at.
|
|
# Either ftp:// or http:// can be used
|
|
# ie: ftp://ftp.netscape.com/pub/seamonkey/xpi
|
|
#
|
|
# ie: perl makecfgini.pl config.it 5.0.0.1999120608 k:\windows\32bit\5.0 d:\builds\mozilla\dist\win32_o.obj\install\xpi ftp://ftp.netscape.com/pub/seamonkey/windows/32bit/x86/1999-09-13-10-M10 ftp://ftp.netscape.com/pub/seamonkey/windows/32bit/x86/1999-09-13-10-M10/xpi
|
|
#
|
|
#
|
|
|
|
# Make sure there are at least two arguments
|
|
if($#ARGV < 5)
|
|
{
|
|
die "usage: $0 <.it file> <version> <staging path> <.xpi path> <redirect file url> <xpi url>
|
|
|
|
.it file : input ini template file
|
|
|
|
version : version to be shown in setup. Typically the same version
|
|
as show in mozilla.exe.
|
|
|
|
staging path : path to where the components are staged at
|
|
|
|
.xpi path : path to where the .xpi files have been built to
|
|
ie: d:/builds/mozilla/dist/win32_o.obj/install/xpi
|
|
|
|
redirect file : url to where the redirect.ini file will be staged at.
|
|
|
|
xpi url : url to where the .xpi files will be staged at.
|
|
Either ftp:// or http:// can be used
|
|
ie: ftp://ftp.netscape.com/pub/seamonkey/xpi
|
|
\n";
|
|
}
|
|
|
|
$inItFile = $ARGV[0];
|
|
$inVersion = $ARGV[1];
|
|
$inStagePath = $ARGV[2];
|
|
$inXpiPath = $ARGV[3];
|
|
$inRedirIniUrl = $ARGV[4];
|
|
$inUrl = $ARGV[5];
|
|
|
|
# get environment vars
|
|
$userAgent = $ENV{WIZ_userAgent};
|
|
$userAgentShort = $ENV{WIZ_userAgentShort};
|
|
$xpinstallVersion = $ENV{WIZ_xpinstallVersion};
|
|
$nameCompany = $ENV{WIZ_nameCompany};
|
|
$nameProduct = $ENV{WIZ_nameProduct};
|
|
$shortNameProduct = $ENV{WIZ_shortNameProduct};
|
|
$nameProductInternal = $ENV{WIZ_nameProductInternal};
|
|
$fileMainExe = $ENV{WIZ_fileMainExe};
|
|
$greBuildID = $ENV{WIZ_greBuildID};
|
|
$greFileVersion = $ENV{WIZ_greFileVersion};
|
|
$greUniqueID = $ENV{WIZ_greUniqueID};
|
|
|
|
$inDomain;
|
|
$inRedirDomain;
|
|
$inServerPath;
|
|
$inRedirServerPath;
|
|
|
|
($inDomain, $inServerPath) = ParseDomainAndPath($inUrl);
|
|
($inRedirDomain, $inRedirServerPath) = ParseDomainAndPath($inRedirIniUrl);
|
|
|
|
# Get the name of the file replacing the .it extension with a .ini extension
|
|
@inItFileSplit = split(/\./,$inItFile);
|
|
$outIniFile = $inItFileSplit[0];
|
|
$outIniFile .= ".ini";
|
|
|
|
# Open the input file
|
|
open(fpInIt, $inItFile) || die "\ncould not open $ARGV[0]: $!\n";
|
|
|
|
# Open the output file
|
|
open(fpOutIni, ">$outIniFile") || die "\nCould not open $outIniFile: $!\n";
|
|
|
|
print "\n Making $outIniFile...\n";
|
|
|
|
# While loop to read each line from input file
|
|
while($line = <fpInIt>)
|
|
{
|
|
# For each line read, search and replace $InstallSize$ with the calculated size
|
|
if($line =~ /\$InstallSize\$/i)
|
|
{
|
|
$installSize = 0;
|
|
$installSizeSystem = 0;
|
|
|
|
# split read line by ":" deliminator
|
|
@colonSplit = split(/:/, $line);
|
|
if($#colonSplit >= 0)
|
|
{
|
|
$componentName = $colonSplit[1];
|
|
if (substr($componentName, -2, 2) eq "\r\n") {
|
|
$componentName = substr($componentName, 0, length($componentName) - 2) . "\n";
|
|
}
|
|
else {
|
|
chop($componentName);
|
|
}
|
|
|
|
$installSize = OutputInstallSize("$inStagePath/$componentName");
|
|
|
|
# special oji consideration here. Since it's an installer that
|
|
# seamonkey installer will be calling, the disk space allocation
|
|
# needs to be adjusted by an expansion factor of 3.62.
|
|
if($componentName =~ /oji/i)
|
|
{
|
|
$installSize = int($installSize * 3.62);
|
|
}
|
|
|
|
if($componentName =~ /gre/i)
|
|
{
|
|
$installSize = int($installSize * 4.48);
|
|
}
|
|
}
|
|
|
|
# Read the next line to calculate for the "Install Size System="
|
|
if($line = <fpInIt>)
|
|
{
|
|
if($line =~ /\$InstallSizeSystem\$/i)
|
|
{
|
|
$installSizeSystem = OutputInstallSizeSystem($line, "$inStagePath/$componentName");
|
|
}
|
|
}
|
|
|
|
$installSize -= $installSizeSystem;
|
|
print fpOutIni "Install Size=$installSize\n";
|
|
print fpOutIni "Install Size System=$installSizeSystem\n";
|
|
}
|
|
elsif($line =~ /\$InstallSizeArchive\$/i)
|
|
{
|
|
$installSizeArchive = 0;
|
|
|
|
# split read line by ":" deliminator
|
|
@colonSplit = split(/:/, $line);
|
|
if($#colonSplit >= 0)
|
|
{
|
|
$componentName = $colonSplit[1];
|
|
if (substr($componentName, -2, 2) eq "\r\n") {
|
|
$componentName = substr($componentName, 0, length($componentName) - 2) . "\n";
|
|
}
|
|
else {
|
|
chop($componentName);
|
|
}
|
|
$installSizeArchive = OutputInstallSizeArchive("$inXpiPath/$componentName");
|
|
}
|
|
|
|
print fpOutIni "Install Size Archive=$installSizeArchive\n";
|
|
}
|
|
elsif($line =~ /\$FileCount\$/i)
|
|
{
|
|
if (!($componentName eq ""))
|
|
{
|
|
$stageDir = "$inStagePath/$componentName";
|
|
$stageDir =~ s/(.xpi|.zip)\b//i;
|
|
if (substr($stageDir, -1, 1) eq "\n") {
|
|
chop($stageDir);
|
|
}
|
|
$fileCount = `find $stageDir -type f | wc -l`;
|
|
if (substr($fileCount, -1, 1) eq "\n") {
|
|
chop($fileCount);
|
|
}
|
|
|
|
$line =~ s/\$FileCount\$/$fileCount/i;
|
|
|
|
print fpOutIni $line;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
# For each line read, search and replace $Version$ with the version passed in
|
|
$line =~ s/\$Version\$/$inVersion/gi;
|
|
$line =~ s/\$Domain\$/$inDomain/gi;
|
|
$line =~ s/\$ServerPath\$/$inServerPath/gi;
|
|
$line =~ s/\$RedirIniUrl\$/$inRedirIniUrl/gi;
|
|
$line =~ s/\$ArchiveServerPath\$/$inServerPath/gi;
|
|
$line =~ s/\$ArchiveUrl\$/$inUrl/gi;
|
|
$line =~ s/\$RedirectServerPath\$/$inRedirServerPath/gi;
|
|
$line =~ s/\$RedirectUrl\$/$inRedirUrl/gi;
|
|
$line =~ s/\$UserAgent\$/$userAgent/gi;
|
|
$line =~ s/\$UserAgentShort\$/$userAgentShort/gi;
|
|
$line =~ s/\$XPInstallVersion\$/$xpinstallVersion/gi;
|
|
$line =~ s/\$CompanyName\$/$nameCompany/gi;
|
|
$line =~ s/\$ProductName\$/$nameProduct/gi;
|
|
$line =~ s/\$ProductNameInternal\$/$nameProductInternal/gi;
|
|
$line =~ s/\$ProductShortName\$/$shortNameProduct/gi;
|
|
$line =~ s/\$MainExeFile\$/$fileMainExe/gi;
|
|
$line =~ s/\$GreBuildID\$/$greBuildID/gi;
|
|
$line =~ s/\$GreFileVersion\$/$greFileVersion/gi;
|
|
$line =~ s/\$GreUniqueID\$/$greUniqueID/gi;
|
|
print fpOutIni $line;
|
|
}
|
|
}
|
|
|
|
print " done!\n";
|
|
|
|
# end of script
|
|
exit(0);
|
|
|
|
sub ParseDomainAndPath()
|
|
{
|
|
my($aUrl) = @_;
|
|
my($aDomain, $aServerPath);
|
|
|
|
@slashSplit = split(/\//, $aUrl);
|
|
if($#slashSplit >= 0)
|
|
{
|
|
for($i = 0; $i <= $#slashSplit; $i++)
|
|
{
|
|
if($i <= 2)
|
|
{
|
|
if($aDomain eq "")
|
|
{
|
|
$aDomain = "$slashSplit[$i]";
|
|
}
|
|
else
|
|
{
|
|
$aDomain = "$aDomain/$slashSplit[$i]";
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if($aServerPath eq "")
|
|
{
|
|
$aServerPath = "/$slashSplit[$i]";
|
|
}
|
|
else
|
|
{
|
|
$aServerPath = "$aServerPath/$slashSplit[$i]";
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return($aDomain, $aServerPath);
|
|
}
|
|
|
|
sub OutputInstallSize()
|
|
{
|
|
my($inPath) = @_;
|
|
my($installSize);
|
|
|
|
print " calculating size for $inPath\n";
|
|
|
|
my ($inPathWin);
|
|
if($^O =~ msys)
|
|
{
|
|
$inPathWin = $inPath;
|
|
} else {
|
|
$inPathWin = `cygpath -wa $inPath`;
|
|
chomp($inPathWin);
|
|
$inPathWin =~ s/\\/\\\\/g;
|
|
}
|
|
$installSize = `$ENV{WIZ_distInstallPath}/ds32.exe -D -L0 -A -S -C 32768 $inPathWin`;
|
|
$installSize += 32768; # take into account install.js
|
|
$installSize = int($installSize / 1024);
|
|
$installSize += 1;
|
|
return($installSize);
|
|
}
|
|
|
|
sub OutputInstallSizeArchive()
|
|
{
|
|
my($inPath) = @_;
|
|
my($installSizeArchive);
|
|
my($dev, $ino, $mode, $nlink, $uid, $gui, $rdev, $size, $atime, $mtime, $ctime, $blksize, $blocks);
|
|
|
|
print " calculating size for $inPath\n";
|
|
($dev, $ino, $mode, $nlink, $uid, $gui, $rdev, $size, $atime, $mtime, $ctime, $blksize, $blocks) = stat $inPath;
|
|
$installSizeArchive += 32768; # take into account install.js
|
|
$installSizeArchive = int($size / 1024);
|
|
$installSizeArchive += 1;
|
|
return($installSizeArchive);
|
|
}
|
|
|
|
sub OutputInstallSizeSystem()
|
|
{
|
|
my($inLine, $inPath) = @_;
|
|
my($installSizeSystem) = 0;
|
|
|
|
# split read line by ":" deliminator
|
|
@colonSplit = split(/:/, $inLine);
|
|
if($#colonSplit >= 0)
|
|
{
|
|
# split line by "," deliminator
|
|
@commaSplit = split(/\,/, $colonSplit[1]);
|
|
if($#commaSplit >= 0)
|
|
{
|
|
foreach(@commaSplit)
|
|
{
|
|
# calculate the size of component installed using ds32.exe in Kbytes
|
|
print " calculating size for $inPath/$_";
|
|
$installSizeSystem += `$ENV{WIZ_distInstallPath}/ds32.exe /D /L0 /A /S /C 32768 $inPath/$_`;
|
|
}
|
|
}
|
|
}
|
|
|
|
$installSizeSystem = int($installSizeSystem / 1024);
|
|
$installSizeSystem += 1;
|
|
return($installSizeSystem);
|
|
}
|
|
|
|
sub ParseUserAgentShort()
|
|
{
|
|
my($aUserAgent) = @_;
|
|
my($aUserAgentShort);
|
|
|
|
@spaceSplit = split(/ /, $aUserAgent);
|
|
if($#spaceSplit >= 0)
|
|
{
|
|
$aUserAgentShort = $spaceSplit[0];
|
|
}
|
|
|
|
return($aUserAgentShort);
|
|
}
|
|
|