2001-09-26 00:40:45 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00: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/. */
|
2001-02-06 23:54:12 +00:00
|
|
|
|
|
|
|
#ifndef nsUnicodeToUTF8_h___
|
|
|
|
#define nsUnicodeToUTF8_h___
|
|
|
|
|
2012-06-05 23:51:58 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2013-09-27 16:45:04 +00:00
|
|
|
#include "nsIUnicodeEncoder.h"
|
2012-06-05 23:51:58 +00:00
|
|
|
|
2001-02-06 23:54:12 +00:00
|
|
|
// Class ID for our UnicodeToUTF8 charset converter
|
|
|
|
// {7C657D18-EC5E-11d2-8AAC-00600811A836}
|
|
|
|
#define NS_UNICODETOUTF8_CID \
|
|
|
|
{ 0x7c657d18, 0xec5e, 0x11d2, {0x8a, 0xac, 0x0, 0x60, 0x8, 0x11, 0xa8, 0x36}}
|
|
|
|
|
2001-02-07 20:10:01 +00:00
|
|
|
#define NS_UNICODETOUTF8_CONTRACTID "@mozilla.org/intl/unicode/encoder;1?charset=UTF-8"
|
2001-02-06 23:54:12 +00:00
|
|
|
|
2001-03-12 20:43:02 +00:00
|
|
|
//#define NS_ERROR_UCONV_NOUNICODETOUTF8
|
2001-02-06 23:54:12 +00:00
|
|
|
// NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_UCONV, 0x31)
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// Class nsUnicodeToUTF8 [declaration]
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A character set converter from Unicode to UTF8.
|
|
|
|
*
|
|
|
|
* @created 05/Apr/1999
|
|
|
|
* @author Catalin Rotaru [CATA]
|
|
|
|
*/
|
2012-06-05 23:51:58 +00:00
|
|
|
class nsUnicodeToUTF8 MOZ_FINAL : public nsIUnicodeEncoder
|
2001-02-06 23:54:12 +00:00
|
|
|
{
|
2014-06-23 22:40:02 +00:00
|
|
|
~nsUnicodeToUTF8() {}
|
|
|
|
|
2002-01-15 01:04:24 +00:00
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
2001-02-06 23:54:12 +00:00
|
|
|
public:
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class constructor.
|
|
|
|
*/
|
2007-04-23 14:21:53 +00:00
|
|
|
nsUnicodeToUTF8() {mHighSurrogate = 0;}
|
2001-02-06 23:54:12 +00:00
|
|
|
|
2014-01-04 15:02:17 +00:00
|
|
|
NS_IMETHOD Convert(const char16_t * aSrc,
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t * aSrcLength,
|
2002-01-15 01:04:24 +00:00
|
|
|
char * aDest,
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t * aDestLength);
|
2001-02-06 23:54:12 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
NS_IMETHOD Finish(char * aDest, int32_t * aDestLength);
|
2001-02-06 23:54:12 +00:00
|
|
|
|
2014-01-04 15:02:17 +00:00
|
|
|
NS_IMETHOD GetMaxLength(const char16_t * aSrc, int32_t aSrcLength,
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t * aDestLength);
|
2002-01-15 01:04:24 +00:00
|
|
|
|
|
|
|
NS_IMETHOD Reset() {mHighSurrogate = 0; return NS_OK;}
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
NS_IMETHOD SetOutputErrorBehavior(int32_t aBehavior,
|
2014-01-04 15:02:17 +00:00
|
|
|
nsIUnicharEncoder * aEncoder, char16_t aChar) {return NS_OK;}
|
2002-01-15 01:04:24 +00:00
|
|
|
|
|
|
|
protected:
|
2014-01-04 15:02:17 +00:00
|
|
|
char16_t mHighSurrogate;
|
2002-01-15 01:04:24 +00:00
|
|
|
|
2001-02-06 23:54:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsUnicodeToUTF8_h___ */
|