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