os/ossrv/lowlevellibsandfws/pluginfw/Framework/MultipleImageTest/tools/scripts/EditH4hrpOby.pl
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Framework/MultipleImageTest/tools/scripts/EditH4hrpOby.pl	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,51 @@
     1.4 +#!perl
     1.5 +
     1.6 +# Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.7 +# All rights reserved.
     1.8 +# This component and the accompanying materials are made available
     1.9 +# under the terms of "Eclipse Public License v1.0"
    1.10 +# which accompanies this distribution, and is available
    1.11 +# at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.12 +#
    1.13 +# Initial Contributors:
    1.14 +# Nokia Corporation - initial contribution.
    1.15 +#
    1.16 +# Contributors:
    1.17 +#
    1.18 +# Description:
    1.19 +#
    1.20 +
    1.21 +use strict;
    1.22 +my $target = "\\epoc32\\rom\\include\\h4hrp.oby";
    1.23 +
    1.24 +# Read h4hrp.oby to see if it has already been modified.
    1.25 +my @lines = ();
    1.26 +my $lastEndIf;
    1.27 +
    1.28 +open(FH, $target) or die "Fail to open $target $!\n";
    1.29 +while(<FH>)
    1.30 +{
    1.31 +  push(@lines, $_);
    1.32 +  $lastEndIf = scalar(@lines) - 1 if (/#endif/i);
    1.33 +  if (/\bLANGUAGE_CODE\s+0\d/i)
    1.34 +  {
    1.35 +    close(FH);
    1.36 +	exit(0);
    1.37 +  }
    1.38 +}
    1.39 +close(FH);
    1.40 +
    1.41 +chmod(0666, $target);
    1.42 +open(FH, ">$target") or die "Fail to open $target for write $!\n";
    1.43 +
    1.44 +for (my $i = 0; $i < scalar @lines; $i++)
    1.45 +{
    1.46 +  if ($i == $lastEndIf)
    1.47 +  {
    1.48 +	print FH "\nDEFAULT_LANGUAGE 01\n";
    1.49 +	print FH "LANGUAGE_CODE 02\n";
    1.50 +	print FH "LANGUAGE_CODE 03\n\n";
    1.51 +  }
    1.52 +  print FH $lines[$i];
    1.53 +}
    1.54 +close(FH);