2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07:00
|
|
|
/* 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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#include "nsUCConstructors.h"
|
|
|
|
#include "nsT61ToUnicode.h"
|
2013-11-11 07:04:02 -08:00
|
|
|
#include "mozilla/Telemetry.h"
|
|
|
|
|
|
|
|
using namespace mozilla;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// Global functions and data [declaration]
|
|
|
|
|
2010-06-10 11:11:40 -07:00
|
|
|
nsresult
|
2007-03-22 10:30:00 -07:00
|
|
|
nsT61ToUnicodeConstructor(nsISupports *aOuter, REFNSIID aIID,
|
|
|
|
void **aResult)
|
|
|
|
{
|
2013-10-17 16:09:20 -07:00
|
|
|
static const uint16_t g_T61MappingTable[] = {
|
|
|
|
#include "t61.ut"
|
|
|
|
};
|
|
|
|
|
|
|
|
static const int16_t g_T61ShiftInTable[] = {
|
|
|
|
3,
|
|
|
|
ShiftInCell(u1ByteChar, 1, 0x00, 0xBF),
|
|
|
|
ShiftInCell(u1ByteChar, 1, 0xD0, 0xFF),
|
|
|
|
ShiftInCell(u2BytesChar, 2, 0xC0, 0xCF)
|
|
|
|
};
|
|
|
|
|
2013-11-11 07:04:02 -08:00
|
|
|
Telemetry::Accumulate(Telemetry::DECODER_INSTANTIATED_T61, true);
|
2007-03-22 10:30:00 -07:00
|
|
|
return CreateTableDecoder(uMultibytesCharset,
|
|
|
|
(uShiftInTable*) &g_T61ShiftInTable,
|
|
|
|
(uMappingTable*) &g_T61MappingTable, 1,
|
|
|
|
aOuter, aIID, aResult);
|
|
|
|
}
|
|
|
|
|