#
# Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies).
# All rights reserved.
# This component and the accompanying materials are made available
# under the terms of the License "Eclipse Public License v1.0"
# which accompanies this distribution, and is available
# at the URL "http://www.eclipse.org/legal/epl-v10.html".
#
# Initial Contributors:
# Nokia Corporation - initial contribution.
#
# Contributors:
#
# Description: Creates SIS installation packages for S60 Browser that
# meets Arrow/IAD program requirements for delivery to end-user devices.
# Also generates R&D signed SIS packages for Nokia R&D internal use.
#
# TODOs
# Baseline whatlog and build whatlog need to be processed and compared
# Notes for maintainers:
# Versioning guide:
# http://s60wiki.nokia.com/S60Wiki/How_to_guide_for_versioning
# Eclipsing ROM files using installers
# http://s60wiki.nokia.com/S60Wiki/How_to_guide_for_eclipsing_ROM_files
# Installers basics
# http://s60wiki.nokia.com/S60Wiki/How_to_guide_for_creating/signing_sis_files
# SIS file naming convention for IAD delivery
# http://s60wiki.nokia.com/S60Wiki/How_to_guide_for_uploading_sis_packages_to_IAD_server
use strict;
use warnings;
use Getopt::Long;
use Data::Dumper;
use File::Path;
use Benchmark;
my $usage = q{
Usage: buildIADsis.pl -opmode dev -appversion 7.1.2 -binversion 10.1 -variant 01 -nocache -verbose
Mandatory arguments:
-opmode : either dev or integration. If integration, use filelist argument below
-appversion: Browser version as a string e.g 7.1.420 (major.minor.build). Minor must be 1 digit.
-variant: S60 platform specific variant code. E.g for 3.23: 01->English, 22->Chinese etc.
Optional arguments:
-filelist: A text file containing list of files to include in the PKG
File paths must be of the form \epoc32\dir\urel\file.ext
-binversion: version to inject inside all EXEs and DLLs. Must be 10.0 or higher.
-nocache: does everything cleanly, no old data used
-verbose: Turns on debug statements
-webkey: Web signing key filename
-webcert: Web signing certificate filename
-cenrepkey: Cenrep signing key filename
-cenrepcert: Cenrep signing certificate filename
};
my ($rawFilelist,$appVersion, $binVersion, $variant,$opmode,$lang_code);
my (@variants);
my $langgroup;
my $type = "rnd";
my $brExe_UID3 = "0x10008D39"; #Unique ID for Browser application
my $packageTypeMajor = "RU"; # even though we use SA,RU, mention the RU in filename since it sounds more important
#TODO: We should be able to query the S60 platform by parsing some file in epoc32. Dunno how to do this. This should NOT be hardcoded.
my $s60platform = "S60.323";
my $cenrepPkg = ".\\pkg\\BrowserNG_Cenrep.pkg";
my $cenrepSis = "BrowserNG_Cenrep.sis";
my $finalBrowserPkg = ".\\pkg\\BrowserNG.pkg";
my $debug_printing = 1;
my $nocache = 0;
#TODO: We might want to pass this as a command-line argument? Note that unsigned SIS is also generated and can always
# be signed separately.
my $webkey = ".\\cert\\RDTest_02.key";
my $webcert = ".\\cert\\RDTest_02.der";
my $cenrepkey = ".\\cert\\RDTest_02.key";
my $cenrepcert = ".\\cert\\RDTest_02.der";
my @cleanupList = ();
GetOptions( "appversion=s",\$appVersion,
"binversion=s",\$binVersion,
"variant=s",\$variant,
"opmode=s",\$opmode,
"nocache",\$nocache,
"verbose",\$debug_printing,
"filelist=s",\$rawFilelist,
"webkey=s", \$webkey,
"webcert=s", \$webcert,
"cenrepkey=s", \$cenrepkey,
"cenrepcert=s", \$cenrepcert
);
#### START OF ARG CHECKS
if ( !defined $appVersion ) { print STDERR "\nBad argument: missing appversion\n $usage"; exit; }
# Parse major.minor.build format string and choke if not well formed
# We will later insert the parsed values inside the PKG file.
my @parsedAppVer = checkAppVersion($appVersion);
if (!$parsedAppVer[3]) { print STDERR "\nBad argument: malformed appversion string ($appVersion) \n $usage"; exit; }
#By default ROM EXEs/DLLs have a version of 10.0, so you want the newDLLs to have equal or higher minor version. See IAD Eclipsing guide for details
if ( !defined $binVersion ) { print STDOUT "\n Missing binary version, using default\n"; $binVersion = "10.1"; }
my @parsedBinVer = checkBinaryVersion($binVersion);
if (!$parsedBinVer[2]) { print STDERR "\nBad argument or default: malformed binversion string ($binVersion). \n $usage"; exit; }
if ( !defined $variant ) { print STDERR "\nBad argument: missing variant\n $usage"; exit; }
if ( !defined $opmode || !($opmode =~ /^dev/ || $opmode =~ /^int/)) { print STDERR "\nBad argument: Can't grok opmode\n $usage"; exit; }
if (defined $rawFilelist && (! -e $rawFilelist) ) { print STDERR "\nBad argument: File is missing: $rawFilelist\n $usage"; exit; }
print "no cache flag = $nocache \n" if $debug_printing;
#print "verbose = $debug_printing \n";
#### END OF ARG CHECKS
# IAD-compliant SIS file naming convention
# ComponentName_<package UID>_v<package version>_<package type>_<platform>_<variant>.sis
# Example: TestApplication_0x12345678_v1.2.3_SA_S60.32_Euro1.sis
# Reference: http://s60wiki.nokia.com/S60Wiki/How_to_guide_for_uploading_sis_packages_to_IAD_server
# Where:
#package version: major.minor.build
#package type: SIS package type (SA, SP,..)
#platform: S60 Platform (S60.xx where xx = 32, 50,..)
#variant: Language/operator variant
my $browserSIS = "BrowserNG_${brExe_UID3}_v${appVersion}_${packageTypeMajor}_${s60platform}_${variant}.sis";
# For 323 we limit the number of IAD to Chinese, Western and Japan
if ( $s60platform eq "S60.323" )
{
if ( $variant == 50 ) {
$browserSIS = "BrowserNG_${brExe_UID3}_v${appVersion}_${packageTypeMajor}_${s60platform}_western.sis";
}
elsif ( $variant == 51 ) {
$browserSIS = "BrowserNG_${brExe_UID3}_v${appVersion}_${packageTypeMajor}_${s60platform}_china.sis";
}
elsif ( $variant == 16 ) {
$browserSIS = "BrowserNG_${brExe_UID3}_v${appVersion}_${packageTypeMajor}_${s60platform}_japan.sis";
}
else {
print STDOUT "\n build variant $variant for RnD purpose \n";
}
print STDOUT "\n=== SIS filename: $browserSIS \n" ;
}
### Call pkg generation perl script
system("CreateIADpackages.pl -v $variant -p armv5 -r urel -bmajor $parsedAppVer[0] -bminor $parsedAppVer[1] -bnumber $parsedAppVer[2]");
# Pick up any files from the WHAT output that match any of these regex patterns
my $filenameRegEx = join '|', qw(
[.]dll$
[.]exe$
[.]mif$
[.]r..$);
# These type of files need to be stamped with a version number >= 10.0 so that the
# original files on ROM may be eclipsed.
my $binariesRegEx = join '|', qw(
[.]dll$
[.]exe$);
my $buildType = "urel";
# In any mode, use a $rawFilelist is passed from the command line
if (defined $rawFilelist) {
print STDOUT "\n=== Caller supplied list of files: $rawFilelist === \n" ;
} else {
# If no file list passed from command-line, we know how to generate one in DEV mode only
if ($opmode =~ /^dev/) {
$rawFilelist = "what_$buildType.log";
if ($nocache || (! -e $rawFilelist) ) {
print STDOUT "\n=== Generating WHAT log, may take a while.. [",scalar(localtime),"] ===\n";
makeWhatLog($buildType, $rawFilelist);
print STDOUT "\n=== Finished generating WHAT log ",scalar(localtime)," ===\n";
} else {
print STDOUT "\n=== Will use cached WHAT log : $rawFilelist ===\n";
}
} else {
die("\nBad argument: File is missing: $rawFilelist\n $usage");
}
}
#Reduce list of files to those of interest
my @rawList = getRawFileList($rawFilelist);
my @filteredFiles = grep(/$filenameRegEx/i, @rawList);
#print Dumper(@filteredFiles) if $debug_printing;
print "Changing binary files with version\n" if $debug_printing;
my @binariesOnly = grep(/$binariesRegEx/i, @filteredFiles);
# print Dumper(@binariesOnly) if $debug_printing;
for my $binaryFile (@binariesOnly) {
print STDOUT "Fixing version to $binVersion for file: $binaryFile..\n" if $debug_printing;
changeBinaryVersionAndMore("elftran", $binaryFile, $binVersion);
if ( $? == -1 || ($? >> 8) != 0 ) { cleanDeath("Elftran failed to modify : $binaryFile "); }
}
print STDOUT "Creating CenRep installer\n" if $debug_printing;
# No need to cleanup the sis file since it might be certificated differently
# push(@cleanupList, "$cenrepSis");
system("makesis $cenrepPkg $cenrepSis");
if ( $? == -1 || ($? >> 8) != 0 ) { cleanDeath("Makesis on CenRep installer failed"); } else {
#printf "\nOK %d\n", $? >> 8;
}
push(@cleanupList, "${cenrepSis}x");
print STDOUT "\nSigning CenRep installer\n" if $debug_printing;
system("signsis -v $cenrepSis ${cenrepSis}x $cenrepcert $cenrepkey");
if ( $? == -1 || ($? >> 8) != 0 ) { cleanDeath("Signsis on CenRep installer failed"); } else {
#printf "\nOK %d\n", $? >> 8;
}
print STDOUT "Creating main Browser installer with filename: $browserSIS\n" if $debug_printing;
system("makesis $finalBrowserPkg $browserSIS");
if ( $? == -1 || ($? >> 8) != 0 ) { cleanDeath("Makesis on main Browser installer failed"); } else {
#printf "\nOK %d\n", $? >> 8;
}
print STDOUT "\nSigning main Browser installer\n" if $debug_printing;
system("signsis $browserSIS ${browserSIS}x $webcert $webkey");
if ( $? == -1 || ($? >> 8) != 0 ) { cleanDeath("Signsis on main Browser installer failed"); } else {
#printf "OK %d\n", $? >> 8;
}
#cleanup all transient files
cleanup();
# Helps us generate list of DLLs EXEs and resource files to be packaged in SIS package
sub makeWhatLog
{
my $buildType = shift;
my $file_whatLog = shift;
system("\\gb_cmds\\gb_aurora_32_what.cmd armv5 $buildType > $file_whatLog");
}
# Returns an in-memory list of all binary and resource files that the build process generates (WHAT output)
sub getRawFileList
{
my $filename = shift;
my @array = 0;
#print "\n == Loading file with list of all assets : $filename == \n" if $debug_printing;
open(HANDLE, $filename) || cleanDeath("Failed to open WHAT command output: $filename\n");
@array=<HANDLE>;
close (HANDLE);
#print Dumper(@rawList) if $debug_printing;
return @array;
}
#
sub changeBinaryVersionAndMore
{
my $elfCmd = shift;
my $file = shift;
my $binaryVersion = shift;
system("$elfCmd -version $binaryVersion -compressionmethod bytepair $file");
}
# Dies after doing cleanup
sub cleanDeath {
my $reason = shift;
cleanup();
die($reason);
}
# Removes unwanted files from disk
sub cleanup {
for my $file (@cleanupList) {
print "Cleaning up: $file\n";
unlink($file);
}
}
# Checks for a well formed Binary Version string in major.minor format and that it is >= 10.0
# 10.0 is the default version of in-ROM binaries that must be eclipsed by our installation.
sub checkBinaryVersion {
my ($ver) = shift;
my ($valid, $major, $minor) = (0, 0, 0);
if ($ver =~ /^(\d+)\.(\d+)$/) {
$valid = 1;
($major, $minor) = ($1, $2);
# {=leading-zeros-ignored}
$major =~ s/^0+//;
$minor =~ s/^0+//;
}
my $intMajor = int($major || 0);
my $intMinor = int($minor || 0);
$valid = 0;
if ( $intMajor >= 10 && $intMinor >=0 ) {
$valid = 1; # enforce 10.0 or higher rule for IAD
}
my @binVerArray = (
$intMajor,
$intMinor,
$valid
);
#print Dumper(@binVerArray) if $debug_printing;
return @binVerArray;
}
# Checks for a well formed Application Version string in major.minor.build format
# See the IAD versioning HOWTO (link above) for acceptable format
sub checkAppVersion {
my ($ver) = shift;
my ($valid, $major, $minor, $build) = (0, 0, 0, 0);
if ($ver =~ /^(\d+)\.(\d+).(\d+)$/) {
$valid = 1;
($major, $minor, $build) = ($1, $2, $3);
# {=leading-zeros-ignored}
$major =~ s/^0+//;
$minor =~ s/^0+//;
$build =~ s/^0+//;
}
my $intMajor = int($major || 0);
my $intMinor = int($minor || 0);
my $intBuild = int($build || 0);
if ($intMinor < 0 || $intMinor > 9) {
$valid = 0; # enforce single digit minor rule for IAD
}
my @appVerArray = (
$intMajor,
$intMinor,
$intBuild,
$valid
);
#print Dumper(@appVerArray) if $debug_printing;
return @appVerArray;
}