2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla 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 the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* 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.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2003
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef MOZ_USE_NATIVE_UCONV
|
|
|
|
#include "nsString.h"
|
|
|
|
#include "nsIGenericFactory.h"
|
|
|
|
|
|
|
|
#include "nsINativeUConvService.h"
|
|
|
|
|
|
|
|
#include "nsIUnicodeDecoder.h"
|
|
|
|
#include "nsIUnicodeEncoder.h"
|
|
|
|
|
|
|
|
#include "nsNativeUConvService.h"
|
2007-05-15 09:45:23 -07:00
|
|
|
#include "nsAutoPtr.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#include <nl_types.h> // CODESET
|
|
|
|
#include <langinfo.h> // nl_langinfo
|
|
|
|
#include <iconv.h> // iconv_open, iconv, iconv_close
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
|
|
|
|
class IConvAdaptor : public nsIUnicodeDecoder,
|
2010-07-04 05:42:04 -07:00
|
|
|
public nsIUnicodeEncoder
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
IConvAdaptor();
|
|
|
|
virtual ~IConvAdaptor();
|
|
|
|
|
|
|
|
nsresult Init(const char* from, const char* to);
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
|
|
|
// Decoder methods:
|
|
|
|
|
|
|
|
NS_IMETHOD Convert(const char * aSrc,
|
|
|
|
PRInt32 * aSrcLength,
|
|
|
|
PRUnichar * aDest,
|
|
|
|
PRInt32 * aDestLength);
|
|
|
|
|
|
|
|
NS_IMETHOD GetMaxLength(const char * aSrc,
|
|
|
|
PRInt32 aSrcLength,
|
|
|
|
PRInt32 * aDestLength);
|
|
|
|
NS_IMETHOD Reset();
|
2009-02-16 04:22:47 -08:00
|
|
|
|
|
|
|
virtual void SetInputErrorBehavior(PRInt32 aBehavior);
|
|
|
|
|
|
|
|
virtual PRUnichar GetCharacterForUnMapped();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Encoder methods:
|
|
|
|
|
|
|
|
NS_IMETHOD Convert(const PRUnichar * aSrc,
|
|
|
|
PRInt32 * aSrcLength,
|
|
|
|
char * aDest,
|
|
|
|
PRInt32 * aDestLength);
|
|
|
|
|
|
|
|
|
|
|
|
NS_IMETHOD Finish(char * aDest, PRInt32 * aDestLength);
|
|
|
|
|
|
|
|
NS_IMETHOD GetMaxLength(const PRUnichar * aSrc,
|
|
|
|
PRInt32 aSrcLength,
|
|
|
|
PRInt32 * aDestLength);
|
|
|
|
|
|
|
|
// defined by the Decoder: NS_IMETHOD Reset();
|
|
|
|
|
|
|
|
NS_IMETHOD SetOutputErrorBehavior(PRInt32 aBehavior,
|
|
|
|
nsIUnicharEncoder * aEncoder,
|
|
|
|
PRUnichar aChar);
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
nsresult ConvertInternal(void * aSrc,
|
|
|
|
PRInt32 * aSrcLength,
|
|
|
|
PRInt32 aSrcCharSize,
|
|
|
|
void * aDest,
|
|
|
|
PRInt32 * aDestLength,
|
|
|
|
PRInt32 aDestCharSize);
|
|
|
|
|
|
|
|
|
|
|
|
iconv_t mConverter;
|
|
|
|
PRBool mReplaceOnError;
|
|
|
|
PRUnichar mReplaceChar;
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
nsCString mFrom, mTo;
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
2010-07-04 05:42:04 -07:00
|
|
|
NS_IMPL_ISUPPORTS2(IConvAdaptor,
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIUnicodeEncoder,
|
2010-07-04 05:42:04 -07:00
|
|
|
nsIUnicodeDecoder)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
IConvAdaptor::IConvAdaptor()
|
|
|
|
{
|
|
|
|
mConverter = 0;
|
|
|
|
mReplaceOnError = PR_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
IConvAdaptor::~IConvAdaptor()
|
|
|
|
{
|
|
|
|
if (mConverter)
|
|
|
|
iconv_close(mConverter);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
IConvAdaptor::Init(const char* from, const char* to)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG
|
|
|
|
mFrom = from;
|
|
|
|
mTo = to;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
mConverter = iconv_open(to, from);
|
|
|
|
if (mConverter == (iconv_t) -1 )
|
|
|
|
{
|
|
|
|
#ifdef DEBUG
|
|
|
|
printf(" * IConvAdaptor - FAILED Initing: %s ==> %s\n", from, to);
|
|
|
|
#endif
|
|
|
|
mConverter = nsnull;
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// From some charset to ucs2
|
|
|
|
nsresult
|
|
|
|
IConvAdaptor::Convert(const char * aSrc,
|
|
|
|
PRInt32 * aSrcLength,
|
|
|
|
PRUnichar * aDest,
|
|
|
|
PRInt32 * aDestLength)
|
|
|
|
{
|
|
|
|
return ConvertInternal( (void*) aSrc,
|
|
|
|
aSrcLength,
|
|
|
|
1,
|
|
|
|
(void*) aDest,
|
|
|
|
aDestLength,
|
|
|
|
2);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
IConvAdaptor::GetMaxLength(const char * aSrc,
|
|
|
|
PRInt32 aSrcLength,
|
|
|
|
PRInt32 * aDestLength)
|
|
|
|
{
|
|
|
|
if (!mConverter)
|
|
|
|
return NS_ERROR_UENC_NOMAPPING;
|
|
|
|
|
|
|
|
*aDestLength = aSrcLength*4; // sick
|
|
|
|
#ifdef DEBUG
|
|
|
|
printf(" * IConvAdaptor - - GetMaxLength %d ( %s -> %s )\n", *aDestLength, mFrom.get(), mTo.get());
|
|
|
|
#endif
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
IConvAdaptor::Reset()
|
|
|
|
{
|
|
|
|
const char *zero_char_in_ptr = NULL;
|
|
|
|
char *zero_char_out_ptr = NULL;
|
|
|
|
size_t zero_size_in = 0,
|
|
|
|
zero_size_out = 0;
|
|
|
|
|
|
|
|
iconv(mConverter,
|
|
|
|
(char **)&zero_char_in_ptr,
|
|
|
|
&zero_size_in,
|
|
|
|
&zero_char_out_ptr,
|
|
|
|
&zero_size_out);
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
printf(" * IConvAdaptor - - Reset\n");
|
|
|
|
#endif
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-02-16 04:22:47 -08:00
|
|
|
void
|
|
|
|
IConvAdaptor::SetInputErrorBehavior(PRInt32 aBehavior)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
PRUnichar
|
|
|
|
IConvAdaptor::GetCharacterForUnMapped()
|
|
|
|
{
|
|
|
|
return PRUnichar(0xfffd); // Unicode REPLACEMENT CHARACTER
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// convert unicode data into some charset.
|
|
|
|
nsresult
|
|
|
|
IConvAdaptor::Convert(const PRUnichar * aSrc,
|
|
|
|
PRInt32 * aSrcLength,
|
|
|
|
char * aDest,
|
|
|
|
PRInt32 * aDestLength)
|
|
|
|
{
|
|
|
|
return ConvertInternal( (void*) aSrc,
|
|
|
|
aSrcLength,
|
|
|
|
2,
|
|
|
|
(void*) aDest,
|
|
|
|
aDestLength,
|
|
|
|
1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
IConvAdaptor::Finish(char * aDest, PRInt32 * aDestLength)
|
|
|
|
{
|
|
|
|
*aDestLength = 0;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
IConvAdaptor::GetMaxLength(const PRUnichar * aSrc,
|
|
|
|
PRInt32 aSrcLength,
|
|
|
|
PRInt32 * aDestLength)
|
|
|
|
{
|
|
|
|
if (!mConverter)
|
|
|
|
return NS_ERROR_UENC_NOMAPPING;
|
|
|
|
|
|
|
|
*aDestLength = aSrcLength*4; // sick
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
IConvAdaptor::SetOutputErrorBehavior(PRInt32 aBehavior,
|
|
|
|
nsIUnicharEncoder * aEncoder,
|
|
|
|
PRUnichar aChar)
|
|
|
|
{
|
2007-05-15 09:45:23 -07:00
|
|
|
if (aBehavior == nsIUnicodeEncoder::kOnError_Signal) {
|
2007-03-22 10:30:00 -07:00
|
|
|
mReplaceOnError = PR_FALSE;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2008-03-18 12:33:46 -07:00
|
|
|
else if (aBehavior == nsIUnicodeEncoder::kOnError_Replace) {
|
2007-03-22 10:30:00 -07:00
|
|
|
mReplaceOnError = PR_TRUE;
|
|
|
|
mReplaceChar = aChar;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_WARNING("Uconv Error Behavior not support");
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
IConvAdaptor::ConvertInternal(void * aSrc,
|
|
|
|
PRInt32 * aSrcLength,
|
|
|
|
PRInt32 aSrcCharSize,
|
|
|
|
void * aDest,
|
|
|
|
PRInt32 * aDestLength,
|
|
|
|
PRInt32 aDestCharSize)
|
|
|
|
{
|
|
|
|
if (!mConverter) {
|
|
|
|
NS_WARNING("Converter Not Initialize");
|
|
|
|
return NS_ERROR_NOT_INITIALIZED;
|
|
|
|
}
|
|
|
|
size_t res = 0;
|
|
|
|
size_t inLeft = (size_t) *aSrcLength * aSrcCharSize;
|
|
|
|
size_t outLeft = (size_t) *aDestLength * aDestCharSize;
|
|
|
|
size_t outputAvail = outLeft;
|
|
|
|
|
|
|
|
while (true){
|
|
|
|
|
|
|
|
res = iconv(mConverter,
|
|
|
|
(char**)&aSrc,
|
|
|
|
&inLeft,
|
|
|
|
(char**)&aDest,
|
|
|
|
&outLeft);
|
|
|
|
|
|
|
|
if (res == (size_t) -1) {
|
|
|
|
// on some platforms (e.g., linux) iconv will fail with
|
|
|
|
// E2BIG if it cannot convert _all_ of its input. it'll
|
|
|
|
// still adjust all of the in/out params correctly, so we
|
|
|
|
// can ignore this error. the assumption is that we will
|
|
|
|
// be called again to complete the conversion.
|
|
|
|
if ((errno == E2BIG) && (outLeft < outputAvail)) {
|
|
|
|
res = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (errno == EILSEQ) {
|
|
|
|
|
|
|
|
if (mReplaceOnError) {
|
|
|
|
if (aDestCharSize == 1) {
|
|
|
|
(*(char*)aDest) = (char)mReplaceChar;
|
|
|
|
aDest = (char*)aDest + sizeof(char);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
(*(PRUnichar*)aDest) = (PRUnichar)mReplaceChar;
|
|
|
|
aDest = (PRUnichar*)aDest + sizeof(PRUnichar);
|
|
|
|
|
|
|
|
}
|
|
|
|
inLeft -= aSrcCharSize;
|
|
|
|
outLeft -= aDestCharSize;
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
printf(" * IConvAdaptor - replacing char in output ( %s -> %s )\n",
|
|
|
|
mFrom.get(), mTo.get());
|
|
|
|
|
|
|
|
#endif
|
|
|
|
res = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (res == -1) {
|
|
|
|
#ifdef DEBUG
|
|
|
|
printf(" * IConvAdaptor - Bad input ( %s -> %s )\n", mFrom.get(), mTo.get());
|
|
|
|
#endif
|
|
|
|
return NS_ERROR_UENC_NOMAPPING;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (inLeft <= 0 || outLeft <= 0 || res == -1)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (res != (size_t) -1) {
|
|
|
|
|
|
|
|
// xp_iconv deals with how much is remaining in a given buffer
|
|
|
|
// but what uconv wants how much we read/written already. So
|
|
|
|
// we fix it up here.
|
|
|
|
*aSrcLength -= (inLeft / aSrcCharSize);
|
|
|
|
*aDestLength -= (outLeft / aDestCharSize);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
printf(" * IConvAdaptor - - xp_iconv error( %s -> %s )\n", mFrom.get(), mTo.get());
|
|
|
|
#endif
|
|
|
|
Reset();
|
|
|
|
return NS_ERROR_UENC_NOMAPPING;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMPL_ISUPPORTS1(NativeUConvService, nsINativeUConvService)
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
NativeUConvService::GetNativeConverter(const char* from,
|
|
|
|
const char* to,
|
|
|
|
nsISupports** aResult)
|
|
|
|
{
|
|
|
|
*aResult = nsnull;
|
|
|
|
|
2007-05-15 09:45:23 -07:00
|
|
|
//nsRefPtr<IConvAdaptor> ucl = new IConvAdaptor();
|
|
|
|
IConvAdaptor *adaptor=new IConvAdaptor();
|
2007-07-08 00:08:04 -07:00
|
|
|
nsCOMPtr<nsISupports> ucl(static_cast<nsIUnicodeDecoder*>(adaptor));
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!ucl)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
2007-05-15 09:45:23 -07:00
|
|
|
//nsresult rv = ucl->Init(from, to);
|
|
|
|
nsresult rv=adaptor->Init(from,to);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (NS_SUCCEEDED(rv))
|
|
|
|
NS_ADDREF(*aResult = ucl);
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
#endif
|