summaryrefslogtreecommitdiffstats
path: root/src/corelib/text/qlocale.cpp
diff options
context:
space:
mode:
authorEdward Welbourne <edward.welbourne@qt.io>2022-11-01 15:56:30 +0100
committerEdward Welbourne <edward.welbourne@qt.io>2022-11-11 16:32:53 +0100
commit83594367514b4c8871e58171e699abba66bf225f (patch)
tree447a4ab145a1adbe03ba8a97a608b5bdb0654a63 /src/corelib/text/qlocale.cpp
parentbbb7a51ab8512c7439f902ba672c5864ea907198 (diff)
QLocaleData::numberToCLocale(): simplify non-decimal handling
Checking for list separators and percent sign was a distraction; none of the callers will allow a string including those. The QString methods, that have to cope with bases other than ten, are all now routed via other methods, so numberToCLocale() no longer has to care about letters as possible digits (although 'e' remains a return from numericToCLocale(), as exponent). It does still need to accept the letters of inf and nan, so retain a check for them, but simplify the processing of ascii as it only needs to get them right. We can also return false on invalid character, rather than breaking out of the loop and leaving other conditions to catch the error. Change-Id: I49f46b2f116d11a310ed3514a0f0e09a3e90c8ca Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'src/corelib/text/qlocale.cpp')
-rw-r--r--src/corelib/text/qlocale.cpp32
1 files changed, 16 insertions, 16 deletions
diff --git a/src/corelib/text/qlocale.cpp b/src/corelib/text/qlocale.cpp
index b021e3e02d..7dea0e05c7 100644
--- a/src/corelib/text/qlocale.cpp
+++ b/src/corelib/text/qlocale.cpp
@@ -3879,10 +3879,13 @@ QString QLocaleData::applyIntegerFormatting(QString &&numStr, bool negative, int
/*
Converts a number in locale to its representation in the C locale.
Only has to guarantee that a string that is a correct representation of
- a number will be converted. If junk is passed in, junk will be passed
- out and the error will be detected during the actual conversion to a
- number. We can't detect junk here, since we don't even know the base
- of the number.
+ a number will be converted.
+
+ Note: only QString integer-parsing methods have a base parameter (hence need
+ to cope with letters as possible digits); but these are now all routed via
+ byteArrayToU?LongLong(), so no longer come via here. The QLocale
+ number-parsers only work in decimal, so don't have to cope with any digits
+ other than 0 through 9.
*/
bool QLocaleData::numberToCLocale(QStringView s, QLocale::NumberOptions number_options,
CharBuff *result) const
@@ -3909,18 +3912,15 @@ bool QLocaleData::numberToCLocale(QStringView s, QLocale::NumberOptions number_o
char out = numericToCLocale(in);
if (out == 0) {
- const QChar simple = in.size() == 1 ? in.front() : QChar::Null;
- if (in == listSeparator())
- out = ';';
- else if (in == percentSign())
- out = '%';
- // for handling base-x numbers
- else if (simple.toLatin1() >= 'A' && simple.toLatin1() <= 'Z')
- out = simple.toLower().toLatin1();
- else if (simple.toLatin1() >= 'a' && simple.toLatin1() <= 'z')
- out = simple.toLatin1();
- else
- break;
+ // Allow ASCII letters of inf, nan:
+ if (in.size() != 1)
+ return false;
+ char16_t ch = in.front().unicode();
+ if (ch > 'n')
+ return false;
+ out = int(ch | 0x20); // tolower(), when ch is a letter
+ if (out != 'a' && out != 'f' && out != 'i' && out != 'n')
+ return false;
} else if (out == '.') {
// Fail if more than one decimal point or point after e
if (decpt_idx != -1 || exponent_idx != -1)