os/textandloc/charconvfw/charconv_fw/inc/convdata.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
/*
sl@0
     2
* Copyright (c) 1997-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
*
sl@0
    16
*/
sl@0
    17
sl@0
    18
sl@0
    19
#if !defined(__CONVDATA_H__)
sl@0
    20
#define __CONVDATA_H__
sl@0
    21
sl@0
    22
/**
sl@0
    23
This structure doesn't intend to be used by external developers.
sl@0
    24
For plugin creators, all they need is to include this header file in order to compile. All the plugin data are generated from provided perl scripts. 
sl@0
    25
 
sl@0
    26
Any use of this structure externally are not proved to be compatible in future. 
sl@0
    27
@internalComponent
sl@0
    28
*/
sl@0
    29
struct SCnvConversionData
sl@0
    30
	{
sl@0
    31
/** Specifies the default endian-ness of the current character set. Used by SetDefaultEndiannessOfForeignCharacters(). */
sl@0
    32
	enum TEndianness // the values of these *must not* change they are used hard-coded in CNVTOOL.PL
sl@0
    33
		{
sl@0
    34
		EUnspecified		=0,
sl@0
    35
		EFixedLittleEndian	=1,
sl@0
    36
		EFixedBigEndian		=2
sl@0
    37
		};
sl@0
    38
	struct SVariableByteData
sl@0
    39
		{
sl@0
    40
		struct SRange
sl@0
    41
			{
sl@0
    42
			TUint8 iFirstInitialByteValueInRange;
sl@0
    43
			TUint8 iLastInitialByteValueInRange;
sl@0
    44
			TUint8 iNumberOfSubsequentBytes;
sl@0
    45
			TUint8 iSpare;
sl@0
    46
			};
sl@0
    47
		TInt iNumberOfRanges;
sl@0
    48
		const SRange* iRangeArray;
sl@0
    49
		};
sl@0
    50
	struct SOneDirectionData
sl@0
    51
		{
sl@0
    52
		struct SRange
sl@0
    53
			{
sl@0
    54
			enum TAlgorithm
sl@0
    55
				{
sl@0
    56
				// each of these, with the exception of EDirect, has a corresponding member of UData
sl@0
    57
				EDirect,
sl@0
    58
				EOffset,
sl@0
    59
				EIndexedTable16,
sl@0
    60
				EKeyedTable1616,
sl@0
    61
				EKeyedTable16OfIndexedTables16,
sl@0
    62
				EIndexedTable32,
sl@0
    63
				EKeyedTable3232,
sl@0
    64
				EKeyedTable32OfIndexedTables32
sl@0
    65
				};
sl@0
    66
			union UData
sl@0
    67
				{
sl@0
    68
				struct SIndexedTable16
sl@0
    69
					{
sl@0
    70
					struct SEntry
sl@0
    71
						{
sl@0
    72
						TUint16 iOutputCharacterCode;
sl@0
    73
						};
sl@0
    74
					const SEntry* iEntryArray;
sl@0
    75
					};
sl@0
    76
				struct SKeyedTable1616
sl@0
    77
					{
sl@0
    78
					struct SEntry
sl@0
    79
						{
sl@0
    80
						TUint16 iKey;
sl@0
    81
						TUint16 iOutputCharacterCode;
sl@0
    82
						};
sl@0
    83
					TInt iNumberOfEntries;
sl@0
    84
					const SEntry* iEntryArray;
sl@0
    85
					};
sl@0
    86
				struct SKeyedTable16OfIndexedTables16
sl@0
    87
					{
sl@0
    88
					struct SKeyedEntry
sl@0
    89
						{
sl@0
    90
						TUint16 iFirstInputCharacterCodeInIndexedTable;
sl@0
    91
						TUint16 iLastInputCharacterCodeInIndexedTable;
sl@0
    92
						const TUint16* iIndexedEntryArray;
sl@0
    93
						};
sl@0
    94
					TInt iNumberOfKeyedEntries;
sl@0
    95
					const SKeyedEntry* iKeyedEntryArray;
sl@0
    96
					};
sl@0
    97
				struct SIndexedTable32
sl@0
    98
					{
sl@0
    99
					struct SEntry
sl@0
   100
						{
sl@0
   101
						TUint32 iOutputCharacterCode;
sl@0
   102
						};
sl@0
   103
					const SEntry* iEntryArray;
sl@0
   104
					};
sl@0
   105
				struct SKeyedTable3232
sl@0
   106
					{
sl@0
   107
					struct SEntry
sl@0
   108
						{
sl@0
   109
						TUint32 iKey;
sl@0
   110
						TUint32 iOutputCharacterCode;
sl@0
   111
						};
sl@0
   112
					TInt iNumberOfEntries;
sl@0
   113
					const SEntry* iEntryArray;
sl@0
   114
					};
sl@0
   115
				struct SKeyedTable32OfIndexedTables32
sl@0
   116
					{
sl@0
   117
					struct SKeyedEntry
sl@0
   118
						{
sl@0
   119
						TUint32 iFirstInputCharacterCodeInIndexedTable;
sl@0
   120
						TUint32 iLastInputCharacterCodeInIndexedTable;
sl@0
   121
						const TUint32* iIndexedEntryArray;
sl@0
   122
						};
sl@0
   123
					TInt iNumberOfKeyedEntries;
sl@0
   124
					const SKeyedEntry* iKeyedEntryArray;
sl@0
   125
					};
sl@0
   126
				TInt iOffset;
sl@0
   127
				SIndexedTable16 iIndexedTable16;
sl@0
   128
				SKeyedTable1616 iKeyedTable1616;
sl@0
   129
				SKeyedTable16OfIndexedTables16 iKeyedTable16OfIndexedTables16;
sl@0
   130
				SIndexedTable32 iIndexedTable32;
sl@0
   131
				SKeyedTable3232 iKeyedTable3232;
sl@0
   132
				SKeyedTable32OfIndexedTables32 iKeyedTable32OfIndexedTables32;
sl@0
   133
				};
sl@0
   134
			TUint iFirstInputCharacterCodeInRange;
sl@0
   135
			TUint iLastInputCharacterCodeInRange;
sl@0
   136
			TUint8 iAlgorithm; // one of the TAlgorithm values
sl@0
   137
			TUint8 iSizeOfOutputCharacterCodeInBytesIfForeign; // only used in SCnvConversionData::iUnicodeToForeignData
sl@0
   138
			TUint16 iSpare;
sl@0
   139
#if defined(CONST_STATIC_UNIONS_ARE_POSSIBLE)
sl@0
   140
			UData iData;
sl@0
   141
#else
sl@0
   142
			struct
sl@0
   143
				{
sl@0
   144
				TUint iWord1;
sl@0
   145
				TUint iWord2;
sl@0
   146
				} iData;
sl@0
   147
#endif
sl@0
   148
			};
sl@0
   149
		TInt iNumberOfRanges;
sl@0
   150
		const SRange* iRangeArray;
sl@0
   151
		};
sl@0
   152
	TEndianness iEndiannessOfForeignCharacters;
sl@0
   153
	SVariableByteData iForeignVariableByteData;
sl@0
   154
	SOneDirectionData iForeignToUnicodeData;
sl@0
   155
	SOneDirectionData iUnicodeToForeignData;
sl@0
   156
	TAny* iSpareForFutureUse_1;
sl@0
   157
	TAny* iSpareForFutureUse_2;
sl@0
   158
	};
sl@0
   159
sl@0
   160
/**
sl@0
   161
@internalComponent
sl@0
   162
*/
sl@0
   163
#define UData_SIndexedTable16(a) \
sl@0
   164
	reinterpret_cast<TUint>(const_cast<SCnvConversionData::SOneDirectionData::SRange::UData::SIndexedTable16::SEntry*>(a)) 
sl@0
   165
/**
sl@0
   166
@internalComponent
sl@0
   167
*/
sl@0
   168
#define UData_SKeyedTable1616(a) \
sl@0
   169
	static_cast<TUint>ARRAY_LENGTH(a), \
sl@0
   170
	reinterpret_cast<TUint>(const_cast<SCnvConversionData::SOneDirectionData::SRange::UData::SKeyedTable1616::SEntry*>(a))
sl@0
   171
/**
sl@0
   172
@internalComponent
sl@0
   173
*/
sl@0
   174
#define UData_SKeyedTable16OfIndexedTables16(a)	\
sl@0
   175
	static_cast<TUint>ARRAY_LENGTH(a), \
sl@0
   176
	reinterpret_cast<TUint>(const_cast<SCnvConversionData::SOneDirectionData::SRange::UData::SKeyedTable16OfIndexedTables16::SKeyedEntry *>(a)) 
sl@0
   177
/**
sl@0
   178
@internalComponent
sl@0
   179
*/
sl@0
   180
#define UData_SIndexedTable32(a) \
sl@0
   181
	reinterpret_cast<TUint>(const_cast<SCnvConversionData::SOneDirectionData::SRange::UData::SIndexedTable32::SEntry*>(a)) 
sl@0
   182
/**
sl@0
   183
@internalComponent
sl@0
   184
*/
sl@0
   185
#define UData_SKeyedTable3232(a) \
sl@0
   186
	static_cast<TUint>ARRAY_LENGTH(a), \
sl@0
   187
	reinterpret_cast<TUint>(const_cast<SCnvConversionData::SOneDirectionData::SRange::UData::SKeyedTable3232::SEntry*>(a))
sl@0
   188
/**
sl@0
   189
@internalComponent
sl@0
   190
*/
sl@0
   191
#define UData_SKeyedTable32OfIndexedTables32(a)	\
sl@0
   192
	static_cast<TUint>ARRAY_LENGTH(a), \
sl@0
   193
	reinterpret_cast<TUint>(const_cast<SCnvConversionData::SOneDirectionData::SRange::UData::SKeyedTable32OfIndexedTables32::SKeyedEntry *>(a)) 
sl@0
   194
#endif
sl@0
   195