sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2008-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 |
#include <e32std.h>
|
sl@0
|
20 |
#include <charconv.h>
|
sl@0
|
21 |
#include <convgeneratedcpp.h>
|
sl@0
|
22 |
#include <ecom/implementationproxy.h>
|
sl@0
|
23 |
#include "charactersetconverter.h"
|
sl@0
|
24 |
|
sl@0
|
25 |
class CSMS7BitExtendedPlugin : public CCharacterSetConverterPluginInterface
|
sl@0
|
26 |
{
|
sl@0
|
27 |
|
sl@0
|
28 |
public:
|
sl@0
|
29 |
virtual const TDesC8& ReplacementForUnconvertibleUnicodeCharacters();
|
sl@0
|
30 |
|
sl@0
|
31 |
virtual TInt ConvertFromUnicode(
|
sl@0
|
32 |
CCnvCharacterSetConverter::TEndianness aDefaultEndiannessOfForeignCharacters,
|
sl@0
|
33 |
const TDesC8& aReplacementForUnconvertibleUnicodeCharacters,
|
sl@0
|
34 |
TDes8& aForeign,
|
sl@0
|
35 |
const TDesC16& aUnicode,
|
sl@0
|
36 |
CCnvCharacterSetConverter::TArrayOfAscendingIndices& aIndicesOfUnconvertibleCharacters);
|
sl@0
|
37 |
|
sl@0
|
38 |
virtual TInt ConvertToUnicode(
|
sl@0
|
39 |
CCnvCharacterSetConverter::TEndianness aDefaultEndiannessOfForeignCharacters,
|
sl@0
|
40 |
TDes16& aUnicode,
|
sl@0
|
41 |
const TDesC8& aForeign,
|
sl@0
|
42 |
TInt& aState,
|
sl@0
|
43 |
TInt& aNumberOfUnconvertibleCharacters,
|
sl@0
|
44 |
TInt& aIndexOfFirstByteOfFirstUnconvertibleCharacter);
|
sl@0
|
45 |
|
sl@0
|
46 |
virtual TBool IsInThisCharacterSetL(
|
sl@0
|
47 |
TBool& aSetToTrue,
|
sl@0
|
48 |
TInt& aConfidenceLevel,
|
sl@0
|
49 |
const TDesC8& aSample);
|
sl@0
|
50 |
|
sl@0
|
51 |
static CSMS7BitExtendedPlugin* NewL();
|
sl@0
|
52 |
virtual ~CSMS7BitExtendedPlugin();
|
sl@0
|
53 |
|
sl@0
|
54 |
private:
|
sl@0
|
55 |
CSMS7BitExtendedPlugin();
|
sl@0
|
56 |
|
sl@0
|
57 |
};
|
sl@0
|
58 |
|
sl@0
|
59 |
|
sl@0
|
60 |
const TDesC8& CSMS7BitExtendedPlugin::ReplacementForUnconvertibleUnicodeCharacters()
|
sl@0
|
61 |
{
|
sl@0
|
62 |
return ReplacementForUnconvertibleUnicodeCharacters_internal();
|
sl@0
|
63 |
}
|
sl@0
|
64 |
|
sl@0
|
65 |
TInt CSMS7BitExtendedPlugin::ConvertFromUnicode(
|
sl@0
|
66 |
CCnvCharacterSetConverter::TEndianness aDefaultEndiannessOfForeignCharacters,
|
sl@0
|
67 |
const TDesC8& aReplacementForUnconvertibleUnicodeCharacters,
|
sl@0
|
68 |
TDes8& aForeign,
|
sl@0
|
69 |
const TDesC16& aUnicode,
|
sl@0
|
70 |
CCnvCharacterSetConverter::TArrayOfAscendingIndices& aIndicesOfUnconvertibleCharacters)
|
sl@0
|
71 |
{
|
sl@0
|
72 |
return CCnvCharacterSetConverter::DoConvertFromUnicode(conversionData, aDefaultEndiannessOfForeignCharacters, aReplacementForUnconvertibleUnicodeCharacters, aForeign, aUnicode, aIndicesOfUnconvertibleCharacters);
|
sl@0
|
73 |
}
|
sl@0
|
74 |
|
sl@0
|
75 |
TInt CSMS7BitExtendedPlugin::ConvertToUnicode(
|
sl@0
|
76 |
CCnvCharacterSetConverter::TEndianness aDefaultEndiannessOfForeignCharacters,
|
sl@0
|
77 |
TDes16& aUnicode,
|
sl@0
|
78 |
const TDesC8& aForeign,
|
sl@0
|
79 |
TInt& /*aState*/,
|
sl@0
|
80 |
TInt& aNumberOfUnconvertibleCharacters,
|
sl@0
|
81 |
TInt& aIndexOfFirstByteOfFirstUnconvertibleCharacter)
|
sl@0
|
82 |
{
|
sl@0
|
83 |
return CCnvCharacterSetConverter::DoConvertToUnicode(conversionData, aDefaultEndiannessOfForeignCharacters, aUnicode, aForeign, aNumberOfUnconvertibleCharacters, aIndexOfFirstByteOfFirstUnconvertibleCharacter);
|
sl@0
|
84 |
}
|
sl@0
|
85 |
|
sl@0
|
86 |
TBool CSMS7BitExtendedPlugin::IsInThisCharacterSetL(
|
sl@0
|
87 |
TBool& aSetToTrue,
|
sl@0
|
88 |
TInt& aConfidenceLevel,
|
sl@0
|
89 |
const TDesC8& /*aSample*/)
|
sl@0
|
90 |
{
|
sl@0
|
91 |
aSetToTrue=ETrue;
|
sl@0
|
92 |
aConfidenceLevel=0;
|
sl@0
|
93 |
return EFalse;
|
sl@0
|
94 |
}
|
sl@0
|
95 |
|
sl@0
|
96 |
CSMS7BitExtendedPlugin* CSMS7BitExtendedPlugin::NewL()
|
sl@0
|
97 |
{
|
sl@0
|
98 |
CSMS7BitExtendedPlugin* self = new(ELeave) CSMS7BitExtendedPlugin();
|
sl@0
|
99 |
return self;
|
sl@0
|
100 |
}
|
sl@0
|
101 |
|
sl@0
|
102 |
CSMS7BitExtendedPlugin::CSMS7BitExtendedPlugin()
|
sl@0
|
103 |
{
|
sl@0
|
104 |
}
|
sl@0
|
105 |
|
sl@0
|
106 |
CSMS7BitExtendedPlugin::~CSMS7BitExtendedPlugin()
|
sl@0
|
107 |
{
|
sl@0
|
108 |
}
|
sl@0
|
109 |
|
sl@0
|
110 |
const TImplementationProxy ImplementationTable[] =
|
sl@0
|
111 |
{
|
sl@0
|
112 |
IMPLEMENTATION_PROXY_ENTRY(KCharacterSetIdentifierExtendedSms7Bit, CSMS7BitExtendedPlugin::NewL)
|
sl@0
|
113 |
};
|
sl@0
|
114 |
|
sl@0
|
115 |
EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
|
sl@0
|
116 |
{
|
sl@0
|
117 |
aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
|
sl@0
|
118 |
|
sl@0
|
119 |
return ImplementationTable;
|
sl@0
|
120 |
}
|
sl@0
|
121 |
|
sl@0
|
122 |
|