Update contrib.
2 * Copyright (c) 2022 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.
14 * Description: This module is a plug-in module for Shift-JIS with Pictograph.
15 * Basicaly, Vodafone Pictograph is encoded by ISO2022,
16 * but Japanese FEP needs a pictograph as one character code
17 * in Shift-JIS character code set.
27 #include "CnvShiftJisDirectmap.h"
32 #include <convutils.h>
35 #include <convgeneratedcpp.h>
36 #include <ecom/implementationproxy.h>
37 #include "charactersetconverter.h"
40 const TUint KSingleByteRangeFirstBlockEnd = 0x7f;
41 const TUint KSingleByteRangeSecondBlockStart = 0xa1;
42 const TUint KSingleByteRangeSecondBlockEnd = 0xdf;
43 const TUint KFirstByteRangeFirstBlockStart = 0x81;
44 const TUint KFirstByteRangeFirstBlockEnd = 0x9f;
45 const TUint KFirstByteRangeFirstBlockLength = (KFirstByteRangeFirstBlockEnd+1)-KFirstByteRangeFirstBlockStart;
46 const TUint KFirstByteRangeSecondBlockStart = 0xe0;
47 const TUint KFirstByteRangeSecondBlockEnd = 0xfc;
48 const TUint KSecondByteRangeFirstBlockStart = 0x40;
49 const TUint KSecondByteRangeFirstBlockEnd = 0x7e;
50 const TUint KSecondByteRangeFirstBlockLength = (KSecondByteRangeFirstBlockEnd+1)-KSecondByteRangeFirstBlockStart;
51 const TUint KSecondByteRangeSecondBlockStart = 0x80;
52 const TUint KSecondByteRangeSecondBlockEnd = 0xfc;
54 const TUint KPictoFirstByteStart = 0xF0;
55 const TUint KPictoFirstByteEnd = 0xF9;
56 const TUint KPictoSecondByteStart = 0x40;
57 //const TUint KPictoSecondByteEnd = 0xFB;
58 const TUint KPictoSecondByteEnd = 0xFC;
60 // SecureID for Brower app
61 const TUint32 KBrowserSecureId = 0x10008D39;
62 // Define for converting from YenSign to BackSlash
63 const TUint KCharacterCodeForYenSign = 0x00A5;
64 const TUint KCharacterCodeForBackSlash = 0x005C;
68 _LIT(KLitPanicText, "SHIFTJIS_FORFEP");
72 EPanicIndexOverflow1=1,
74 EPanicNothingToConvert1,
75 EPanicNothingToConvert2,
76 EPanicOddNumberOfBytes1,
77 EPanicOddNumberOfBytes2,
89 // ============================= LOCAL FUNCTIONS ===============================
90 // -----------------------------------------------------------------------------
91 // Panic ?description.
93 // -----------------------------------------------------------------------------
95 LOCAL_C void Panic(TPanic aPanic)
97 User::Panic(KLitPanicText, aPanic);
101 // -----------------------------------------------------------------------------
102 // DummyConvertFromIntermediateBufferInPlace ?description.
104 // Returns: ?value_1: ?description
105 // ?value_n: ?description_line1
106 // ?description_line2
107 // -----------------------------------------------------------------------------
109 void DummyConvertFromIntermediateBufferInPlace(TInt, TDes8&, TInt& aNumberOfCharactersThatDroppedOut)
111 aNumberOfCharactersThatDroppedOut = 0;
114 // -----------------------------------------------------------------------------
115 // ConvertFromJisX0208ToShiftJisInPlace ?description.
117 // Returns: ?value_1: ?description
118 // ?value_n: ?description_line1
119 // ?description_line2
120 // -----------------------------------------------------------------------------
122 void ConvertFromJisX0208ToShiftJisInPlace(TInt aStartPositionInDescriptor, TDes8& aDescriptor, TInt& aNumberOfCharactersThatDroppedOut)
124 aNumberOfCharactersThatDroppedOut=0;
125 const TInt descriptorLength=aDescriptor.Length();
126 __ASSERT_DEBUG(descriptorLength>aStartPositionInDescriptor, Panic(EPanicNothingToConvert1));
127 __ASSERT_DEBUG((descriptorLength-aStartPositionInDescriptor)%2==0, Panic(EPanicOddNumberOfBytes1));
128 TUint8* pointerToCurrentByte=CONST_CAST(TUint8*, aDescriptor.Ptr());
129 const TUint8* const pointerToLastByte=pointerToCurrentByte+(descriptorLength-1);
130 pointerToCurrentByte+=aStartPositionInDescriptor;
133 TUint firstByte=*pointerToCurrentByte-0x21;
134 TUint secondByte=*(pointerToCurrentByte+1)-0x21;
140 if (firstByte<KFirstByteRangeFirstBlockLength)
142 firstByte+=KFirstByteRangeFirstBlockStart;
146 firstByte+=KFirstByteRangeSecondBlockStart-KFirstByteRangeFirstBlockLength;
148 if (secondByte<KSecondByteRangeFirstBlockLength)
150 secondByte+=KSecondByteRangeFirstBlockStart;
154 secondByte+=KSecondByteRangeSecondBlockStart-KSecondByteRangeFirstBlockLength;
156 *pointerToCurrentByte=STATIC_CAST(TUint8, firstByte);
157 ++pointerToCurrentByte;
158 *pointerToCurrentByte=STATIC_CAST(TUint8, secondByte);
159 __ASSERT_DEBUG(pointerToCurrentByte<=pointerToLastByte, Panic(EPanicBadPointers1));
160 if (pointerToCurrentByte>=pointerToLastByte)
164 ++pointerToCurrentByte;
168 // -----------------------------------------------------------------------------
169 // NumberOfBytesAbleToConvertToJisX0201 ?description.
171 // Returns: ?value_1: ?description
172 // ?value_n: ?description_line1
173 // ?description_line2
174 // -----------------------------------------------------------------------------
176 TInt NumberOfBytesAbleToConvertToJisX0201(const TDesC8& aDescriptor)
178 const TUint8* pointerToPreviousByte=aDescriptor.Ptr()-1;
179 const TUint8* const pointerToLastByte=pointerToPreviousByte+aDescriptor.Length();
180 if (pointerToPreviousByte==pointerToLastByte)
186 __ASSERT_DEBUG(pointerToPreviousByte<pointerToLastByte, Panic(EPanicBadPointers2));
187 const TUint currentByte = *(pointerToPreviousByte+1);
188 if (((currentByte > KSingleByteRangeFirstBlockEnd)
189 && (currentByte < KSingleByteRangeSecondBlockStart)) ||
190 (currentByte > KSingleByteRangeSecondBlockEnd))
194 __ASSERT_DEBUG(pointerToPreviousByte<pointerToLastByte, Panic(EPanicBadPointers3));
195 ++pointerToPreviousByte;
196 __ASSERT_DEBUG(pointerToPreviousByte<=pointerToLastByte, Panic(EPanicBadPointers4));
197 if (pointerToPreviousByte>=pointerToLastByte)
202 return (pointerToPreviousByte+1)-aDescriptor.Ptr();
205 // -----------------------------------------------------------------------------
206 // NumberOfBytesAbleToConvertToJisX0208 ?description.
208 // Returns: ?value_1: ?description
209 // ?value_n: ?description_line1
210 // ?description_line2
211 // -----------------------------------------------------------------------------
213 TInt NumberOfBytesAbleToConvertToJisX0208(const TDesC8& aDescriptor)
215 const TUint8* pointerToPreviousByte=aDescriptor.Ptr()-1;
216 const TUint8* const pointerToLastByte=pointerToPreviousByte+aDescriptor.Length();
217 if (pointerToPreviousByte==pointerToLastByte)
223 __ASSERT_DEBUG(pointerToPreviousByte<pointerToLastByte, Panic(EPanicBadPointers5));
224 TUint currentByte=*(pointerToPreviousByte+1);
225 if ((currentByte<KFirstByteRangeFirstBlockStart) ||
226 ((currentByte>KFirstByteRangeFirstBlockEnd) && (currentByte<KFirstByteRangeSecondBlockStart)) ||
227 (currentByte>KFirstByteRangeSecondBlockEnd) ||
228 ((currentByte >= KPictoFirstByteStart) && (currentByte <= KPictoFirstByteEnd))
234 __ASSERT_DEBUG(pointerToPreviousByte<pointerToLastByte, Panic(EPanicBadPointers6));
235 if (pointerToPreviousByte+1>=pointerToLastByte)
239 __ASSERT_DEBUG(pointerToPreviousByte+2<=pointerToLastByte, Panic(EPanicBadPointers7));
240 currentByte=*(pointerToPreviousByte+2);
241 if ((currentByte<KSecondByteRangeFirstBlockStart) ||
242 ((currentByte>KSecondByteRangeFirstBlockEnd) && (currentByte<KSecondByteRangeSecondBlockStart)) ||
243 (currentByte>KSecondByteRangeSecondBlockEnd))
247 pointerToPreviousByte+=2;
248 __ASSERT_DEBUG(pointerToPreviousByte<=pointerToLastByte, Panic(EPanicBadPointers8));
249 if (pointerToPreviousByte>=pointerToLastByte)
254 return (pointerToPreviousByte+1)-aDescriptor.Ptr();
257 // -----------------------------------------------------------------------------
258 // NumberOfBytesAbleToConvertToPictograph ?description.
260 // Returns: ?value_1: ?description
261 // ?value_n: ?description_line1
262 // ?description_line2
263 // -----------------------------------------------------------------------------
265 TInt NumberOfBytesAbleToConvertToPictograph(const TDesC8& aDescriptor)
267 const TUint8* pointerToPreviousByte = aDescriptor.Ptr() - 1;
268 const TUint8* const pointerToLastByte = pointerToPreviousByte + aDescriptor.Length();
270 for (; pointerToPreviousByte < pointerToLastByte;)
272 __ASSERT_DEBUG(pointerToPreviousByte < pointerToLastByte, Panic(EPanicBadPointers5));
273 TUint currentByte = *(pointerToPreviousByte + 1);
274 if ((currentByte < KPictoFirstByteStart) || (currentByte > KPictoFirstByteEnd))
278 __ASSERT_DEBUG(pointerToPreviousByte < pointerToLastByte, Panic(EPanicBadPointers6));
279 if (pointerToPreviousByte + 1 >= pointerToLastByte)
283 __ASSERT_DEBUG(pointerToPreviousByte + 2 <= pointerToLastByte, Panic(EPanicBadPointers7));
284 currentByte = *(pointerToPreviousByte + 2);
285 if ((currentByte < KPictoSecondByteStart) || (currentByte> KPictoSecondByteEnd))
289 pointerToPreviousByte += 2;
290 __ASSERT_DEBUG(pointerToPreviousByte <= pointerToLastByte, Panic(EPanicBadPointers8));
291 if (pointerToPreviousByte >= pointerToLastByte)
296 return (pointerToPreviousByte + 1)-aDescriptor.Ptr();
299 // -----------------------------------------------------------------------------
300 // DummyConvertToIntermediateBufferInPlace ?description.
302 // Returns: ?value_1: ?description
303 // ?value_n: ?description_line1
304 // ?description_line2
305 // -----------------------------------------------------------------------------
307 void DummyConvertToIntermediateBufferInPlace(TDes8&)
311 // -----------------------------------------------------------------------------
312 // ConvertToJisX0208FromShiftJisInPlace ?description.
314 // Returns: ?value_1: ?description
315 // ?value_n: ?description_line1
316 // ?description_line2
317 // -----------------------------------------------------------------------------
319 void ConvertToJisX0208FromShiftJisInPlace(TDes8& aDescriptor)
321 const TInt descriptorLength=aDescriptor.Length();
322 __ASSERT_DEBUG(descriptorLength>0, Panic(EPanicNothingToConvert2));
323 __ASSERT_DEBUG(descriptorLength%2==0, Panic(EPanicOddNumberOfBytes2));
324 TUint8* pointerToCurrentByte=CONST_CAST(TUint8*, aDescriptor.Ptr());
325 const TUint8* const pointerToLastByte=pointerToCurrentByte+(descriptorLength-1);
328 TUint firstByte=*pointerToCurrentByte;
329 TUint secondByte=*(pointerToCurrentByte+1);
330 if (firstByte<KFirstByteRangeSecondBlockStart)
332 firstByte-=KFirstByteRangeFirstBlockStart;
336 firstByte-=KFirstByteRangeSecondBlockStart-KFirstByteRangeFirstBlockLength;
338 if (secondByte<KSecondByteRangeSecondBlockStart)
340 secondByte-=KSecondByteRangeFirstBlockStart;
344 secondByte-=KSecondByteRangeSecondBlockStart-KSecondByteRangeFirstBlockLength;
354 *pointerToCurrentByte=STATIC_CAST(TUint8, firstByte);
355 ++pointerToCurrentByte;
356 *pointerToCurrentByte=STATIC_CAST(TUint8, secondByte);
357 __ASSERT_DEBUG(pointerToCurrentByte<=pointerToLastByte, Panic(EPanicBadPointers9));
358 if (pointerToCurrentByte>=pointerToLastByte)
362 ++pointerToCurrentByte;
366 // New Interface class
367 class ShiftJisDirectmapImplementation : public CCharacterSetConverterPluginInterface
370 virtual const TDesC8& ReplacementForUnconvertibleUnicodeCharacters();
372 virtual TInt ConvertFromUnicode(
373 CCnvCharacterSetConverter::TEndianness aDefaultEndiannessOfForeignCharacters,
374 const TDesC8& aReplacementForUnconvertibleUnicodeCharacters,
376 const TDesC16& aUnicode,
377 CCnvCharacterSetConverter::TArrayOfAscendingIndices& aIndicesOfUnconvertibleCharacters );
379 virtual TInt ConvertToUnicode(
380 CCnvCharacterSetConverter::TEndianness aDefaultEndiannessOfForeignCharacters,
382 const TDesC8& aForeign,
384 TInt& aNumberOfUnconvertibleCharacters,
385 TInt& aIndexOfFirstByteOfFirstUnconvertibleCharacter );
387 virtual TBool IsInThisCharacterSetL(
389 TInt& aConfidenceLevel,
392 static ShiftJisDirectmapImplementation* NewL();
394 virtual ~ShiftJisDirectmapImplementation();
396 ShiftJisDirectmapImplementation();
399 // -----------------------------------------------------------------------------
400 // ReplacementForUnconvertibleUnicodeCharacters returns the character which
401 // which is used by default as the replacement for unconvertible Unicode
403 // Returns: a character
404 // -----------------------------------------------------------------------------
406 _LIT8(KLit8ShiftJisReplacementForUnconvertibleUnicodeCharacters, "\x81\x48");
407 const TDesC8& ShiftJisDirectmapImplementation::ReplacementForUnconvertibleUnicodeCharacters()
409 return KLit8ShiftJisReplacementForUnconvertibleUnicodeCharacters;//CnvShiftJis::ReplacementForUnconvertibleUnicodeCharacters();
412 // -----------------------------------------------------------------------------
413 // ConvertFromUnicode converts from an Unicode string to a Shift-Jis string
415 // Returns: The number of unconverted characters left at the end of the input
417 // -----------------------------------------------------------------------------
419 TInt ShiftJisDirectmapImplementation::ConvertFromUnicode(
420 CCnvCharacterSetConverter::TEndianness aDefaultEndiannessOfForeignCharacters,
421 const TDesC8& aReplacementForUnconvertibleUnicodeCharacters,
422 TDes8& aForeign, const TDesC16& aUnicode,
423 CCnvCharacterSetConverter::TArrayOfAscendingIndices& aIndicesOfUnconvertibleCharacters)
425 TFixedArray<CnvUtilities::SCharacterSet, 3> arrayOfCoreCharacterSets;
426 arrayOfCoreCharacterSets[0].iConversionData = &CnvJisX0201::ConversionData();
427 arrayOfCoreCharacterSets[0].iConvertFromIntermediateBufferInPlace =
428 DummyConvertFromIntermediateBufferInPlace;
429 arrayOfCoreCharacterSets[0].iEscapeSequence = &KNullDesC8;
430 arrayOfCoreCharacterSets[1].iConversionData = &CnvJisX0208::ConversionData();
431 arrayOfCoreCharacterSets[1].iConvertFromIntermediateBufferInPlace =
432 ConvertFromJisX0208ToShiftJisInPlace;
433 arrayOfCoreCharacterSets[1].iEscapeSequence = &KNullDesC8;
434 arrayOfCoreCharacterSets[2].iConversionData = &CnvShiftJisDirectmap::ConversionData();
435 arrayOfCoreCharacterSets[2].iConvertFromIntermediateBufferInPlace =
436 DummyConvertFromIntermediateBufferInPlace;
437 arrayOfCoreCharacterSets[2].iEscapeSequence = &KNullDesC8;
439 return CnvUtilities::ConvertFromUnicode(aDefaultEndiannessOfForeignCharacters,
440 aReplacementForUnconvertibleUnicodeCharacters, aForeign, aUnicode,
441 aIndicesOfUnconvertibleCharacters, arrayOfCoreCharacterSets.Array());
444 // -----------------------------------------------------------------------------
445 // ConvertToUnicode converts from a Shift-Jis string with Pictograph to
446 // an Unicode string .
447 // Returns: The number of unconverted bytes left at the end of the input
449 // -----------------------------------------------------------------------------
451 TInt ShiftJisDirectmapImplementation::ConvertToUnicode(
452 CCnvCharacterSetConverter::TEndianness aDefaultEndiannessOfForeignCharacters,
453 TDes16& aUnicode, const TDesC8& aForeign, TInt&,
454 TInt& aNumberOfUnconvertibleCharacters,
455 TInt& aIndexOfFirstByteOfFirstUnconvertibleCharacter)
457 TFixedArray<CnvUtilities::SMethod, 3> arrayOfCoreMethods;
458 arrayOfCoreMethods[0].iNumberOfBytesAbleToConvert =
459 NumberOfBytesAbleToConvertToJisX0201;
460 arrayOfCoreMethods[0].iConvertToIntermediateBufferInPlace =
461 DummyConvertToIntermediateBufferInPlace;
462 arrayOfCoreMethods[0].iConversionData = &CnvJisX0201::ConversionData();
463 arrayOfCoreMethods[0].iNumberOfBytesPerCharacter = 1;
464 arrayOfCoreMethods[0].iNumberOfCoreBytesPerCharacter = 1;
465 arrayOfCoreMethods[1].iNumberOfBytesAbleToConvert =
466 NumberOfBytesAbleToConvertToPictograph;
467 arrayOfCoreMethods[1].iConvertToIntermediateBufferInPlace =
468 DummyConvertToIntermediateBufferInPlace;
469 arrayOfCoreMethods[1].iConversionData = &CnvShiftJisDirectmap::ConversionData();
470 arrayOfCoreMethods[1].iNumberOfBytesPerCharacter = 2;
471 arrayOfCoreMethods[1].iNumberOfCoreBytesPerCharacter = 2;
472 arrayOfCoreMethods[2].iNumberOfBytesAbleToConvert =
473 NumberOfBytesAbleToConvertToJisX0208;
474 arrayOfCoreMethods[2].iConvertToIntermediateBufferInPlace =
475 ConvertToJisX0208FromShiftJisInPlace;
476 arrayOfCoreMethods[2].iConversionData = &CnvJisX0208::ConversionData();
477 arrayOfCoreMethods[2].iNumberOfBytesPerCharacter = 2;
478 arrayOfCoreMethods[2].iNumberOfCoreBytesPerCharacter = 2;
480 TInt unconvert = CnvUtilities::ConvertToUnicodeFromHeterogeneousForeign(
481 aDefaultEndiannessOfForeignCharacters, aUnicode, aForeign,
482 aNumberOfUnconvertibleCharacters,
483 aIndexOfFirstByteOfFirstUnconvertibleCharacter,
484 arrayOfCoreMethods.Array());
486 // The following is specific impelementation for brower.
487 // If brower app calls this API, the yen sign code(0xA5)
488 // must be converted to backslash code(0x5C).
489 // Becasue Javascript supports backslash code ony.
490 TBool browserProcess = (RProcess().SecureId().iId == KBrowserSecureId);
491 if (browserProcess && aUnicode.Length() > 0)
493 const TUint16* pB = aUnicode.Ptr();
494 const TUint16* pbase = pB;
495 const TUint16* pE = pB + aUnicode.Length() -1;
498 if (*pbase == KCharacterCodeForYenSign)
500 aUnicode[pbase - pB] = KCharacterCodeForBackSlash;
509 // -----------------------------------------------------------------------------
510 // IsInThisCharacterSetL tests whether the aSample is Shift-JIS or not.
511 // But, This .cpl is only used for FEP.
512 // So, it's not need to correspond auto code detection.
513 // Returns: EFalse: ?description
514 // -----------------------------------------------------------------------------
516 TBool ShiftJisDirectmapImplementation::IsInThisCharacterSetL(TBool& /*aSetToTrue*/, TInt& /*aConfidenceLevel*/,
517 const TDesC8& /*aSample*/)
522 ShiftJisDirectmapImplementation* ShiftJisDirectmapImplementation::NewL()
524 ShiftJisDirectmapImplementation* self = new(ELeave) ShiftJisDirectmapImplementation;
528 ShiftJisDirectmapImplementation::ShiftJisDirectmapImplementation()
530 //default constructor.. do nothing
533 ShiftJisDirectmapImplementation::~ShiftJisDirectmapImplementation()
535 //default destructor .. do nothing
538 // ECOM CREATION FUNCTION
539 const TImplementationProxy ImplementationTable[] =
541 // Note: This is the same UID as defined in old mmp-file
542 // Used also in 12221212.rss ( implementation_uid )
543 IMPLEMENTATION_PROXY_ENTRY( 0x101F8691, ShiftJisDirectmapImplementation::NewL )
546 EXPORT_C const TImplementationProxy* ImplementationGroupProxy( TInt& aTableCount )
548 aTableCount = sizeof( ImplementationTable ) / sizeof(TImplementationProxy);
549 return ImplementationTable;