2001-09-20 00:02:59 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
2001-02-06 23:54:12 +00:00
|
|
|
*
|
2001-09-20 00:02:59 +00:00
|
|
|
* The contents of this file are subject to the Netscape Public
|
2001-02-06 23:54:12 +00:00
|
|
|
* 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 00:02:59 +00:00
|
|
|
* the License at http://www.mozilla.org/NPL/
|
2001-02-06 23:54:12 +00: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.
|
|
|
|
*
|
|
|
|
* The Original Code is Mozilla Communicator client code.
|
|
|
|
*
|
2001-09-20 00:02:59 +00:00
|
|
|
* The Initial Developer of the Original Code is Netscape Communications
|
|
|
|
* Corporation. Portions created by Netscape are
|
2001-02-06 23:54:12 +00:00
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
|
|
|
*
|
2001-09-20 00:02:59 +00:00
|
|
|
* Contributor(s):
|
|
|
|
*/
|
2001-02-06 23:54:12 +00:00
|
|
|
|
|
|
|
#include "nsUCvMinSupport.h"
|
|
|
|
#include "nsUnicodeToMacRoman.h"
|
|
|
|
|
|
|
|
NS_IMETHODIMP NS_NewUnicodeToMacRoman(nsISupports* aOuter,
|
|
|
|
const nsIID& aIID,
|
|
|
|
void** aResult)
|
|
|
|
{
|
|
|
|
if (!aResult) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
|
|
|
if (aOuter) {
|
|
|
|
*aResult = nsnull;
|
|
|
|
return NS_ERROR_NO_AGGREGATION;
|
|
|
|
}
|
|
|
|
nsUnicodeToMacRoman * inst = new nsUnicodeToMacRoman();
|
|
|
|
if (!inst) {
|
|
|
|
*aResult = nsnull;
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
nsresult res = inst->QueryInterface(aIID, aResult);
|
|
|
|
if (NS_FAILED(res)) {
|
|
|
|
*aResult = nsnull;
|
|
|
|
delete inst;
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// Global functions and data [declaration]
|
|
|
|
|
2001-05-17 00:02:21 +00:00
|
|
|
static const PRUint16 g_MacRomanMappingTable[] = {
|
2001-02-06 23:54:12 +00:00
|
|
|
#include "macroman.uf"
|
|
|
|
};
|
|
|
|
|
2001-05-17 00:02:21 +00:00
|
|
|
static const PRInt16 g_MacRomanShiftTable[] = {
|
2001-02-06 23:54:12 +00:00
|
|
|
1, u1ByteCharset ,
|
|
|
|
ShiftCell(0,0,0,0,0,0,0,0)
|
|
|
|
};
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// Class nsUnicodeToMacRoman [implementation]
|
|
|
|
|
|
|
|
nsUnicodeToMacRoman::nsUnicodeToMacRoman()
|
|
|
|
: nsTableEncoderSupport((uShiftTable*) &g_MacRomanShiftTable,
|
|
|
|
(uMappingTable*) &g_MacRomanMappingTable)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// Subclassing of nsTableEncoderSupport class [implementation]
|
|
|
|
|
|
|
|
NS_IMETHODIMP nsUnicodeToMacRoman::GetMaxLength(const PRUnichar * aSrc,
|
|
|
|
PRInt32 aSrcLength,
|
|
|
|
PRInt32 * aDestLength)
|
|
|
|
{
|
|
|
|
*aDestLength = aSrcLength;
|
|
|
|
return NS_OK_UENC_EXACTLENGTH;
|
|
|
|
}
|