sl@0
|
1 |
#
|
sl@0
|
2 |
# Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
# All rights reserved.
|
sl@0
|
4 |
# This component and the accompanying materials are made available
|
sl@0
|
5 |
# under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
# which accompanies this distribution, and is available
|
sl@0
|
7 |
# at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
#
|
sl@0
|
9 |
# Initial Contributors:
|
sl@0
|
10 |
# Nokia Corporation - initial contribution.
|
sl@0
|
11 |
#
|
sl@0
|
12 |
# Contributors:
|
sl@0
|
13 |
#
|
sl@0
|
14 |
# Description:
|
sl@0
|
15 |
#
|
sl@0
|
16 |
#!perl
|
sl@0
|
17 |
|
sl@0
|
18 |
use strict;
|
sl@0
|
19 |
|
sl@0
|
20 |
my $file = $ARGV[0];
|
sl@0
|
21 |
|
sl@0
|
22 |
die "Usage: $0 filename\n" if (!$file);
|
sl@0
|
23 |
die "ERROR: \"$file\" does not exist\n" if (!-f $file);
|
sl@0
|
24 |
|
sl@0
|
25 |
&AddNoRedrawStoring($file) if($ARGV[3] =~ /^noredrawstoring$/i);
|
sl@0
|
26 |
&AddAutoLine($file) if ($ARGV[2] =~ /^auto$/i);
|
sl@0
|
27 |
&AddMultiLine($file) if ($ARGV[1] =~ /^multiscreen$/i);
|
sl@0
|
28 |
|
sl@0
|
29 |
|
sl@0
|
30 |
# This function adds a line to a wsini.ini so that it runs the tests in auto mode
|
sl@0
|
31 |
# This functions assumes the file is in UTF16
|
sl@0
|
32 |
sub AddAutoLine
|
sl@0
|
33 |
{
|
sl@0
|
34 |
my $file = shift;
|
sl@0
|
35 |
|
sl@0
|
36 |
my $string = &ascii_to_utf16('SHELLCMD AUTO');
|
sl@0
|
37 |
|
sl@0
|
38 |
&Write_UTF16_Newline($file);
|
sl@0
|
39 |
|
sl@0
|
40 |
open(FILE, ">>$file") or warn "WARNING: Could not open file: $!\n";
|
sl@0
|
41 |
print FILE $string;
|
sl@0
|
42 |
close FILE;
|
sl@0
|
43 |
|
sl@0
|
44 |
&Write_UTF16_Newline($file);
|
sl@0
|
45 |
}
|
sl@0
|
46 |
|
sl@0
|
47 |
|
sl@0
|
48 |
# This function adds a line to a wsini.ini so that it runs in multiscreen
|
sl@0
|
49 |
# This functions assumes the file is in UTF16
|
sl@0
|
50 |
sub AddMultiLine
|
sl@0
|
51 |
{
|
sl@0
|
52 |
my $file = shift;
|
sl@0
|
53 |
|
sl@0
|
54 |
my $string0 = &ascii_to_utf16('[SCREEN0]');
|
sl@0
|
55 |
my $string1 = &ascii_to_utf16('[SCREEN1]');
|
sl@0
|
56 |
|
sl@0
|
57 |
&Write_UTF16_Newline($file);
|
sl@0
|
58 |
|
sl@0
|
59 |
open(FILE0, ">>$file") or warn "WARNING: Could not open file: $!\n";
|
sl@0
|
60 |
print FILE0 $string0;
|
sl@0
|
61 |
close FILE0;
|
sl@0
|
62 |
&Write_UTF16_Newline($file);
|
sl@0
|
63 |
|
sl@0
|
64 |
open(FILE1, ">>$file") or warn "WARNING: Could not open file: $!\n";
|
sl@0
|
65 |
print FILE1 $string1;
|
sl@0
|
66 |
close FILE1;
|
sl@0
|
67 |
&Write_UTF16_Newline($file);
|
sl@0
|
68 |
}
|
sl@0
|
69 |
|
sl@0
|
70 |
# This function adds a line to a wsini.ini so that it runs the tests with NOREDRAWSTORING flag
|
sl@0
|
71 |
# This functions assumes the file is in UTF16
|
sl@0
|
72 |
sub AddNoRedrawStoring
|
sl@0
|
73 |
{
|
sl@0
|
74 |
my $file = shift;
|
sl@0
|
75 |
|
sl@0
|
76 |
my $string = &ascii_to_utf16('NOREDRAWSTORING');
|
sl@0
|
77 |
|
sl@0
|
78 |
&Write_UTF16_Newline($file);
|
sl@0
|
79 |
|
sl@0
|
80 |
open(FILE, ">>$file") or warn "WARNING: Could not open file: $!\n";
|
sl@0
|
81 |
print FILE $string;
|
sl@0
|
82 |
close FILE;
|
sl@0
|
83 |
|
sl@0
|
84 |
&Write_UTF16_Newline($file);
|
sl@0
|
85 |
}
|
sl@0
|
86 |
|
sl@0
|
87 |
|
sl@0
|
88 |
sub Write_UTF16_Newline
|
sl@0
|
89 |
{
|
sl@0
|
90 |
my $file = shift;
|
sl@0
|
91 |
|
sl@0
|
92 |
open(BIN, ">>$file") or warn "WARNING: Could not open \"$file\": $!\n";
|
sl@0
|
93 |
binmode BIN;
|
sl@0
|
94 |
sysseek BIN, 0, 'SEEK_END';
|
sl@0
|
95 |
syswrite BIN, "\x0D\x00\x0A\x00" or warn "WARNING: Could not write to file\n";
|
sl@0
|
96 |
close BIN;
|
sl@0
|
97 |
}
|
sl@0
|
98 |
|
sl@0
|
99 |
|
sl@0
|
100 |
|
sl@0
|
101 |
# Function that accepts an ASCII string and returns the same string in UTF16
|
sl@0
|
102 |
sub ascii_to_utf16 {
|
sl@0
|
103 |
my $utf16_string = "";
|
sl@0
|
104 |
my $ascii_string = shift;
|
sl@0
|
105 |
my $lengthofstring = length($ascii_string);
|
sl@0
|
106 |
|
sl@0
|
107 |
for (my $count=1; $count<=$lengthofstring; $count++)
|
sl@0
|
108 |
{
|
sl@0
|
109 |
my $char = substr($ascii_string,$count-1,1);
|
sl@0
|
110 |
$utf16_string .= $char;
|
sl@0
|
111 |
$utf16_string .= "\x00";
|
sl@0
|
112 |
}
|
sl@0
|
113 |
|
sl@0
|
114 |
return $utf16_string;
|
sl@0
|
115 |
} |