os/textandloc/charconvfw/charconv_fw/inc/charactersetconverter.h
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
*
sl@0
    16
*/
sl@0
    17
sl@0
    18
sl@0
    19
#if !defined(__CHARACTERSETCONVERTER_H__)
sl@0
    20
#define __CHARACTERSETCONVERTER_H__
sl@0
    21
sl@0
    22
#include <e32base.h>
sl@0
    23
#include <ecom/ecom.h>
sl@0
    24
sl@0
    25
/**
sl@0
    26
This constant holds the UID of the CharConv Character Set Conversion 
sl@0
    27
ECOM Interface.
sl@0
    28
@publishedAll
sl@0
    29
@released
sl@0
    30
*/
sl@0
    31
const TUid KCharacterSetConvertorInterfaceUid = {0x101F7F1D};
sl@0
    32
sl@0
    33
/**
sl@0
    34
This is the base class defining the methods in the CharConv Character Set
sl@0
    35
Conversion plugin interface. CharConv plugin suppliers would define 
sl@0
    36
implementation classes inheriting from this interface class to add additional
sl@0
    37
character set support to CharConv.
sl@0
    38
@publishedAll
sl@0
    39
@released
sl@0
    40
*/
sl@0
    41
NONSHARABLE_CLASS(CCharacterSetConverterPluginInterface) : public CBase
sl@0
    42
	{
sl@0
    43
sl@0
    44
public:
sl@0
    45
sl@0
    46
/**
sl@0
    47
 *
sl@0
    48
 * A function prototype which must be implemented by a character
sl@0
    49
 * conversion plug-in DLL to return the character (represented by one or
sl@0
    50
 * more byte values) which is used by default as the replacement for
sl@0
    51
 * unconvertible Unicode characters.
sl@0
    52
 *
sl@0
    53
 * This character is used when converting from Unicode into a foreign
sl@0
    54
 * character set, if there is no equivalent for the Unicode character in
sl@0
    55
 * the foreign character set. The default replacement character can be
sl@0
    56
 * overriden by a call to <code>CCnvCharacterSetConverter::SetReplacemen-
sl@0
    57
 * tForUnconvertibleUnicodeCharactersL()</code>.This function is exported
sl@0
    58
 * at ordinal position 1 in the plug-in DLL. It is called by <code>CCnvC-
sl@0
    59
 * haracterSetConverter::PrepareToConvertToOrFromL()</code>.To implement
sl@0
    60
 * this function, you should #include convgeneratedcpp.h in the cpp file.
sl@0
    61
 * This gives access to the
sl@0
    62
 * <code>ReplacementForUnconvertibleUnicodeCharacters_internal()</code>
sl@0
    63
 * function. This function can then be implemented by calling
sl@0
    64
 * <code>ReplacementForUnconvertibleUnicodeCharacters_internal()</code>.
sl@0
    65
 *
sl@0
    66
 * @since     6.0
sl@0
    67
 * @return   " const TDesC8& "
sl@0
    68
 *            The single character which is to be used to replace
sl@0
    69
 *            unconvertible characters.
sl@0
    70
 */
sl@0
    71
	virtual const TDesC8& ReplacementForUnconvertibleUnicodeCharacters() = 0;
sl@0
    72
sl@0
    73
/**
sl@0
    74
 *
sl@0
    75
 * A function prototype which must be implemented by a character
sl@0
    76
 * conversion plug-in DLL to convert from Unicode into a foreign
sl@0
    77
 * character set.
sl@0
    78
 *
sl@0
    79
 * This function is exported at ordinal position 2 in the plug-in DLL. It
sl@0
    80
 * is called by
sl@0
    81
 * <code>CCnvCharacterSetConverter::ConvertFromUnicode()</code>.For many
sl@0
    82
 * non-complex character sets, the implementation of this function is
sl@0
    83
 * trivial. Include convgeneratedcpp.h in the .cpp file to get access to
sl@0
    84
 * the <code>SCnvConversionData</code> object called
sl@0
    85
 * <code>conversionData</code>. Then call
sl@0
    86
 * <code>CCnvCharacterSetConverter::DoConvertFromUnicode()</code>
sl@0
    87
 * specifying <code>conversionData</code> as the first argument and
sl@0
    88
 * passing in all parameters unchanged.For complex character sets, you
sl@0
    89
 * need to create an array of character conversion data objects
sl@0
    90
 * (<code>CnvUtilities::SCharacterSet</code>s), then call
sl@0
    91
 * <code>CnvUtilities::ConvertFromUnicode()</code>.
sl@0
    92
 *
sl@0
    93
 * @since     6.0
sl@0
    94
 * @param     " CCnvCharacterSetConverter::TEndianness
sl@0
    95
		  aDefaultEndiannessOfForeignCharacters "
sl@0
    96
 *            The default endian-ness to use when writing the
sl@0
    97
 *            characters in the foreign character set.
sl@0
    98
 * @param     " const TDesC8& aReplacementForUnconvertibleUnicodeCharacters
sl@0
    99
		  "
sl@0
   100
 *            The single character which is used to replace
sl@0
   101
 *            unconvertible characters.
sl@0
   102
 * @param     " TDes8& aForeign "
sl@0
   103
 *            On return, contains the converted text in the target
sl@0
   104
 *            non-Unicode character set.
sl@0
   105
 * @param     " const TDesC16& aUnicode "
sl@0
   106
 *            The source Unicode text to be converted.
sl@0
   107
 * @param     " CCnvCharacterSetConverter::TArrayOfAscendingIndices&
sl@0
   108
		  aIndicesOfUnconvertibleCharacters "
sl@0
   109
 *            A buffer which on return holds the indices of each
sl@0
   110
 *            Unicode character in the source text which could not
sl@0
   111
 *            be converted (because the target character set does
sl@0
   112
 *            not have an equivalent character).
sl@0
   113
 * @return   " TInt "
sl@0
   114
 *            The number of unconverted characters left at the end
sl@0
   115
 *            of the input descriptor (e.g. because
sl@0
   116
 *            <code>aForeign</code> was not long enough to hold all
sl@0
   117
 *            the text), or a negative error value, as defined in
sl@0
   118
 *            <code>TError</code>.
sl@0
   119
 */
sl@0
   120
	virtual TInt ConvertFromUnicode(
sl@0
   121
		CCnvCharacterSetConverter::TEndianness aDefaultEndiannessOfForeignCharacters, 
sl@0
   122
		const TDesC8& aReplacementForUnconvertibleUnicodeCharacters, 
sl@0
   123
		TDes8& aForeign, 
sl@0
   124
		const TDesC16& aUnicode, 
sl@0
   125
		CCnvCharacterSetConverter::TArrayOfAscendingIndices& aIndicesOfUnconvertibleCharacters) = 0;
sl@0
   126
sl@0
   127
/**
sl@0
   128
 *
sl@0
   129
 * A function prototype which must be implemented by a character
sl@0
   130
 * conversion plug-in DLL to convert from a foreign character set into
sl@0
   131
 * Unicode.
sl@0
   132
 *
sl@0
   133
 * This function is exported at ordinal position 3 in the plug-in DLL. It
sl@0
   134
 * is called by
sl@0
   135
 * <code>CCnvCharacterSetConverter::ConvertToUnicode()</code>.For many
sl@0
   136
 * non-complex character sets, the implementation of this function is
sl@0
   137
 * trivial. Include convgeneratedcpp.h in the .cpp file to get access to
sl@0
   138
 * the <code>SCnvConversionData</code> object called
sl@0
   139
 * <code>conversionData</code>. Then call
sl@0
   140
 * <code>CCnvCharacterSetConverter::DoConvertToUnicode()</code>
sl@0
   141
 * specifying <code>conversionData</code> as the first argument and
sl@0
   142
 * passing in all other parameters unchanged.For complex character sets,
sl@0
   143
 * you need to create an array of character conversion methods
sl@0
   144
 * (<code>CnvUtilities::SMethod</code>s or
sl@0
   145
 * <code>CnvUtilities::SState</code>s, depending on whether the complex
sl@0
   146
 * character set encoding is modal or not), then call
sl@0
   147
 * <code>CnvUtilities::ConvertToUnicodeFromHeterogeneousForeign()</code>
sl@0
   148
 * or <code>CnvUtilities::ConvertToUnicodeFromModalForeign()</code>.
sl@0
   149
 *
sl@0
   150
 * @since     6.0
sl@0
   151
 * @param     " CCnvCharacterSetConverter::TEndianness
sl@0
   152
		  aDefaultEndiannessOfForeignCharacters "
sl@0
   153
 *            The default endian-ness to use when reading characters
sl@0
   154
 *            in the foreign character set.
sl@0
   155
 * @param     " TDes16& aUnicode "
sl@0
   156
 *            On return, contains the text converted into Unicode.
sl@0
   157
 * @param     " const TDesC8& aForeign "
sl@0
   158
 *            The non-Unicode source text to be converted.
sl@0
   159
 * @param     " TInt& aState "
sl@0
   160
 *            Used to save state information across multiple calls
sl@0
   161
 *            to <code>ConvertToUnicode()</code>.
sl@0
   162
 * @param     " TInt& aNumberOfUnconvertibleCharacters "
sl@0
   163
 *            On return, contains the number of bytes which were not
sl@0
   164
 *            converted.
sl@0
   165
 * @param     " TInt& aIndexOfFirstByteOfFirstUnconvertibleCharacter "
sl@0
   166
 *            On return, contains the index of the first bytein the
sl@0
   167
 *            input text that could not be converted. A negative
sl@0
   168
 *            value indicates that all the characters were
sl@0
   169
 *            converted.
sl@0
   170
 * @return   " TInt "
sl@0
   171
 *            The number of unconverted bytes left at the end of the
sl@0
   172
 *            input descriptor (e.g. because the output descriptor
sl@0
   173
 *            is not long enough to hold all the text), or one of
sl@0
   174
 *            the error values defined in <code>TError</code>.
sl@0
   175
 */
sl@0
   176
	virtual TInt ConvertToUnicode(
sl@0
   177
		CCnvCharacterSetConverter::TEndianness aDefaultEndiannessOfForeignCharacters, 
sl@0
   178
		TDes16& aUnicode, 
sl@0
   179
		const TDesC8& aForeign, 
sl@0
   180
		TInt& aState, 
sl@0
   181
		TInt& aNumberOfUnconvertibleCharacters, 
sl@0
   182
		TInt& aIndexOfFirstByteOfFirstUnconvertibleCharacter) = 0;
sl@0
   183
sl@0
   184
/**
sl@0
   185
 *
sl@0
   186
 * A function which must be implemented by a character conversion plug-in
sl@0
   187
 * DLL to calculate how probable it is that a sample piece of text is
sl@0
   188
 * encoded in this character set.
sl@0
   189
 *
sl@0
   190
 * This function was added in 6.1 as the 4th-ordinal exported function in
sl@0
   191
 * the plug-in DLL interface. It is called by
sl@0
   192
 * <code>CCnvCharacterSetConverter::AutoDetectCharacterSetL()</code> for
sl@0
   193
 * each character conversion plug-in DLL.
sl@0
   194
 *
sl@0
   195
 * @since     6.1
sl@0
   196
 * @param     "  TBool& aSetToTrue"
sl@0
   197
 *            This value should be set to <code>ETrue</code>. It is
sl@0
   198
 *            used to indicate to <code>CCnvCharacterSetConverter::-
sl@0
   199
 *            AutoDetectCharacterSetL()</code> that the plug-in DLL
sl@0
   200
 *            is implementing a function of this signature and is
sl@0
   201
 *            therefore not the empty, reserved function that was
sl@0
   202
 *            previously exported at the 4th ordinal position in the
sl@0
   203
 *            plug-in DLL in v6.0.
sl@0
   204
 * @param     "TInt& aConfidenceLevel"
sl@0
   205
 *            On return, indicates how confident the function is
sl@0
   206
 *            about its return value. Set to a value between 0 and
sl@0
   207
 *            100. Zero indicates no confidence, (and the return
sl@0
   208
 *            value should be disregarded), 100 indicates total
sl@0
   209
 *            confidence.
sl@0
   210
 * @param     "const TDesC8& aSample"
sl@0
   211
 *            The sample text string, as passed to <code>CCnvCharac-
sl@0
   212
 *            terSetConverter::AutoDetectCharacterSetL()</code>.
sl@0
   213
 * @return   "TBool"
sl@0
   214
 *            <code>ETrue</code> if it is more probable that the
sl@0
   215
 *            sample text is encoded in this character set than not.
sl@0
   216
 *            <code>EFalse</code> if it is more probable that the
sl@0
   217
 *            sample text is not encoded in this character set. The
sl@0
   218
 *            confidence level applies to this value.
sl@0
   219
 */
sl@0
   220
	virtual TBool IsInThisCharacterSetL(
sl@0
   221
		TBool& aSetToTrue, 
sl@0
   222
		TInt& aConfidenceLevel, 
sl@0
   223
		const TDesC8& aSample) = 0;
sl@0
   224
sl@0
   225
	static CCharacterSetConverterPluginInterface* NewL(TUid aInterfaceImplUid)
sl@0
   226
		{
sl@0
   227
		return reinterpret_cast <CCharacterSetConverterPluginInterface*> (
sl@0
   228
			REComSession::CreateImplementationL(
sl@0
   229
			aInterfaceImplUid,
sl@0
   230
			_FOFF(CCharacterSetConverterPluginInterface, iDtor_ID_Key))); 
sl@0
   231
		};
sl@0
   232
	
sl@0
   233
/**
sl@0
   234
Destroys the Charconv Plug-in interface implementation specified by iDtor_ID_Key
sl@0
   235
*/
sl@0
   236
	virtual ~CCharacterSetConverterPluginInterface()
sl@0
   237
		{
sl@0
   238
		REComSession::DestroyedImplementation(iDtor_ID_Key);
sl@0
   239
		};
sl@0
   240
	
sl@0
   241
sl@0
   242
private:
sl@0
   243
sl@0
   244
	TUid iDtor_ID_Key;
sl@0
   245
sl@0
   246
	};
sl@0
   247
sl@0
   248
sl@0
   249
#endif //__CHARACTERSETCONVERTER_H__
sl@0
   250