Update contrib.
2 # Copyright (c) 2007-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.
21 # Figure out what user has asked us to do...
23 my( $script_name ) = $0;
24 my( $mode ) = $ARGV[0];
25 my( $backup ) = $ARGV[1];
26 my( $epocextra ) = $ARGV[2];
27 my( $wsiniextra ) = $ARGV[3];
31 This script will append or remove extra options to the epoc.ini and
32 wsini.ini emulator configuration files.
33 It is intended to be used before and after any emulator tests
34 that require multiple emulator screens.
39 Displays this message.
41 $script_name append $backup $epocextra $wsiniextra
42 Makes back-up copies of the epoc.ini and wsini.ini config files to files
43 prefixed with $backup and then appends the contents of $epocextra and
44 $wsiniextra to the originals. Note that $backup must be unique or append
47 $script_name restore $backup
48 Moves the back-up copies of epoc.ini and wsini.ini to their original
49 locations from files prefixed with $backup
52 The wsini.ini file is a unicode text file encoded using UTF-16. The
53 wsini.extra file MUST therefore be saved with the same encoding
54 otherwise the resulting concatenated file will not work. (You don't need
55 to worry about the extra BOM at the start of wsini.extra since this
56 script takes care of removing it before appending the file)
58 The original epoc.ini and wsini.ini files are NOT checked prior to the
59 appending. If you have customised these files (especially with any
60 multi-screen options) the resulting concatenated files may be invalid
61 or cause the tests to fail.
65 if( ($mode eq 'help') || ( $mode eq '' ) ){
69 elsif( ($mode ne 'append') && ($mode ne 'restore') ){
70 die "$script_name: ERROR: Invalid argument: \"$mode\". Must be either \"help\", \"append\" or \"restore\"\n".$usage;
73 ##########################################
75 # Append $source to $dest. If $is_utf_16 the BOM marker at the start of $source will be
76 # stripped off to ensure that the $dest remains a valid UTF-16 file.
78 my( $source, $dest, $is_utf_16 ) = @_;
79 my( $line, $did_first );
82 open SOURCE, $source or die "$script_name: ERROR: Could not open $source ($!)\n";
83 open DEST, '>>', $dest or die "$script_name: ERROR: Could not open $dest ($!)\n";
86 # since our old version of Perl does not have decent Unicode support
87 # we'll use binary mode instead...
91 while( read( SOURCE, $line, 1000 ) ){
93 # strip BOM (first two bytes) off first line, since it is being appended to an
94 # existing UTF-16 file
95 $line = substr( $line, 2 );
103 while( $line = <SOURCE> ){
112 ##########################################
113 # Begin main logic...
115 # Figure out locations of INI files...
116 my( $epoc_root, $epocini, $udeb_wsini, $urel_wsini, $extra_epocini, $extra_wsini, $copy_epocini, $copy_udeb_wsini, $copy_urel_wsini );
118 $epoc_root = $ENV{'EPOCROOT'};
119 $epoc_root =~ tr:\\:/:; # change to Linux-friendly forward-slashes (Windows Perl compensates for this automagically)
120 $epoc_root =~ s/\/$//; # remove any trailing slash to avoid double slashes when the paths are appended below
122 $epocini = $epoc_root.'/epoc32/data/epoc.ini';
123 #if this is defined we are running Mistral
124 if($ENV{'EPOC_INI'}) {$epocini = $ENV{'EPOC_INI'};}
126 $udeb_wsini = $epoc_root.'/epoc32/RELEASE/WINSCW/UDEB/Z/system/data/wsini.ini'; # this file is UTF-16 little-endian!
127 $urel_wsini = $epoc_root.'/epoc32/RELEASE/WINSCW/UREL/Z/system/data/wsini.ini'; # this file is UTF-16 little-endian!
129 my $emu_data_dir = $ENV{'EMULATOR_DATA_DIR'};
132 #this is mistral so we will overload $urel_wsini with absolute location
133 $urel_wsini = $emu_data_dir.'z\system\data\wsini.ini';
136 $extra_epocini = $FindBin::Bin.$epocextra; # this file is ASCII
137 $extra_wsini = $FindBin::Bin.$wsiniextra; # this file is UTF-16 little-endian!
139 $copy_epocini = $FindBin::Bin.'/'.$backup.'_epoc.copy';
140 $copy_udeb_wsini = $FindBin::Bin.'/'.$backup.'_wsini_udeb.copy';
141 $copy_urel_wsini = $FindBin::Bin.'/'.$backup.'_wsini_urel.copy';
144 if( $mode eq 'append' ){
145 # Append mode: Append extra options to existing INI files
147 # first make back-up of existing INI files
148 # (without clobbering existing copies)
149 if( -e $copy_epocini ){
150 die "$script_name: ERROR: Back-up of epoc.ini already exists at \"$copy_epocini\". Please run \"$script_name restore\" first.\n";
153 copy( $epocini, $copy_epocini ) or die "$script_name: ERROR: Could not copy $epocini ($!)\n";
155 # now append extra bits to original INI files
156 append_to_file( $extra_epocini, $epocini, 0 );
157 print "$script_name: NOTE: Extra settings have been appended to \"$epocini\". If you have customised this file and secondary display tests fail, please check for conflicting settings!\n";
159 ## UREL wsini.ini + mistral universal
160 if( -e $copy_urel_wsini ){
161 die "$script_name: ERROR: Back-up of UREL wsini.ini already exists at \"$copy_urel_wsini\". Please run \"$script_name restore\" first.\n";
164 copy( $urel_wsini, $copy_urel_wsini ) or die "$script_name: ERROR: Could not copy $urel_wsini ($!)\n";
166 #note mistral will provide absolute location dependant on running mode
167 append_to_file( $extra_wsini, $urel_wsini, 1 );
168 print "$script_name: NOTE: Extra settings have been appended to \"$urel_wsini\". If you have customised this file and secondary display tests fail, please check for conflicting settings!\n";
171 #unless mistral in which case we dont bother keeping a backup of udeb as we adjust universal copy
172 #under guise of UREL path
175 if( -e $copy_udeb_wsini ){
176 die "$script_name: ERROR: Back-up of UDEB wsini.ini already exists at \"$copy_udeb_wsini\". Please run \"$script_name restore\" first.\n";
179 copy( $udeb_wsini, $copy_udeb_wsini ) or die "$script_name: ERROR: Could not copy $udeb_wsini ($!)\n";
182 append_to_file( $extra_wsini, $udeb_wsini, 1 );
183 print "$script_name: NOTE: Extra settings have been appended to \"$udeb_wsini\". If you have customised this file and secondary display tests fail, please check for conflicting settings!\n";
189 # Restore mode: Move copies of original INI files back to original locations
191 move( $copy_epocini, $epocini ) && print "$script_name: NOTE: \"$epocini\" has been restored to previous version.\n" or warn "$script_name: Could not restore $epocini from $copy_epocini ($!)\n";
193 move( $copy_urel_wsini, $urel_wsini ) && print "$script_name: NOTE: \"$urel_wsini\" has been restored to previous version.\n" or warn "$script_name: Could not restore $urel_wsini from $copy_urel_wsini ($!)\n";
197 move( $copy_udeb_wsini, $udeb_wsini ) && print "$script_name: NOTE: \"$udeb_wsini\" has been restored to previous version.\n" or warn "$script_name: Could not restore $udeb_wsini from $copy_udeb_wsini ($!)\n";