os/textandloc/charconvfw/charconvplugins/src/plugins/EucJpDirectmap.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-2004 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 file is a source code file for a charconv plug-in.
    15 *                This plug-in supports EUC-JP with direct mapped pictograph.
    16 *
    17 */
    18 
    19 
    20 
    21 
    22 
    23 
    24 
    25 // INCLUDE FILES
    26 
    27 #include <e32std.h>
    28 
    29 #include <charconv.h>
    30 
    31 
    32 
    33 #ifndef EKA2
    34 
    35 #include <CONVPLUG.H>
    36 
    37 #else
    38 
    39 #include <convgeneratedcpp.h>
    40 
    41 #include <ecom/implementationproxy.h>
    42 
    43 #include "charactersetconverter.h"
    44 
    45 #endif // !EKA2
    46 
    47 
    48 
    49 #include <convutils.h>
    50 
    51 #include "jisx0201.h"
    52 
    53 #include "jisx0208.h"
    54 
    55 #include "jisx0212.h"
    56 
    57 #include "CnvShiftJisDirectmap.h"
    58 
    59 // LOCAL CONSTANTS AND MACROS
    60 
    61 const TUint KSingleShift2=0x8e;
    62 
    63 const TUint KSingleShift3=0x8f;
    64 
    65 const TUint KFirstByteRangeFirstBlockStart = 0xF5;
    66 
    67 const TUint KFirstByteRangeFirstBlockEnd = 0xFE;
    68 
    69 const TUint KSecondByteRangeSecondBlockStart = 0xA1;
    70 
    71 const TUint KSecondByteRangeSecondBlockEnd = 0xFE;
    72 
    73 const TUint KPictographStartFirstByte = 0xF0;
    74 
    75 const TUint KPictographStartSecondByte = 0x40;
    76 
    77 const TUint KEUCJPSecondBlockStart = 0xF5;
    78 
    79 const TUint KEUCJPBlockSize = 0x5D;
    80 
    81 const TUint KShiftJisTrailByteIllegal = 0x7F;
    82 
    83 
    84 
    85 // SecureID for Brower app
    86 
    87 const TUint32 KBrowserSecureId = 0x10008D39;
    88 
    89 // Define for converting from YenSign to BackSlash
    90 
    91 const TUint KCharacterCodeForYenSign = 0x00A5;
    92 
    93 const TUint KCharacterCodeForBackSlash = 0x005C;
    94 
    95 
    96 
    97 // fullwidth question mark
    98 
    99 _LIT8(KLit8EucJpPackedReplacementForUnconvertibleUnicodeCharacters, "\xa1\xa9");
   100 
   101 #if defined(_DEBUG)
   102 
   103 _LIT(KLitPanicText, "EucJpDirectmap");
   104 
   105 enum TPanic
   106 
   107     {
   108 
   109     EPanicNothingToConvert1=1,
   110 
   111     EPanicNothingToConvert2,
   112 
   113     EPanicNothingToConvert3,
   114 
   115     EPanicNothingToConvert4,
   116 
   117     EPanicNothingToConvert5,
   118 
   119     EPanicNothingToConvert6,
   120 
   121     EPanicOddNumberOfBytes1,
   122 
   123     EPanicOddNumberOfBytes2,
   124 
   125     EPanicOddNumberOfBytes3,
   126 
   127     EPanicOddNumberOfBytes4,
   128 
   129     EPanicOddNumberOfBytes5,
   130 
   131     EPanicOddNumberOfBytes6,
   132 
   133     EPanicBadHighBit1,
   134 
   135     EPanicBadHighBit2,
   136 
   137     EPanicBadHighBit3,
   138 
   139     EPanicBadHighBit4,
   140 
   141     EPanicBadHighBit5,
   142 
   143     EPanicBadHighBit6,
   144 
   145     EPanicBadHighBit7,
   146 
   147     EPanicBadPointers1,
   148 
   149     EPanicBadPointers2,
   150 
   151     EPanicBadPointers3,
   152 
   153     EPanicBadPointers4,
   154 
   155     EPanicBadPointers5,
   156 
   157     EPanicBadPointers6,
   158 
   159     EPanicBadPointers7,
   160 
   161     EPanicBadPointers8,
   162 
   163     EPanicBadPointers9,
   164 
   165     EPanicBadPointers10,
   166 
   167     EPanicBadPointers11,
   168 
   169     EPanicBadPointers12,
   170 
   171     EPanicBadPointers13,
   172 
   173     EPanicBadPointers14,
   174 
   175     EPanicBadPointers15,
   176 
   177     EPanicBadPointers16,
   178 
   179     EPanicBadPointers17,
   180 
   181     EPanicBadPointers18,
   182 
   183     EPanicBadPointers19,
   184 
   185     EPanicBadPointers20,
   186 
   187     EPanicBadPointers21,
   188 
   189     EPanicBadPointers22,
   190 
   191     EPanicBadPointers23,
   192 
   193     EPanicBadPointers24,
   194 
   195     EPanicBadPointers25,
   196 
   197     EPanicBadPointers26,
   198 
   199     EPanicBadPointers27,
   200 
   201     EPanicBadPointers28,
   202 
   203     EPanicBadPointers29,
   204 
   205     EPanicBadPointers30,
   206 
   207     EPanicBadPointers31,
   208 
   209     EPanicBadPointers32,
   210 
   211     EPanicBadPointers33,
   212 
   213     EPanicBadPointers34,
   214 
   215     EPanicBadPointers35,
   216 
   217     EPanicBadPointers36,
   218 
   219     EPanicBadCalculation1,
   220 
   221     EPanicBadCalculation2,
   222 
   223     EPanicNumberOfBytesIsNotMultipleOfThree1,
   224 
   225     EPanicNumberOfBytesIsNotMultipleOfThree2,
   226 
   227     EPanicSingleShift2Expected,
   228 
   229     EPanicSingleShift3Expected
   230 
   231     };
   232 
   233 
   234 
   235 LOCAL_C void Panic(TPanic aPanic)
   236 
   237     {
   238 
   239     User::Panic(KLitPanicText, aPanic);
   240 
   241     }
   242 
   243 #endif
   244 
   245 
   246 
   247 // -----------------------------------------------------------------------------
   248 
   249 // DummyConvertFromIntermediateBufferInPlace
   250 
   251 //
   252 
   253 // -----------------------------------------------------------------------------
   254 
   255 //
   256 
   257 LOCAL_C void DummyConvertFromIntermediateBufferInPlace(TInt, TDes8&,
   258 
   259         TInt& aNumberOfCharactersThatDroppedOut)
   260 
   261     {
   262 
   263     aNumberOfCharactersThatDroppedOut = 0;
   264 
   265     }
   266 
   267 
   268 
   269 // -----------------------------------------------------------------------------
   270 
   271 // ConvertFromJisX0208ToEucJpPackedInPlace
   272 
   273 // Converts from JIS code to EUC-JP
   274 
   275 // -----------------------------------------------------------------------------
   276 
   277 //
   278 
   279 LOCAL_C void ConvertFromJisX0208ToEucJpPackedInPlace(
   280 
   281         TInt aStartPositionInDescriptor, TDes8& aDescriptor,
   282 
   283         TInt& aNumberOfCharactersThatDroppedOut)
   284 
   285     {
   286 
   287     aNumberOfCharactersThatDroppedOut = 0;
   288 
   289     const TInt descriptorLength = aDescriptor.Length();
   290 
   291     __ASSERT_DEBUG(descriptorLength > aStartPositionInDescriptor,
   292 
   293         Panic(EPanicNothingToConvert1));
   294 
   295     __ASSERT_DEBUG((descriptorLength - aStartPositionInDescriptor) % 2 == 0,
   296 
   297         Panic(EPanicOddNumberOfBytes1));
   298 
   299     TUint8* pointerToCurrentByte = CONST_CAST(TUint8*, aDescriptor.Ptr());
   300 
   301     const TUint8* const pointerToLastByte =
   302 
   303         pointerToCurrentByte + (descriptorLength - 1);
   304 
   305     pointerToCurrentByte += aStartPositionInDescriptor;
   306 
   307     FOREVER
   308 
   309         {
   310 
   311         const TUint currentByte = *pointerToCurrentByte;
   312 
   313         __ASSERT_DEBUG((currentByte & 0x80) == 0, Panic(EPanicBadHighBit1));
   314 
   315         *pointerToCurrentByte = STATIC_CAST(TUint8, currentByte | 0x80);
   316 
   317         __ASSERT_DEBUG(pointerToCurrentByte <= pointerToLastByte,
   318 
   319             Panic(EPanicBadPointers1));
   320 
   321         if (pointerToCurrentByte >= pointerToLastByte)
   322 
   323             {
   324 
   325             break;
   326 
   327             }
   328 
   329         ++pointerToCurrentByte;
   330 
   331         }
   332 
   333     }
   334 
   335 
   336 
   337 // -----------------------------------------------------------------------------
   338 
   339 // ConvertFromHalfWidthKatakana8ToEucJpPackedInPlace
   340 
   341 // Converts from half width Katakana code to EUC-JP
   342 
   343 // -----------------------------------------------------------------------------
   344 
   345 //
   346 
   347 LOCAL_C void ConvertFromHalfWidthKatakana8ToEucJpPackedInPlace(
   348 
   349         TInt aStartPositionInDescriptor, TDes8& aDescriptor,
   350 
   351         TInt& aNumberOfCharactersThatDroppedOut)
   352 
   353     {
   354 
   355     TInt descriptorLength = aDescriptor.Length();
   356 
   357     __ASSERT_DEBUG(descriptorLength > aStartPositionInDescriptor,
   358 
   359         Panic(EPanicNothingToConvert2));
   360 
   361     aNumberOfCharactersThatDroppedOut = Max(0, (descriptorLength -
   362 
   363         aStartPositionInDescriptor) - ((aDescriptor.MaxLength() -
   364 
   365         aStartPositionInDescriptor) / 2));
   366 
   367     descriptorLength -= aNumberOfCharactersThatDroppedOut;
   368 
   369     __ASSERT_DEBUG(descriptorLength >= aStartPositionInDescriptor,
   370 
   371         Panic(EPanicBadCalculation1));
   372 
   373     if (descriptorLength <= aStartPositionInDescriptor)
   374 
   375         {
   376 
   377         aDescriptor.SetLength(descriptorLength);
   378 
   379         }
   380 
   381     else
   382 
   383         {
   384 
   385         // pointerToTargetByte is initialized properly when descriptorLength
   386 
   387         // has been offset to the actual final length of aDescriptor
   388 
   389         TUint8* pointerToTargetByte = CONST_CAST(TUint8*, aDescriptor.Ptr());
   390 
   391         const TUint8* const pointerToFirstByte =
   392 
   393             pointerToTargetByte + aStartPositionInDescriptor;
   394 
   395         const TUint8* pointerToSourceByte =
   396 
   397             pointerToTargetByte + (descriptorLength - 1);
   398 
   399         descriptorLength =
   400 
   401             ((descriptorLength - aStartPositionInDescriptor) * 2) +
   402 
   403             aStartPositionInDescriptor;
   404 
   405         __ASSERT_DEBUG((descriptorLength - aStartPositionInDescriptor) % 2 == 0,
   406 
   407             Panic(EPanicOddNumberOfBytes2));
   408 
   409         aDescriptor.SetLength(descriptorLength);
   410 
   411         // pointerToTargetByte is is initialized properly here
   412 
   413         pointerToTargetByte += descriptorLength - 1;
   414 
   415         FOREVER
   416 
   417             {
   418 
   419             *pointerToTargetByte = *pointerToSourceByte;
   420 
   421             __ASSERT_DEBUG(pointerToTargetByte>pointerToFirstByte,
   422 
   423                 Panic(EPanicBadPointers2));
   424 
   425             --pointerToTargetByte;
   426 
   427             *pointerToTargetByte = KSingleShift2;
   428 
   429             __ASSERT_DEBUG(pointerToTargetByte >= pointerToFirstByte,
   430 
   431                 Panic(EPanicBadPointers3));
   432 
   433             if (pointerToTargetByte <= pointerToFirstByte)
   434 
   435                 {
   436 
   437                 break;
   438 
   439                 }
   440 
   441             --pointerToTargetByte;
   442 
   443             __ASSERT_DEBUG(pointerToSourceByte > pointerToFirstByte,
   444 
   445                 Panic(EPanicBadPointers4));
   446 
   447             --pointerToSourceByte;
   448 
   449             }
   450 
   451         __ASSERT_DEBUG(pointerToTargetByte == pointerToFirstByte,
   452 
   453             Panic(EPanicBadPointers5));
   454 
   455         __ASSERT_DEBUG(pointerToSourceByte == pointerToFirstByte,
   456 
   457             Panic(EPanicBadPointers6));
   458 
   459         }
   460 
   461     }
   462 
   463 
   464 
   465 // -----------------------------------------------------------------------------
   466 
   467 // ConvertFromJisX0212ToEucJpPackedInPlace
   468 
   469 // Converts from JIS code to EUC-JP
   470 
   471 // -----------------------------------------------------------------------------
   472 
   473 //
   474 
   475 LOCAL_C void ConvertFromJisX0212ToEucJpPackedInPlace(
   476 
   477         TInt aStartPositionInDescriptor, TDes8& aDescriptor,
   478 
   479         TInt& aNumberOfCharactersThatDroppedOut)
   480 
   481     {
   482 
   483     TInt descriptorLength=aDescriptor.Length();
   484 
   485     __ASSERT_DEBUG(descriptorLength > aStartPositionInDescriptor,
   486 
   487         Panic(EPanicNothingToConvert3));
   488 
   489     __ASSERT_DEBUG((descriptorLength - aStartPositionInDescriptor) % 2 == 0,
   490 
   491         Panic(EPanicOddNumberOfBytes3));
   492 
   493     aNumberOfCharactersThatDroppedOut =
   494 
   495         Max(0, ((descriptorLength - aStartPositionInDescriptor) / 2) -
   496 
   497         ((aDescriptor.MaxLength() - aStartPositionInDescriptor) / 3));
   498 
   499     descriptorLength -= aNumberOfCharactersThatDroppedOut * 2;
   500 
   501     __ASSERT_DEBUG(descriptorLength >= aStartPositionInDescriptor,
   502 
   503         Panic(EPanicBadCalculation2));
   504 
   505     if (descriptorLength <= aStartPositionInDescriptor)
   506 
   507         {
   508 
   509         aDescriptor.SetLength(descriptorLength);
   510 
   511         }
   512 
   513     else
   514 
   515         {
   516 
   517         __ASSERT_DEBUG((descriptorLength - aStartPositionInDescriptor) % 2 == 0,
   518 
   519             Panic(EPanicOddNumberOfBytes4));
   520 
   521         // pointerToTargetByte is initialized properly when descriptorLength
   522 
   523         // has been offset to the actual final length of aDescriptor
   524 
   525         TUint8* pointerToTargetByte = CONST_CAST(TUint8*, aDescriptor.Ptr());
   526 
   527         const TUint8* const pointerToFirstByte =
   528 
   529             pointerToTargetByte + aStartPositionInDescriptor;
   530 
   531         const TUint8* pointerToSourceByte =
   532 
   533             pointerToTargetByte + (descriptorLength - 1);
   534 
   535         descriptorLength = (((descriptorLength - aStartPositionInDescriptor)
   536 
   537             * 3) / 2) + aStartPositionInDescriptor;
   538 
   539         __ASSERT_DEBUG((descriptorLength - aStartPositionInDescriptor) % 3 ==0,
   540 
   541             Panic(EPanicNumberOfBytesIsNotMultipleOfThree1));
   542 
   543         aDescriptor.SetLength(descriptorLength);
   544 
   545         // pointerToTargetByte is is initialized properly here
   546 
   547         pointerToTargetByte += descriptorLength - 1;
   548 
   549         FOREVER
   550 
   551             {
   552 
   553             __ASSERT_DEBUG((*pointerToSourceByte & 0x80) == 0,
   554 
   555                 Panic(EPanicBadHighBit2));
   556 
   557             *pointerToTargetByte =
   558 
   559                 STATIC_CAST(TUint8, *pointerToSourceByte | 0x80);
   560 
   561             __ASSERT_DEBUG(pointerToTargetByte > pointerToFirstByte,
   562 
   563                 Panic(EPanicBadPointers7));
   564 
   565             --pointerToTargetByte;
   566 
   567             __ASSERT_DEBUG(pointerToSourceByte > pointerToFirstByte,
   568 
   569                 Panic(EPanicBadPointers8));
   570 
   571             --pointerToSourceByte;
   572 
   573             __ASSERT_DEBUG((*pointerToSourceByte & 0x80) == 0,
   574 
   575                 Panic(EPanicBadHighBit3));
   576 
   577             *pointerToTargetByte =
   578 
   579                 STATIC_CAST(TUint8, *pointerToSourceByte | 0x80);
   580 
   581             __ASSERT_DEBUG(pointerToTargetByte > pointerToFirstByte,
   582 
   583                 Panic(EPanicBadPointers9));
   584 
   585             --pointerToTargetByte;
   586 
   587             *pointerToTargetByte = KSingleShift3;
   588 
   589             __ASSERT_DEBUG(pointerToTargetByte >= pointerToFirstByte,
   590 
   591                 Panic(EPanicBadPointers10));
   592 
   593             if (pointerToTargetByte <= pointerToFirstByte)
   594 
   595                 {
   596 
   597                 break;
   598 
   599                 }
   600 
   601             --pointerToTargetByte;
   602 
   603             __ASSERT_DEBUG(pointerToSourceByte > pointerToFirstByte,
   604 
   605                 Panic(EPanicBadPointers11));
   606 
   607             --pointerToSourceByte;
   608 
   609             }
   610 
   611         __ASSERT_DEBUG(pointerToTargetByte == pointerToFirstByte,
   612 
   613             Panic(EPanicBadPointers12));
   614 
   615         __ASSERT_DEBUG(pointerToSourceByte == pointerToFirstByte,
   616 
   617             Panic(EPanicBadPointers13));
   618 
   619         }
   620 
   621     }
   622 
   623 
   624 
   625 // -----------------------------------------------------------------------------
   626 
   627 // NumberOfBytesAbleToConvertToJisRoman
   628 
   629 // Counts the bytes of be able to convert to JIS
   630 
   631 // -----------------------------------------------------------------------------
   632 
   633 //
   634 
   635 LOCAL_C TInt NumberOfBytesAbleToConvertToJisRoman(const TDesC8& aDescriptor)
   636 
   637     {
   638 
   639     const TUint8* pointerToPreviousByte = aDescriptor.Ptr() - 1;
   640 
   641     const TUint8* const pointerToLastByte =
   642 
   643         pointerToPreviousByte + aDescriptor.Length();
   644 
   645     if (pointerToPreviousByte == pointerToLastByte)
   646 
   647         {
   648 
   649         return 0;
   650 
   651         }
   652 
   653     FOREVER
   654 
   655         {
   656 
   657         __ASSERT_DEBUG(pointerToPreviousByte < pointerToLastByte,
   658 
   659             Panic(EPanicBadPointers14));
   660 
   661         const TUint currentByte = *(pointerToPreviousByte + 1);
   662 
   663         if (currentByte & 0x80)
   664 
   665             {
   666 
   667             break;
   668 
   669             }
   670 
   671         __ASSERT_DEBUG(pointerToPreviousByte < pointerToLastByte,
   672 
   673             Panic(EPanicBadPointers15));
   674 
   675         ++pointerToPreviousByte;
   676 
   677         __ASSERT_DEBUG(pointerToPreviousByte <= pointerToLastByte,
   678 
   679             Panic(EPanicBadPointers16));
   680 
   681         if (pointerToPreviousByte >= pointerToLastByte)
   682 
   683             {
   684 
   685             break;
   686 
   687             }
   688 
   689         }
   690 
   691     return (pointerToPreviousByte + 1) - aDescriptor.Ptr();
   692 
   693     }
   694 
   695 
   696 
   697 // -----------------------------------------------------------------------------
   698 
   699 // NumberOfBytesAbleToConvertToJisX0208
   700 
   701 // Counts the bytes of be able to convert to JIS
   702 
   703 // -----------------------------------------------------------------------------
   704 
   705 //
   706 
   707 LOCAL_C TInt NumberOfBytesAbleToConvertToJisX0208(const TDesC8& aDescriptor)
   708 
   709     {
   710 
   711     const TUint8* pointerToPreviousByte = aDescriptor.Ptr() - 1;
   712 
   713     const TUint8* const pointerToLastByte =
   714 
   715         pointerToPreviousByte + aDescriptor.Length();
   716 
   717     if (pointerToPreviousByte == pointerToLastByte)
   718 
   719         {
   720 
   721         return 0;
   722 
   723         }
   724 
   725     FOREVER
   726 
   727         {
   728 
   729         __ASSERT_DEBUG(pointerToPreviousByte < pointerToLastByte,
   730 
   731             Panic(EPanicBadPointers17));
   732 
   733         TUint currentByte = *(pointerToPreviousByte + 1);
   734 
   735         if (currentByte < 0xa0)
   736 
   737             {
   738 
   739             break;
   740 
   741             }
   742 
   743         __ASSERT_DEBUG(pointerToPreviousByte < pointerToLastByte,
   744 
   745             Panic(EPanicBadPointers18));
   746 
   747         if (pointerToLastByte - pointerToPreviousByte < 2)
   748 
   749             {
   750 
   751             break;
   752 
   753             }
   754 
   755         ++pointerToPreviousByte;
   756 
   757         currentByte = *(pointerToPreviousByte + 1);
   758 
   759         if (currentByte < 0xa0)
   760 
   761             {
   762 
   763             return CCnvCharacterSetConverter::EErrorIllFormedInput;
   764 
   765             }
   766 
   767         __ASSERT_DEBUG(pointerToPreviousByte < pointerToLastByte,
   768 
   769             Panic(EPanicBadPointers19));
   770 
   771         ++pointerToPreviousByte;
   772 
   773         __ASSERT_DEBUG(pointerToPreviousByte <= pointerToLastByte,
   774 
   775             Panic(EPanicBadPointers20));
   776 
   777         if (pointerToPreviousByte >= pointerToLastByte)
   778 
   779             {
   780 
   781             break;
   782 
   783             }
   784 
   785         }
   786 
   787     return (pointerToPreviousByte + 1) - aDescriptor.Ptr();
   788 
   789     }
   790 
   791 
   792 
   793 // -----------------------------------------------------------------------------
   794 
   795 // NumberOfBytesAbleToConvertToHalfWidthKatakana8
   796 
   797 // Counts the bytes of be able to convert to half width Katakana
   798 
   799 // -----------------------------------------------------------------------------
   800 
   801 //
   802 
   803 LOCAL_C TInt NumberOfBytesAbleToConvertToHalfWidthKatakana8(const TDesC8& aDescriptor)
   804 
   805     {
   806 
   807     const TUint8* pointerToPreviousByte = aDescriptor.Ptr() - 1;
   808 
   809     const TUint8* const pointerToLastByte =
   810 
   811         pointerToPreviousByte + aDescriptor.Length();
   812 
   813     if (pointerToPreviousByte == pointerToLastByte)
   814 
   815         {
   816 
   817         return 0;
   818 
   819         }
   820 
   821     FOREVER
   822 
   823         {
   824 
   825         __ASSERT_DEBUG(pointerToPreviousByte < pointerToLastByte,
   826 
   827             Panic(EPanicBadPointers21));
   828 
   829         TUint currentByte = *(pointerToPreviousByte + 1);
   830 
   831         if (currentByte != KSingleShift2)
   832 
   833             {
   834 
   835             break;
   836 
   837             }
   838 
   839         __ASSERT_DEBUG(pointerToPreviousByte < pointerToLastByte,
   840 
   841             Panic(EPanicBadPointers22));
   842 
   843         if (pointerToLastByte - pointerToPreviousByte < 2)
   844 
   845             {
   846 
   847             break;
   848 
   849             }
   850 
   851         ++pointerToPreviousByte;
   852 
   853         currentByte = *(pointerToPreviousByte + 1);
   854 
   855         if (currentByte < 0xa0)
   856 
   857             {
   858 
   859             return CCnvCharacterSetConverter::EErrorIllFormedInput;
   860 
   861             }
   862 
   863         __ASSERT_DEBUG(pointerToPreviousByte < pointerToLastByte,
   864 
   865             Panic(EPanicBadPointers23));
   866 
   867         ++pointerToPreviousByte;
   868 
   869         __ASSERT_DEBUG(pointerToPreviousByte <= pointerToLastByte,
   870 
   871             Panic(EPanicBadPointers24));
   872 
   873         if (pointerToPreviousByte >= pointerToLastByte)
   874 
   875             {
   876 
   877             break;
   878 
   879             }
   880 
   881         }
   882 
   883     return (pointerToPreviousByte + 1) - aDescriptor.Ptr();
   884 
   885     }
   886 
   887 
   888 
   889 // -----------------------------------------------------------------------------
   890 
   891 // NumberOfBytesAbleToConvertToJisX0212
   892 
   893 // Counts the bytes of be able to convert to JIS
   894 
   895 // -----------------------------------------------------------------------------
   896 
   897 //
   898 
   899 LOCAL_C TInt NumberOfBytesAbleToConvertToJisX0212(const TDesC8& aDescriptor)
   900 
   901     {
   902 
   903     const TUint8* pointerToPreviousByte = aDescriptor.Ptr() - 1;
   904 
   905     const TUint8* const pointerToLastByte =
   906 
   907         pointerToPreviousByte + aDescriptor.Length();
   908 
   909     if (pointerToPreviousByte == pointerToLastByte)
   910 
   911         {
   912 
   913         return 0;
   914 
   915         }
   916 
   917     FOREVER
   918 
   919         {
   920 
   921         __ASSERT_DEBUG(pointerToPreviousByte < pointerToLastByte,
   922 
   923             Panic(EPanicBadPointers25));
   924 
   925         TUint currentByte = *(pointerToPreviousByte + 1);
   926 
   927         if (currentByte != KSingleShift3)
   928 
   929             {
   930 
   931             break;
   932 
   933             }
   934 
   935         __ASSERT_DEBUG(pointerToPreviousByte < pointerToLastByte,
   936 
   937             Panic(EPanicBadPointers26));
   938 
   939         if (pointerToLastByte - pointerToPreviousByte < 3)
   940 
   941             {
   942 
   943             break;
   944 
   945             }
   946 
   947         ++pointerToPreviousByte;
   948 
   949         currentByte = *(pointerToPreviousByte + 1);
   950 
   951         if (currentByte < 0xa0)
   952 
   953             {
   954 
   955             return CCnvCharacterSetConverter::EErrorIllFormedInput;
   956 
   957             }
   958 
   959         __ASSERT_DEBUG(pointerToPreviousByte < pointerToLastByte,
   960 
   961             Panic(EPanicBadPointers27));
   962 
   963         ++pointerToPreviousByte;
   964 
   965         currentByte = *(pointerToPreviousByte + 1);
   966 
   967         if (currentByte < 0xa0)
   968 
   969             {
   970 
   971             return CCnvCharacterSetConverter::EErrorIllFormedInput;
   972 
   973             }
   974 
   975         __ASSERT_DEBUG(pointerToPreviousByte < pointerToLastByte,
   976 
   977             Panic(EPanicBadPointers28));
   978 
   979         ++pointerToPreviousByte;
   980 
   981         __ASSERT_DEBUG(pointerToPreviousByte <= pointerToLastByte,
   982 
   983             Panic(EPanicBadPointers29));
   984 
   985         if (pointerToPreviousByte >= pointerToLastByte)
   986 
   987             {
   988 
   989             break;
   990 
   991             }
   992 
   993         }
   994 
   995     return (pointerToPreviousByte + 1) - aDescriptor.Ptr();
   996 
   997     }
   998 
   999 
  1000 
  1001 // -----------------------------------------------------------------------------
  1002 
  1003 // DummyConvertToIntermediateBufferInPlace
  1004 
  1005 //
  1006 
  1007 // -----------------------------------------------------------------------------
  1008 
  1009 //
  1010 
  1011 LOCAL_C void DummyConvertToIntermediateBufferInPlace(TDes8&)
  1012 
  1013     {
  1014 
  1015     }
  1016 
  1017 
  1018 
  1019 // -----------------------------------------------------------------------------
  1020 
  1021 // ConvertToJisX0208FromEucJpPackedInPlace
  1022 
  1023 // Converts from EUC-JP to JIS code
  1024 
  1025 // -----------------------------------------------------------------------------
  1026 
  1027 //
  1028 
  1029 LOCAL_C void ConvertToJisX0208FromEucJpPackedInPlace(TDes8& aDescriptor)
  1030 
  1031     {
  1032 
  1033     const TInt descriptorLength = aDescriptor.Length();
  1034 
  1035     __ASSERT_DEBUG(descriptorLength > 0, Panic(EPanicNothingToConvert4));
  1036 
  1037     __ASSERT_DEBUG(descriptorLength % 2 == 0, Panic(EPanicOddNumberOfBytes5));
  1038 
  1039     TUint8* pointerToCurrentByte = CONST_CAST(TUint8*, aDescriptor.Ptr());
  1040 
  1041     const TUint8* const pointerToLastByte =
  1042 
  1043         pointerToCurrentByte + (descriptorLength - 1);
  1044 
  1045     FOREVER
  1046 
  1047         {
  1048 
  1049         const TUint currentByte = *pointerToCurrentByte;
  1050 
  1051         __ASSERT_DEBUG(currentByte & 0x80, Panic(EPanicBadHighBit4));
  1052 
  1053         *pointerToCurrentByte = STATIC_CAST(TUint8, currentByte & ~0x80);
  1054 
  1055         __ASSERT_DEBUG(pointerToCurrentByte <= pointerToLastByte,
  1056 
  1057             Panic(EPanicBadPointers30));
  1058 
  1059         if (pointerToCurrentByte >= pointerToLastByte)
  1060 
  1061             {
  1062 
  1063             break;
  1064 
  1065             }
  1066 
  1067         ++pointerToCurrentByte;
  1068 
  1069         }
  1070 
  1071     }
  1072 
  1073 
  1074 
  1075 // -----------------------------------------------------------------------------
  1076 
  1077 // ConvertToHalfWidthKatakana8FromEucJpPackedInPlace
  1078 
  1079 // Converts from EUC-JP to half width Katakana
  1080 
  1081 // -----------------------------------------------------------------------------
  1082 
  1083 //
  1084 
  1085 LOCAL_C void ConvertToHalfWidthKatakana8FromEucJpPackedInPlace(
  1086 
  1087         TDes8& aDescriptor)
  1088 
  1089     {
  1090 
  1091     const TInt descriptorLength = aDescriptor.Length();
  1092 
  1093     __ASSERT_DEBUG(descriptorLength > 0, Panic(EPanicNothingToConvert5));
  1094 
  1095     __ASSERT_DEBUG(descriptorLength % 2 == 0, Panic(EPanicOddNumberOfBytes6));
  1096 
  1097     TUint8* pointerToTargetByte = CONST_CAST(TUint8*, aDescriptor.Ptr());
  1098 
  1099     const TUint8* pointerToSourceByte = pointerToTargetByte;
  1100 
  1101     const TUint8* const pointerToLastByte = pointerToSourceByte +
  1102 
  1103         (descriptorLength - 1);
  1104 
  1105     FOREVER
  1106 
  1107         {
  1108 
  1109         __ASSERT_DEBUG(*pointerToSourceByte == KSingleShift2,
  1110 
  1111             Panic(EPanicSingleShift2Expected));
  1112 
  1113         __ASSERT_DEBUG(pointerToSourceByte < pointerToLastByte,
  1114 
  1115             Panic(EPanicBadPointers31));
  1116 
  1117         ++pointerToSourceByte;
  1118 
  1119         const TUint sourceByte = *pointerToSourceByte;
  1120 
  1121         __ASSERT_DEBUG(sourceByte & 0x80, Panic(EPanicBadHighBit5));
  1122 
  1123         *pointerToTargetByte = STATIC_CAST(TUint8, sourceByte);
  1124 
  1125         __ASSERT_DEBUG(pointerToSourceByte <= pointerToLastByte,
  1126 
  1127             Panic(EPanicBadPointers32));
  1128 
  1129         if (pointerToSourceByte >= pointerToLastByte)
  1130 
  1131             {
  1132 
  1133             break;
  1134 
  1135             }
  1136 
  1137         ++pointerToSourceByte;
  1138 
  1139         ++pointerToTargetByte;
  1140 
  1141         }
  1142 
  1143     aDescriptor.SetLength(descriptorLength / 2);
  1144 
  1145     }
  1146 
  1147 
  1148 
  1149 // -----------------------------------------------------------------------------
  1150 
  1151 // ConvertToJisX0212FromEucJpPackedInPlace
  1152 
  1153 // Converts from EUC-JP to JIS
  1154 
  1155 // -----------------------------------------------------------------------------
  1156 
  1157 //
  1158 
  1159 LOCAL_C void ConvertToJisX0212FromEucJpPackedInPlace(TDes8& aDescriptor)
  1160 
  1161     {
  1162 
  1163     const TInt descriptorLength = aDescriptor.Length();
  1164 
  1165     __ASSERT_DEBUG(descriptorLength > 0, Panic(EPanicNothingToConvert6));
  1166 
  1167     __ASSERT_DEBUG(descriptorLength % 3 == 0,
  1168 
  1169         Panic(EPanicNumberOfBytesIsNotMultipleOfThree2));
  1170 
  1171     TUint8* pointerToTargetByte = CONST_CAST(TUint8*, aDescriptor.Ptr());
  1172 
  1173     const TUint8* pointerToSourceByte = pointerToTargetByte;
  1174 
  1175     const TUint8* const pointerToLastByte =
  1176 
  1177         pointerToSourceByte + (descriptorLength - 1);
  1178 
  1179     FOREVER
  1180 
  1181         {
  1182 
  1183         __ASSERT_DEBUG(*pointerToSourceByte == KSingleShift3,
  1184 
  1185             Panic(EPanicSingleShift3Expected));
  1186 
  1187         __ASSERT_DEBUG(pointerToSourceByte < pointerToLastByte,
  1188 
  1189             Panic(EPanicBadPointers33));
  1190 
  1191         ++pointerToSourceByte;
  1192 
  1193         TUint sourceByte = *pointerToSourceByte;
  1194 
  1195         __ASSERT_DEBUG(sourceByte & 0x80, Panic(EPanicBadHighBit6));
  1196 
  1197         *pointerToTargetByte = STATIC_CAST(TUint8, sourceByte & ~0x80);
  1198 
  1199         __ASSERT_DEBUG(pointerToSourceByte<pointerToLastByte,
  1200 
  1201             Panic(EPanicBadPointers34));
  1202 
  1203         ++pointerToSourceByte;
  1204 
  1205         sourceByte = *pointerToSourceByte;
  1206 
  1207         __ASSERT_DEBUG(sourceByte&0x80, Panic(EPanicBadHighBit7));
  1208 
  1209         __ASSERT_DEBUG(pointerToTargetByte < pointerToLastByte,
  1210 
  1211             Panic(EPanicBadPointers35));
  1212 
  1213         ++pointerToTargetByte;
  1214 
  1215         *pointerToTargetByte = STATIC_CAST(TUint8, sourceByte & ~0x80);
  1216 
  1217         __ASSERT_DEBUG(pointerToSourceByte <= pointerToLastByte,
  1218 
  1219             Panic(EPanicBadPointers36));
  1220 
  1221         if (pointerToSourceByte >= pointerToLastByte)
  1222 
  1223             {
  1224 
  1225             break;
  1226 
  1227             }
  1228 
  1229         ++pointerToSourceByte;
  1230 
  1231         ++pointerToTargetByte;
  1232 
  1233         }
  1234 
  1235     aDescriptor.SetLength((descriptorLength / 3) * 2);
  1236 
  1237     }
  1238 
  1239 
  1240 
  1241 // -----------------------------------------------------------------------------
  1242 
  1243 // NumberOfBytesAbleToConvertToPictograph
  1244 
  1245 //
  1246 
  1247 // -----------------------------------------------------------------------------
  1248 
  1249 //
  1250 
  1251 LOCAL_C TInt NumberOfBytesAbleToConvertToPictograph1(const TDesC8& aDescriptor)
  1252 
  1253     {
  1254 
  1255     const TUint8* pointerToPreviousByte = aDescriptor.Ptr() - 1;
  1256 
  1257     const TUint8* const pointerToLastByte =
  1258 
  1259         pointerToPreviousByte + aDescriptor.Length();
  1260 
  1261     if (pointerToPreviousByte == pointerToLastByte)
  1262 
  1263         {
  1264 
  1265         return 0;
  1266 
  1267         }
  1268 
  1269     for (;pointerToPreviousByte < pointerToLastByte;)
  1270 
  1271         {
  1272 
  1273         __ASSERT_DEBUG(pointerToPreviousByte < pointerToLastByte,
  1274 
  1275             Panic(EPanicBadPointers14));
  1276 
  1277         TUint currentByte = *(pointerToPreviousByte + 1);
  1278 
  1279         const TUint nextByte = *(pointerToPreviousByte + 2);
  1280 
  1281         if (((currentByte < KFirstByteRangeFirstBlockStart) ||
  1282 
  1283              (currentByte > KFirstByteRangeFirstBlockEnd)) ||
  1284 
  1285             ((nextByte < KSecondByteRangeSecondBlockStart) ||
  1286 
  1287              (nextByte > KSecondByteRangeSecondBlockEnd)))
  1288 
  1289             {
  1290 
  1291             break;
  1292 
  1293             }
  1294 
  1295         __ASSERT_DEBUG(pointerToPreviousByte < pointerToLastByte,
  1296 
  1297             Panic(EPanicBadPointers15));
  1298 
  1299         pointerToPreviousByte += 2;
  1300 
  1301         }
  1302 
  1303     return (pointerToPreviousByte + 1) - aDescriptor.Ptr();
  1304 
  1305     }
  1306 
  1307 
  1308 
  1309 // -----------------------------------------------------------------------------
  1310 
  1311 // NumberOfBytesAbleToConvertToPictograph
  1312 
  1313 //
  1314 
  1315 // -----------------------------------------------------------------------------
  1316 
  1317 //
  1318 
  1319 LOCAL_C TInt NumberOfBytesAbleToConvertToPictograph2(const TDesC8& aDescriptor)
  1320 
  1321     {
  1322 
  1323     const TUint8* pointerToPreviousByte = aDescriptor.Ptr() - 1;
  1324 
  1325     const TUint8* const pointerToLastByte =
  1326 
  1327         pointerToPreviousByte + aDescriptor.Length();
  1328 
  1329     if (pointerToPreviousByte == pointerToLastByte)
  1330 
  1331         {
  1332 
  1333         return 0;
  1334 
  1335         }
  1336 
  1337     for (;pointerToPreviousByte < pointerToLastByte;)
  1338 
  1339         {
  1340 
  1341         __ASSERT_DEBUG(pointerToPreviousByte < pointerToLastByte,
  1342 
  1343             Panic(EPanicBadPointers14));
  1344 
  1345         TUint currentByte = *(pointerToPreviousByte + 1);
  1346 
  1347         if (currentByte == KSingleShift3)
  1348 
  1349             {
  1350 
  1351             pointerToPreviousByte++;
  1352 
  1353             currentByte = *(pointerToPreviousByte + 1);
  1354 
  1355             }
  1356 
  1357         else
  1358 
  1359             {
  1360 
  1361             break;
  1362 
  1363             }
  1364 
  1365         if (currentByte < 0xa0)
  1366 
  1367             {
  1368 
  1369             return CCnvCharacterSetConverter::EErrorIllFormedInput;
  1370 
  1371             }
  1372 
  1373         const TUint nextByte = *(pointerToPreviousByte + 2);
  1374 
  1375         if (nextByte < 0xa0)
  1376 
  1377             {
  1378 
  1379             return CCnvCharacterSetConverter::EErrorIllFormedInput;
  1380 
  1381             }
  1382 
  1383         if (((currentByte < KFirstByteRangeFirstBlockStart) ||
  1384 
  1385              (currentByte > KFirstByteRangeFirstBlockEnd)) ||
  1386 
  1387             ((nextByte < KSecondByteRangeSecondBlockStart) ||
  1388 
  1389              (nextByte > KSecondByteRangeSecondBlockEnd)))
  1390 
  1391             {
  1392 
  1393             // return the previous byte to the beginning of loop.
  1394 
  1395             pointerToPreviousByte--;
  1396 
  1397             break;
  1398 
  1399             }
  1400 
  1401         __ASSERT_DEBUG(pointerToPreviousByte < pointerToLastByte,
  1402 
  1403             Panic(EPanicBadPointers15));
  1404 
  1405         pointerToPreviousByte += 2;
  1406 
  1407         }
  1408 
  1409     return (pointerToPreviousByte + 1) - aDescriptor.Ptr();
  1410 
  1411     }
  1412 
  1413 
  1414 
  1415 // -----------------------------------------------------------------------------
  1416 
  1417 // ConvertFromPictogaphToEucJpDirectmapInPlace
  1418 
  1419 // Converts from EucJp packed Pictograph to Unicode
  1420 
  1421 // -----------------------------------------------------------------------------
  1422 
  1423 //
  1424 
  1425 LOCAL_C void ConvertFromPictogaphToEucJpDirectmapInPlace(
  1426 
  1427         TInt aStartPositionInDescriptor, TDes8& aDescriptor,
  1428 
  1429         TInt& aNumberOfCharactersThatDroppedOut)
  1430 
  1431     {
  1432 
  1433     TInt descriptorLength=aDescriptor.Length();
  1434 
  1435     __ASSERT_DEBUG(descriptorLength > aStartPositionInDescriptor,
  1436 
  1437         Panic(EPanicNothingToConvert3));
  1438 
  1439     __ASSERT_DEBUG((descriptorLength - aStartPositionInDescriptor) % 2 == 0,
  1440 
  1441         Panic(EPanicOddNumberOfBytes3));
  1442 
  1443     TInt bytesPerCharacter = 2;
  1444 
  1445     if (aDescriptor[0] >= KEUCJPSecondBlockStart)
  1446 
  1447         {
  1448 
  1449         bytesPerCharacter = 3;
  1450 
  1451         }
  1452 
  1453 
  1454 
  1455     aNumberOfCharactersThatDroppedOut =
  1456 
  1457         Max(0, ((descriptorLength - aStartPositionInDescriptor) / 2) -
  1458 
  1459         ((aDescriptor.MaxLength() - aStartPositionInDescriptor) /
  1460 
  1461         bytesPerCharacter));
  1462 
  1463     descriptorLength -= aNumberOfCharactersThatDroppedOut * 2;
  1464 
  1465     __ASSERT_DEBUG(descriptorLength >= aStartPositionInDescriptor,
  1466 
  1467         Panic(EPanicBadCalculation2));
  1468 
  1469     if (descriptorLength <= aStartPositionInDescriptor)
  1470 
  1471         {
  1472 
  1473         aDescriptor.SetLength(descriptorLength);
  1474 
  1475         }
  1476 
  1477     else
  1478 
  1479         {
  1480 
  1481         __ASSERT_DEBUG((descriptorLength - aStartPositionInDescriptor) % 2 == 0,
  1482 
  1483             Panic(EPanicOddNumberOfBytes4));
  1484 
  1485         // pointerToTargetByte is initialized properly when descriptorLength
  1486 
  1487         // has been offset to the actual final length of aDescriptor
  1488 
  1489         TUint8* pointerToTargetByte = CONST_CAST(TUint8*, aDescriptor.Ptr());
  1490 
  1491         const TUint8* const pointerToFirstByte =
  1492 
  1493             pointerToTargetByte + aStartPositionInDescriptor;
  1494 
  1495         const TUint8* pointerToSourceByte =
  1496 
  1497             pointerToTargetByte + (descriptorLength - 1);
  1498 
  1499         descriptorLength = (((descriptorLength - aStartPositionInDescriptor)
  1500 
  1501             * bytesPerCharacter) / 2) + aStartPositionInDescriptor;
  1502 
  1503         __ASSERT_DEBUG((descriptorLength - aStartPositionInDescriptor) %
  1504 
  1505             bytesPerCharacter == 0, Panic(EPanicNumberOfBytesIsNotMultipleOfThree1));
  1506 
  1507         aDescriptor.SetLength(descriptorLength);
  1508 
  1509         // pointerToTargetByte is is initialized properly here
  1510 
  1511         pointerToTargetByte += descriptorLength - 1;
  1512 
  1513         for (;pointerToTargetByte > pointerToFirstByte; )
  1514 
  1515             {
  1516 
  1517             TInt secondByte = *pointerToSourceByte;
  1518 
  1519             TInt firstByte = *(pointerToSourceByte - 1);
  1520 
  1521 
  1522 
  1523             if (bytesPerCharacter == 3)
  1524 
  1525                 {
  1526 
  1527                 firstByte = (firstByte - KEUCJPSecondBlockStart) * 2 +
  1528 
  1529                     KFirstByteRangeFirstBlockStart;
  1530 
  1531                 }
  1532 
  1533             else
  1534 
  1535                 {
  1536 
  1537                 firstByte = (firstByte - KPictographStartFirstByte) * 2 +
  1538 
  1539                     KFirstByteRangeFirstBlockStart;
  1540 
  1541                 }
  1542 
  1543             if (static_cast<TInt>(KEUCJPBlockSize + KPictographStartSecondByte + 1)
  1544 
  1545                  < secondByte)
  1546 
  1547                 {
  1548 
  1549                 if (secondByte > KShiftJisTrailByteIllegal)
  1550 
  1551                     secondByte -= 1;
  1552 
  1553                 secondByte = secondByte -(KPictographStartSecondByte +
  1554 
  1555                     KEUCJPBlockSize + 1) + KSecondByteRangeSecondBlockStart;
  1556 
  1557                 firstByte++;
  1558 
  1559                 }
  1560 
  1561             else
  1562 
  1563                 {
  1564 
  1565                 if (secondByte > KShiftJisTrailByteIllegal)
  1566 
  1567                     secondByte -= 1;
  1568 
  1569                 secondByte += KSecondByteRangeSecondBlockStart - KPictographStartSecondByte;
  1570 
  1571                 }
  1572 
  1573             *pointerToTargetByte = static_cast<TUint8>(secondByte);
  1574 
  1575             --pointerToTargetByte;
  1576 
  1577             *pointerToTargetByte = static_cast<TUint8>(firstByte);
  1578 
  1579             if (bytesPerCharacter == 3)
  1580 
  1581                 {
  1582 
  1583                 --pointerToTargetByte;
  1584 
  1585                 *pointerToTargetByte = KSingleShift3;
  1586 
  1587                 }
  1588 
  1589             __ASSERT_DEBUG(pointerToTargetByte >= pointerToFirstByte,
  1590 
  1591                 Panic(EPanicBadPointers10));
  1592 
  1593             --pointerToTargetByte;
  1594 
  1595             pointerToSourceByte -= 2;
  1596 
  1597             }
  1598 
  1599         }
  1600 
  1601     }
  1602 
  1603 
  1604 
  1605 // -----------------------------------------------------------------------------
  1606 
  1607 // ConvertToPictographFromEucJpPackedInPlace1
  1608 
  1609 // Converts from EucJp packed Pictograph to Unicode
  1610 
  1611 // -----------------------------------------------------------------------------
  1612 
  1613 //
  1614 
  1615 LOCAL_C void ConvertToPictographFromEucJpPackedInPlace(TDes8& aDescriptor)
  1616 
  1617     {
  1618 
  1619     const TInt descriptorLength = aDescriptor.Length();
  1620 
  1621     __ASSERT_DEBUG(descriptorLength > 0, Panic(EPanicNothingToConvert6));
  1622 
  1623     TUint8* pointerToTargetByte = CONST_CAST(TUint8*, aDescriptor.Ptr());
  1624 
  1625     const TUint8* pointerToSourceByte = pointerToTargetByte;
  1626 
  1627     const TUint8* const pointerToLastByte =
  1628 
  1629         pointerToSourceByte + (descriptorLength - 1);
  1630 
  1631     TInt bytesPerCharacter = 2;
  1632 
  1633     TInt sjisStartbyte = KPictographStartFirstByte;
  1634 
  1635     if (*pointerToSourceByte == KSingleShift3)
  1636 
  1637         {
  1638 
  1639         ++pointerToSourceByte;
  1640 
  1641         bytesPerCharacter = 3;
  1642 
  1643         sjisStartbyte = KEUCJPSecondBlockStart;
  1644 
  1645         }
  1646 
  1647     for (;pointerToSourceByte < pointerToLastByte; )
  1648 
  1649         {
  1650 
  1651         __ASSERT_DEBUG(pointerToSourceByte < pointerToLastByte,
  1652 
  1653             Panic(EPanicBadPointers33));
  1654 
  1655         TUint firstByte = (*pointerToSourceByte
  1656 
  1657             - KFirstByteRangeFirstBlockStart) / 2 + sjisStartbyte;
  1658 
  1659         TUint secondByte = *(pointerToSourceByte + 1);
  1660 
  1661         if ((*pointerToSourceByte % 2) == 0)
  1662 
  1663             {
  1664 
  1665             secondByte += KPictographStartSecondByte -
  1666 
  1667                 KSecondByteRangeSecondBlockStart + KEUCJPBlockSize + 1;
  1668 
  1669             if (secondByte >= KShiftJisTrailByteIllegal)
  1670 
  1671                 secondByte++;
  1672 
  1673             }
  1674 
  1675         else
  1676 
  1677             {
  1678 
  1679             secondByte += KPictographStartSecondByte - KSecondByteRangeSecondBlockStart;
  1680 
  1681             if (secondByte >= KShiftJisTrailByteIllegal)
  1682 
  1683                 secondByte++;
  1684 
  1685             }
  1686 
  1687         *pointerToTargetByte = static_cast<TUint8>(firstByte);
  1688 
  1689 
  1690 
  1691         __ASSERT_DEBUG(pointerToTargetByte < pointerToLastByte,
  1692 
  1693             Panic(EPanicBadPointers35));
  1694 
  1695         ++pointerToTargetByte;
  1696 
  1697         *pointerToTargetByte = static_cast<TUint8>(secondByte);
  1698 
  1699         __ASSERT_DEBUG(pointerToSourceByte <= pointerToLastByte,
  1700 
  1701             Panic(EPanicBadPointers36));
  1702 
  1703         pointerToSourceByte += 2;
  1704 
  1705         ++pointerToTargetByte;
  1706 
  1707         }
  1708 
  1709     aDescriptor.SetLength((descriptorLength / bytesPerCharacter) * 2);
  1710 
  1711     }
  1712 
  1713 
  1714 
  1715 // New Interface class
  1716 
  1717 class CEucJpDirectmapImplementation : public CCharacterSetConverterPluginInterface
  1718 
  1719 {
  1720 
  1721     public:
  1722 
  1723         virtual const TDesC8& ReplacementForUnconvertibleUnicodeCharacters();
  1724 
  1725 
  1726 
  1727         virtual TInt ConvertFromUnicode(
  1728 
  1729             CCnvCharacterSetConverter::TEndianness aDefaultEndiannessOfForeignCharacters,
  1730 
  1731             const TDesC8& aReplacementForUnconvertibleUnicodeCharacters,
  1732 
  1733             TDes8& aForeign,
  1734 
  1735             const TDesC16& aUnicode,
  1736 
  1737             CCnvCharacterSetConverter::TArrayOfAscendingIndices& aIndicesOfUnconvertibleCharacters );
  1738 
  1739 
  1740 
  1741         virtual TInt ConvertToUnicode(
  1742 
  1743             CCnvCharacterSetConverter::TEndianness aDefaultEndiannessOfForeignCharacters,
  1744 
  1745             TDes16& aUnicode,
  1746 
  1747             const TDesC8& aForeign,
  1748 
  1749             TInt&,
  1750 
  1751             TInt& aNumberOfUnconvertibleCharacters,
  1752 
  1753             TInt& aIndexOfFirstByteOfFirstUnconvertibleCharacter );
  1754 
  1755 
  1756 
  1757         virtual TBool IsInThisCharacterSetL(
  1758 
  1759             TBool& aSetToTrue,
  1760 
  1761             TInt& aConfidenceLevel,
  1762 
  1763             const TDesC8& );
  1764 
  1765 
  1766 
  1767         static CEucJpDirectmapImplementation* NewL();
  1768 
  1769 
  1770 
  1771         virtual ~CEucJpDirectmapImplementation();
  1772 
  1773     private:
  1774 
  1775         CEucJpDirectmapImplementation();
  1776 
  1777 };
  1778 
  1779 
  1780 
  1781 // -----------------------------------------------------------------------------
  1782 
  1783 // ReplacementForUnconvertibleUnicodeCharacters
  1784 
  1785 // Retruns the character to replacement for unconvertible unicode character.
  1786 
  1787 // Returns: '?':
  1788 
  1789 // -----------------------------------------------------------------------------
  1790 
  1791 //
  1792 
  1793 const TDesC8& CEucJpDirectmapImplementation::ReplacementForUnconvertibleUnicodeCharacters()
  1794 
  1795     {
  1796 
  1797     return KLit8EucJpPackedReplacementForUnconvertibleUnicodeCharacters;
  1798 
  1799     }
  1800 
  1801 
  1802 
  1803 // -----------------------------------------------------------------------------
  1804 
  1805 // ConvertFromUnicode
  1806 
  1807 // Converts from Unicode to EUC-JP
  1808 
  1809 // Returns: The number of unconverted characters
  1810 
  1811 // -----------------------------------------------------------------------------
  1812 
  1813 //
  1814 
  1815 TInt CEucJpDirectmapImplementation::ConvertFromUnicode(
  1816 
  1817         CCnvCharacterSetConverter::TEndianness aDefaultEndiannessOfForeignCharacters,
  1818 
  1819         const TDesC8& aReplacementForUnconvertibleUnicodeCharacters,
  1820 
  1821         TDes8& aForeign, const TDesC16& aUnicode,
  1822 
  1823         CCnvCharacterSetConverter::TArrayOfAscendingIndices& aIndicesOfUnconvertibleCharacters)
  1824 
  1825     {
  1826 
  1827     TFixedArray<CnvUtilities::SCharacterSet, 6> characterSets;
  1828 
  1829     characterSets[0].iConversionData = &CnvJisRoman::ConversionData();
  1830 
  1831     characterSets[0].iConvertFromIntermediateBufferInPlace =
  1832 
  1833         DummyConvertFromIntermediateBufferInPlace;
  1834 
  1835     characterSets[0].iEscapeSequence = &KNullDesC8;
  1836 
  1837     characterSets[1].iConversionData = &CnvJisX0208::ConversionData();
  1838 
  1839     characterSets[1].iConvertFromIntermediateBufferInPlace =
  1840 
  1841         ConvertFromJisX0208ToEucJpPackedInPlace;
  1842 
  1843     characterSets[1].iEscapeSequence = &KNullDesC8;
  1844 
  1845     characterSets[2].iConversionData = &CnvHalfWidthKatakana8::ConversionData();
  1846 
  1847     characterSets[2].iConvertFromIntermediateBufferInPlace =
  1848 
  1849         ConvertFromHalfWidthKatakana8ToEucJpPackedInPlace;
  1850 
  1851     characterSets[2].iEscapeSequence = &KNullDesC8;
  1852 
  1853     characterSets[3].iConversionData = &CnvJisX0212::ConversionData();
  1854 
  1855     characterSets[3].iConvertFromIntermediateBufferInPlace =
  1856 
  1857         ConvertFromJisX0212ToEucJpPackedInPlace;
  1858 
  1859     characterSets[3].iEscapeSequence = &KNullDesC8;
  1860 
  1861     characterSets[4].iConversionData = &CnvShiftJisDirectmap::ConversionData();
  1862 
  1863     characterSets[4].iConvertFromIntermediateBufferInPlace =
  1864 
  1865         ConvertFromPictogaphToEucJpDirectmapInPlace;
  1866 
  1867     characterSets[4].iEscapeSequence = &KNullDesC8;
  1868 
  1869     characterSets[5].iConversionData = &CnvShiftJisDirectmap::ConversionData();
  1870 
  1871     characterSets[5].iConvertFromIntermediateBufferInPlace =
  1872 
  1873         ConvertFromPictogaphToEucJpDirectmapInPlace;
  1874 
  1875     characterSets[5].iEscapeSequence = &KNullDesC8;
  1876 
  1877 
  1878 
  1879     TInt unconvert = CnvUtilities::ConvertFromUnicode(
  1880 
  1881         aDefaultEndiannessOfForeignCharacters,
  1882 
  1883         aReplacementForUnconvertibleUnicodeCharacters,
  1884 
  1885         aForeign, aUnicode, aIndicesOfUnconvertibleCharacters,
  1886 
  1887         characterSets.Array());
  1888 
  1889 
  1890 
  1891     return unconvert;
  1892 
  1893     }
  1894 
  1895 
  1896 
  1897 // -----------------------------------------------------------------------------
  1898 
  1899 // ConvertToUnicode
  1900 
  1901 // Converts from EUC-JP to Unicode.
  1902 
  1903 // Returns: The number of unconverted bytes
  1904 
  1905 // -----------------------------------------------------------------------------
  1906 
  1907 //
  1908 
  1909 TInt CEucJpDirectmapImplementation::ConvertToUnicode(
  1910 
  1911         CCnvCharacterSetConverter::TEndianness aDefaultEndiannessOfForeignCharacters,
  1912 
  1913         TDes16& aUnicode, const TDesC8& aForeign, TInt&,
  1914 
  1915         TInt& aNumberOfUnconvertibleCharacters,
  1916 
  1917         TInt& aIndexOfFirstByteOfFirstUnconvertibleCharacter)
  1918 
  1919     {
  1920 
  1921     TFixedArray<CnvUtilities::SMethod, 6> methods;
  1922 
  1923 
  1924 
  1925     methods[0].iNumberOfBytesAbleToConvert =
  1926 
  1927         NumberOfBytesAbleToConvertToPictograph1;
  1928 
  1929     methods[0].iConvertToIntermediateBufferInPlace =
  1930 
  1931         ConvertToPictographFromEucJpPackedInPlace;
  1932 
  1933     methods[0].iConversionData = &CnvShiftJisDirectmap::ConversionData();
  1934 
  1935     methods[0].iNumberOfBytesPerCharacter = 2;
  1936 
  1937     methods[0].iNumberOfCoreBytesPerCharacter = 2;
  1938 
  1939     methods[1].iNumberOfBytesAbleToConvert =
  1940 
  1941         NumberOfBytesAbleToConvertToPictograph2;
  1942 
  1943     methods[1].iConvertToIntermediateBufferInPlace =
  1944 
  1945         ConvertToPictographFromEucJpPackedInPlace;
  1946 
  1947     methods[1].iConversionData = &CnvShiftJisDirectmap::ConversionData();
  1948 
  1949     methods[1].iNumberOfBytesPerCharacter = 3;
  1950 
  1951     methods[1].iNumberOfCoreBytesPerCharacter = 2;
  1952 
  1953 
  1954 
  1955     methods[2].iNumberOfBytesAbleToConvert = NumberOfBytesAbleToConvertToJisRoman;
  1956 
  1957     methods[2].iConvertToIntermediateBufferInPlace =
  1958 
  1959         DummyConvertToIntermediateBufferInPlace;
  1960 
  1961     methods[2].iConversionData = &CnvJisRoman::ConversionData();
  1962 
  1963     methods[2].iNumberOfBytesPerCharacter = 1;
  1964 
  1965     methods[2].iNumberOfCoreBytesPerCharacter = 1;
  1966 
  1967     methods[3].iNumberOfBytesAbleToConvert = NumberOfBytesAbleToConvertToJisX0208;
  1968 
  1969     methods[3].iConvertToIntermediateBufferInPlace =
  1970 
  1971         ConvertToJisX0208FromEucJpPackedInPlace;
  1972 
  1973     methods[3].iConversionData = &CnvJisX0208::ConversionData();
  1974 
  1975     methods[3].iNumberOfBytesPerCharacter = 2;
  1976 
  1977     methods[3].iNumberOfCoreBytesPerCharacter = 2;
  1978 
  1979     methods[4].iNumberOfBytesAbleToConvert =
  1980 
  1981         NumberOfBytesAbleToConvertToHalfWidthKatakana8;
  1982 
  1983     methods[4].iConvertToIntermediateBufferInPlace =
  1984 
  1985         ConvertToHalfWidthKatakana8FromEucJpPackedInPlace;
  1986 
  1987     methods[4].iConversionData = &CnvHalfWidthKatakana8::ConversionData();
  1988 
  1989     methods[4].iNumberOfBytesPerCharacter = 2;
  1990 
  1991     methods[4].iNumberOfCoreBytesPerCharacter = 1;
  1992 
  1993     methods[5].iNumberOfBytesAbleToConvert =
  1994 
  1995         NumberOfBytesAbleToConvertToJisX0212;
  1996 
  1997     methods[5].iConvertToIntermediateBufferInPlace =
  1998 
  1999         ConvertToJisX0212FromEucJpPackedInPlace;
  2000 
  2001     methods[5].iConversionData = &CnvJisX0212::ConversionData();
  2002 
  2003     methods[5].iNumberOfBytesPerCharacter = 3;
  2004 
  2005     methods[5].iNumberOfCoreBytesPerCharacter = 2;
  2006 
  2007 
  2008 
  2009     TInt unconvert = CnvUtilities::ConvertToUnicodeFromHeterogeneousForeign(
  2010 
  2011         aDefaultEndiannessOfForeignCharacters, aUnicode, aForeign,
  2012 
  2013         aNumberOfUnconvertibleCharacters,
  2014 
  2015         aIndexOfFirstByteOfFirstUnconvertibleCharacter, methods.Array());
  2016 
  2017 
  2018 
  2019     // The following is specific impelementation for brower.
  2020 
  2021     // If brower app calls this API, the yen sign code(0xA5)
  2022 
  2023     // must be converted to backslash code(0x5C).
  2024 
  2025     // Becasue Javascript supports backslash code ony.
  2026 
  2027     TBool browserProcess = (RProcess().SecureId().iId == KBrowserSecureId);
  2028 
  2029     if (browserProcess && aUnicode.Length() > 0)
  2030 
  2031         {
  2032 
  2033         const TUint16* pB = aUnicode.Ptr();
  2034 
  2035         const TUint16* pbase = pB;
  2036 
  2037         const TUint16* pE = pB + aUnicode.Length() -1;
  2038 
  2039         while (pE>=pbase)
  2040 
  2041             {
  2042 
  2043             if (*pbase == KCharacterCodeForYenSign)
  2044 
  2045                 {
  2046 
  2047                 aUnicode[pbase - pB] = KCharacterCodeForBackSlash;
  2048 
  2049                 }
  2050 
  2051             pbase++;
  2052 
  2053             }
  2054 
  2055         }
  2056 
  2057 
  2058 
  2059     return unconvert;
  2060 
  2061     }
  2062 
  2063 
  2064 
  2065 // -----------------------------------------------------------------------------
  2066 
  2067 // IsInThisCharacterSetL
  2068 
  2069 // Detects whether the text is the character code or not.
  2070 
  2071 // Returns: ETrue:
  2072 
  2073 // -----------------------------------------------------------------------------
  2074 
  2075 //
  2076 
  2077 TBool CEucJpDirectmapImplementation::IsInThisCharacterSetL(TBool& /*aSetToTrue*/, TInt& /*aConfidenceLevel*/,
  2078 
  2079         const TDesC8& /*aSample*/)
  2080 
  2081     {
  2082 
  2083     return EFalse;
  2084 
  2085     }
  2086 
  2087 
  2088 
  2089 CEucJpDirectmapImplementation* CEucJpDirectmapImplementation::NewL()
  2090 
  2091     {
  2092 
  2093     CEucJpDirectmapImplementation* self = new(ELeave) CEucJpDirectmapImplementation;
  2094 
  2095     return self;
  2096 
  2097     }
  2098 
  2099 
  2100 
  2101 CEucJpDirectmapImplementation::CEucJpDirectmapImplementation()
  2102 
  2103     {
  2104 
  2105     //default constructor.. do nothing
  2106 
  2107     }
  2108 
  2109 
  2110 
  2111 CEucJpDirectmapImplementation::~CEucJpDirectmapImplementation()
  2112 
  2113     {
  2114 
  2115     //default destructor .. do nothing
  2116 
  2117     }
  2118 
  2119 
  2120 
  2121 // ECOM CREATION FUNCTION
  2122 
  2123 const TImplementationProxy ImplementationTable[] =
  2124 
  2125     {
  2126 
  2127     // Note: This is the same UID as defined in old mmp-file
  2128 
  2129     // Used also in 12221212.rss ( implementation_uid )
  2130 
  2131     IMPLEMENTATION_PROXY_ENTRY( 0x101F86A6, CEucJpDirectmapImplementation::NewL )
  2132 
  2133     };
  2134 
  2135 
  2136 
  2137 EXPORT_C const TImplementationProxy* ImplementationGroupProxy( TInt& aTableCount )
  2138 
  2139     {
  2140 
  2141     aTableCount = sizeof( ImplementationTable ) / sizeof(TImplementationProxy);
  2142 
  2143     return ImplementationTable;
  2144 
  2145     }
  2146 
  2147 
  2148 
  2149 // End of file
  2150