Update contrib.
2 # Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
4 # This component and the accompanying materials are made available
5 # under the terms of "Eclipse Public License v1.0"
6 # which accompanies this distribution, and is available
7 # at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 # Initial Contributors:
10 # Nokia Corporation - initial contribution.
22 die "Usage: $0 filename\n" if (!$file);
23 die "ERROR: \"$file\" does not exist\n" if (!-f $file);
25 &AddNoRedrawStoring($file) if($ARGV[3] =~ /^noredrawstoring$/i);
26 &AddAutoLine($file) if ($ARGV[2] =~ /^auto$/i);
27 &AddMultiLine($file) if ($ARGV[1] =~ /^multiscreen$/i);
30 # This function adds a line to a wsini.ini so that it runs the tests in auto mode
31 # This functions assumes the file is in UTF16
36 my $string = &ascii_to_utf16('SHELLCMD AUTO');
38 &Write_UTF16_Newline($file);
40 open(FILE, ">>$file") or warn "WARNING: Could not open file: $!\n";
44 &Write_UTF16_Newline($file);
48 # This function adds a line to a wsini.ini so that it runs in multiscreen
49 # This functions assumes the file is in UTF16
54 my $string0 = &ascii_to_utf16('[SCREEN0]');
55 my $string1 = &ascii_to_utf16('[SCREEN1]');
57 &Write_UTF16_Newline($file);
59 open(FILE0, ">>$file") or warn "WARNING: Could not open file: $!\n";
62 &Write_UTF16_Newline($file);
64 open(FILE1, ">>$file") or warn "WARNING: Could not open file: $!\n";
67 &Write_UTF16_Newline($file);
70 # This function adds a line to a wsini.ini so that it runs the tests with NOREDRAWSTORING flag
71 # This functions assumes the file is in UTF16
72 sub AddNoRedrawStoring
76 my $string = &ascii_to_utf16('NOREDRAWSTORING');
78 &Write_UTF16_Newline($file);
80 open(FILE, ">>$file") or warn "WARNING: Could not open file: $!\n";
84 &Write_UTF16_Newline($file);
88 sub Write_UTF16_Newline
92 open(BIN, ">>$file") or warn "WARNING: Could not open \"$file\": $!\n";
94 sysseek BIN, 0, 'SEEK_END';
95 syswrite BIN, "\x0D\x00\x0A\x00" or warn "WARNING: Could not write to file\n";
101 # Function that accepts an ASCII string and returns the same string in UTF16
103 my $utf16_string = "";
104 my $ascii_string = shift;
105 my $lengthofstring = length($ascii_string);
107 for (my $count=1; $count<=$lengthofstring; $count++)
109 my $char = substr($ascii_string,$count-1,1);
110 $utf16_string .= $char;
111 $utf16_string .= "\x00";
114 return $utf16_string;