intl/uconv/ucvko/nsJohabToUnicode.cpp

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
     2 /* This Source Code Form is subject to the terms of the Mozilla Public
     3  * License, v. 2.0. If a copy of the MPL was not distributed with this
     4  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
     6 #include "nsJohabToUnicode.h"
     7 #include "nsUCvKODll.h"
     8 #include "nsUCConstructors.h"
     9 #include "mozilla/Telemetry.h"
    11 using namespace mozilla;
    13 //----------------------------------------------------------------------
    14 // Global functions and data [declaration]
    16 static const uScanClassID g_JOHABScanClassIDs[] = {
    17   u1ByteCharset,
    18   uJohabHangulCharset,
    19   u2BytesCharset,
    20   uJohabSymbolCharset,
    21   uJohabSymbolCharset
    22 };
    24 static const uRange g_JOHABRanges[] = {
    25   { 0x00, 0x7E },
    26   { 0x84, 0xD3 },
    27   { 0x84, 0xD3 },
    28   { 0xD8, 0xDE },
    29   { 0xE0, 0xF9 }
    30 };
    32 static const uint16_t g_utJohabJamoMapping[] ={   
    33 #include "johabjamo.ut"
    34 };
    36 static const uint16_t *g_JOHABMappingTableSet [] ={
    37   g_ASCIIMappingTable,
    38   g_HangulNullMapping,
    39   g_utJohabJamoMapping,
    40   g_utKSC5601Mapping,
    41   g_utKSC5601Mapping
    42 };
    45 //----------------------------------------------------------------------
    46 // Class nsJohabToUnicode [implementation]
    48 nsresult
    49 nsJohabToUnicodeConstructor(nsISupports *aOuter, REFNSIID aIID,
    50                             void **aResult)
    51 {
    52   Telemetry::Accumulate(Telemetry::DECODER_INSTANTIATED_JOHAB, true);
    53   return CreateMultiTableDecoder(sizeof(g_JOHABRanges) / sizeof(g_JOHABRanges[0]),
    54                                  (const uRange*) &g_JOHABRanges,
    55                                  (uScanClassID*) &g_JOHABScanClassIDs,
    56                                  (uMappingTable**) &g_JOHABMappingTableSet, 1,
    57                                  aOuter, aIID, aResult);
    58 }

mercurial