sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 1250 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 |
|
sl@0
|
20 |
|
sl@0
|
21 |
|
sl@0
|
22 |
// INCLUDES
|
sl@0
|
23 |
#include <e32std.h>
|
sl@0
|
24 |
#include <charconv.h>
|
sl@0
|
25 |
#include <convgeneratedcpp.h>
|
sl@0
|
26 |
#include <ecom/implementationproxy.h>
|
sl@0
|
27 |
#include <charactersetconverter.h>
|
sl@0
|
28 |
// New Interface class
|
sl@0
|
29 |
class CWin1250Implementation : public CCharacterSetConverterPluginInterface
|
sl@0
|
30 |
{
|
sl@0
|
31 |
public:
|
sl@0
|
32 |
virtual const TDesC8& ReplacementForUnconvertibleUnicodeCharacters();
|
sl@0
|
33 |
|
sl@0
|
34 |
virtual TInt ConvertFromUnicode(
|
sl@0
|
35 |
CCnvCharacterSetConverter::TEndianness aDefaultEndiannessOfForeignCharacters,
|
sl@0
|
36 |
const TDesC8& aReplacementForUnconvertibleUnicodeCharacters,
|
sl@0
|
37 |
TDes8& aForeign,
|
sl@0
|
38 |
const TDesC16& aUnicode,
|
sl@0
|
39 |
CCnvCharacterSetConverter::TArrayOfAscendingIndices& aIndicesOfUnconvertibleCharacters );
|
sl@0
|
40 |
|
sl@0
|
41 |
virtual TInt ConvertToUnicode(
|
sl@0
|
42 |
CCnvCharacterSetConverter::TEndianness aDefaultEndiannessOfForeignCharacters,
|
sl@0
|
43 |
TDes16& aUnicode,
|
sl@0
|
44 |
const TDesC8& aForeign,
|
sl@0
|
45 |
TInt&,
|
sl@0
|
46 |
TInt& aNumberOfUnconvertibleCharacters,
|
sl@0
|
47 |
TInt& aIndexOfFirstByteOfFirstUnconvertibleCharacter );
|
sl@0
|
48 |
|
sl@0
|
49 |
virtual TBool IsInThisCharacterSetL(
|
sl@0
|
50 |
TBool& aSetToTrue,
|
sl@0
|
51 |
TInt& aConfidenceLevel,
|
sl@0
|
52 |
const TDesC8& );
|
sl@0
|
53 |
|
sl@0
|
54 |
static CWin1250Implementation* NewL();
|
sl@0
|
55 |
|
sl@0
|
56 |
virtual ~CWin1250Implementation();
|
sl@0
|
57 |
private:
|
sl@0
|
58 |
CWin1250Implementation();
|
sl@0
|
59 |
};
|
sl@0
|
60 |
|
sl@0
|
61 |
const TDesC8& CWin1250Implementation::ReplacementForUnconvertibleUnicodeCharacters()
|
sl@0
|
62 |
{
|
sl@0
|
63 |
return ReplacementForUnconvertibleUnicodeCharacters_internal();
|
sl@0
|
64 |
}
|
sl@0
|
65 |
|
sl@0
|
66 |
TInt CWin1250Implementation::ConvertFromUnicode(
|
sl@0
|
67 |
CCnvCharacterSetConverter::TEndianness aDefaultEndiannessOfForeignCharacters,
|
sl@0
|
68 |
const TDesC8& aReplacementForUnconvertibleUnicodeCharacters,
|
sl@0
|
69 |
TDes8& aForeign,
|
sl@0
|
70 |
const TDesC16& aUnicode,
|
sl@0
|
71 |
CCnvCharacterSetConverter::TArrayOfAscendingIndices& aIndicesOfUnconvertibleCharacters)
|
sl@0
|
72 |
{
|
sl@0
|
73 |
return CCnvCharacterSetConverter::DoConvertFromUnicode(
|
sl@0
|
74 |
conversionData,
|
sl@0
|
75 |
aDefaultEndiannessOfForeignCharacters,
|
sl@0
|
76 |
aReplacementForUnconvertibleUnicodeCharacters,
|
sl@0
|
77 |
aForeign,
|
sl@0
|
78 |
aUnicode,
|
sl@0
|
79 |
aIndicesOfUnconvertibleCharacters );
|
sl@0
|
80 |
}
|
sl@0
|
81 |
|
sl@0
|
82 |
TInt CWin1250Implementation::ConvertToUnicode(
|
sl@0
|
83 |
CCnvCharacterSetConverter::TEndianness aDefaultEndiannessOfForeignCharacters,
|
sl@0
|
84 |
TDes16& aUnicode,
|
sl@0
|
85 |
const TDesC8& aForeign,
|
sl@0
|
86 |
TInt&,
|
sl@0
|
87 |
TInt& aNumberOfUnconvertibleCharacters,
|
sl@0
|
88 |
TInt& aIndexOfFirstByteOfFirstUnconvertibleCharacter )
|
sl@0
|
89 |
{
|
sl@0
|
90 |
return CCnvCharacterSetConverter::DoConvertToUnicode(
|
sl@0
|
91 |
conversionData,
|
sl@0
|
92 |
aDefaultEndiannessOfForeignCharacters,
|
sl@0
|
93 |
aUnicode,
|
sl@0
|
94 |
aForeign,
|
sl@0
|
95 |
aNumberOfUnconvertibleCharacters,
|
sl@0
|
96 |
aIndexOfFirstByteOfFirstUnconvertibleCharacter );
|
sl@0
|
97 |
}
|
sl@0
|
98 |
|
sl@0
|
99 |
|
sl@0
|
100 |
TBool CWin1250Implementation::IsInThisCharacterSetL(
|
sl@0
|
101 |
TBool& aSetToTrue,
|
sl@0
|
102 |
TInt& aConfidenceLevel,
|
sl@0
|
103 |
const TDesC8&)
|
sl@0
|
104 |
{
|
sl@0
|
105 |
aSetToTrue=EFalse;
|
sl@0
|
106 |
aConfidenceLevel=0;
|
sl@0
|
107 |
return EFalse;
|
sl@0
|
108 |
}
|
sl@0
|
109 |
|
sl@0
|
110 |
CWin1250Implementation* CWin1250Implementation::NewL()
|
sl@0
|
111 |
{
|
sl@0
|
112 |
CWin1250Implementation* self = new(ELeave) CWin1250Implementation;
|
sl@0
|
113 |
return self;
|
sl@0
|
114 |
}
|
sl@0
|
115 |
|
sl@0
|
116 |
CWin1250Implementation::CWin1250Implementation()
|
sl@0
|
117 |
{
|
sl@0
|
118 |
//default constructor.. do nothing
|
sl@0
|
119 |
}
|
sl@0
|
120 |
|
sl@0
|
121 |
CWin1250Implementation::~CWin1250Implementation()
|
sl@0
|
122 |
{
|
sl@0
|
123 |
//default destructor .. do nothing
|
sl@0
|
124 |
}
|
sl@0
|
125 |
|
sl@0
|
126 |
// ECOM CREATION FUNCTION
|
sl@0
|
127 |
const TImplementationProxy ImplementationTable[] =
|
sl@0
|
128 |
{
|
sl@0
|
129 |
// Note: This is the same UID as defined in old mmp-file
|
sl@0
|
130 |
// Used also in 12221212.rss ( implementation_uid )
|
sl@0
|
131 |
IMPLEMENTATION_PROXY_ENTRY( 0x100059d6, CWin1250Implementation::NewL )
|
sl@0
|
132 |
};
|
sl@0
|
133 |
|
sl@0
|
134 |
EXPORT_C const TImplementationProxy* ImplementationGroupProxy( TInt& aTableCount )
|
sl@0
|
135 |
{
|
sl@0
|
136 |
aTableCount = sizeof( ImplementationTable ) / sizeof(TImplementationProxy);
|
sl@0
|
137 |
return ImplementationTable;
|
sl@0
|
138 |
}
|
sl@0
|
139 |
|