зеркало из https://github.com/mozilla/gecko-dev.git
56 строки
1.6 KiB
C++
56 строки
1.6 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#include "nsJohabToUnicode.h"
|
|
#include "nsUCvKODll.h"
|
|
#include "nsUCConstructors.h"
|
|
|
|
//----------------------------------------------------------------------
|
|
// Global functions and data [declaration]
|
|
|
|
static const uScanClassID g_JOHABScanClassIDs[] = {
|
|
u1ByteCharset,
|
|
uJohabHangulCharset,
|
|
u2BytesCharset,
|
|
uJohabSymbolCharset,
|
|
uJohabSymbolCharset
|
|
};
|
|
|
|
static const uRange g_JOHABRanges[] = {
|
|
{ 0x00, 0x7E },
|
|
{ 0x84, 0xD3 },
|
|
{ 0x84, 0xD3 },
|
|
{ 0xD8, 0xDE },
|
|
{ 0xE0, 0xF9 }
|
|
};
|
|
|
|
static const uint16_t g_utJohabJamoMapping[] ={
|
|
#include "johabjamo.ut"
|
|
};
|
|
|
|
static const uint16_t *g_JOHABMappingTableSet [] ={
|
|
g_ucvko_AsciiMapping,
|
|
g_HangulNullMapping,
|
|
g_utJohabJamoMapping,
|
|
g_utKSC5601Mapping,
|
|
g_utKSC5601Mapping
|
|
};
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
// Class nsJohabToUnicode [implementation]
|
|
|
|
nsresult
|
|
nsJohabToUnicodeConstructor(nsISupports *aOuter, REFNSIID aIID,
|
|
void **aResult)
|
|
{
|
|
return CreateMultiTableDecoder(sizeof(g_JOHABRanges) / sizeof(g_JOHABRanges[0]),
|
|
(const uRange*) &g_JOHABRanges,
|
|
(uScanClassID*) &g_JOHABScanClassIDs,
|
|
(uMappingTable**) &g_JOHABMappingTableSet, 1,
|
|
aOuter, aIID, aResult);
|
|
}
|
|
|