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
|
|
|
#ifndef nsShiftJISToUnicode_h__
|
|
|
|
#define nsShiftJISToUnicode_h__
|
|
|
|
#include "nsUCSupport.h"
|
2013-11-11 07:04:02 -08:00
|
|
|
#include "mozilla/Telemetry.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-09-06 00:41:26 -07:00
|
|
|
class nsShiftJISToUnicode : public nsBasicDecoderSupport
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
nsShiftJISToUnicode()
|
|
|
|
{
|
|
|
|
mState=0; mData=0;
|
2007-04-23 07:21:53 -07:00
|
|
|
}
|
|
|
|
virtual ~nsShiftJISToUnicode() {}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
NS_IMETHOD Convert(const char * aSrc, int32_t * aSrcLength,
|
2014-01-04 07:02:17 -08:00
|
|
|
char16_t * aDest, int32_t * aDestLength) ;
|
2012-08-22 08:56:38 -07:00
|
|
|
NS_IMETHOD GetMaxLength(const char * aSrc, int32_t aSrcLength,
|
|
|
|
int32_t * aDestLength)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
*aDestLength = aSrcLength;
|
|
|
|
return NS_OK;
|
2007-04-23 07:21:53 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMETHOD Reset()
|
|
|
|
{
|
|
|
|
mState = 0;
|
|
|
|
return NS_OK;
|
2007-04-23 07:21:53 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2014-01-04 07:02:17 -08:00
|
|
|
virtual char16_t GetCharacterForUnMapped();
|
2009-02-16 04:22:47 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
private:
|
|
|
|
|
|
|
|
private:
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t mState;
|
|
|
|
int32_t mData;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
2010-09-06 00:41:26 -07:00
|
|
|
class nsEUCJPToUnicodeV2 : public nsBasicDecoderSupport
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
nsEUCJPToUnicodeV2()
|
|
|
|
{
|
|
|
|
mState=0; mData=0;
|
2007-04-23 07:21:53 -07:00
|
|
|
}
|
|
|
|
virtual ~nsEUCJPToUnicodeV2() {}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
NS_IMETHOD Convert(const char * aSrc, int32_t * aSrcLength,
|
2014-01-04 07:02:17 -08:00
|
|
|
char16_t * aDest, int32_t * aDestLength) ;
|
2012-08-22 08:56:38 -07:00
|
|
|
NS_IMETHOD GetMaxLength(const char * aSrc, int32_t aSrcLength,
|
|
|
|
int32_t * aDestLength)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
*aDestLength = aSrcLength;
|
|
|
|
return NS_OK;
|
2007-04-23 07:21:53 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMETHOD Reset()
|
|
|
|
{
|
|
|
|
mState = 0;
|
|
|
|
return NS_OK;
|
2007-04-23 07:21:53 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
private:
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t mState;
|
|
|
|
int32_t mData;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
2010-09-06 00:41:26 -07:00
|
|
|
class nsISO2022JPToUnicodeV2 : public nsBasicDecoderSupport
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
nsISO2022JPToUnicodeV2()
|
|
|
|
{
|
|
|
|
mState = mState_ASCII;
|
|
|
|
mLastLegalState = mState_ASCII;
|
|
|
|
mData = 0;
|
2007-09-05 22:02:17 -07:00
|
|
|
mRunLength = 0;
|
2007-03-22 10:30:00 -07:00
|
|
|
G2charset = G2_unknown;
|
2012-07-30 07:20:58 -07:00
|
|
|
mGB2312Decoder = nullptr;
|
|
|
|
mEUCKRDecoder = nullptr;
|
|
|
|
mISO88597Decoder = nullptr;
|
2014-01-22 09:24:25 -08:00
|
|
|
mozilla::Telemetry::Accumulate(
|
|
|
|
mozilla::Telemetry::DECODER_INSTANTIATED_ISO2022JP, true);
|
2007-04-23 07:21:53 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
virtual ~nsISO2022JPToUnicodeV2()
|
|
|
|
{
|
2007-04-23 07:21:53 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
NS_IMETHOD Convert(const char * aSrc, int32_t * aSrcLength,
|
2014-01-04 07:02:17 -08:00
|
|
|
char16_t * aDest, int32_t * aDestLength) ;
|
2012-08-22 08:56:38 -07:00
|
|
|
NS_IMETHOD GetMaxLength(const char * aSrc, int32_t aSrcLength,
|
|
|
|
int32_t * aDestLength)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
*aDestLength = aSrcLength;
|
|
|
|
return NS_OK;
|
2007-04-23 07:21:53 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMETHOD Reset()
|
|
|
|
{
|
|
|
|
mState = mState_ASCII;
|
|
|
|
mLastLegalState = mState_ASCII;
|
2007-09-05 22:02:17 -07:00
|
|
|
mRunLength = 0;
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_OK;
|
2007-04-23 07:21:53 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
private:
|
|
|
|
enum {
|
|
|
|
mState_ASCII,
|
|
|
|
mState_ESC,
|
|
|
|
mState_ESC_28,
|
|
|
|
mState_ESC_24,
|
|
|
|
mState_ESC_24_28,
|
|
|
|
mState_JISX0201_1976Roman,
|
|
|
|
mState_JISX0201_1976Kana,
|
|
|
|
mState_JISX0208_1978,
|
|
|
|
mState_GB2312_1980,
|
|
|
|
mState_JISX0208_1983,
|
|
|
|
mState_KSC5601_1987,
|
|
|
|
mState_JISX0212_1990,
|
|
|
|
mState_JISX0208_1978_2ndbyte,
|
|
|
|
mState_GB2312_1980_2ndbyte,
|
|
|
|
mState_JISX0208_1983_2ndbyte,
|
|
|
|
mState_KSC5601_1987_2ndbyte,
|
|
|
|
mState_JISX0212_1990_2ndbyte,
|
|
|
|
mState_ESC_2e,
|
|
|
|
mState_ESC_4e,
|
|
|
|
mState_ERROR
|
|
|
|
} mState, mLastLegalState;
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t mData;
|
|
|
|
int32_t mRunLength; // the length of a non-ASCII run
|
2007-03-22 10:30:00 -07:00
|
|
|
enum {
|
|
|
|
G2_unknown,
|
|
|
|
G2_ISO88591,
|
|
|
|
G2_ISO88597
|
|
|
|
} G2charset;
|
2014-05-08 02:32:00 -07:00
|
|
|
nsCOMPtr<nsIUnicodeDecoder> mGB2312Decoder;
|
|
|
|
nsCOMPtr<nsIUnicodeDecoder> mEUCKRDecoder;
|
|
|
|
nsCOMPtr<nsIUnicodeDecoder> mISO88597Decoder;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
#endif // nsShiftJISToUnicode_h__
|