gecko-dev/intl/uconv/ucvtw/nsUnicodeToBIG5.cpp

72 строки
2.1 KiB
C++
Исходник Обычный вид История

2001-09-20 04:02:59 +04:00
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
1999-05-31 20:17:07 +04:00
*
2001-09-20 04:02:59 +04:00
* The contents of this file are subject to the Netscape Public
* License Version 1.1 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
2001-09-20 04:02:59 +04:00
* the License at http://www.mozilla.org/NPL/
1999-05-31 20:17:07 +04:00
*
* Software distributed under the License is distributed on an "AS
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
* implied. See the License for the specific language governing
* rights and limitations under the License.
1999-05-31 20:17:07 +04:00
*
* The Original Code is Mozilla Communicator client code.
*
2001-09-20 04:02:59 +04:00
* The Initial Developer of the Original Code is Netscape Communications
* Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All
* Rights Reserved.
*
2001-09-20 04:02:59 +04:00
* Contributor(s):
*/
1999-05-31 20:17:07 +04:00
#include "nsUnicodeToBIG5.h"
1999-06-09 03:13:06 +04:00
#include "nsUCvTWDll.h"
1999-05-31 20:17:07 +04:00
//----------------------------------------------------------------------
// Global functions and data [declaration]
static const PRUint16 gAsciiShiftTable[] = {
1999-06-09 01:06:47 +04:00
0, u1ByteCharset,
ShiftCell(0, 0, 0, 0, 0, 0, 0, 0),
};
static const PRUint16 gBig5ShiftTable[] = {
1999-06-09 01:06:47 +04:00
0, u2BytesCharset,
ShiftCell(0, 0, 0, 0, 0, 0, 0, 0),
};
static const PRUint16 *g_Big5MappingTable[2] = {
1999-06-09 03:13:06 +04:00
g_ASCIIMapping,
1999-06-09 01:06:47 +04:00
g_ufBig5Mapping
};
static const PRUint16 *g_Big5ShiftTable[2] = {
1999-06-09 01:06:47 +04:00
gAsciiShiftTable,
gBig5ShiftTable
1999-05-31 20:17:07 +04:00
};
//----------------------------------------------------------------------
// Class nsUnicodeToBIG5 [implementation]
nsUnicodeToBIG5::nsUnicodeToBIG5()
1999-06-09 01:06:47 +04:00
: nsMultiTableEncoderSupport(2,
(uShiftTable**) &g_Big5ShiftTable,
(uMappingTable**) &g_Big5MappingTable)
1999-05-31 20:17:07 +04:00
{
}
//----------------------------------------------------------------------
// Subclassing of nsTableEncoderSupport class [implementation]
NS_IMETHODIMP nsUnicodeToBIG5::GetMaxLength(const PRUnichar * aSrc,
PRInt32 aSrcLength,
PRInt32 * aDestLength)
{
1999-06-09 01:06:47 +04:00
*aDestLength = 2 * aSrcLength;
return NS_OK;
1999-05-31 20:17:07 +04:00
}