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-09-06 11:41:00 -07:00
|
|
|
|
|
|
|
#include "nsOS2Uni.h"
|
2007-09-06 11:41:01 -07:00
|
|
|
#include "nsIServiceManager.h"
|
|
|
|
#include "nsIPlatformCharset.h"
|
|
|
|
#include <stdlib.h>
|
2007-09-06 11:41:00 -07:00
|
|
|
|
|
|
|
|
2007-09-06 11:41:01 -07:00
|
|
|
/**********************************************************
|
|
|
|
OS2Uni
|
|
|
|
**********************************************************/
|
|
|
|
nsICharsetConverterManager* OS2Uni::gCharsetManager = nsnull;
|
2007-09-06 11:41:00 -07:00
|
|
|
|
2007-09-06 11:41:01 -07:00
|
|
|
struct ConverterInfo
|
|
|
|
{
|
|
|
|
PRUint16 mCodePage;
|
2009-11-03 13:29:31 -08:00
|
|
|
const char* mConvName;
|
2007-09-06 11:41:01 -07:00
|
|
|
nsIUnicodeEncoder* mEncoder;
|
|
|
|
nsIUnicodeDecoder* mDecoder;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define eCONVERTER_COUNT 17
|
|
|
|
ConverterInfo gConverterInfo[eCONVERTER_COUNT] =
|
|
|
|
{
|
|
|
|
{ 0, "", nsnull, nsnull },
|
|
|
|
{ 1252, "windows-1252", nsnull, nsnull },
|
|
|
|
{ 1208, "UTF-8", nsnull, nsnull },
|
|
|
|
{ 1250, "windows-1250", nsnull, nsnull },
|
|
|
|
{ 1251, "windows-1251", nsnull, nsnull },
|
|
|
|
{ 813, "ISO-8859-7", nsnull, nsnull },
|
|
|
|
{ 1254, "windows-1254", nsnull, nsnull },
|
|
|
|
{ 864, "IBM864", nsnull, nsnull },
|
|
|
|
{ 1257, "windows-1257", nsnull, nsnull },
|
|
|
|
{ 874, "windows-874", nsnull, nsnull },
|
|
|
|
{ 932, "Shift_JIS", nsnull, nsnull },
|
|
|
|
{ 943, "Shift_JIS", nsnull, nsnull },
|
|
|
|
{ 1381, "GB2312", nsnull, nsnull },
|
|
|
|
{ 1386, "GB2312", nsnull, nsnull },
|
|
|
|
{ 949, "x-windows-949", nsnull, nsnull },
|
|
|
|
{ 950, "Big5", nsnull, nsnull },
|
|
|
|
{ 1361, "x-johab", nsnull, nsnull }
|
|
|
|
};
|
|
|
|
|
|
|
|
nsISupports*
|
|
|
|
OS2Uni::GetUconvObject(int aCodePage, ConverterRequest aReq)
|
|
|
|
{
|
|
|
|
if (gCharsetManager == nsnull) {
|
2007-09-06 11:41:04 -07:00
|
|
|
CallGetService(NS_CHARSETCONVERTERMANAGER_CONTRACTID, &gCharsetManager);
|
2007-09-06 11:41:01 -07:00
|
|
|
}
|
2007-09-06 11:41:00 -07:00
|
|
|
|
2007-09-06 11:41:01 -07:00
|
|
|
nsresult rv;
|
|
|
|
nsISupports* uco = nsnull;
|
|
|
|
for (int i = 0; i < eCONVERTER_COUNT; i++) {
|
|
|
|
if (aCodePage == gConverterInfo[i].mCodePage) {
|
|
|
|
if (gConverterInfo[i].mEncoder == nsnull) {
|
|
|
|
const char* convname;
|
|
|
|
nsCAutoString charset;
|
|
|
|
if (aCodePage == 0) {
|
|
|
|
nsCOMPtr<nsIPlatformCharset>
|
|
|
|
plat(do_GetService(NS_PLATFORMCHARSET_CONTRACTID, &rv));
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
plat->GetCharset(kPlatformCharsetSel_FileName, charset);
|
|
|
|
} else {
|
|
|
|
// default to IBM850 if this should fail
|
|
|
|
charset = "IBM850";
|
|
|
|
}
|
|
|
|
convname = charset.get();
|
|
|
|
} else {
|
|
|
|
convname = gConverterInfo[i].mConvName;
|
|
|
|
}
|
|
|
|
rv = gCharsetManager->GetUnicodeEncoderRaw(convname,
|
|
|
|
&gConverterInfo[i].mEncoder);
|
|
|
|
gConverterInfo[i].mEncoder->
|
|
|
|
SetOutputErrorBehavior(nsIUnicodeEncoder::kOnError_Replace,
|
|
|
|
nsnull, '?');
|
|
|
|
gCharsetManager->GetUnicodeDecoderRaw(convname,
|
|
|
|
&gConverterInfo[i].mDecoder);
|
|
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "Failed to get converter");
|
|
|
|
}
|
|
|
|
if (aReq == eConv_Encoder) {
|
|
|
|
uco = gConverterInfo[i].mEncoder;
|
|
|
|
} else {
|
|
|
|
uco = gConverterInfo[i].mDecoder;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2007-09-06 11:41:00 -07:00
|
|
|
}
|
|
|
|
|
2007-09-06 11:41:01 -07:00
|
|
|
return uco;
|
2007-09-06 11:41:00 -07:00
|
|
|
}
|
|
|
|
|
2007-09-06 11:41:01 -07:00
|
|
|
void OS2Uni::FreeUconvObjects()
|
2007-09-06 11:41:00 -07:00
|
|
|
{
|
2007-09-06 11:41:01 -07:00
|
|
|
for (int i = 0; i < eCONVERTER_COUNT; i++) {
|
|
|
|
NS_IF_RELEASE(gConverterInfo[i].mEncoder);
|
|
|
|
NS_IF_RELEASE(gConverterInfo[i].mDecoder);
|
2007-09-06 11:41:00 -07:00
|
|
|
}
|
2007-09-06 11:41:01 -07:00
|
|
|
NS_IF_RELEASE(gCharsetManager);
|
2007-09-06 11:41:00 -07:00
|
|
|
}
|
|
|
|
|
2007-09-06 11:41:01 -07:00
|
|
|
/**********************************************************
|
|
|
|
WideCharToMultiByte
|
|
|
|
**********************************************************/
|
2007-09-09 02:07:20 -07:00
|
|
|
nsresult
|
2007-09-06 11:41:01 -07:00
|
|
|
WideCharToMultiByte(int aCodePage, const PRUnichar* aSrc,
|
|
|
|
PRInt32 aSrcLength, nsAutoCharBuffer& aResult,
|
|
|
|
PRInt32& aResultLength)
|
2007-09-06 11:41:00 -07:00
|
|
|
{
|
2007-09-06 11:41:01 -07:00
|
|
|
nsresult rv;
|
|
|
|
nsISupports* sup = OS2Uni::GetUconvObject(aCodePage, eConv_Encoder);
|
|
|
|
nsCOMPtr<nsIUnicodeEncoder> uco = do_QueryInterface(sup);
|
|
|
|
|
|
|
|
if (NS_FAILED(uco->GetMaxLength(aSrc, aSrcLength, &aResultLength))) {
|
|
|
|
return NS_ERROR_UNEXPECTED;
|
2007-09-06 11:41:00 -07:00
|
|
|
}
|
2007-09-18 16:12:06 -07:00
|
|
|
if (!aResult.SetLength(aResultLength + 1))
|
2007-09-06 11:41:01 -07:00
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
2007-09-18 16:12:06 -07:00
|
|
|
char* str = aResult.Elements();
|
2007-09-06 11:41:00 -07:00
|
|
|
|
2007-09-06 11:41:01 -07:00
|
|
|
rv = uco->Convert(aSrc, &aSrcLength, str, &aResultLength);
|
2007-09-18 16:12:06 -07:00
|
|
|
aResult[aResultLength] = '\0';
|
2007-09-06 11:41:01 -07:00
|
|
|
return rv;
|
2007-09-06 11:41:00 -07:00
|
|
|
}
|
|
|
|
|
2007-09-06 11:41:01 -07:00
|
|
|
/**********************************************************
|
|
|
|
MultiByteToWideChar
|
|
|
|
**********************************************************/
|
2007-09-09 02:07:20 -07:00
|
|
|
nsresult
|
2007-09-06 11:41:01 -07:00
|
|
|
MultiByteToWideChar(int aCodePage, const char* aSrc,
|
|
|
|
PRInt32 aSrcLength, nsAutoChar16Buffer& aResult,
|
|
|
|
PRInt32& aResultLength)
|
2007-09-06 11:41:00 -07:00
|
|
|
{
|
2007-09-06 11:41:01 -07:00
|
|
|
nsresult rv;
|
|
|
|
nsISupports* sup = OS2Uni::GetUconvObject(aCodePage, eConv_Decoder);
|
|
|
|
nsCOMPtr<nsIUnicodeDecoder> uco = do_QueryInterface(sup);
|
|
|
|
|
|
|
|
if (NS_FAILED(uco->GetMaxLength(aSrc, aSrcLength, &aResultLength))) {
|
|
|
|
return NS_ERROR_UNEXPECTED;
|
2007-09-06 11:41:00 -07:00
|
|
|
}
|
2007-09-18 16:12:06 -07:00
|
|
|
if (!aResult.SetLength(aResultLength + 1))
|
2007-09-06 11:41:01 -07:00
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
2007-09-18 16:12:06 -07:00
|
|
|
PRUnichar* str = aResult.Elements();
|
2007-09-06 11:41:01 -07:00
|
|
|
|
|
|
|
rv = uco->Convert(aSrc, &aSrcLength, str, &aResultLength);
|
2007-09-18 16:12:06 -07:00
|
|
|
aResult[aResultLength] = '\0';
|
2007-09-06 11:41:01 -07:00
|
|
|
return rv;
|
2007-09-06 11:41:00 -07:00
|
|
|
}
|