os/mm/mmtestenv/mmtesttools/Build/fullMmBuild.pl
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/mm/mmtestenv/mmtesttools/Build/fullMmBuild.pl	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,388 @@
     1.4 +# Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +# All rights reserved.
     1.6 +# This component and the accompanying materials are made available
     1.7 +# under the terms of "Eclipse Public License v1.0"
     1.8 +# which accompanies this distribution, and is available
     1.9 +# at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +#
    1.11 +# Initial Contributors:
    1.12 +# Nokia Corporation - initial contribution.
    1.13 +#
    1.14 +# Contributors:
    1.15 +#
    1.16 +# Description:
    1.17 +#
    1.18 +
    1.19 +# Full build
    1.20 +
    1.21 +use strict;
    1.22 +
    1.23 +
    1.24 +my $ARGC = @ARGV;
    1.25 +if  (($ARGV[0] eq "-h") ||
    1.26 +     ($ARGV[0] eq "--h") ||
    1.27 +     ($ARGV[0] eq "-help") ||
    1.28 +     ($ARGV[0] eq "--help") ||
    1.29 +     ($ARGV[0] eq "help")
    1.30 +	 )
    1.31 +	{
    1.32 +	print "fullMmBuild\n\n";
    1.33 +	print "Syntax : fullMmBuild [-x] [-k] [-c] [-f] [-eabi] [-y] [-a] [-g] [-s] [-dir=directory] [-a3flog]\n";
    1.34 +	print "-x       include optional elements\n";
    1.35 +	print "-k       keep going\n";
    1.36 +	print "-c       clean build\n";
    1.37 +	print "-f       build A3F and A3F DevSound instead of Legacy DevSound\n";
    1.38 +	print "-l		build Legacy DevSound instead of A3F (ignored if -f given)\n";
    1.39 +	print "-eabi    build rom for armv5 EABI\n";
    1.40 +	print "-arm4    build the extra components for arm4\n"; 
    1.41 +	print "-y       build for ccover (wins only)\n";
    1.42 +	print "-a       call mmbuildrom with MMAutoExec.iby\n";
    1.43 +	print "-g       include build of gccxml target, to allow check of BC etc\n";
    1.44 +	print "-s       skip setup and makefile stages (useful on rebuild following minor changes)\n";
    1.45 +	print "-dir     location of TestTools\\Build directory\n";
    1.46 +	print "-a3flog		enables A3F logging\n";
    1.47 +	print "-iclTestdata	builds ICL test data\n";
    1.48 +	exit 0;
    1.49 +	}
    1.50 +
    1.51 +
    1.52 +use Getopt::Long;
    1.53 +my %optctl = ();
    1.54 +keys(%optctl)=8;
    1.55 +unless (GetOptions (\%optctl, "x", "c", "k", "f", "eabi" ,"y", "a", "g", "s", "l", "dir=s","arm4","a3flog","iclTestdata")) 
    1.56 +  {exit 1;}
    1.57 +
    1.58 +my $ccover_target = "wins";
    1.59 +my $eka2IdentifyFile  = "$ENV{EPOCROOT}epoc32\\release\\winscw\\udeb\\winsgui.dll"; # if file present, is EKA2 build
    1.60 +my $x86gccIdentifyFile  = "$ENV{EPOCROOT}epoc32\\release\\x86gcc\\udeb\\euser.dll"; # if file present, x86 environment present
    1.61 +
    1.62 +# main 
    1.63 +	{
    1.64 +	my $auto = "-a " if ($optctl{"a"});
    1.65 +	my $optional = "-x " if ($optctl{"x"});
    1.66 +	my $eabi = "-eabi " if ($optctl{"eabi"});
    1.67 +	my $keep = "-k " if ($optctl{"k"});
    1.68 +	my $target = ""; # default to all
    1.69 +	my $gccxml = "-g " if ($optctl{"g"});
    1.70 +	my $skipSetup = "-s " if ($optctl{"s"});
    1.71 +	my $iclTest = " --iclTestdata " if ($optctl{"iclTestdata"});
    1.72 +	$target = " " . $ccover_target if ($optctl{"y"});
    1.73 +
    1.74 +	##################  A3F Section #######################################
    1.75 +	my $a3f_define = 'SYMBIAN_MULTIMEDIA_A3FDEVSOUND';
    1.76 +	my $search_item = '#define\s+'.$a3f_define;  # looking for this
    1.77 +	my $hrh_filename = "$ENV{EPOCROOT}epoc32\\include\\variant\\Symbian_OS.hrh"; # assign hrh file and location
    1.78 +	my $found_search_item = 0; #false
    1.79 +	# print "HRH filename is : $hrh_filename\n";
    1.80 +	
    1.81 + 	if ($optctl{"f"})
    1.82 +	 	{
    1.83 +	 	# This displays the content of the hash table
    1.84 +	 	# use it to confirm the "f" entry has been added.
    1.85 +	 	#
    1.86 +	 	# my $key;  # holds the command line options
    1.87 +	 	# my $value; # redundant for hash entry as only a key is used.
    1.88 +		# while (($key, $value) = each(%optctl))
    1.89 +		#	{
    1.90 +		# 	print $key.", ".$value."\n";
    1.91 +		#	}
    1.92 +
    1.93 +		# opens up the hrh file for reading
    1.94 +		open(FILEHANDLE, "<", $hrh_filename) or die "Unable to open $hrh_filename for reading. $!\n";
    1.95 +
    1.96 +		my @file_data=<FILEHANDLE>; # read all file data into array
    1.97 +
    1.98 +		#check the contents of the array (i.e. the contents of the file)
    1.99 +		for(@file_data)
   1.100 +			{
   1.101 +			# print "$_\n";  #display the line in the file
   1.102 +			
   1.103 +			# search line for string of interest: =~ is equals, !~ is not equal
   1.104 +			if(($_ =~ m/$search_item/i))
   1.105 +				{
   1.106 +				$found_search_item = 1;  #found the macro 
   1.107 +				# print "Search item found: $_\n";    #display the line containing the search item
   1.108 +				}
   1.109 +			else
   1.110 +				{
   1.111 +				# Search item not found, do nothing
   1.112 +				}
   1.113 +			} #for loop 
   1.114 +
   1.115 +		close(FILEHANDLE) or die "Can't close file $hrh_filename.\n";  # readonly file
   1.116 +		
   1.117 +		if(!$found_search_item)  #search item has not been found
   1.118 +			{
   1.119 +			# print warning
   1.120 +			print "Modifying file $hrh_filename to enable A3F as -f flag has been used.\n";
   1.121 +			
   1.122 +			# open file for append
   1.123 +			open(FILEHANDLE, ">>", $hrh_filename) or die "Unable to open $hrh_filename for appending. $!\n";
   1.124 +			print FILEHANDLE "\n#define $a3f_define\n"; # append macro to the file
   1.125 +			close(FILEHANDLE) or die "Can't close appended file $hrh_filename.\n";  # readonly file
   1.126 +			}
   1.127 +			
   1.128 +	 	# Now remove the "f" from the hash table so there is no chance of it being passed
   1.129 +	 	# to mmbuildrom.
   1.130 +	 	######## NOTE removal of flag from Hash table ############
   1.131 +	 	delete($optctl{f});   
   1.132 +	 	
   1.133 +	 	# This displays the content of the hash table
   1.134 +	 	# use it to confirm the "f" entry has been removed.
   1.135 +	 	#
   1.136 +		# while (($key, $value) = each(%optctl))
   1.137 +		#	{
   1.138 +		#	print $key.", ".$value."\n";
   1.139 +		#	}
   1.140 +	 	} # if $optctl{"f"}
   1.141 + 	elsif ($optctl{"l"})
   1.142 + 		{
   1.143 + 		 ########### Remove the macro from the hrh as "-l" but not "-f" is specified  ###############
   1.144 + 		
   1.145 + 		$found_search_item = 0 ; # false
   1.146 +		# opens up the original hrh file for reading
   1.147 +		open(FILEHANDLE, "<", $hrh_filename) or die "Unable to open $hrh_filename for reading. $!\n";
   1.148 +
   1.149 +		# temporary file
   1.150 +		my $temp_hrh_filename = "$ENV{EPOCROOT}epoc32\\include\\variant\\temp_Symbian_OS.hrh";
   1.151 +		# open temporary file for writing
   1.152 +		open(TEMPFILEHANDLE, ">", $temp_hrh_filename) or die "can't open tempory file $temp_hrh_filename. $!\n";
   1.153 +		
   1.154 +		my @file_data=<FILEHANDLE>; # read all original hrh file data into array
   1.155 +
   1.156 +		#check the contents of the array (i.e. the contents of the file)
   1.157 +		for(@file_data)
   1.158 +			{
   1.159 +			# print "$_\n";  #display the line in the file
   1.160 +			
   1.161 +			# search line for string of interest: =~ is equals, !~ is not equal
   1.162 +			if(($_ =~ m/(.*)$search_item(.*)/i))
   1.163 +				{
   1.164 +				#display a warning message (only do so once)
   1.165 +				if( !$found_search_item )
   1.166 +					{
   1.167 +					print "Modifying file $hrh_filename to disable A3F as -l has been given.\n";
   1.168 +					}
   1.169 +				
   1.170 +				# write line excluding the #define bit to temp file. (to preserve any other bits in this line. e.g.: comment delimiters)
   1.171 +				print TEMPFILEHANDLE $1." ".$2."\n";
   1.172 +				$found_search_item = 1 ; # true
   1.173 +				# Do not write line to the file as we want to remove it.
   1.174 +				}
   1.175 +			else
   1.176 +				{
   1.177 +				print TEMPFILEHANDLE $_;  # copy unchanged line to temporary file
   1.178 +				}
   1.179 +			} #for loop 
   1.180 +
   1.181 +		close(FILEHANDLE) or die "Can't close file $hrh_filename.$!\n";  # readonly file
   1.182 +		close(TEMPFILEHANDLE) or die "Can't close file $temp_hrh_filename. $!\n";  # temp file
   1.183 +		if($found_search_item)
   1.184 +			{
   1.185 +			my $orig_hrh_filename = "$ENV{EPOCROOT}epoc32\\include\\variant\\orig.hrh";
   1.186 +			rename($hrh_filename, $orig_hrh_filename) or die "can't rename $hrh_filename to $orig_hrh_filename: $!\n";
   1.187 +			rename($temp_hrh_filename, $hrh_filename)  or die "can't rename $temp_hrh_filename to $hrh_filename: $!\n";
   1.188 +			unlink $orig_hrh_filename;  # delete the original as it is no longer needed
   1.189 +			}
   1.190 +		else
   1.191 +			{
   1.192 +			unlink $temp_hrh_filename;  # no changes to be made so delete the temporary file
   1.193 +			}
   1.194 +		
   1.195 + 		}  # main else for A3F
   1.196 + 	
   1.197 +	##################  End A3F Section ####################################
   1.198 +
   1.199 +	##################  A3F Logging Section ####################################
   1.200 +
   1.201 +	my $search_item = "SYMBIAN_MULTIMEDIA_A3F_ENABLE_LOGGING";  # looking for this	
   1.202 +	my $hrh_filename = "$ENV{EPOCROOT}epoc32\\include\\variant\\Symbian_OS.hrh"; # assign hrh file and location
   1.203 +	my $found_search_item = 0; #false
   1.204 +	
   1.205 + 	if ($optctl{"a3flog"})
   1.206 +	 	{
   1.207 +		# opens up the hrh file for reading
   1.208 +		open(FILEHANDLE, "<", $hrh_filename) or die "Unable to open $hrh_filename for reading. $!\n";
   1.209 +
   1.210 +		my @file_data=<FILEHANDLE>; # read all file data into array
   1.211 +
   1.212 +		#check the contents of the array (i.e. the contents of the file)
   1.213 +		for(@file_data)
   1.214 +			{
   1.215 +			# search line for string of interest: =~ is equals, !~ is not equal
   1.216 +			if(($_ =~ m/$search_item/i))
   1.217 +				{
   1.218 +				$found_search_item = 1;  #found the macro 
   1.219 +				}
   1.220 +			else
   1.221 +				{
   1.222 +				# Search item not found, do nothing
   1.223 +				}
   1.224 +			} #for loop 
   1.225 +
   1.226 +		close(FILEHANDLE) or die "Can't close file $hrh_filename.\n";  # readonly file
   1.227 +		
   1.228 +		if(!$found_search_item)  #search item has not been found
   1.229 +			{
   1.230 +			# open file for append
   1.231 +			open(FILEHANDLE, ">>", $hrh_filename) or die "Unable to open $hrh_filename for appending. $!\n";
   1.232 +			print FILEHANDLE "\n#define $search_item\n"; # append macro to the file
   1.233 +			close(FILEHANDLE) or die "Can't close appended file $hrh_filename.\n";  # readonly file
   1.234 +			}
   1.235 +			
   1.236 +	 	# Now remove the "log" from the hash table so there is no chance of it being passed
   1.237 +	 	# to anything called in this file.
   1.238 +	 	######## NOTE removal of flag from Hash table ############
   1.239 +	 	delete($optctl{log});   		
   1.240 +	 	} # if $optctl{"log"}
   1.241 + 	else
   1.242 + 		{
   1.243 + 		 ########### Remove the macro from the hrh as "-a3flog" is not specified  ###############
   1.244 + 		
   1.245 + 		$found_search_item = 0 ; # false
   1.246 +		# opens up the original hrh file for reading
   1.247 +		open(FILEHANDLE, "<", $hrh_filename) or die "Unable to open $hrh_filename for reading. $!\n";
   1.248 +
   1.249 +		# temporary file
   1.250 +		my $temp_hrh_filename = "$ENV{EPOCROOT}epoc32\\include\\variant\\temp_Symbian_OS.hrh";
   1.251 +		# open temporary file for writing
   1.252 +		open(TEMPFILEHANDLE, ">", $temp_hrh_filename) or die "can't open tempory file $temp_hrh_filename. $!\n";
   1.253 +		
   1.254 +		my @file_data=<FILEHANDLE>; # read all original hrh file data into array
   1.255 +
   1.256 +		#check the contents of the array (i.e. the contents of the file)
   1.257 +		for(@file_data)
   1.258 +			{
   1.259 +			# search line for string of interest: =~ is equals, !~ is not equal
   1.260 +			if(($_ =~ m/$search_item/i))
   1.261 +				{
   1.262 +				#display a warning message
   1.263 +				print "Removing $_ from file $hrh_filename as -a3flog flag has not been used to indicate an A3F logging build is required.\n";
   1.264 +				$found_search_item = 1 ; # true
   1.265 +				# Do not write line to the file as we want to remove it.
   1.266 +				}
   1.267 +			else
   1.268 +				{
   1.269 +				# Ensure the last newline after the macro is not written to the file.
   1.270 +				# the last new line was added by the macro append in the previous section.
   1.271 +				# The asssumes the macro is the last entry in the file. If it is not then 
   1.272 +				# the if statement should be removed and the print statement left on its own
   1.273 +				# to copy the last line to file.
   1.274 +				if(!$found_search_item)  
   1.275 +					{
   1.276 +					print TEMPFILEHANDLE $_;  # copy unchanged line to temporary file
   1.277 +					}
   1.278 +				}
   1.279 +			} #for loop 
   1.280 +
   1.281 +		close(FILEHANDLE) or die "Can't close file $hrh_filename.$!\n";  # readonly file
   1.282 +		close(TEMPFILEHANDLE) or die "Can't close file $temp_hrh_filename. $!\n";  # temp file
   1.283 +		if($found_search_item)
   1.284 +			{
   1.285 +			my $orig_hrh_filename = "$ENV{EPOCROOT}epoc32\\include\\variant\\orig.hrh";
   1.286 +			rename($hrh_filename, $orig_hrh_filename) or die "can't rename $hrh_filename to $orig_hrh_filename: $!\n";
   1.287 +			rename($temp_hrh_filename, $hrh_filename)  or die "can't rename $temp_hrh_filename to $hrh_filename: $!\n";
   1.288 +			unlink $orig_hrh_filename;  # delete the original as it is no longer needed
   1.289 +			}
   1.290 +		else
   1.291 +			{
   1.292 +			unlink $temp_hrh_filename;  # no changes to be made so delete the temporary file
   1.293 +			}
   1.294 +		
   1.295 + 		}  # main else for A3F
   1.296 + 		
   1.297 +	##################  End A3F Logging Section ####################################
   1.298 +	
   1.299 +	if($optctl{"dir"})
   1.300 +		{
   1.301 +		my $dir = $optctl{"dir"};
   1.302 +		chdir $dir or die "Can't cd $dir - $!";
   1.303 +		}
   1.304 +
   1.305 +	my $targetToolsDir = "..\\..\\..\\..\\..\\TargetTools\\Build";
   1.306 +	my $testToolsDir = "..\\..\\..\\..\\..\\os\\mm\\mmtestenv\\mmtesttools\\Build";
   1.307 +	my $targetToolsExists = 0;
   1.308 +	if (-d $targetToolsDir)
   1.309 +		{
   1.310 +		$targetToolsExists = 1;
   1.311 +		print "TargetTools directory exists: $targetToolsDir\n"
   1.312 +		}
   1.313 +
   1.314 +	# DEF113945:DRM tests fail due to the change from DEF112928
   1.315 +	my $rtaUtilsDir = "..\\..\\..\\..\\..\\Rtautils\\Build";
   1.316 +	my $rtaUtilsExists = 0;
   1.317 +	if (-d $rtaUtilsDir)
   1.318 +		{
   1.319 +		$rtaUtilsExists = 1;
   1.320 +		print "RtaUtils directory exists: $rtaUtilsDir\n";
   1.321 +		}
   1.322 +
   1.323 +	# DEF113945:DRM tests fail due to the change from DEF112928
   1.324 +	my $testExecuteDir = "..\\..\\..\\..\\..\\Testexecute\\Build";
   1.325 +	my $testExecuteExists = 0;
   1.326 +	if (-d $testExecuteDir)
   1.327 +		{
   1.328 +		$testExecuteExists = 1;
   1.329 +		print "TestExecute directory exists: $testExecuteDir\n";
   1.330 +		}
   1.331 +
   1.332 +	my $command;
   1.333 +
   1.334 + 	# mmbuild [-x] [-k] setup
   1.335 + 	$command = "mmbuild " . $optional . $keep . "setup" . $iclTest;
   1.336 + 	if ($skipSetup ne "")
   1.337 + 		{
   1.338 + 		print "Skipping setup...\n";
   1.339 + 		}
   1.340 + 	else
   1.341 + 		{
   1.342 + 		(system ($command)==0 )or die "Couldn't execute $command";
   1.343 + 		}
   1.344 + 	
   1.345 + 	if ($optctl{"c"})
   1.346 + 		{
   1.347 + 		# mmbuild -t clean (throw away result - so we ignore any no-export errors)
   1.348 + 		$command = "mmbuild -t clean >\$NULL 2>&1";
   1.349 + 		print $command, "\n";
   1.350 + 		(system ($command)==0 )or die "Couldn't execute $command";
   1.351 + 		}
   1.352 + 
   1.353 + 	# mmbuild [-k] [-g] build
   1.354 + 	$command = "mmbuild ". $keep. $gccxml. $skipSetup. "build" . $target . $iclTest;
   1.355 + 	(system ($command)==0 )or die "Couldn't execute $command";
   1.356 + 
   1.357 + 	# mmbuild -t [-k] build
   1.358 + 	$command = "mmbuild -t ". $keep. $skipSetup. "build" . $target . $iclTest;
   1.359 + 	(system ($command)==0 )or die "Couldn't execute $command";
   1.360 + 
   1.361 + 	# mmbuild -t -b [-k] build
   1.362 + 	$command = "mmbuild -t -b ". $keep. $skipSetup. "build" . $target . $iclTest;
   1.363 + 	(system ($command)==0 )or die "Couldn't execute $command";
   1.364 + 
   1.365 +	if (!$optctl{"y"})
   1.366 + 		{
   1.367 +		# DEF113945:DRM tests fail due to the change from DEF112928
   1.368 +		if ($rtaUtilsExists)
   1.369 +			{
   1.370 +			$command = "testExtras_Rtautils";
   1.371 +			chdir $rtaUtilsDir or die "Can't cd $rtaUtilsDir - $!";
   1.372 +			(system ($command)==0 )or die "Couldn't execute $command";
   1.373 +			chdir $testToolsDir or die "Can't cd $testToolsDir - $!";
   1.374 +			}
   1.375 +
   1.376 +		# DEF113945:DRM tests fail due to the change from DEF112928
   1.377 +		if($testExecuteExists)
   1.378 +			{
   1.379 +			$command = "testExtras_Testexecute";
   1.380 +			chdir $testExecuteDir or die "Can't cd $testExecuteDir - $!";
   1.381 +			(system ($command)==0 )or die "Couldn't execute $command";
   1.382 +			chdir $testToolsDir or die "Can't cd $testToolsDir - $!";
   1.383 +			}
   1.384 +
   1.385 +		# mmBuildRom [-x]
   1.386 +		$command = "mmBuildRom -t -d " .$auto . $optional .$eabi;
   1.387 +		print $command, "\n";
   1.388 +		(system ($command)==0 )or die "Couldn't execute $command";
   1.389 +		}
   1.390 +
   1.391 +	}