os/textandloc/charconvfw/fatfilenameconversionplugins/group/cp54936_allbmp_fromunicode.pl
Update contrib.
2 # Copyright (c) 2008-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.
15 # See line 99 of this file.
18 if (@ARGV != 2 && @ARGV != 3)
21 Usage: cp54936_allbmp_fromunicode.pl cp54936_2byte.txt cp54936_4byte.txt cp54936_allbmp_fromunicode.cpp
26 my $root = "cp54936_allbmp_fromunicode.cpp";
33 my %lines; # the hash table to hold all characters with key=unicode(dec) and value=foreign(string)
36 # read 2 byte input file
37 open (IN2, "<$ARGV[0]") or die ("Error: $ARGV[0] $!");
39 my $acceptLineNumber = 0;
44 if ($line =~ /^(0[xX][\da-fA-F]{1,4})\s*(0[xX][\da-fA-F]{1,4}).*/)
48 my $unicode = hex($2);
49 if (exists ($lines{$unicode}))
51 print "ERROR: Unicode $unicode is reused by $lines{$unicode} and $foreign.\n";
54 $lines{$unicode} = $foreign;
58 #print "Ignore line: $line";
62 print "\nRead $ARGV[0] done.\n";
63 print "$acceptLineNumber of $lineNumber lines accepted.\n\n";
66 # read 4 byte input file
67 open (IN4, "<$ARGV[1]") or die ("Error: $ARGV[1] $!");
69 $acceptLineNumber = 0;
74 if ($line =~ /^(0[xX]8[1-4]3\d[\da-fA-F]{2}3\d)\s*(0[xX][\da-fA-F]{4}).*/)
78 my $unicode = hex($2);
79 if (exists ($lines{$unicode}))
81 print "ERROR: Unicode $unicode is reused by $lines{$unicode} and $foreign.\n";
84 $lines{$unicode} = $foreign;
88 #print "Ignore line: $line";
92 print "Read $ARGV[1] done.\n";
93 print "$acceptLineNumber of $lineNumber lines accepted.\n\n";
96 # write to output file
97 print "Write to $root...\n";
98 open (CPP, ">$root") or die ("Error: Can't open cpp file");
100 // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
101 // All rights reserved.
102 // This component and the accompanying materials are made available
103 // under the terms of the License "Eclipse Public License v1.0"
104 // which accompanies this distribution, and is available
105 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
107 // Initial Contributors:
108 // Nokia Corporation - initial contribution.
114 // Generated by the cp54936_allbmp_fromunicode.pl tool - Do not edit!!!
115 // Generated with \"perl -w ..\\group\\cp54936_allbmp_fromunicode.pl cp54936_2byte.txt cp54936_4byte.txt\".
122 const TUint8 KForeignReplacement = 0x5F;
125 print CPP "const TUint32 KMappingTableUnicodeBmp2CP54936\[65536\] = \n";
126 print CPP "\t\{\n\t";
129 my $expectUnicode = 0;
130 while ($expectUnicode <= 0xFFFF)
132 if (exists ($lines{$expectUnicode}))
134 print CPP "$lines{$expectUnicode}, ";
138 print CPP "KForeignReplacement, ";
142 if (($expectUnicode % 16) == 0)
144 print CPP sprintf("// %04X - %04X\n\t", $expectUnicode-16, $expectUnicode-1);
150 print CPP "// total byte count = $bytecount\n";
151 print "\nTotal byte count: $bytecount.\n";