Update contrib.
2 * Copyright (c) 1997-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.
19 #if !defined(__CONVDATA_H__)
20 #define __CONVDATA_H__
23 This structure doesn't intend to be used by external developers.
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.
26 Any use of this structure externally are not proved to be compatible in future.
29 struct SCnvConversionData
31 /** Specifies the default endian-ness of the current character set. Used by SetDefaultEndiannessOfForeignCharacters(). */
32 enum TEndianness // the values of these *must not* change they are used hard-coded in CNVTOOL.PL
35 EFixedLittleEndian =1,
38 struct SVariableByteData
42 TUint8 iFirstInitialByteValueInRange;
43 TUint8 iLastInitialByteValueInRange;
44 TUint8 iNumberOfSubsequentBytes;
48 const SRange* iRangeArray;
50 struct SOneDirectionData
56 // each of these, with the exception of EDirect, has a corresponding member of UData
61 EKeyedTable16OfIndexedTables16,
64 EKeyedTable32OfIndexedTables32
68 struct SIndexedTable16
72 TUint16 iOutputCharacterCode;
74 const SEntry* iEntryArray;
76 struct SKeyedTable1616
81 TUint16 iOutputCharacterCode;
83 TInt iNumberOfEntries;
84 const SEntry* iEntryArray;
86 struct SKeyedTable16OfIndexedTables16
90 TUint16 iFirstInputCharacterCodeInIndexedTable;
91 TUint16 iLastInputCharacterCodeInIndexedTable;
92 const TUint16* iIndexedEntryArray;
94 TInt iNumberOfKeyedEntries;
95 const SKeyedEntry* iKeyedEntryArray;
97 struct SIndexedTable32
101 TUint32 iOutputCharacterCode;
103 const SEntry* iEntryArray;
105 struct SKeyedTable3232
110 TUint32 iOutputCharacterCode;
112 TInt iNumberOfEntries;
113 const SEntry* iEntryArray;
115 struct SKeyedTable32OfIndexedTables32
119 TUint32 iFirstInputCharacterCodeInIndexedTable;
120 TUint32 iLastInputCharacterCodeInIndexedTable;
121 const TUint32* iIndexedEntryArray;
123 TInt iNumberOfKeyedEntries;
124 const SKeyedEntry* iKeyedEntryArray;
127 SIndexedTable16 iIndexedTable16;
128 SKeyedTable1616 iKeyedTable1616;
129 SKeyedTable16OfIndexedTables16 iKeyedTable16OfIndexedTables16;
130 SIndexedTable32 iIndexedTable32;
131 SKeyedTable3232 iKeyedTable3232;
132 SKeyedTable32OfIndexedTables32 iKeyedTable32OfIndexedTables32;
134 TUint iFirstInputCharacterCodeInRange;
135 TUint iLastInputCharacterCodeInRange;
136 TUint8 iAlgorithm; // one of the TAlgorithm values
137 TUint8 iSizeOfOutputCharacterCodeInBytesIfForeign; // only used in SCnvConversionData::iUnicodeToForeignData
139 #if defined(CONST_STATIC_UNIONS_ARE_POSSIBLE)
149 TInt iNumberOfRanges;
150 const SRange* iRangeArray;
152 TEndianness iEndiannessOfForeignCharacters;
153 SVariableByteData iForeignVariableByteData;
154 SOneDirectionData iForeignToUnicodeData;
155 SOneDirectionData iUnicodeToForeignData;
156 TAny* iSpareForFutureUse_1;
157 TAny* iSpareForFutureUse_2;
163 #define UData_SIndexedTable16(a) \
164 reinterpret_cast<TUint>(const_cast<SCnvConversionData::SOneDirectionData::SRange::UData::SIndexedTable16::SEntry*>(a))
168 #define UData_SKeyedTable1616(a) \
169 static_cast<TUint>ARRAY_LENGTH(a), \
170 reinterpret_cast<TUint>(const_cast<SCnvConversionData::SOneDirectionData::SRange::UData::SKeyedTable1616::SEntry*>(a))
174 #define UData_SKeyedTable16OfIndexedTables16(a) \
175 static_cast<TUint>ARRAY_LENGTH(a), \
176 reinterpret_cast<TUint>(const_cast<SCnvConversionData::SOneDirectionData::SRange::UData::SKeyedTable16OfIndexedTables16::SKeyedEntry *>(a))
180 #define UData_SIndexedTable32(a) \
181 reinterpret_cast<TUint>(const_cast<SCnvConversionData::SOneDirectionData::SRange::UData::SIndexedTable32::SEntry*>(a))
185 #define UData_SKeyedTable3232(a) \
186 static_cast<TUint>ARRAY_LENGTH(a), \
187 reinterpret_cast<TUint>(const_cast<SCnvConversionData::SOneDirectionData::SRange::UData::SKeyedTable3232::SEntry*>(a))
191 #define UData_SKeyedTable32OfIndexedTables32(a) \
192 static_cast<TUint>ARRAY_LENGTH(a), \
193 reinterpret_cast<TUint>(const_cast<SCnvConversionData::SOneDirectionData::SRange::UData::SKeyedTable32OfIndexedTables32::SKeyedEntry *>(a))