Fix QLocale::system() standalone day and month handling
Some backends were missing support for standalone days and months, also the standaloneDayName() implementation was always using the same codepath as dayName(). This patch fixes the issues. Support for narrow format will be added in the following patch. Task-number: QTBUG-84877 Pick-to: 6.2 Change-Id: I38ee06342cafab544e3c69097bd0e6ae68e85645 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com> Reviewed-by: Edward Welbourne <edward.welbourne@qt.io>
This commit is contained in:
parent
71cc5e3ed5
commit
78dee15da4
@ -2954,8 +2954,8 @@ QString QCalendarBackend::standaloneWeekDayName(const QLocale &locale, int day,
|
|||||||
#ifndef QT_NO_SYSTEMLOCALE
|
#ifndef QT_NO_SYSTEMLOCALE
|
||||||
if (locale.d->m_data == &systemLocaleData) {
|
if (locale.d->m_data == &systemLocaleData) {
|
||||||
QVariant res = systemLocale()->query(format == QLocale::LongFormat
|
QVariant res = systemLocale()->query(format == QLocale::LongFormat
|
||||||
? QSystemLocale::DayNameLong
|
? QSystemLocale::StandaloneDayNameLong
|
||||||
: QSystemLocale::DayNameShort,
|
: QSystemLocale::StandaloneDayNameShort,
|
||||||
day);
|
day);
|
||||||
if (!res.isNull())
|
if (!res.isNull())
|
||||||
return res.toString();
|
return res.toString();
|
||||||
|
@ -99,7 +99,7 @@ static QString macMonthName(int month, QSystemLocale::QueryType type)
|
|||||||
return QString();
|
return QString();
|
||||||
}
|
}
|
||||||
|
|
||||||
static QString macDayName(int day, bool short_format)
|
static QString macDayName(int day, QSystemLocale::QueryType type)
|
||||||
{
|
{
|
||||||
if (day < 1 || day > 7)
|
if (day < 1 || day > 7)
|
||||||
return QString();
|
return QString();
|
||||||
@ -107,9 +107,29 @@ static QString macDayName(int day, bool short_format)
|
|||||||
QCFType<CFDateFormatterRef> formatter
|
QCFType<CFDateFormatterRef> formatter
|
||||||
= CFDateFormatterCreate(0, QCFType<CFLocaleRef>(CFLocaleCopyCurrent()),
|
= CFDateFormatterCreate(0, QCFType<CFLocaleRef>(CFLocaleCopyCurrent()),
|
||||||
kCFDateFormatterNoStyle, kCFDateFormatterNoStyle);
|
kCFDateFormatterNoStyle, kCFDateFormatterNoStyle);
|
||||||
QCFType<CFArrayRef> values = static_cast<CFArrayRef>(CFDateFormatterCopyProperty(formatter,
|
|
||||||
short_format ? kCFDateFormatterShortWeekdaySymbols
|
CFDateFormatterKey formatterType;
|
||||||
: kCFDateFormatterWeekdaySymbols));
|
switch (type) {
|
||||||
|
case QSystemLocale::DayNameLong:
|
||||||
|
formatterType = kCFDateFormatterWeekdaySymbols;
|
||||||
|
break;
|
||||||
|
case QSystemLocale::DayNameShort:
|
||||||
|
formatterType = kCFDateFormatterShortWeekdaySymbols;
|
||||||
|
break;
|
||||||
|
case QSystemLocale::StandaloneDayNameLong:
|
||||||
|
formatterType = kCFDateFormatterStandaloneWeekdaySymbols;
|
||||||
|
break;
|
||||||
|
case QSystemLocale::StandaloneDayNameShort:
|
||||||
|
formatterType = kCFDateFormatterShortStandaloneWeekdaySymbols;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
qWarning("macDayName: Unsupported query type %d", type);
|
||||||
|
return QString();
|
||||||
|
}
|
||||||
|
|
||||||
|
QCFType<CFArrayRef> values =
|
||||||
|
static_cast<CFArrayRef>(CFDateFormatterCopyProperty(formatter, formatterType));
|
||||||
|
|
||||||
if (values != 0) {
|
if (values != 0) {
|
||||||
CFStringRef cfstring = static_cast<CFStringRef>(CFArrayGetValueAtIndex(values, day % 7));
|
CFStringRef cfstring = static_cast<CFStringRef>(CFArrayGetValueAtIndex(values, day % 7));
|
||||||
return QString::fromCFString(cfstring);
|
return QString::fromCFString(cfstring);
|
||||||
@ -446,7 +466,9 @@ QVariant QSystemLocale::query(QueryType type, QVariant in) const
|
|||||||
: kCFDateFormatterLongStyle);
|
: kCFDateFormatterLongStyle);
|
||||||
case DayNameLong:
|
case DayNameLong:
|
||||||
case DayNameShort:
|
case DayNameShort:
|
||||||
return macDayName(in.toInt(), (type == DayNameShort));
|
case StandaloneDayNameLong:
|
||||||
|
case StandaloneDayNameShort:
|
||||||
|
return macDayName(in.toInt(), type);
|
||||||
case MonthNameLong:
|
case MonthNameLong:
|
||||||
case MonthNameShort:
|
case MonthNameShort:
|
||||||
case StandaloneMonthNameLong:
|
case StandaloneMonthNameLong:
|
||||||
|
@ -124,7 +124,9 @@ public:
|
|||||||
NativeLanguageName, // QString
|
NativeLanguageName, // QString
|
||||||
NativeTerritoryName, // QString
|
NativeTerritoryName, // QString
|
||||||
StandaloneMonthNameLong, // QString, in: int
|
StandaloneMonthNameLong, // QString, in: int
|
||||||
StandaloneMonthNameShort // QString, in: int
|
StandaloneMonthNameShort, // QString, in: int
|
||||||
|
StandaloneDayNameLong, // QString, in: int
|
||||||
|
StandaloneDayNameShort // QString, in: int
|
||||||
};
|
};
|
||||||
virtual QVariant query(QueryType type, QVariant in = QVariant()) const;
|
virtual QVariant query(QueryType type, QVariant in = QVariant()) const;
|
||||||
|
|
||||||
|
@ -196,6 +196,10 @@ QVariant QSystemLocale::query(QueryType type, QVariant in) const
|
|||||||
return lc_time.dayName(in.toInt(), QLocale::LongFormat);
|
return lc_time.dayName(in.toInt(), QLocale::LongFormat);
|
||||||
case DayNameShort:
|
case DayNameShort:
|
||||||
return lc_time.dayName(in.toInt(), QLocale::ShortFormat);
|
return lc_time.dayName(in.toInt(), QLocale::ShortFormat);
|
||||||
|
case StandaloneDayNameLong:
|
||||||
|
return lc_time.standaloneDayName(in.toInt(), QLocale::LongFormat);
|
||||||
|
case StandaloneDayNameShort:
|
||||||
|
return lc_time.standaloneDayName(in.toInt(), QLocale::ShortFormat);
|
||||||
case MonthNameLong:
|
case MonthNameLong:
|
||||||
return lc_time.monthName(in.toInt(), QLocale::LongFormat);
|
return lc_time.monthName(in.toInt(), QLocale::LongFormat);
|
||||||
case MonthNameShort:
|
case MonthNameShort:
|
||||||
|
@ -757,6 +757,10 @@ QVariant QSystemLocale::query(QueryType type, QVariant in) const
|
|||||||
return d->dayName(in.toInt(), QLocale::LongFormat);
|
return d->dayName(in.toInt(), QLocale::LongFormat);
|
||||||
case DayNameShort:
|
case DayNameShort:
|
||||||
return d->dayName(in.toInt(), QLocale::ShortFormat);
|
return d->dayName(in.toInt(), QLocale::ShortFormat);
|
||||||
|
case StandaloneDayNameLong:
|
||||||
|
case StandaloneDayNameShort:
|
||||||
|
// Windows does not provide standalone day names, so fall back to CLDR
|
||||||
|
return QVariant();
|
||||||
case MonthNameLong:
|
case MonthNameLong:
|
||||||
return d->monthName(in.toInt(), QLocale::LongFormat);
|
return d->monthName(in.toInt(), QLocale::LongFormat);
|
||||||
case StandaloneMonthNameLong:
|
case StandaloneMonthNameLong:
|
||||||
|
@ -148,6 +148,11 @@ private slots:
|
|||||||
void systemLocale_data();
|
void systemLocale_data();
|
||||||
void systemLocale();
|
void systemLocale();
|
||||||
|
|
||||||
|
#ifndef QT_NO_SYSTEMLOCALE
|
||||||
|
void systemLocaleDayAndMonthNames_data();
|
||||||
|
void systemLocaleDayAndMonthNames();
|
||||||
|
#endif
|
||||||
|
|
||||||
void numberGroupingIndia();
|
void numberGroupingIndia();
|
||||||
void numberFormatChakma();
|
void numberFormatChakma();
|
||||||
|
|
||||||
@ -3224,6 +3229,128 @@ void tst_QLocale::systemLocale()
|
|||||||
QCOMPARE(QLocale::system(), originalSystemLocale);
|
QCOMPARE(QLocale::system(), originalSystemLocale);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifndef QT_NO_SYSTEMLOCALE
|
||||||
|
|
||||||
|
void tst_QLocale::systemLocaleDayAndMonthNames_data()
|
||||||
|
{
|
||||||
|
QTest::addColumn<QByteArray>("locale");
|
||||||
|
QTest::addColumn<QDate>("date");
|
||||||
|
QTest::addColumn<QLocale::FormatType>("format");
|
||||||
|
QTest::addColumn<QString>("month");
|
||||||
|
QTest::addColumn<QString>("standaloneMonth");
|
||||||
|
QTest::addColumn<QString>("day");
|
||||||
|
QTest::addColumn<QString>("standaloneDay");
|
||||||
|
|
||||||
|
// en_US and de_DE locale outputs for ICU and macOS are similar.
|
||||||
|
// ru_RU are different.
|
||||||
|
// Windows has its own representation for all of the locales
|
||||||
|
|
||||||
|
#if QT_CONFIG(icu)
|
||||||
|
// августа, август, понедельник, понедельник
|
||||||
|
QTest::newRow("ru_RU 30.08.2021 long")
|
||||||
|
<< QByteArray("ru_RU") << QDate(2021, 8, 30) << QLocale::LongFormat
|
||||||
|
<< QString("\u0430\u0432\u0433\u0443\u0441\u0442\u0430")
|
||||||
|
<< QString("\u0430\u0432\u0433\u0443\u0441\u0442")
|
||||||
|
<< QString("\u043f\u043e\u043d\u0435\u0434\u0435\u043b\u044c\u043d\u0438\u043a")
|
||||||
|
<< QString("\u043f\u043e\u043d\u0435\u0434\u0435\u043b\u044c\u043d\u0438\u043a");
|
||||||
|
// авг., авг., пн, пн
|
||||||
|
QTest::newRow("ru_RU 30.08.2021 short")
|
||||||
|
<< QByteArray("ru_RU") << QDate(2021, 8, 30) << QLocale::ShortFormat
|
||||||
|
<< QString("\u0430\u0432\u0433.") << QString("\u0430\u0432\u0433.")
|
||||||
|
<< QString("\u043f\u043d") << QString("\u043f\u043d");
|
||||||
|
#elif defined(Q_OS_DARWIN)
|
||||||
|
// августа, август, понедельник, понедельник
|
||||||
|
QTest::newRow("ru_RU 30.08.2021 long")
|
||||||
|
<< QByteArray("ru_RU") << QDate(2021, 8, 30) << QLocale::LongFormat
|
||||||
|
<< QString("\u0430\u0432\u0433\u0443\u0441\u0442\u0430")
|
||||||
|
<< QString("\u0430\u0432\u0433\u0443\u0441\u0442")
|
||||||
|
<< QString("\u043f\u043e\u043d\u0435\u0434\u0435\u043b\u044c\u043d\u0438\u043a")
|
||||||
|
<< QString("\u043f\u043e\u043d\u0435\u0434\u0435\u043b\u044c\u043d\u0438\u043a");
|
||||||
|
// авг., авг., Пн, Пн
|
||||||
|
QTest::newRow("ru_RU 30.08.2021 short")
|
||||||
|
<< QByteArray("ru_RU") << QDate(2021, 8, 30) << QLocale::ShortFormat
|
||||||
|
<< QString("\u0430\u0432\u0433.") << QString("\u0430\u0432\u0433.")
|
||||||
|
<< QString("\u041f\u043d") << QString("\u041f\u043d");
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if QT_CONFIG(icu) || defined(Q_OS_DARWIN)
|
||||||
|
QTest::newRow("en_US 30.08.2021 long")
|
||||||
|
<< QByteArray("en_US") << QDate(2021, 8, 30) << QLocale::LongFormat
|
||||||
|
<< "August" << "August" << "Monday" << "Monday";
|
||||||
|
QTest::newRow("en_US 30.08.2021 short")
|
||||||
|
<< QByteArray("en_US") << QDate(2021, 8, 30) << QLocale::ShortFormat
|
||||||
|
<< "Aug" << "Aug" << "Mon" << "Mon";
|
||||||
|
|
||||||
|
QTest::newRow("de_DE 30.08.2021 long")
|
||||||
|
<< QByteArray("de_DE") << QDate(2021, 8, 30) << QLocale::LongFormat
|
||||||
|
<< "August" << "August" << "Montag" << "Montag";
|
||||||
|
QTest::newRow("de_DE 30.08.2021 short")
|
||||||
|
<< QByteArray("de_DE") << QDate(2021, 8, 30) << QLocale::ShortFormat
|
||||||
|
<< "Aug." << "Aug" << "Mo." << "Mo";
|
||||||
|
#elif defined(Q_OS_WIN)
|
||||||
|
// августа, Август, понедельник, понедельник
|
||||||
|
QTest::newRow("ru_RU 30.08.2021 long")
|
||||||
|
<< QByteArray("ru_RU") << QDate(2021, 8, 30) << QLocale::LongFormat
|
||||||
|
<< QString("\u0430\u0432\u0433\u0443\u0441\u0442\u0430")
|
||||||
|
<< QString("\u0410\u0432\u0433\u0443\u0441\u0442")
|
||||||
|
<< QString("\u043f\u043e\u043d\u0435\u0434\u0435\u043b\u044c\u043d\u0438\u043a")
|
||||||
|
<< QString("\u043f\u043e\u043d\u0435\u0434\u0435\u043b\u044c\u043d\u0438\u043a");
|
||||||
|
// авг, авг, Пн, пн
|
||||||
|
QTest::newRow("ru_RU 30.08.2021 short")
|
||||||
|
<< QByteArray("ru_RU") << QDate(2021, 8, 30) << QLocale::ShortFormat
|
||||||
|
<< QString("\u0430\u0432\u0433") << QString("\u0430\u0432\u0433")
|
||||||
|
<< QString("\u041f\u043d") << QString("\u043f\u043d");
|
||||||
|
|
||||||
|
QTest::newRow("en_US 30.08.2021 long")
|
||||||
|
<< QByteArray("en_US") << QDate(2021, 8, 30) << QLocale::LongFormat
|
||||||
|
<< "August" << "August" << "Monday" << "Monday";
|
||||||
|
QTest::newRow("en_US 30.08.2021 short")
|
||||||
|
<< QByteArray("en_US") << QDate(2021, 8, 30) << QLocale::ShortFormat
|
||||||
|
<< "Aug" << "Aug" << "Mon" << "Mon";
|
||||||
|
|
||||||
|
QTest::newRow("de_DE 30.08.2021 long")
|
||||||
|
<< QByteArray("de_DE") << QDate(2021, 8, 30) << QLocale::LongFormat
|
||||||
|
<< "August" << "August" << "Montag" << "Montag";
|
||||||
|
QTest::newRow("de_DE 30.08.2021 short")
|
||||||
|
<< QByteArray("de_DE") << QDate(2021, 8, 30) << QLocale::ShortFormat
|
||||||
|
<< "Aug" << "Aug" << "Mo" << "Mo";
|
||||||
|
#else
|
||||||
|
QSKIP("This test can't run on this OS");
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
void tst_QLocale::systemLocaleDayAndMonthNames()
|
||||||
|
{
|
||||||
|
QFETCH(QByteArray, locale);
|
||||||
|
QFETCH(QDate, date);
|
||||||
|
QFETCH(QLocale::FormatType, format);
|
||||||
|
QFETCH(QString, month);
|
||||||
|
QFETCH(QString, standaloneMonth);
|
||||||
|
QFETCH(QString, day);
|
||||||
|
QFETCH(QString, standaloneDay);
|
||||||
|
locale += ".UTF-8"; // So we don't have to repeat it on every data row !
|
||||||
|
|
||||||
|
const TransientLocale tested(LC_ALL, locale.constData());
|
||||||
|
|
||||||
|
QLocale sys = QLocale::system();
|
||||||
|
#if !QT_CONFIG(icu)
|
||||||
|
// setlocale() does not really change locale on Windows and macOS, we
|
||||||
|
// need to actually set the locale manually to run the test
|
||||||
|
if (!locale.startsWith(sys.name().toLatin1()))
|
||||||
|
QSKIP(("Set locale to " + locale + " manually to run this test.").constData());
|
||||||
|
#endif
|
||||||
|
|
||||||
|
const int m = date.month();
|
||||||
|
QCOMPARE(sys.monthName(m, format), month);
|
||||||
|
QCOMPARE(sys.standaloneMonthName(m, format), standaloneMonth);
|
||||||
|
|
||||||
|
const int d = date.dayOfWeek();
|
||||||
|
QCOMPARE(sys.dayName(d, format), day);
|
||||||
|
QCOMPARE(sys.standaloneDayName(d, format), standaloneDay);
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif // QT_NO_SYSTEMLOCALE
|
||||||
|
|
||||||
void tst_QLocale::numberGroupingIndia()
|
void tst_QLocale::numberGroupingIndia()
|
||||||
{
|
{
|
||||||
const QLocale indian(QLocale::Hindi, QLocale::India);
|
const QLocale indian(QLocale::Hindi, QLocale::India);
|
||||||
|
Loading…
Reference in New Issue
Block a user