2001-09-26 04:40:45 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +04: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-07 02:54:12 +03:00
|
|
|
|
|
|
|
#ifndef nsUTF8ToUnicode_h___
|
|
|
|
#define nsUTF8ToUnicode_h___
|
|
|
|
|
2013-09-27 20:45:04 +04:00
|
|
|
#include "nsUCSupport.h"
|
|
|
|
|
2001-02-07 02:54:12 +03:00
|
|
|
// Class ID for our UTF8ToUnicode charset converter
|
|
|
|
// {5534DDC0-DD96-11d2-8AAC-00600811A836}
|
|
|
|
#define NS_UTF8TOUNICODE_CID \
|
|
|
|
{ 0x5534ddc0, 0xdd96, 0x11d2, {0x8a, 0xac, 0x0, 0x60, 0x8, 0x11, 0xa8, 0x36}}
|
|
|
|
|
2001-02-07 04:21:55 +03:00
|
|
|
#define NS_UTF8TOUNICODE_CONTRACTID "@mozilla.org/intl/unicode/decoder;1?charset=UTF-8"
|
2001-02-07 02:54:12 +03:00
|
|
|
|
2001-03-12 23:43:02 +03:00
|
|
|
//#define NS_ERROR_UCONV_NOUTF8TOUNICODE
|
2001-02-07 02:54:12 +03:00
|
|
|
// NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_UCONV, 0x31)
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// Class nsUTF8ToUnicode [declaration]
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A character set converter from UTF8 to Unicode.
|
|
|
|
*
|
|
|
|
* @created 18/Mar/1998
|
|
|
|
* @modified 04/Feb/2000
|
|
|
|
* @author Catalin Rotaru [CATA]
|
|
|
|
*/
|
|
|
|
|
|
|
|
class nsUTF8ToUnicode : public nsBasicDecoderSupport
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class constructor.
|
|
|
|
*/
|
|
|
|
nsUTF8ToUnicode();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t mUcs4; // cached Unicode character
|
|
|
|
uint8_t mState; // cached expected number of bytes per UTF8 character sequence
|
|
|
|
uint8_t mBytes;
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mFirst;
|
2001-02-07 02:54:12 +03:00
|
|
|
|
|
|
|
//--------------------------------------------------------------------
|
|
|
|
// Subclassing of nsDecoderSupport class [declaration]
|
|
|
|
|
2015-06-17 14:38:29 +03:00
|
|
|
MOZ_WARN_UNUSED_RESULT NS_IMETHOD GetMaxLength(const char* aSrc,
|
2015-06-17 14:21:39 +03:00
|
|
|
int32_t aSrcLength,
|
2015-06-17 14:38:29 +03:00
|
|
|
int32_t* aDestLength) override;
|
2001-02-07 02:54:12 +03:00
|
|
|
|
|
|
|
//--------------------------------------------------------------------
|
|
|
|
// Subclassing of nsBasicDecoderSupport class [declaration]
|
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
NS_IMETHOD Convert(const char * aSrc, int32_t * aSrcLength,
|
2014-01-04 19:02:17 +04:00
|
|
|
char16_t * aDest, int32_t * aDestLength);
|
2001-02-07 02:54:12 +03:00
|
|
|
|
|
|
|
//--------------------------------------------------------------------
|
|
|
|
// Subclassing of nsBasicDecoderSupport class [declaration]
|
|
|
|
|
|
|
|
NS_IMETHOD Reset();
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsUTF8ToUnicode_h___ */
|
|
|
|
|