os/textandloc/charconvfw/fatfilenameconversionplugins/group/FatConversionTable.pl
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
#
sl@0
     2
# Copyright (c) 2004-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
# This tool takes a valid .txt file as an input parameter and converts it into a .cpp file
sl@0
    16
#
sl@0
    17
sl@0
    18
if (@ARGV != 1 && @ARGV != 2)
sl@0
    19
	{
sl@0
    20
	print <<EOD;
sl@0
    21
Usage:explanation.....
sl@0
    22
EOD
sl@0
    23
	exit(1);
sl@0
    24
	}
sl@0
    25
sl@0
    26
# Removes the extenstion from the filename
sl@0
    27
$ARGV[0] =~ m/(.*)\..*/;
sl@0
    28
my $root = $1;
sl@0
    29
$root =~ m/.*[\\\/]([^\\\/]*)$/;
sl@0
    30
my $header_to_include = $1;
sl@0
    31
sl@0
    32
if (@ARGV == 2)
sl@0
    33
	{
sl@0
    34
	$ARGV[1] =~ m/(.*)\..*/;
sl@0
    35
	$root = $1;
sl@0
    36
	}
sl@0
    37
sl@0
    38
open (IN, "<$ARGV[0]") or die ("Error: $ARGV[0] $!");
sl@0
    39
sl@0
    40
open (CPP, ">$root.cpp") or die ("Error: $ARGV[0] Can't open cpp file");
sl@0
    41
sl@0
    42
print CPP <<EOD;
sl@0
    43
//
sl@0
    44
// Auto-generated by the FatConversiontable tool - Do not edit!!!
sl@0
    45
//
sl@0
    46
sl@0
    47
#include <e32std.h>
sl@0
    48
#include <e32def.h>
sl@0
    49
#include <e32des8.h> 
sl@0
    50
#include "convdatastruct.h"
sl@0
    51
sl@0
    52
EOD
sl@0
    53
print CPP "const TLeadOrSingle TConvDataStruct\:\:KFirstByteConversions\[\]=\n";
sl@0
    54
print CPP "\t\t\{\n";
sl@0
    55
sl@0
    56
my $input;
sl@0
    57
my $count = 0;
sl@0
    58
my $count2 = 0;
sl@0
    59
my $tailIncrement = hex(40);
sl@0
    60
my $index = 0;
sl@0
    61
my $test = 0;
sl@0
    62
my $leadByte = hex(00);
sl@0
    63
sl@0
    64
until (eof IN) {	#until end of file
sl@0
    65
sl@0
    66
#ignore lines that start with a '#' or which are in the range of 0x00 - 0x7F
sl@0
    67
do {
sl@0
    68
	$input = readline(IN) or die ("Error: Can't read line");
sl@0
    69
}while ($input =~ m/^$*#/ || $input=~ m/^0x[0-7][0-9A-F]\t/);
sl@0
    70
sl@0
    71
#single bytes get stored into 'SingleByte' array
sl@0
    72
if($input =~ m/^0x(..)\t(.*)\t(#.*)$/) 
sl@0
    73
	{
sl@0
    74
	my $SingleByte = hex($1);
sl@0
    75
	my $Unicode = $2;
sl@0
    76
	my $Note = $3;
sl@0
    77
	
sl@0
    78
	if ($Unicode=~ m/0x..../)
sl@0
    79
		{
sl@0
    80
		@SingleByte[$count] = (["$SingleByte", "$Unicode"]);
sl@0
    81
		$count = $count + 1;
sl@0
    82
		}
sl@0
    83
	if($Note eq '#DBCS LEAD BYTE')
sl@0
    84
		{
sl@0
    85
		@SingleByte[$count] = (["$SingleByte", "0"]);
sl@0
    86
		$count = $count + 1;
sl@0
    87
		}
sl@0
    88
	if ($Note eq '#UNDEFINED')
sl@0
    89
		{
sl@0
    90
		@SingleByte[$count] = (["$SingleByte", "0xFFFD"]);		
sl@0
    91
		$count = $count + 1;
sl@0
    92
		}
sl@0
    93
	}
sl@0
    94
	
sl@0
    95
#double bytes get stored into 'DoubleByte' array, whereby the tail bytes 
sl@0
    96
#must not have any gaps from 0x40 to 0xFF;
sl@0
    97
elsif($input=~ m/^0x(..)(..)\t(0x....)\t#.*/)
sl@0
    98
	{
sl@0
    99
	my $ForeignLead = hex($1);
sl@0
   100
	my $ForeignTail = hex($2);
sl@0
   101
	my $Unicode = $3;
sl@0
   102
	$test = 1;		
sl@0
   103
	
sl@0
   104
	if($leadByte==0)
sl@0
   105
		{
sl@0
   106
		$leadByte=$ForeignLead;
sl@0
   107
		}
sl@0
   108
		
sl@0
   109
	if($leadByte!=$ForeignLead)
sl@0
   110
		{
sl@0
   111
		if($tailIncrement!=hex(40))
sl@0
   112
			{
sl@0
   113
			while($tailIncrement<=hex(FF))
sl@0
   114
				{
sl@0
   115
				@DoubleByte[$count2] = (["$leadByte", "0xFFFD","$tailIncrement"]);
sl@0
   116
				$count2++;	
sl@0
   117
				$tailIncrement++;
sl@0
   118
				}
sl@0
   119
			}
sl@0
   120
		$tailIncrement=hex(40);
sl@0
   121
		$leadByte=$ForeignLead;
sl@0
   122
		}
sl@0
   123
		
sl@0
   124
	while($tailIncrement<=$ForeignTail)
sl@0
   125
		{
sl@0
   126
		if($tailIncrement==$ForeignTail)
sl@0
   127
			{
sl@0
   128
			@DoubleByte[$count2] = (["$ForeignLead", "$Unicode","$ForeignTail"]);		
sl@0
   129
			}
sl@0
   130
		else
sl@0
   131
			{
sl@0
   132
			@DoubleByte[$count2] = (["$leadByte", "0xFFFD","$tailIncrement"]);
sl@0
   133
			}
sl@0
   134
		$count2++;	
sl@0
   135
		if($tailIncrement==hex(FF))
sl@0
   136
			{
sl@0
   137
			$tailIncrement=hex(40);
sl@0
   138
			$leadByte++;
sl@0
   139
			}
sl@0
   140
		else
sl@0
   141
			{
sl@0
   142
			$tailIncrement++;
sl@0
   143
			}
sl@0
   144
		}
sl@0
   145
	}
sl@0
   146
} #end of loop
sl@0
   147
sl@0
   148
#my $d=0;
sl@0
   149
#for ($d=0;$d<$count2;$d++)
sl@0
   150
#{
sl@0
   151
#print CPP"$DoubleByte[$d][0], $DoubleByte[$d][1], $DoubleByte[$d][2]\t\n";
sl@0
   152
#}
sl@0
   153
sl@0
   154
#checks if tail byte ended uncompleted (i.e. ends with xFD) and completes it to xFF;
sl@0
   155
if($test==1)
sl@0
   156
	{
sl@0
   157
	my $counter = $count2-1;
sl@0
   158
	$test=0;
sl@0
   159
	
sl@0
   160
	if($DoubleByte[$counter][2]<0xFF)
sl@0
   161
		{
sl@0
   162
		my $temp = $DoubleByte[$counter][0];
sl@0
   163
		my $temp2 = $DoubleByte[$counter][2];
sl@0
   164
		do
sl@0
   165
			{
sl@0
   166
			$temp2++;
sl@0
   167
			@DoubleByte[$count2] = (["$temp", "0xFFFD","$temp2"]);
sl@0
   168
			$count2 = $count2 + 1;
sl@0
   169
			}while($temp2<0xFF);
sl@0
   170
		}
sl@0
   171
	}
sl@0
   172
sl@0
   173
my $position = 0;
sl@0
   174
my $position2 = 0;
sl@0
   175
my $x=0;
sl@0
   176
my $y=0;
sl@0
   177
sl@0
   178
#get the positions of single/lead bytes
sl@0
   179
for($x=0; $x<$count; $x++)
sl@0
   180
	{
sl@0
   181
	my $found=0;
sl@0
   182
	if($SingleByte[$x][1] eq '0') #if lead-byte...
sl@0
   183
		{	
sl@0
   184
		for($y=0; $y<$count2; $y++)
sl@0
   185
			{
sl@0
   186
			if($SingleByte[$x][0] == $DoubleByte[$y][0])
sl@0
   187
				{
sl@0
   188
				$position = $y;
sl@0
   189
				$position2 = $y + 192;
sl@0
   190
				$found = 1;
sl@0
   191
				$y=$count2;
sl@0
   192
				}	
sl@0
   193
			}		
sl@0
   194
		if($found==1)
sl@0
   195
			{
sl@0
   196
			print CPP "\t\t\{$SingleByte[$x][1], $position\},\n";
sl@0
   197
			}
sl@0
   198
		else
sl@0
   199
			{
sl@0
   200
			print CPP "\t\t\{0xFFFD, $position2\},\n";
sl@0
   201
			}
sl@0
   202
		}
sl@0
   203
	else
sl@0
   204
		{
sl@0
   205
		print CPP "\t\t\{$SingleByte[$x][1], $position2\},\n";
sl@0
   206
		}
sl@0
   207
	}
sl@0
   208
print CPP "\t\t\};\n\n";
sl@0
   209
sl@0
   210
#print double bytes
sl@0
   211
print CPP "const TUint16 TConvDataStruct\:\:KDoubleByteConversions\[\]=\n";
sl@0
   212
print CPP "\t\t\{";
sl@0
   213
my $newLine = 0;
sl@0
   214
if($count2>0)
sl@0
   215
	{
sl@0
   216
	for ($i=0; $i<$count2; $i++)
sl@0
   217
		{
sl@0
   218
		if($newLine==15)	#use a newline every 15 entries, to maintain user-friendliness
sl@0
   219
			{
sl@0
   220
			print CPP "\n\t\t";
sl@0
   221
			$newLine = 0;
sl@0
   222
			}
sl@0
   223
		print CPP "$DoubleByte[$i][1],";
sl@0
   224
		$newLine++;
sl@0
   225
		}
sl@0
   226
	}
sl@0
   227
else
sl@0
   228
	{
sl@0
   229
	print CPP "0x00";
sl@0
   230
	}
sl@0
   231
print CPP "\};\n\n";
sl@0
   232
if($count2>0)
sl@0
   233
	{
sl@0
   234
	$count2=$count2-1;
sl@0
   235
	}
sl@0
   236
print CPP "const TUint16 TConvDataStruct\:\:KDoubleByteConversionLength = $count2;\n\n";
sl@0
   237
print CPP "const TUint8 TConvDataStruct\:\:KMinTrailByte = 0x40;\n\n";
sl@0
   238
print CPP "const TUint8 TConvDataStruct\:\:KMaxTrailByte = 0xFF;\n\n";
sl@0
   239
sl@0
   240
print CPP <<EOD;
sl@0
   241
TInt TConvDataStruct::ConvertSingleUnicode(TInt aUnicode, TInt& aTrailByte)
sl@0
   242
	{
sl@0
   243
	aTrailByte = KErrNotFound;
sl@0
   244
	
sl@0
   245
	//single byte conversion check
sl@0
   246
	for(TInt i=0;i!=0x80;++i)
sl@0
   247
		{
sl@0
   248
		if(KFirstByteConversions[i].iUnicodeIfSingle==aUnicode)
sl@0
   249
			return i+0x80;
sl@0
   250
		}
sl@0
   251
	//double byte conversion check
sl@0
   252
	for(TInt j=0;j<=KDoubleByteConversionLength;++j)
sl@0
   253
		{
sl@0
   254
		if(KDoubleByteConversions[j] == aUnicode)
sl@0
   255
			{
sl@0
   256
			for(TInt k=0x7F;k>=0;--k)
sl@0
   257
				{
sl@0
   258
				TInt temp = j-KFirstByteConversions[k].iDoubleByteIndex;
sl@0
   259
				if(0<=temp)
sl@0
   260
					{
sl@0
   261
					aTrailByte = KMinTrailByte + temp;
sl@0
   262
					return k+0x80;
sl@0
   263
					}
sl@0
   264
				}
sl@0
   265
			}
sl@0
   266
		}
sl@0
   267
	return KErrNotFound;
sl@0
   268
EOD
sl@0
   269
print CPP "\t\}\n";