os/ossrv/lowlevellibsandfws/pluginfw/TestExecute/EComSWITests/data/tem_dosis.pl
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 #!perl
     2 
     3 # Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
     4 # All rights reserved.
     5 # This component and the accompanying materials are made available
     6 # under the terms of "Eclipse Public License v1.0"
     7 # which accompanies this distribution, and is available
     8 # at the URL "http://www.eclipse.org/legal/epl-v10.html".
     9 #
    10 # Initial Contributors:
    11 # Nokia Corporation - initial contribution.
    12 #
    13 # Contributors:
    14 #
    15 # Description:
    16 #
    17 
    18 use strict;
    19 use File::Copy;
    20 use Getopt::Long;
    21 use File::Basename;
    22 use File::Spec;
    23 
    24 my $basedir;
    25 my $platform;
    26 my $cfg;
    27 my $certpem;
    28 my $certkey;
    29 my $outdir;
    30 my $maketrgt;
    31 my $sources;
    32 my $stublist;
    33 
    34 GetOptions(
    35   'basedir=s' => \$basedir,
    36   'platform=s' => \$platform,
    37   'cfg=s' => \$cfg,
    38   'certpem=s' => \$certpem,
    39   'certkey=s' => \$certkey,
    40   'outdir=s' => \$outdir,
    41   'maketrgt=s' => \$maketrgt,
    42   'sources=s' => \$sources,
    43   'stublist=s' => \$stublist,
    44 );
    45 
    46 my $ROOT = $ENV{EPOCROOT};
    47 $ROOT =~ s#\\#/#g;
    48 
    49 if ($maketrgt =~ /RELEASABLES/i or $maketrgt =~ /EXTRATARGET/i)
    50 {
    51   my @targets = ();
    52   my @extra = ();
    53   my $s;
    54   my @a = split(/\s+/,  $sources);
    55   foreach my $pkg (@a)
    56   {
    57 	my $isStub = $stublist =~ /\b$pkg\b/i;
    58 	my $destdir = GetTargetDir($isStub);
    59 	my $trgtname = PkgToSis($pkg, $isStub);
    60 	$s =  "$destdir/$trgtname";
    61     GetExternalForm(\$s);
    62    	push(@targets, $s);
    63 
    64     if ($destdir =~ /epoc32\/data\/z\/.*\/udeb/ || $isStub)
    65 	{
    66 	  my $extratrgt = $destdir;
    67 	  $extratrgt =~ s/\/udeb//;
    68 	  $s = "$extratrgt/$trgtname";
    69       GetExternalForm(\$s);
    70 	  push(@extra, $s);
    71 	}
    72   }
    73 
    74   $s = join(' ', @targets);
    75   $s = join(' ', @extra) if ($maketrgt =~ /EXTRATARGET/i);
    76   print "$s";
    77   exit(0);
    78 }
    79 
    80 # Getting here is build final. The pkg file must be in basedir.
    81 chdir($basedir);
    82 
    83 # $ARGV[0] is one of the targets generated in RELEASABLES above.
    84 my $arg = $ARGV[0];
    85 my $filename = basename($arg);
    86 my $trgtdir = dirname($arg);
    87 RecursiveMkDir($trgtdir);
    88 
    89 my $isStub;
    90 ($filename, $isStub) = SisToPkg($filename);
    91 die "Pkg $filename does not exist!\n" if (! -f $filename);
    92 
    93 my $cmd;
    94 if ($isStub)
    95 {
    96   $cmd = "makesis -s $filename $arg";
    97   system($cmd);
    98 }
    99 else
   100 {
   101   # change the source locations in pkg file
   102   my $generatedpkg = "generated.pkg";
   103   EditPkgFile($filename, $generatedpkg);
   104 
   105   my $generatedsis = "generated.sis";
   106   $cmd = "makesis $generatedpkg $generatedsis";
   107   system($cmd);
   108 
   109   $cmd = "signsis -S $generatedsis $arg $certpem $certkey";
   110   system($cmd);
   111 
   112   # make an extra copy in /epoc32/data/z/tef_ecomswi.
   113   # iby files normally do not expect files in udeb or urel
   114   # under /epoc32/data/z.
   115   if ($trgtdir =~ /\bepoc32\b.\bdata\b.\bz\b.*\budeb\b/)
   116   {
   117 	my $extratrgt = $arg;
   118 	$extratrgt =~ s/[\/\\]udeb//;
   119 	copy($arg, $extratrgt);
   120   }
   121 
   122   unlink($generatedsis);
   123   unlink($generatedpkg);
   124 }
   125 
   126 ###################################################
   127 # subroutines
   128 ###################################################
   129 sub GetTargetDir
   130 {
   131   my $isStub = shift;
   132 
   133   # for armv5, store all artefacts in data/z.
   134   my $d = "${ROOT}epoc32/data/z/$outdir/$cfg";
   135   $d =~ s#/$cfg## if ($isStub);
   136 
   137   if ($platform =~ /winscw/i)
   138   {
   139     $d = "${ROOT}epoc32/release/$platform/$cfg/z/$outdir";
   140     $d = "${ROOT}epoc32/release/$platform/$cfg/z/system/install" if ($isStub);
   141   }
   142   return $d;
   143 }
   144 
   145 sub PkgToSis
   146 {
   147   my $f = shift;
   148   my $isStub = shift;
   149   $f =~ s/\.pkg$//i;
   150   my $suffix = ($isStub) ? ".sis" : "signed.sis";
   151   $f .= $suffix;
   152   return $f;
   153 }
   154 
   155 sub SisToPkg
   156 {
   157   my $f = shift;
   158   my $isStub = 1;
   159   $isStub = 0 if ($f =~ s/signed.sis$//);
   160   $f =~ s/\.sis$//;
   161   $f .= ".pkg";
   162   return ($f, $isStub);
   163 }
   164 
   165 sub EditPkgFile
   166 {
   167   my $inf = shift;
   168   my $outf = shift;
   169 
   170   open(FIN, $inf) or die "fail to read $inf $!\n";
   171   open(FOUT, ">$outf") or die "fail to write $outf $!\n";
   172   local $/ = undef;
   173   my $data = <FIN>;
   174   close(FIN);
   175 
   176   $data =~ s/_PLATFORM_/$platform/g;
   177   $data =~ s/_CFG_/$cfg/g;
   178   print FOUT $data;
   179   close(FOUT);
   180 }
   181 
   182 # simple one, cannot handle cases like \\londata04\somedir
   183 sub RecursiveMkDir
   184 {
   185   my $path = shift;
   186   $path =~ s#\\#/#g;
   187 
   188   my $i = 1;
   189   my $s;
   190   do {
   191 	$i = index($path, "/", $i);
   192 	if ($i != -1)
   193 	{
   194 	  $s = substr($path, 0, $i++);
   195 	  mkdir($s, 0777) if (! -d $s);
   196 	}
   197   } while ($i != -1);
   198 
   199   mkdir($path, 0777) if (! -d $path);
   200 }
   201 
   202 sub GetExternalForm
   203 {
   204   my $refs = shift;
   205   my @a = split(/[\/\\]/, $$refs);
   206   $$refs = File::Spec->catfile(@a);
   207 }