os/textandloc/charconvfw/fatfilenameconversionplugins/group/FatConversionTable.pl
Update contrib.
2 # Copyright (c) 2004-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 # This tool takes a valid .txt file as an input parameter and converts it into a .cpp file
18 if (@ARGV != 1 && @ARGV != 2)
21 Usage:explanation.....
26 # Removes the extenstion from the filename
27 $ARGV[0] =~ m/(.*)\..*/;
29 $root =~ m/.*[\\\/]([^\\\/]*)$/;
30 my $header_to_include = $1;
34 $ARGV[1] =~ m/(.*)\..*/;
38 open (IN, "<$ARGV[0]") or die ("Error: $ARGV[0] $!");
40 open (CPP, ">$root.cpp") or die ("Error: $ARGV[0] Can't open cpp file");
44 // Auto-generated by the FatConversiontable tool - Do not edit!!!
50 #include "convdatastruct.h"
53 print CPP "const TLeadOrSingle TConvDataStruct\:\:KFirstByteConversions\[\]=\n";
59 my $tailIncrement = hex(40);
62 my $leadByte = hex(00);
64 until (eof IN) { #until end of file
66 #ignore lines that start with a '#' or which are in the range of 0x00 - 0x7F
68 $input = readline(IN) or die ("Error: Can't read line");
69 }while ($input =~ m/^$*#/ || $input=~ m/^0x[0-7][0-9A-F]\t/);
71 #single bytes get stored into 'SingleByte' array
72 if($input =~ m/^0x(..)\t(.*)\t(#.*)$/)
74 my $SingleByte = hex($1);
78 if ($Unicode=~ m/0x..../)
80 @SingleByte[$count] = (["$SingleByte", "$Unicode"]);
83 if($Note eq '#DBCS LEAD BYTE')
85 @SingleByte[$count] = (["$SingleByte", "0"]);
88 if ($Note eq '#UNDEFINED')
90 @SingleByte[$count] = (["$SingleByte", "0xFFFD"]);
95 #double bytes get stored into 'DoubleByte' array, whereby the tail bytes
96 #must not have any gaps from 0x40 to 0xFF;
97 elsif($input=~ m/^0x(..)(..)\t(0x....)\t#.*/)
99 my $ForeignLead = hex($1);
100 my $ForeignTail = hex($2);
106 $leadByte=$ForeignLead;
109 if($leadByte!=$ForeignLead)
111 if($tailIncrement!=hex(40))
113 while($tailIncrement<=hex(FF))
115 @DoubleByte[$count2] = (["$leadByte", "0xFFFD","$tailIncrement"]);
120 $tailIncrement=hex(40);
121 $leadByte=$ForeignLead;
124 while($tailIncrement<=$ForeignTail)
126 if($tailIncrement==$ForeignTail)
128 @DoubleByte[$count2] = (["$ForeignLead", "$Unicode","$ForeignTail"]);
132 @DoubleByte[$count2] = (["$leadByte", "0xFFFD","$tailIncrement"]);
135 if($tailIncrement==hex(FF))
137 $tailIncrement=hex(40);
149 #for ($d=0;$d<$count2;$d++)
151 #print CPP"$DoubleByte[$d][0], $DoubleByte[$d][1], $DoubleByte[$d][2]\t\n";
154 #checks if tail byte ended uncompleted (i.e. ends with xFD) and completes it to xFF;
157 my $counter = $count2-1;
160 if($DoubleByte[$counter][2]<0xFF)
162 my $temp = $DoubleByte[$counter][0];
163 my $temp2 = $DoubleByte[$counter][2];
167 @DoubleByte[$count2] = (["$temp", "0xFFFD","$temp2"]);
168 $count2 = $count2 + 1;
178 #get the positions of single/lead bytes
179 for($x=0; $x<$count; $x++)
182 if($SingleByte[$x][1] eq '0') #if lead-byte...
184 for($y=0; $y<$count2; $y++)
186 if($SingleByte[$x][0] == $DoubleByte[$y][0])
189 $position2 = $y + 192;
196 print CPP "\t\t\{$SingleByte[$x][1], $position\},\n";
200 print CPP "\t\t\{0xFFFD, $position2\},\n";
205 print CPP "\t\t\{$SingleByte[$x][1], $position2\},\n";
208 print CPP "\t\t\};\n\n";
211 print CPP "const TUint16 TConvDataStruct\:\:KDoubleByteConversions\[\]=\n";
216 for ($i=0; $i<$count2; $i++)
218 if($newLine==15) #use a newline every 15 entries, to maintain user-friendliness
223 print CPP "$DoubleByte[$i][1],";
236 print CPP "const TUint16 TConvDataStruct\:\:KDoubleByteConversionLength = $count2;\n\n";
237 print CPP "const TUint8 TConvDataStruct\:\:KMinTrailByte = 0x40;\n\n";
238 print CPP "const TUint8 TConvDataStruct\:\:KMaxTrailByte = 0xFF;\n\n";
241 TInt TConvDataStruct::ConvertSingleUnicode(TInt aUnicode, TInt& aTrailByte)
243 aTrailByte = KErrNotFound;
245 //single byte conversion check
246 for(TInt i=0;i!=0x80;++i)
248 if(KFirstByteConversions[i].iUnicodeIfSingle==aUnicode)
251 //double byte conversion check
252 for(TInt j=0;j<=KDoubleByteConversionLength;++j)
254 if(KDoubleByteConversions[j] == aUnicode)
256 for(TInt k=0x7F;k>=0;--k)
258 TInt temp = j-KFirstByteConversions[k].iDoubleByteIndex;
261 aTrailByte = KMinTrailByte + temp;