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
|
|
|
|
2012-11-26 17:38:20 -08:00
|
|
|
#ifndef nsUnicodeToUTF16_h_
|
|
|
|
#define nsUnicodeToUTF16_h_
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#include "nsUCSupport.h"
|
|
|
|
|
|
|
|
class nsUnicodeToUTF16BE: public nsBasicEncoder
|
|
|
|
{
|
|
|
|
public:
|
2007-04-23 07:21:53 -07:00
|
|
|
nsUnicodeToUTF16BE() { mBOM = 0;}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
//--------------------------------------------------------------------
|
|
|
|
// Interface nsIUnicodeEncoder [declaration]
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
NS_IMETHOD Convert(const PRUnichar * aSrc, int32_t * aSrcLength,
|
|
|
|
char * aDest, int32_t * aDestLength);
|
|
|
|
NS_IMETHOD GetMaxLength(const PRUnichar * aSrc, int32_t aSrcLength,
|
|
|
|
int32_t * aDestLength);
|
|
|
|
NS_IMETHOD Finish(char * aDest, int32_t * aDestLength);
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMETHOD Reset();
|
2012-08-22 08:56:38 -07:00
|
|
|
NS_IMETHOD SetOutputErrorBehavior(int32_t aBehavior,
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIUnicharEncoder * aEncoder, PRUnichar aChar);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
PRUnichar mBOM;
|
2012-08-22 08:56:38 -07:00
|
|
|
NS_IMETHOD CopyData(char* aDest, const PRUnichar* aSrc, int32_t aLen );
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
class nsUnicodeToUTF16LE: public nsUnicodeToUTF16BE
|
|
|
|
{
|
|
|
|
public:
|
2007-04-23 07:21:53 -07:00
|
|
|
nsUnicodeToUTF16LE() { mBOM = 0;}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
protected:
|
2012-08-22 08:56:38 -07:00
|
|
|
NS_IMETHOD CopyData(char* aDest, const PRUnichar* aSrc, int32_t aLen );
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
// XXX In theory, we have to check the endianness at run-time because some
|
|
|
|
// modern RISC processors can be run at both LE and BE.
|
|
|
|
#ifdef IS_LITTLE_ENDIAN
|
|
|
|
class nsUnicodeToUTF16: public nsUnicodeToUTF16LE
|
|
|
|
#elif defined(IS_BIG_ENDIAN)
|
|
|
|
class nsUnicodeToUTF16: public nsUnicodeToUTF16BE
|
|
|
|
#else
|
|
|
|
#error "Unknown endianness"
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
public:
|
2007-04-23 07:21:53 -07:00
|
|
|
nsUnicodeToUTF16() { mBOM = 0xFEFF;}
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
2012-11-26 17:38:20 -08:00
|
|
|
#endif /* nsUnicodeToUTF16_h_ */
|