os/mm/mmtestenv/mmtesttools/Build/winsMmBuild.pl
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
# Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
# All rights reserved.
sl@0
     3
# This component and the accompanying materials are made available
sl@0
     4
# under the terms of "Eclipse Public License v1.0"
sl@0
     5
# which accompanies this distribution, and is available
sl@0
     6
# at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
#
sl@0
     8
# Initial Contributors:
sl@0
     9
# Nokia Corporation - initial contribution.
sl@0
    10
#
sl@0
    11
# Contributors:
sl@0
    12
#
sl@0
    13
# Description:
sl@0
    14
#
sl@0
    15
sl@0
    16
# Full build equiv that builds WINSCW targets only
sl@0
    17
sl@0
    18
use strict;
sl@0
    19
sl@0
    20
my $ARGC = @ARGV;
sl@0
    21
if  (($ARGV[0] eq "-h") ||
sl@0
    22
     ($ARGV[0] eq "--h") ||
sl@0
    23
     ($ARGV[0] eq "-help") ||
sl@0
    24
     ($ARGV[0] eq "--help") ||
sl@0
    25
     ($ARGV[0] eq "help")
sl@0
    26
	 )
sl@0
    27
	{
sl@0
    28
	print "\n";
sl@0
    29
	print "winsMmBuild - Builds for WINSCW only\n\n";
sl@0
    30
	print "Syntax :	winsMmBuild [-x] [-k] [-c] [-dir=directory] [-a3flog]\n";
sl@0
    31
	print "-cw		WINSCW build - NOTE: does nothing as this is default\n";
sl@0
    32
	print "-x		include optional elements\n";
sl@0
    33
	print "-f		build A3F DevSound instead of DevSound\n";
sl@0
    34
	print "-l		build Legacy DevSound instead of A3F (ignored if -f given)\n";
sl@0
    35
	print "-k		keep going\n";
sl@0
    36
	print "-c		clean build\n";
sl@0
    37
	print "-dir		location of TestTools\\Build directory\n";
sl@0
    38
	print "-a3flog		enables A3F logging\n";
sl@0
    39
	print "-iclTestdata	builds ICL test data\n";
sl@0
    40
	exit 0;
sl@0
    41
	}
sl@0
    42
sl@0
    43
sl@0
    44
use Getopt::Long;
sl@0
    45
my %optctl = ();
sl@0
    46
keys(%optctl)=5;
sl@0
    47
unless (GetOptions (\%optctl, "x", "f", "l", "c", "cw" , "k", "dir=s", "a3flog","iclTestdata")) 
sl@0
    48
  {exit 1;}
sl@0
    49
sl@0
    50
my $ccover_target = "winscw";
sl@0
    51
sl@0
    52
	my $targetToolsDir = "..\\..\\..\\..\\..\\TargetTools\\Build";
sl@0
    53
	my $testToolsDir = "..\\..\\mmtesttools\\Build";
sl@0
    54
	my $targetToolsExists = 0;
sl@0
    55
	if (-d $targetToolsDir)
sl@0
    56
		{
sl@0
    57
		$targetToolsExists = 1;
sl@0
    58
		print "TargetTools directory exists: $targetToolsDir\n"
sl@0
    59
		}
sl@0
    60
sl@0
    61
# main 
sl@0
    62
	{
sl@0
    63
	
sl@0
    64
	##################  A3F Section #######################################
sl@0
    65
	my $a3f_define = 'SYMBIAN_MULTIMEDIA_A3FDEVSOUND';
sl@0
    66
	my $search_item = '#define\s+'.$a3f_define;  # looking for this
sl@0
    67
	my $hrh_filename = "$ENV{EPOCROOT}epoc32\\include\\variant\\Symbian_OS.hrh"; # assign hrh file and location
sl@0
    68
	my $found_search_item = 0; #false
sl@0
    69
	my $iclTest = " --iclTestdata " if ($optctl{"iclTestdata"});
sl@0
    70
	# print "HRH filename is : $hrh_filename\n";
sl@0
    71
	
sl@0
    72
 	if ($optctl{"f"})
sl@0
    73
	 	{
sl@0
    74
	 	# This displays the content of the hash table
sl@0
    75
	 	# use it to confirm the "f" entry has been added.
sl@0
    76
	 	#
sl@0
    77
	 	#  my $key;  # holds the command line options
sl@0
    78
	 	#  my $value; # redundant for hash entry as only a key is used.
sl@0
    79
		#  while (($key, $value) = each(%optctl))
sl@0
    80
		#  	{
sl@0
    81
		#   	print $key.", ".$value."\n";
sl@0
    82
		#  	}
sl@0
    83
sl@0
    84
		# opens up the hrh file for reading
sl@0
    85
		open(FILEHANDLE, "<", $hrh_filename) or die "Unable to open $hrh_filename for reading. $!\n";
sl@0
    86
sl@0
    87
		my @file_data=<FILEHANDLE>; # read all file data into array
sl@0
    88
sl@0
    89
		#check the contents of the array (i.e. the contents of the file)
sl@0
    90
		for(@file_data)
sl@0
    91
			{
sl@0
    92
			# print "$_\n";  #display the line in the file
sl@0
    93
			
sl@0
    94
			# search line for string of interest: =~ is equals, !~ is not equal
sl@0
    95
			if(($_ =~ m/$search_item/i))
sl@0
    96
				{
sl@0
    97
				$found_search_item = 1;  #found the macro 
sl@0
    98
				# print "Search item found: $_\n";    #display the line containing the search item
sl@0
    99
				}
sl@0
   100
			else
sl@0
   101
				{
sl@0
   102
				# Search item not found, do nothing
sl@0
   103
				}
sl@0
   104
			} #for loop 
sl@0
   105
sl@0
   106
		close(FILEHANDLE) or die "Can't close file $hrh_filename.\n";  # readonly file
sl@0
   107
		
sl@0
   108
		if(!$found_search_item)  #search item has not been found
sl@0
   109
			{
sl@0
   110
			# print warning
sl@0
   111
			print "Modifying file $hrh_filename to enable A3F as -f flag has been used.\n";
sl@0
   112
			
sl@0
   113
			# open file for append
sl@0
   114
			open(FILEHANDLE, ">>", $hrh_filename) or die "Unable to open $hrh_filename for appending. $!\n";
sl@0
   115
			print FILEHANDLE "\n#define $a3f_define\n"; # append macro to the file
sl@0
   116
sl@0
   117
			close(FILEHANDLE) or die "Can't close appended file $hrh_filename.\n";  # readonly file
sl@0
   118
			}
sl@0
   119
			
sl@0
   120
	 	# Now remove the "f" from the hash table so there is no chance of it being passed
sl@0
   121
	 	# to anything called in this file.
sl@0
   122
	 	######## NOTE removal of flag from Hash table ############
sl@0
   123
	 	delete($optctl{f});   
sl@0
   124
	 	
sl@0
   125
	 	# This displays the content of the hash table
sl@0
   126
	 	# use it to confirm the "f" entry has been removed.
sl@0
   127
	 	#
sl@0
   128
		# while (($key, $value) = each(%optctl))
sl@0
   129
		#  	{
sl@0
   130
		#  	print $key.", ".$value."\n";
sl@0
   131
		#  	}
sl@0
   132
		
sl@0
   133
	 	} # if $optctl{"f"}
sl@0
   134
 	elsif ($optctl{"l"})
sl@0
   135
 		{
sl@0
   136
 		 ########### Remove the macro from the hrh as "-f" is not specified  ###############
sl@0
   137
 		
sl@0
   138
 		$found_search_item = 0 ; # false
sl@0
   139
		# opens up the original hrh file for reading
sl@0
   140
		open(FILEHANDLE, "<", $hrh_filename) or die "Unable to open $hrh_filename for reading. $!\n";
sl@0
   141
sl@0
   142
		# temporary file
sl@0
   143
		my $temp_hrh_filename = "$ENV{EPOCROOT}epoc32\\include\\variant\\temp_Symbian_OS.hrh";
sl@0
   144
		# open temporary file for writing
sl@0
   145
		open(TEMPFILEHANDLE, ">", $temp_hrh_filename) or die "can't open tempory file $temp_hrh_filename. $!\n";
sl@0
   146
		
sl@0
   147
		my @file_data=<FILEHANDLE>; # read all original hrh file data into array
sl@0
   148
sl@0
   149
		#check the contents of the array (i.e. the contents of the file)
sl@0
   150
		for(@file_data)
sl@0
   151
			{
sl@0
   152
			# print "$_\n";  #display the line in the file
sl@0
   153
			
sl@0
   154
			# search line for string of interest: =~ is equals, !~ is not equal
sl@0
   155
			if(($_ =~ m/(.*)$search_item(.*)/i))
sl@0
   156
				{
sl@0
   157
				#display a warning message (only do so once)
sl@0
   158
				if( !$found_search_item )
sl@0
   159
					{
sl@0
   160
					print "Modifying file $hrh_filename to disable A3F as -l flag has been used.\n";
sl@0
   161
					}
sl@0
   162
				
sl@0
   163
				# write line excluding the #define bit to temp file. (to preserve any other bits in this line. e.g.: comment delimiters)
sl@0
   164
				print TEMPFILEHANDLE $1." ".$2."\n";
sl@0
   165
				$found_search_item = 1 ; # true
sl@0
   166
				# Do not write line to the file as we want to remove it.
sl@0
   167
				}
sl@0
   168
			else
sl@0
   169
				{
sl@0
   170
				print TEMPFILEHANDLE $_;  # copy unchanged line to temporary file
sl@0
   171
				}
sl@0
   172
			} #for loop 
sl@0
   173
sl@0
   174
		close(FILEHANDLE) or die "Can't close file $hrh_filename.$!\n";  # readonly file
sl@0
   175
		close(TEMPFILEHANDLE) or die "Can't close file $temp_hrh_filename. $!\n";  # temp file
sl@0
   176
		if($found_search_item)
sl@0
   177
			{
sl@0
   178
			my $orig_hrh_filename = "$ENV{EPOCROOT}epoc32\\include\\variant\\orig.hrh";
sl@0
   179
			rename($hrh_filename, $orig_hrh_filename) or die "can't rename $hrh_filename to $orig_hrh_filename: $!\n";
sl@0
   180
			rename($temp_hrh_filename, $hrh_filename)  or die "can't rename $temp_hrh_filename to $hrh_filename: $!\n";
sl@0
   181
			unlink $orig_hrh_filename;  # delete the original as it is no longer needed
sl@0
   182
			}
sl@0
   183
		else
sl@0
   184
			{
sl@0
   185
			unlink $temp_hrh_filename;  # no changes to be made so delete the temporary file
sl@0
   186
			}
sl@0
   187
		
sl@0
   188
 		}  # main else for A3F
sl@0
   189
 	
sl@0
   190
	##################  End A3F Section ####################################
sl@0
   191
	
sl@0
   192
	##################  A3F Logging Section ####################################
sl@0
   193
sl@0
   194
	my $search_item = "SYMBIAN_MULTIMEDIA_A3F_ENABLE_LOGGING";  # looking for this	
sl@0
   195
	my $hrh_filename = "$ENV{EPOCROOT}epoc32\\include\\variant\\Symbian_OS.hrh"; # assign hrh file and location
sl@0
   196
	my $found_search_item = 0; #false
sl@0
   197
	
sl@0
   198
 	if ($optctl{"a3flog"})
sl@0
   199
	 	{
sl@0
   200
		# opens up the hrh file for reading
sl@0
   201
		open(FILEHANDLE, "<", $hrh_filename) or die "Unable to open $hrh_filename for reading. $!\n";
sl@0
   202
sl@0
   203
		my @file_data=<FILEHANDLE>; # read all file data into array
sl@0
   204
sl@0
   205
		#check the contents of the array (i.e. the contents of the file)
sl@0
   206
		for(@file_data)
sl@0
   207
			{
sl@0
   208
			# search line for string of interest: =~ is equals, !~ is not equal
sl@0
   209
			if(($_ =~ m/$search_item/i))
sl@0
   210
				{
sl@0
   211
				$found_search_item = 1;  #found the macro 
sl@0
   212
				}
sl@0
   213
			else
sl@0
   214
				{
sl@0
   215
				# Search item not found, do nothing
sl@0
   216
				}
sl@0
   217
			} #for loop 
sl@0
   218
sl@0
   219
		close(FILEHANDLE) or die "Can't close file $hrh_filename.\n";  # readonly file
sl@0
   220
		
sl@0
   221
		if(!$found_search_item)  #search item has not been found
sl@0
   222
			{
sl@0
   223
			# open file for append
sl@0
   224
			open(FILEHANDLE, ">>", $hrh_filename) or die "Unable to open $hrh_filename for appending. $!\n";
sl@0
   225
			print FILEHANDLE "\n#define $search_item\n"; # append macro to the file
sl@0
   226
			close(FILEHANDLE) or die "Can't close appended file $hrh_filename.\n";  # readonly file
sl@0
   227
			}
sl@0
   228
			
sl@0
   229
	 	# Now remove the "log" from the hash table so there is no chance of it being passed
sl@0
   230
	 	# to anything called in this file.
sl@0
   231
	 	######## NOTE removal of flag from Hash table ############
sl@0
   232
	 	delete($optctl{log});   		
sl@0
   233
	 	} # if $optctl{"log"}
sl@0
   234
 	else
sl@0
   235
 		{
sl@0
   236
 		 ########### Remove the macro from the hrh as "-a3flog" is not specified  ###############
sl@0
   237
 		
sl@0
   238
 		$found_search_item = 0 ; # false
sl@0
   239
		# opens up the original hrh file for reading
sl@0
   240
		open(FILEHANDLE, "<", $hrh_filename) or die "Unable to open $hrh_filename for reading. $!\n";
sl@0
   241
sl@0
   242
		# temporary file
sl@0
   243
		my $temp_hrh_filename = "$ENV{EPOCROOT}epoc32\\include\\variant\\temp_Symbian_OS.hrh";
sl@0
   244
		# open temporary file for writing
sl@0
   245
		open(TEMPFILEHANDLE, ">", $temp_hrh_filename) or die "can't open tempory file $temp_hrh_filename. $!\n";
sl@0
   246
		
sl@0
   247
		my @file_data=<FILEHANDLE>; # read all original hrh file data into array
sl@0
   248
sl@0
   249
		#check the contents of the array (i.e. the contents of the file)
sl@0
   250
		for(@file_data)
sl@0
   251
			{
sl@0
   252
			# search line for string of interest: =~ is equals, !~ is not equal
sl@0
   253
			if(($_ =~ m/$search_item/i))
sl@0
   254
				{
sl@0
   255
				#display a warning message
sl@0
   256
				print "Removing $_ from file $hrh_filename as -a3flog flag has not been used to indicate an A3F logging build is required.\n";
sl@0
   257
				$found_search_item = 1 ; # true
sl@0
   258
				# Do not write line to the file as we want to remove it.
sl@0
   259
				}
sl@0
   260
			else
sl@0
   261
				{
sl@0
   262
				# Ensure the last newline after the macro is not written to the file.
sl@0
   263
				# the last new line was added by the macro append in the previous section.
sl@0
   264
				# The asssumes the macro is the last entry in the file. If it is not then 
sl@0
   265
				# the if statement should be removed and the print statement left on its own
sl@0
   266
				# to copy the last line to file.
sl@0
   267
				if(!$found_search_item)  
sl@0
   268
					{
sl@0
   269
					print TEMPFILEHANDLE $_;  # copy unchanged line to temporary file
sl@0
   270
					}
sl@0
   271
				}
sl@0
   272
			} #for loop 
sl@0
   273
sl@0
   274
		close(FILEHANDLE) or die "Can't close file $hrh_filename.$!\n";  # readonly file
sl@0
   275
		close(TEMPFILEHANDLE) or die "Can't close file $temp_hrh_filename. $!\n";  # temp file
sl@0
   276
		if($found_search_item)
sl@0
   277
			{
sl@0
   278
			my $orig_hrh_filename = "$ENV{EPOCROOT}epoc32\\include\\variant\\orig.hrh";
sl@0
   279
			rename($hrh_filename, $orig_hrh_filename) or die "can't rename $hrh_filename to $orig_hrh_filename: $!\n";
sl@0
   280
			rename($temp_hrh_filename, $hrh_filename)  or die "can't rename $temp_hrh_filename to $hrh_filename: $!\n";
sl@0
   281
			unlink $orig_hrh_filename;  # delete the original as it is no longer needed
sl@0
   282
			}
sl@0
   283
		else
sl@0
   284
			{
sl@0
   285
			unlink $temp_hrh_filename;  # no changes to be made so delete the temporary file
sl@0
   286
			}
sl@0
   287
		
sl@0
   288
 		}  # main else for A3F
sl@0
   289
 		
sl@0
   290
	##################  End A3F Logging Section ####################################
sl@0
   291
	
sl@0
   292
sl@0
   293
	my $optional = "-x " if ($optctl{"x"});
sl@0
   294
	my $keep = "-k " if ($optctl{"k"});
sl@0
   295
	my $target = ""; # default to all
sl@0
   296
	my $build = "winscw";
sl@0
   297
sl@0
   298
	if($optctl{"dir"})
sl@0
   299
		{
sl@0
   300
		my $dir = $optctl{"dir"};
sl@0
   301
		chdir $dir or die "Can't cd $dir - $!";
sl@0
   302
		}
sl@0
   303
sl@0
   304
sl@0
   305
	if($optctl{"cw"})
sl@0
   306
		{
sl@0
   307
		$build = "winscw";
sl@0
   308
		}
sl@0
   309
sl@0
   310
	my $command;
sl@0
   311
sl@0
   312
	# mmbuild [-x] [-k] setup
sl@0
   313
	$command = "mmbuild " . $optional . $keep . "setup". $iclTest;
sl@0
   314
	(system ($command)==0 )or die "Couldn't execute $command";
sl@0
   315
	
sl@0
   316
	if ($optctl{"c"})
sl@0
   317
		{
sl@0
   318
		# mmbuild -t clean (throw away result - so we ignore any no-export errors)
sl@0
   319
		$command = "mmbuild -t clean >\$NULL 2>&1";
sl@0
   320
		print $command, "\n";
sl@0
   321
		(system ($command)==0 )or die "Couldn't execute $command";
sl@0
   322
		}
sl@0
   323
sl@0
   324
sl@0
   325
sl@0
   326
	# mmbuild [-k] build
sl@0
   327
	$command = "mmbuild ". $keep. "build " . $build. $iclTest;
sl@0
   328
	(system ($command)==0 )or die "Couldn't execute $command";
sl@0
   329
sl@0
   330
	# mmbuild -t [-k] build
sl@0
   331
	$command = "mmbuild -t ". $keep. "build ". $build. $iclTest;
sl@0
   332
	(system ($command)==0 )or die "Couldn't execute $command";
sl@0
   333
sl@0
   334
	# mmbuild -t  -b[-k] build
sl@0
   335
	$command = "mmbuild -t -b ". $keep. "build ". $build. $iclTest;
sl@0
   336
	(system ($command)==0 )or die "Couldn't execute $command";
sl@0
   337
sl@0
   338
	}