os/textandloc/charconvfw/charconvplugins/src/shared/CnvPictographShared.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2002 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     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".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description:         This class is a utitlity class for conversion of Vodafone
    15 *                pictograph.
    16 *
    17 */
    18 
    19 
    20 
    21 
    22 
    23 
    24 
    25 
    26 // PICTOGRAPH_SHARED.CPP
    27 //
    28 //
    29 
    30 #include "CnvPictographShared.h"
    31 // #include "CnvPictograph1.h"
    32 #include "CnvShiftJisDirectmap.h"
    33 #include <convgeneratedcpp.h>
    34 
    35 
    36 // CONSTANTS
    37 // Escape sequence for Vodafone pictograph
    38 _LIT8(KLit8EscapeSequenceForPictograph, "\x1b\x24");
    39 // _LIT8(KLit8EscapeSequenceForPictograph1, "\x1b\x24\x47");
    40 
    41 const TInt KEscape = 0x1B;
    42 const TInt KShiftIn = 0x0F;
    43 
    44 // Intermidiate buffers for pictograph
    45 const TInt KIntermediateBuffer1 = 'G';
    46 
    47 const TUint KSingleByteRangeFirstBlockStart = 0xF0;
    48 const TUint KSingleByteRangeFirstBlockEnd = 0xF9;
    49 const TUint KSingleByteRangeSecondBlockStart = 0x40;
    50 const TUint KSingleByteRangeSecondBlockEnd = 0xFC;
    51 
    52 const TUint KFirstByteRangeFirstBlockStart = 0xF5;
    53 const TUint KFirstByteRangeFirstBlockEnd = 0xFE;
    54 const TUint KSecondByteRangeSecondBlockStart = 0xA1;
    55 const TUint KSecondByteRangeSecondBlockEnd = 0xFE;
    56 
    57 const TUint KEUCJPSecondBlockStart = 0xF5;
    58 const TUint KEUCJPBlockSize = 0x5D;
    59 const TUint KSingleShift3=0x8f;
    60 // used for EucJp
    61 const TUint KPictographStartFirstByte = 0xF0;
    62 const TUint KPictographStartSecondByte = 0x40;
    63 const TUint KShiftJisTrailByteIllegal = 0x7F;
    64 
    65 // ============================ LOCAL FUNCTIONS ===============================
    66 
    67 
    68 // -----------------------------------------------------------------------------
    69 // DummyConvertToIntermediateBufferInPlace ?description.
    70 //
    71 // -----------------------------------------------------------------------------
    72 //
    73 LOCAL_C void DummyConvertToIntermediateBufferInPlace(TDes8&)
    74     {
    75     }
    76 
    77 // -----------------------------------------------------------------------------
    78 // DummyConvertFromIntermediateBufferInPlace
    79 //
    80 // -----------------------------------------------------------------------------
    81 //
    82 LOCAL_C void DummyConvertFromIntermediateBufferInPlace(TInt, TDes8&,
    83                                 TInt& aNumberOfCharactersThatDroppedOut)
    84     {
    85     aNumberOfCharactersThatDroppedOut=0;
    86     }
    87 
    88 // -----------------------------------------------------------------------------
    89 // ConvertFromPictogaphToEucJpDirectmapInPlace
    90 // Converts from EucJp packed Pictograph to Unicode
    91 // -----------------------------------------------------------------------------
    92 //
    93 LOCAL_C void ConvertFromPictogaphToEucJpDirectmapInPlace(
    94         TInt aStartPositionInDescriptor, TDes8& aDescriptor,
    95         TInt& aNumberOfCharactersThatDroppedOut)
    96     {
    97     TInt descriptorLength=aDescriptor.Length();
    98     TInt bytesPerCharacter = 2;
    99     if (aDescriptor[0] >= KEUCJPSecondBlockStart)
   100         {
   101         bytesPerCharacter = 3;
   102         }
   103 
   104     aNumberOfCharactersThatDroppedOut =
   105         Max(0, ((descriptorLength - aStartPositionInDescriptor) / 2) -
   106         ((aDescriptor.MaxLength() - aStartPositionInDescriptor) /
   107         bytesPerCharacter));
   108     descriptorLength -= aNumberOfCharactersThatDroppedOut * 2;
   109     if (descriptorLength <= aStartPositionInDescriptor)
   110         {
   111         aDescriptor.SetLength(descriptorLength);
   112         }
   113     else
   114         {
   115         // pointerToTargetByte is initialized properly when descriptorLength
   116         // has been offset to the actual final length of aDescriptor
   117         TUint8* pointerToTargetByte = CONST_CAST(TUint8*, aDescriptor.Ptr());
   118         const TUint8* const pointerToFirstByte =
   119             pointerToTargetByte + aStartPositionInDescriptor;
   120         const TUint8* pointerToSourceByte =
   121             pointerToTargetByte + (descriptorLength - 1);
   122         descriptorLength = (((descriptorLength - aStartPositionInDescriptor)
   123             * bytesPerCharacter) / 2) + aStartPositionInDescriptor;
   124         aDescriptor.SetLength(descriptorLength);
   125         // pointerToTargetByte is is initialized properly here
   126         pointerToTargetByte += descriptorLength - 1;
   127         for (;pointerToTargetByte > pointerToFirstByte; )
   128             {
   129             TInt secondByte = *pointerToSourceByte;
   130             TInt firstByte = *(pointerToSourceByte - 1);
   131 
   132             if (bytesPerCharacter == 3)
   133                 {
   134                 firstByte = (firstByte - KEUCJPSecondBlockStart) * 2 +
   135                     KFirstByteRangeFirstBlockStart;
   136                 }
   137             else
   138                 {
   139                 firstByte = (firstByte - KPictographStartFirstByte) * 2 +
   140                     KFirstByteRangeFirstBlockStart;
   141                 }
   142             if (static_cast<TInt>(KEUCJPBlockSize + KPictographStartSecondByte + 1)
   143                  < secondByte)
   144                 {
   145                 if (secondByte > KShiftJisTrailByteIllegal)
   146                     secondByte -= 1;
   147                 secondByte = secondByte -(KPictographStartSecondByte +
   148                     KEUCJPBlockSize + 1) + KSecondByteRangeSecondBlockStart;
   149                 firstByte++;
   150                 }
   151             else
   152                 {
   153                 if (secondByte > KShiftJisTrailByteIllegal)
   154                     secondByte -= 1;
   155                 secondByte += KSecondByteRangeSecondBlockStart - KPictographStartSecondByte;
   156                 }
   157             *pointerToTargetByte = static_cast<TUint8>(secondByte);
   158             --pointerToTargetByte;
   159             *pointerToTargetByte = static_cast<TUint8>(firstByte);
   160             if (bytesPerCharacter == 3)
   161                 {
   162                 --pointerToTargetByte;
   163                 *pointerToTargetByte = KSingleShift3;
   164                 }
   165             --pointerToTargetByte;
   166             pointerToSourceByte -= 2;
   167             }
   168         }
   169     }
   170 
   171 // ============================ MEMBER FUNCTIONS ===============================
   172 
   173 // -----------------------------------------------------------------------------
   174 // CnvPictographShared::SetCharacterSetsForPictograph
   175 // It sets parameters to SCharacterSet array. It called in ConvertFromUnicode().
   176 // It makes possible that pictograph conversion is called from other conversion
   177 // plug-ins.
   178 // (other items were commented in a header).
   179 // -----------------------------------------------------------------------------
   180 //
   181 void CnvPictographShared::SetCharacterSetsForPictograph(
   182         RArray<CnvUtilities::SCharacterSet>& /*aArrayOfCharacterSets*/)
   183     {
   184     // SAMPLE CODE
   185     // If this module needs to support escape sequence pictograph,
   186     // Remove the comment from the following code.
   187 
   188     // CnvUtilities::SCharacterSet characterSet;
   189     // characterSet.iConversionData = &CnvPictograph1::ConversionData();
   190     // characterSet.iConvertFromIntermediateBufferInPlace =
   191     //     CnvPictographShared::ConvertToPictograph1InPlace;
   192     // characterSet.iEscapeSequence = &KLit8EscapeSequenceForPictograph1;
   193     // aArrayOfCharacterSets.Append(characterSet);
   194 
   195     }
   196 
   197 // -----------------------------------------------------------------------------
   198 // CnvPictographShared::SetMethodsForPictograph
   199 // It sets parameters to SMethod array. It called in ConvertToUnicode().
   200 // It makes possible that pictograph conversion is called from other conversion
   201 // plug-ins.
   202 // (other items were commented in a header).
   203 // -----------------------------------------------------------------------------
   204 //
   205 void CnvPictographShared::SetMethodsForPictograph(
   206         RArray<CnvUtilities::SMethod>& aArrayOfMethods, TOriginalCharset aOriginalCharset)
   207     {
   208     TInt ret = KErrNone;
   209     CnvUtilities::SMethod method;
   210     switch (aOriginalCharset)
   211         {
   212         case ECharsetShiftJis:
   213             method.iNumberOfBytesAbleToConvert =
   214                 CnvPictographShared::NumberOfBytesAbleToConvertSJisDirectMap;
   215             method.iConvertToIntermediateBufferInPlace =
   216                 DummyConvertToIntermediateBufferInPlace;
   217             method.iConversionData =
   218                 &CnvShiftJisDirectmap::ConversionData();
   219             method.iNumberOfBytesPerCharacter = 2;
   220             method.iNumberOfCoreBytesPerCharacter = 2;
   221             ret |= aArrayOfMethods.Append(method);
   222             break;
   223         case ECharsetEucJp:
   224             method.iNumberOfBytesAbleToConvert =
   225                 CnvPictographShared::NumberOfBytesAbleToConvertToEucJpDirectMap1;
   226             method.iConvertToIntermediateBufferInPlace =
   227                 CnvPictographShared::ConvertToPictographFromEucJpPackedInPlace;
   228             method.iConversionData =
   229                 &CnvShiftJisDirectmap::ConversionData();
   230             method.iNumberOfBytesPerCharacter = 2;
   231             method.iNumberOfCoreBytesPerCharacter = 2;
   232             ret |= aArrayOfMethods.Append(method);
   233             method.iNumberOfBytesAbleToConvert =
   234                 CnvPictographShared::NumberOfBytesAbleToConvertToEucJpDirectMap2;
   235             method.iConvertToIntermediateBufferInPlace =
   236                 CnvPictographShared::ConvertToPictographFromEucJpPackedInPlace;
   237             method.iConversionData =
   238                 &CnvShiftJisDirectmap::ConversionData();
   239             method.iNumberOfBytesPerCharacter = 3;
   240             method.iNumberOfCoreBytesPerCharacter = 2;
   241             ret |= aArrayOfMethods.Append(method);
   242             break;
   243         default:
   244             break;
   245         }
   246     __ASSERT_DEBUG(!ret, User::Panic(_L("RArray append failure"), ret));
   247     // SAMPLE CODE
   248     // If this module needs to support escape sequence pictograph,
   249     // Remove the comment from the following code.
   250 
   251     // method.iNumberOfBytesAbleToConvert =
   252     //     CnvPictographShared::NumberOfBytesAbleToConvertToPicto1;
   253     // method.iConvertToIntermediateBufferInPlace =
   254     //     CnvPictographShared::ConvertToPictographFromUnicode;
   255     // method.iConversionData = &CnvPictograph1::ConversionData();
   256     // method.iNumberOfBytesPerCharacter = 1;
   257     // method.iNumberOfCoreBytesPerCharacter = 1;
   258     // aArrayOfMethods.Append(method);
   259     }
   260 
   261 // -----------------------------------------------------------------------------
   262 // CnvPictographShared::SetCharacterSetsForPictograph
   263 // It sets parameters to SState array. It called in ConvertToUnicode().
   264 // It makes possible that pictograph conversion is called from other
   265 // conversion plug-ins.
   266 // (other items were commented in a header).
   267 // -----------------------------------------------------------------------------
   268 //
   269 void CnvPictographShared::SetCharacterSetsForPictograph(
   270         RArray<CnvUtilities::SCharacterSet>& aArrayOfStates,
   271         TOriginalCharset aOriginalCharset)
   272     {
   273     TInt ret = KErrNone;
   274     CnvUtilities::SCharacterSet characterSet;
   275     switch (aOriginalCharset)
   276         {
   277         case ECharsetShiftJis:
   278             // Append the character set for pictograph
   279             characterSet.iConversionData =
   280                 &CnvShiftJisDirectmap::ConversionData();
   281             characterSet.iConvertFromIntermediateBufferInPlace =
   282                 DummyConvertFromIntermediateBufferInPlace;
   283             characterSet.iEscapeSequence = &KNullDesC8;
   284             ret |= aArrayOfStates.Append(characterSet);
   285             break;
   286         case ECharsetEucJp:
   287             // Append the character set for pictograph1
   288             characterSet.iConversionData = &CnvShiftJisDirectmap::ConversionData();
   289             characterSet.iConvertFromIntermediateBufferInPlace =
   290                 ConvertFromPictogaphToEucJpDirectmapInPlace;
   291             characterSet.iEscapeSequence = &KNullDesC8;
   292             ret |= aArrayOfStates.Append(characterSet);
   293 
   294             // Append the character set for pictograph2
   295             characterSet.iConversionData = &CnvShiftJisDirectmap::ConversionData();
   296             characterSet.iConvertFromIntermediateBufferInPlace =
   297                 ConvertFromPictogaphToEucJpDirectmapInPlace;
   298             characterSet.iEscapeSequence = &KNullDesC8;
   299             ret |= aArrayOfStates.Append(characterSet);
   300             break;
   301         default:
   302             break;
   303         }
   304     __ASSERT_DEBUG(!ret, User::Panic(_L("RArray append failure"), ret));
   305     }
   306 
   307 // -----------------------------------------------------------------------------
   308 // CnvPictographShared::SetStatesForPictograph
   309 // It sets parameters to SState array. It called in ConvertToUnicode().
   310 // It makes possible that pictograph conversion is called from other
   311 // conversion plug-ins.
   312 // (other items were commented in a header).
   313 // -----------------------------------------------------------------------------
   314 //
   315 void CnvPictographShared::SetStatesForPictograph(
   316         RArray<CnvUtilities::SState>& /*aArrayOfStates*/)
   317     {
   318     // SAMPLE CODE
   319     // If this module needs to support escape sequence pictograph,
   320     // Remove the comment from the following code.
   321 
   322     // CnvUtilities::SState state;
   323     // state.iEscapeSequence = &KLit8EscapeSequenceForPictograph1;
   324     // state.iConversionData = &CnvPictograph1::ConversionData();
   325     // aArrayOfStates.Append(state);
   326     }
   327 
   328 // -----------------------------------------------------------------------------
   329 // CnvPictographShared::ConvertToPictograph1InPlace
   330 // It converts from an intermediate buffer to a pictograph code.
   331 // After that, it adds shift-in code(0x0F).
   332 // (other items were commented in a header).
   333 // -----------------------------------------------------------------------------
   334 //
   335 // void CnvPictographShared::ConvertToPictograph1InPlace(
   336 //         TInt aStartPositionInDescriptor,
   337 //         TDes8& aDescriptor, TInt& aNumberOfCharactersThatDroppedOut)
   338 //     {
   339 //     CnvUtilities::ConvertFromIntermediateBufferInPlace(
   340 //         aStartPositionInDescriptor, aDescriptor,
   341 //         aNumberOfCharactersThatDroppedOut,
   342 //         KLit8EscapeSequenceForPictograph1, 1);
   343 //     AppendShiftIn(aDescriptor, aNumberOfCharactersThatDroppedOut);
   344 //     }
   345 
   346 
   347 // -----------------------------------------------------------------------------
   348 // CnvPictographShared::NumberOfBytesAbleToConvertToPicto1
   349 // It returns a number of bytes that the conversion to pictograph is
   350 // possible in the descriptor.
   351 // (other items were commented in a header).
   352 // -----------------------------------------------------------------------------
   353 //
   354 TInt CnvPictographShared::NumberOfBytesAbleToConvertSJisDirectMap(
   355         const TDesC8& aDescriptor)
   356     {
   357     const TUint8* pointerToPreviousByte = aDescriptor.Ptr()-1;
   358     const TUint8* const pointerToLastByte =
   359             pointerToPreviousByte + aDescriptor.Length();
   360     if (pointerToPreviousByte == pointerToLastByte)
   361         {
   362         return 0;
   363         }
   364     for (; pointerToPreviousByte < pointerToLastByte; )
   365         {
   366         const TUint currentByte = *(pointerToPreviousByte + 1);
   367         const TUint nextByte = *(pointerToPreviousByte + 2);
   368         if (((currentByte < KSingleByteRangeFirstBlockStart) ||
   369              (currentByte > KSingleByteRangeFirstBlockEnd)) ||
   370             ((nextByte < KSingleByteRangeSecondBlockStart) ||
   371              (nextByte > KSingleByteRangeSecondBlockEnd)))
   372             {
   373             break;
   374             }
   375         pointerToPreviousByte += 2;
   376         }
   377     return (pointerToPreviousByte + 1) - aDescriptor.Ptr();
   378     }
   379 
   380 // -----------------------------------------------------------------------------
   381 // NumberOfBytesAbleToConvertToEucJpDirectMap1
   382 //
   383 // -----------------------------------------------------------------------------
   384 //
   385 TInt CnvPictographShared::NumberOfBytesAbleToConvertToEucJpDirectMap1(
   386         const TDesC8& aDescriptor)
   387     {
   388     const TUint8* pointerToPreviousByte = aDescriptor.Ptr() - 1;
   389     const TUint8* const pointerToLastByte =
   390         pointerToPreviousByte + aDescriptor.Length();
   391     if (pointerToPreviousByte == pointerToLastByte)
   392         {
   393         return 0;
   394         }
   395     for (;pointerToPreviousByte < pointerToLastByte;)
   396         {
   397         TUint currentByte = *(pointerToPreviousByte + 1);
   398         const TUint nextByte = *(pointerToPreviousByte + 2);
   399         if (((currentByte < KFirstByteRangeFirstBlockStart) ||
   400              (currentByte > KFirstByteRangeFirstBlockEnd)) ||
   401             ((nextByte < KSecondByteRangeSecondBlockStart) ||
   402              (nextByte > KSecondByteRangeSecondBlockEnd)))
   403             {
   404             break;
   405             }
   406         pointerToPreviousByte += 2;
   407         }
   408     return (pointerToPreviousByte + 1) - aDescriptor.Ptr();
   409     }
   410 
   411 // -----------------------------------------------------------------------------
   412 // NumberOfBytesAbleToConvertToPictograph
   413 //
   414 // -----------------------------------------------------------------------------
   415 //
   416 TInt CnvPictographShared::NumberOfBytesAbleToConvertToEucJpDirectMap2(
   417         const TDesC8& aDescriptor)
   418     {
   419     const TUint8* pointerToPreviousByte = aDescriptor.Ptr() - 1;
   420     const TUint8* const pointerToLastByte =
   421         pointerToPreviousByte + aDescriptor.Length();
   422     if (pointerToPreviousByte == pointerToLastByte)
   423         {
   424         return 0;
   425         }
   426     for (;pointerToPreviousByte < pointerToLastByte;)
   427         {
   428         TUint currentByte = *(pointerToPreviousByte + 1);
   429         if (currentByte == KSingleShift3)
   430             {
   431             pointerToPreviousByte++;
   432             currentByte = *(pointerToPreviousByte + 1);
   433             }
   434         else
   435             {
   436             break;
   437             }
   438         if (currentByte < 0xa0)
   439             {
   440             return CCnvCharacterSetConverter::EErrorIllFormedInput;
   441             }
   442         const TUint nextByte = *(pointerToPreviousByte + 2);
   443         if (nextByte < 0xa0)
   444             {
   445             return CCnvCharacterSetConverter::EErrorIllFormedInput;
   446             }
   447         if (((currentByte < KFirstByteRangeFirstBlockStart) ||
   448              (currentByte > KFirstByteRangeFirstBlockEnd)) ||
   449             ((nextByte < KSecondByteRangeSecondBlockStart) ||
   450              (nextByte > KSecondByteRangeSecondBlockEnd)))
   451             {
   452             // return the previous byte to the beginning of loop.
   453             pointerToPreviousByte--;
   454             break;
   455             }
   456         pointerToPreviousByte += 2;
   457         }
   458     return (pointerToPreviousByte + 1) - aDescriptor.Ptr();
   459     }
   460 
   461 // -----------------------------------------------------------------------------
   462 // CnvPictographShared::NumberOfBytesAbleToConvertToPicto1
   463 // It returns a number of bytes that the conversion to pictograph is
   464 // possible in the descriptor.
   465 // (other items were commented in a header).
   466 // -----------------------------------------------------------------------------
   467 //
   468 TInt CnvPictographShared::NumberOfBytesAbleToConvertToPicto1(
   469         const TDesC8& aDescriptor)
   470     {
   471     return NumberOfBytesAbleToConvertToPictograph(aDescriptor,
   472         KIntermediateBuffer1);
   473     }
   474 
   475 // -----------------------------------------------------------------------------
   476 // CnvPictographShared::NumberOfBytesAbleToConvertToPictograph
   477 // It's a common function for checking the number of bytes that the conversion
   478 // to pictograph
   479 // (other items were commented in a header).
   480 // -----------------------------------------------------------------------------
   481 //
   482 TInt CnvPictographShared::NumberOfBytesAbleToConvertToPictograph(
   483         const TDesC8& aDescriptor, TInt aIntermidiateCode)
   484     {
   485     TInt compLen(KLit8EscapeSequenceForPictograph().Length());
   486     TInt ret(0);
   487     if (aDescriptor.Left(compLen) == KLit8EscapeSequenceForPictograph)
   488         {
   489         const TInt intermidiateBuff = aDescriptor[compLen];
   490         if (intermidiateBuff == aIntermidiateCode)
   491             {
   492             ret = compLen + 2;
   493 
   494             const TInt descriptorLength = aDescriptor.Length();
   495             const TUint8* pointerToCurrentByte = aDescriptor.Ptr();
   496             const TUint8* pointerToLastByte = pointerToCurrentByte +
   497                 (descriptorLength - 1);
   498             pointerToCurrentByte += compLen + 2;
   499             for (; pointerToCurrentByte <= pointerToLastByte;
   500                  pointerToCurrentByte++)
   501                 {
   502                 if (*pointerToCurrentByte == KShiftIn)
   503                     {
   504                     ret++;
   505                     break;
   506                     }
   507                 if (*pointerToCurrentByte == KEscape)
   508                     break;
   509                 ret++;
   510                 }
   511             }
   512         }
   513     return ret;
   514     }
   515 
   516 // -----------------------------------------------------------------------------
   517 // CnvPictographShared::ConvertToPictographFromUnicode
   518 // It converts the string which includes a pictograph's escape sequence
   519 // to unicode.
   520 // (other items were commented in a header).
   521 // -----------------------------------------------------------------------------
   522 //
   523 void CnvPictographShared::ConvertToPictographFromUnicode(TDes8& aDescriptor)
   524     {
   525     const TInt descriptorLength = aDescriptor.Length();
   526     TUint8* pointerToCurrentByte = CONST_CAST(TUint8*, aDescriptor.Ptr());
   527     TUint8* pointerToDataByte = pointerToCurrentByte +
   528         KLit8EscapeSequenceForPictograph().Length();
   529     const TUint8* const pointerToLastByte = pointerToCurrentByte +
   530         (descriptorLength - 1);
   531     const TUint8* const pointerToFirstByte = pointerToCurrentByte;
   532     pointerToDataByte++;
   533 
   534     for (; pointerToDataByte <= pointerToLastByte; pointerToDataByte++)
   535         {
   536         if (*pointerToDataByte != KShiftIn)
   537             {
   538             *pointerToCurrentByte = *pointerToDataByte;
   539             pointerToCurrentByte++;
   540             }
   541         }
   542     aDescriptor.SetLength(pointerToCurrentByte - pointerToFirstByte);
   543     }
   544 
   545 // -----------------------------------------------------------------------------
   546 // CnvPictographShared::ConvertToPictographFromEucJpPackedInPlace
   547 // Converts from EucJp packed Pictograph to Unicode
   548 // -----------------------------------------------------------------------------
   549 //
   550 void CnvPictographShared::ConvertToPictographFromEucJpPackedInPlace(TDes8& aDescriptor)
   551     {
   552     const TInt descriptorLength = aDescriptor.Length();
   553     TUint8* pointerToTargetByte = CONST_CAST(TUint8*, aDescriptor.Ptr());
   554     const TUint8* pointerToSourceByte = pointerToTargetByte;
   555     const TUint8* const pointerToLastByte =
   556         pointerToSourceByte + (descriptorLength - 1);
   557     TInt bytesPerCharacter = 2;
   558     TInt sjisStartbyte = KSingleByteRangeFirstBlockStart;
   559     if (*pointerToSourceByte == KSingleShift3)
   560         {
   561         ++pointerToSourceByte;
   562         bytesPerCharacter = 3;
   563         sjisStartbyte = KEUCJPSecondBlockStart;
   564         }
   565     for (;pointerToSourceByte < pointerToLastByte; )
   566         {
   567         TUint firstByte = (*pointerToSourceByte
   568             - KFirstByteRangeFirstBlockStart) / 2 + sjisStartbyte;
   569         TUint secondByte = *(pointerToSourceByte + 1);
   570         if ((*pointerToSourceByte % 2) == 0)
   571             {
   572             secondByte += KSingleByteRangeSecondBlockStart - KSecondByteRangeSecondBlockStart
   573                 + KEUCJPBlockSize + 1;
   574             if (secondByte >= KShiftJisTrailByteIllegal)
   575                 secondByte++;
   576             }
   577         else
   578             {
   579             secondByte += KSingleByteRangeSecondBlockStart - KSecondByteRangeSecondBlockStart;
   580             if (secondByte >= KShiftJisTrailByteIllegal)
   581                 secondByte++;
   582             }
   583         *pointerToTargetByte = static_cast<TUint8>(firstByte);
   584 
   585         ++pointerToTargetByte;
   586         *pointerToTargetByte = static_cast<TUint8>(secondByte);
   587         pointerToSourceByte += 2;
   588         ++pointerToTargetByte;
   589         }
   590     aDescriptor.SetLength((descriptorLength / bytesPerCharacter) * 2);
   591     }
   592 
   593 // -----------------------------------------------------------------------------
   594 // CnvPictographShared::AppendShiftIn
   595 // It appends a shift-in code to the descriptor.
   596 // (other items were commented in a header).
   597 // -----------------------------------------------------------------------------
   598 //
   599 void CnvPictographShared::AppendShiftIn(TDes8& aDescriptor,
   600         TInt& aNumberOfCharactersThatDroppedOut)
   601     {
   602     if (aDescriptor.MaxLength() > aDescriptor.Length())
   603         {
   604         aDescriptor.Append(KShiftIn);
   605         }
   606     else
   607         {
   608         aNumberOfCharactersThatDroppedOut++;
   609         }
   610     }
   611 
   612 // ========================== OTHER EXPORTED FUNCTIONS =========================
   613 
   614 // -----------------------------------------------------------------------------
   615 // SetCharacterSetsForPictograph()
   616 // It sets parameters to SCharacterSet array.
   617 // It called in ConvertFromUnicode().
   618 // It makes possible that pictograph conversion is called from other
   619 // conversion plug-ins.
   620 // @since 2.6
   621 // @param aArrayOfCharacterSets The conversion table array
   622 // -----------------------------------------------------------------------------
   623 //
   624 EXPORT_C void SetCharacterSetsForPictograph(
   625             RArray<CnvUtilities::SCharacterSet>& aArrayOfCharacterSets)
   626     {
   627     CnvPictographShared::SetCharacterSetsForPictograph(aArrayOfCharacterSets);
   628     }
   629 
   630 // -----------------------------------------------------------------------------
   631 // SetCharacterSetsForPictograph()
   632 // It sets parameters to SCharacterSet array.
   633 // It called in ConvertFromUnicode().
   634 // It makes possible that pictograph conversion is called from other
   635 // conversion plug-ins.
   636 // @since 2.6
   637 // @param aArrayOfCharacterSets The conversion table array
   638 // @param aOriginalCharset The character set
   639 // -----------------------------------------------------------------------------
   640 //
   641 EXPORT_C void SetCharacterSetsForPictograph(
   642             RArray<CnvUtilities::SCharacterSet>& aArrayOfCharacterSets,
   643             TOriginalCharset aOriginalCharset)
   644     {
   645     CnvPictographShared::SetCharacterSetsForPictograph(aArrayOfCharacterSets,
   646                                                        aOriginalCharset);
   647     }
   648 
   649 // -----------------------------------------------------------------------------
   650 // SetMethodsForPictograph()
   651 // It sets parameters to SMethod array.
   652 // It called in ConvertToUnicode().
   653 // It makes possible that pictograph conversion is called from other
   654 // conversion plug-ins.
   655 // @since 2.6
   656 // @param aArrayOfMethods The conversion table array
   657 // @param aOriginalCharset The character set
   658 // -----------------------------------------------------------------------------
   659 //
   660 EXPORT_C void SetMethodsForPictograph(
   661             RArray<CnvUtilities::SMethod>& aArrayOfMethods,
   662             TOriginalCharset aOriginalCharset)
   663     {
   664     CnvPictographShared::SetMethodsForPictograph(aArrayOfMethods,
   665         aOriginalCharset);
   666     }
   667 
   668 // -----------------------------------------------------------------------------
   669 // SetStatesForPictograph()
   670 // It sets parameters to SState array.
   671 // It called in ConvertToUnicode().
   672 // It makes possible that pictograph conversion is called from other
   673 // conversion plug-ins.
   674 // @since 2.6
   675 // @param aArrayOfMethods The conversion table array
   676 // -----------------------------------------------------------------------------
   677 //
   678 EXPORT_C void SetStatesForPictograph(
   679             RArray<CnvUtilities::SState>& aArrayOfStates)
   680     {
   681     CnvPictographShared::SetStatesForPictograph(aArrayOfStates);
   682     }
   683 
   684 // -----------------------------------------------------------------------------
   685 // CountOfPictographPagesFromUnicode()
   686 // It returns count of pictograph pages.
   687 // This method is used for the conversion from Unicode to foreign character
   688 // set.
   689 // @since 2.6
   690 // @return count of pictograph pages.
   691 // -----------------------------------------------------------------------------
   692 //
   693 EXPORT_C TInt CountOfPictographPagesFromUnicode()
   694     {
   695     return KCountOfPictoPages;
   696     }
   697 
   698 // -----------------------------------------------------------------------------
   699 // CountOfPictographPagesToUnicode()
   700 // It returns count of pictograph pages.
   701 // This method is used for the conversion from foreign character set to
   702 // Unicode.
   703 // @since 2.6
   704 // @return count of pictograph pages.
   705 // -----------------------------------------------------------------------------
   706 //
   707 EXPORT_C TInt CountOfPictographPagesToUnicode()
   708     {
   709     return KCountOfPictoPages + 1;
   710     }
   711 
   712 //  End of File