os/textandloc/charconvfw/charconvplugins/src/shared/charconv_table_code.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     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".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description: 
    15 * Code used to actually access lookup tables. Included by
    16 * automatically generated files which define the tables to
    17 * implement the functions prototyped in Charconv_table_utilties.h 
    18 *
    19 */
    20 
    21 
    22 /**
    23  
    24  This function attempts to look up "Foreign" character and return
    25  the Unicode character defined as being the appropriate representation
    26  for this character set.
    27  @param aRow The most significant 8 bits of the input charachter.
    28  @param aColumn The least significant 8 bits of the input charachter.
    29  @return KUnicodeUnmappedChar if no mapping is defined for the input character, otherwise a valid unicode character.
    30  @internalTechnology
    31 */
    32 TUint16 lookupUnicodeChar(TUint aRow, TUint aColumn)
    33 	{
    34 	const TUint16* unicodeColumn ;
    35 	TUint16 unicodeChar ;
    36 	
    37 	unicodeColumn = ForeignToUnicodeRowMappings[aRow] ;
    38 	if (unicodeColumn)
    39 		{
    40 		if ((aColumn >= unicodeColumn[KlowestIndex]) &&
    41 		    (aColumn <= unicodeColumn[KhighestIndex]))
    42 			{
    43 			aColumn += KFirstDataIndex ;
    44 			aColumn -= unicodeColumn[KlowestIndex] ;
    45 			unicodeChar = unicodeColumn[aColumn] ;		                                         
    46 			}
    47 		else
    48 			{
    49 			unicodeChar = KUnicodeUnmappedChar ;	
    50 			}
    51 		}
    52 	else
    53 		{
    54 			unicodeChar = KUnicodeUnmappedChar ;				
    55 		}
    56 	return unicodeChar ;
    57 	}
    58 
    59 
    60 
    61 /**
    62 This function attempts to look up a Unicode character and return
    63 the "Foreign" character defined as being the appropriate representation
    64 for this character set.
    65 @param aRow The most significant 8 bits of the input character.
    66 @param aColumn The least significant 8 bits of the input character.
    67 @return KForeignUnmappedChar if no mapping is defined for the input character, otherwise a valid unicode character.
    68 @internalTechnology
    69 */	
    70 TUint16 lookupForeignChar(TUint aRow, TUint aColumn)
    71 	{
    72 	
    73 	const TUint16* foreignColumn  ;
    74 	TUint16 foreignChar ;
    75 	
    76 	foreignColumn = UnicodeToForeignRowMappings[aRow] ;
    77 	if (foreignColumn)
    78 		{
    79 		if ((aColumn >= foreignColumn[KlowestIndex]) &&
    80 		    (aColumn <= foreignColumn[KhighestIndex]))
    81 			{
    82 			aColumn += KFirstDataIndex ;
    83 			aColumn -= foreignColumn[KlowestIndex] ;
    84 			foreignChar = foreignColumn[aColumn] ;		                                         
    85 			}
    86 		else
    87 			{
    88 			foreignChar = KForeignUnmappedChar ;	
    89 			}
    90 		}
    91 	else
    92 		{
    93 			foreignChar = KForeignUnmappedChar ;				
    94 		}
    95 	return foreignChar ;
    96 	}
    97 
    98 
    99 /**
   100 This function returns the value of KUnicodeUnmappedChar (may vary for
   101 different character sets..
   102 @return Value of KUnicodeUnmappedChar for this particular implementation
   103 @internalComponent
   104 */		
   105 TUint16 getUnicodeUnmappedCharacter(void) 
   106 	{
   107 	return KUnicodeUnmappedChar ;
   108 	}
   109 
   110 
   111 /**
   112 This function returns the value of KForeignUnmappedChar (may vary for
   113 different character sets..
   114 @return Value of KForeignUnmappedChar for this particular implementation
   115 @internalComponent
   116 */	
   117 TUint16 getForeignUnmappedCharacter(void) 
   118 	{
   119 	return KForeignUnmappedChar ;
   120 	}