Modernize the "big_codecs" feature

Change-Id: Ic23f4a1f81a21711cd81aaa2942b493aca5b38b8
Reviewed-by: Edward Welbourne <edward.welbourne@qt.io>
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@qt.io>
This commit is contained in:
Liang Qi 2018-09-13 12:45:20 +02:00
parent c593492d16
commit 4e7b58629a
16 changed files with 35 additions and 68 deletions

View File

@ -23,22 +23,24 @@ qtConfig(icu) {
SOURCES += \
codecs/qicucodec.cpp
} else {
HEADERS += \
codecs/qgb18030codec_p.h \
codecs/qeucjpcodec_p.h \
codecs/qjiscodec_p.h \
codecs/qsjiscodec_p.h \
codecs/qeuckrcodec_p.h \
codecs/qbig5codec_p.h
qtConfig(big_codecs) {
HEADERS += \
codecs/qgb18030codec_p.h \
codecs/qeucjpcodec_p.h \
codecs/qjiscodec_p.h \
codecs/qsjiscodec_p.h \
codecs/qeuckrcodec_p.h \
codecs/qbig5codec_p.h
SOURCES += \
codecs/qgb18030codec.cpp \
codecs/qjpunicode.cpp \
codecs/qeucjpcodec.cpp \
codecs/qjiscodec.cpp \
codecs/qsjiscodec.cpp \
codecs/qeuckrcodec.cpp \
codecs/qbig5codec.cpp
SOURCES += \
codecs/qgb18030codec.cpp \
codecs/qjpunicode.cpp \
codecs/qeucjpcodec.cpp \
codecs/qjiscodec.cpp \
codecs/qsjiscodec.cpp \
codecs/qeuckrcodec.cpp \
codecs/qbig5codec.cpp
}
qtConfig(iconv) {
HEADERS += codecs/qiconvcodec_p.h

View File

@ -41,7 +41,6 @@
QT_BEGIN_NAMESPACE
#ifndef QT_NO_BIG_CODECS
static int qt_Big5hkscsToUnicode(const uchar *s, uint *pwc);
static int qt_UnicodeToBig5hkscs(uint wc, uchar *r);
@ -12661,6 +12660,5 @@ int qt_UnicodeToBig5hkscs (uint wc, uchar *r)
/* ====================================================================== */
#endif // QT_NO_BIG_CODECS
QT_END_NAMESPACE

View File

@ -59,9 +59,9 @@
#include <QtCore/qtextcodec.h>
#include <QtCore/qlist.h>
QT_BEGIN_NAMESPACE
QT_REQUIRE_CONFIG(big_codecs);
#ifndef QT_NO_BIG_CODECS
QT_BEGIN_NAMESPACE
class QBig5Codec : public QTextCodec {
public:
@ -91,8 +91,6 @@ public:
QByteArray convertFromUnicode(const QChar *, int, ConverterState *) const;
};
#endif // QT_NO_BIG_CODECS
QT_END_NAMESPACE
#endif // QBIG5CODEC_P_H

View File

@ -76,8 +76,6 @@
QT_BEGIN_NAMESPACE
#ifndef QT_NO_BIG_CODECS
static const uchar Ss2 = 0x8e; // Single Shift 2
static const uchar Ss3 = 0x8f; // Single Shift 3
@ -255,6 +253,5 @@ QByteArray QEucJpCodec::_name()
{
return "EUC-JP";
}
#endif // QT_NO_BIG_CODECS
QT_END_NAMESPACE

View File

@ -84,9 +84,9 @@
#include <QtCore/qtextcodec.h>
#include <QtCore/qlist.h>
QT_BEGIN_NAMESPACE
QT_REQUIRE_CONFIG(big_codecs);
#ifndef QT_NO_BIG_CODECS
QT_BEGIN_NAMESPACE
class QEucJpCodec : public QTextCodec {
public:
@ -108,8 +108,6 @@ protected:
const QJpUnicodeConv *conv;
};
#endif // QT_NO_BIG_CODECS
QT_END_NAMESPACE
#endif // QEUCJPCODEC_P_H

View File

@ -72,7 +72,6 @@
QT_BEGIN_NAMESPACE
#ifndef QT_NO_BIG_CODECS
unsigned int qt_Ksc5601ToUnicode(unsigned int code);
unsigned int qt_UnicodeToKsc5601(unsigned int unicode);
@ -3523,6 +3522,4 @@ QString QCP949Codec::convertToUnicode(const char* chars, int len, ConverterState
return result;
}
#endif // QT_NO_BIG_CODECS
QT_END_NAMESPACE

View File

@ -80,9 +80,9 @@
#include <QtCore/qtextcodec.h>
#include <QtCore/qlist.h>
QT_BEGIN_NAMESPACE
QT_REQUIRE_CONFIG(big_codecs);
#ifndef QT_NO_BIG_CODECS
QT_BEGIN_NAMESPACE
class QEucKrCodec : public QTextCodec {
public:
@ -112,8 +112,6 @@ public:
QByteArray convertFromUnicode(const QChar *, int, ConverterState *) const;
};
#endif // QT_NO_BIG_CODECS
QT_END_NAMESPACE
#endif // QEUCKRCODEC_P_H

View File

@ -45,8 +45,6 @@
#include "qgb18030codec_p.h"
#ifndef QT_NO_BIG_CODECS
QT_BEGIN_NAMESPACE
#define InRange(c, lower, upper) (((c) >= (lower)) && ((c) <= (upper)))
@ -9116,5 +9114,3 @@ int qt_UnicodeToGbk(uint uni, uchar *gbchar) {
}
QT_END_NAMESPACE
#endif // QT_NO_BIG_CODECS

View File

@ -57,9 +57,9 @@
#include <QtCore/qtextcodec.h>
#include <QtCore/qlist.h>
QT_BEGIN_NAMESPACE
QT_REQUIRE_CONFIG(big_codecs);
#ifndef QT_NO_BIG_CODECS
QT_BEGIN_NAMESPACE
class QGb18030Codec : public QTextCodec {
public:
@ -108,8 +108,6 @@ public:
QByteArray convertFromUnicode(const QChar *, int, ConverterState *) const;
};
#endif // QT_NO_BIG_CODECS
QT_END_NAMESPACE
#endif // QGB18030CODEC_P_H

View File

@ -52,7 +52,6 @@
QT_BEGIN_NAMESPACE
#ifndef QT_NO_BIG_CODECS
enum {
Esc = 0x1b,
So = 0x0e, // Shift Out
@ -369,6 +368,4 @@ QList<QByteArray> QJisCodec::_aliases()
return list;
}
#endif // QT_NO_BIG_CODECS
QT_END_NAMESPACE

View File

@ -84,9 +84,9 @@
#include <QtCore/qtextcodec.h>
#include <QtCore/qlist.h>
QT_BEGIN_NAMESPACE
QT_REQUIRE_CONFIG(big_codecs);
#ifndef QT_NO_BIG_CODECS
QT_BEGIN_NAMESPACE
class QJisCodec : public QTextCodec {
public:
@ -108,8 +108,6 @@ protected:
const QJpUnicodeConv *conv;
};
#endif // QT_NO_BIG_CODECS
QT_END_NAMESPACE
#endif // QJISCODEC_P_H

View File

@ -50,8 +50,6 @@
QT_BEGIN_NAMESPACE
#ifndef QT_NO_BIG_CODECS
#define USE_JISX0212
#define Q_STRICT
@ -10734,6 +10732,4 @@ uint QJpUnicodeConv::unicodeToCp932(uint h, uint l) const
\internal
*/
#endif // QT_NO_BIG_CODECS
QT_END_NAMESPACE

View File

@ -82,9 +82,9 @@
#include <QtCore/private/qglobal_p.h>
QT_BEGIN_NAMESPACE
QT_REQUIRE_CONFIG(big_codecs);
#ifndef QT_NO_BIG_CODECS
QT_BEGIN_NAMESPACE
class QJpUnicodeConv {
public:
@ -180,8 +180,6 @@ private:
int rule;
};
#endif // QT_NO_BIG_CODECS
QT_END_NAMESPACE
#endif // QJPUNICODE_P_H

View File

@ -52,7 +52,6 @@
QT_BEGIN_NAMESPACE
#ifndef QT_NO_BIG_CODECS
enum {
Esc = 0x1b
};
@ -223,6 +222,5 @@ QList<QByteArray> QSjisCodec::_aliases()
<< "MS_Kanji";
return list;
}
#endif // QT_NO_BIG_CODECS
QT_END_NAMESPACE

View File

@ -84,9 +84,9 @@
#include <QtCore/qtextcodec.h>
#include <QtCore/qlist.h>
QT_BEGIN_NAMESPACE
QT_REQUIRE_CONFIG(big_codecs);
#ifndef QT_NO_BIG_CODECS
QT_BEGIN_NAMESPACE
class QSjisCodec : public QTextCodec {
public:
@ -108,8 +108,6 @@ protected:
const QJpUnicodeConv *conv;
};
#endif // QT_NO_BIG_CODECS
QT_END_NAMESPACE
#endif // QSJISCODEC_P_H

View File

@ -69,7 +69,7 @@
# include "qwindowscodec_p.h"
#endif
# include "qsimplecodec_p.h"
#if !defined(QT_NO_BIG_CODECS)
#if QT_CONFIG(big_codecs)
# ifndef Q_OS_INTEGRITY
# include "qgb18030codec_p.h"
# include "qeucjpcodec_p.h"
@ -78,7 +78,7 @@
# include "qeuckrcodec_p.h"
# include "qbig5codec_p.h"
# endif // !Q_OS_INTEGRITY
#endif // !QT_NO_BIG_CODECS
#endif // big_codecs
#endif // icu
#endif // QT_BOOTSTRAPPED
@ -275,7 +275,7 @@ static void setup()
for (int i = 0; i < QSimpleTextCodec::numSimpleCodecs; ++i)
(void)new QSimpleTextCodec(i);
# if !defined(QT_NO_BIG_CODECS) && !defined(Q_OS_INTEGRITY)
# if QT_CONFIG(big_codecs) && !defined(Q_OS_INTEGRITY)
(void)new QGb18030Codec;
(void)new QGbkCodec;
(void)new QGb2312Codec;
@ -286,7 +286,7 @@ static void setup()
(void)new QCP949Codec;
(void)new QBig5Codec;
(void)new QBig5hkscsCodec;
# endif // !QT_NO_BIG_CODECS && !Q_OS_INTEGRITY
# endif // big_codecs && !Q_OS_INTEGRITY
#if QT_CONFIG(iconv)
(void) new QIconvCodec;
#endif