QtMiscUtils: replace uint args with char32_t

Also change isAsciiDigit() to take a char32_t, so that something like
this works:
QChar ch; isAsciiDigit(ch.unicode())

casting char16_t to uchar is narrowing, and gives weird results. C.f.
QSettingsPrivate::iniEscapedKey() and the QSettings unittests which
uses some unicode characters.

Task-number: QTBUG-110403
Change-Id: Id978a6b2874bc6869ae3ffb28d1887d932c37782
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
This commit is contained in:
Ahmad Samir 2023-02-01 13:24:47 +02:00
parent 4bfdf6a3d1
commit a14bcdfcc9

View File

@ -21,17 +21,17 @@
QT_BEGIN_NAMESPACE QT_BEGIN_NAMESPACE
namespace QtMiscUtils { namespace QtMiscUtils {
constexpr inline char toHexUpper(uint value) noexcept constexpr inline char toHexUpper(char32_t value) noexcept
{ {
return "0123456789ABCDEF"[value & 0xF]; return "0123456789ABCDEF"[value & 0xF];
} }
constexpr inline char toHexLower(uint value) noexcept constexpr inline char toHexLower(char32_t value) noexcept
{ {
return "0123456789abcdef"[value & 0xF]; return "0123456789abcdef"[value & 0xF];
} }
constexpr inline int fromHex(uint c) noexcept constexpr inline int fromHex(char32_t c) noexcept
{ {
return ((c >= '0') && (c <= '9')) ? int(c - '0') : return ((c >= '0') && (c <= '9')) ? int(c - '0') :
((c >= 'A') && (c <= 'F')) ? int(c - 'A' + 10) : ((c >= 'A') && (c <= 'F')) ? int(c - 'A' + 10) :
@ -39,17 +39,17 @@ constexpr inline int fromHex(uint c) noexcept
/* otherwise */ -1; /* otherwise */ -1;
} }
constexpr inline char toOct(uint value) noexcept constexpr inline char toOct(char32_t value) noexcept
{ {
return char('0' + (value & 0x7)); return char('0' + (value & 0x7));
} }
constexpr inline int fromOct(uint c) noexcept constexpr inline int fromOct(char32_t c) noexcept
{ {
return ((c >= '0') && (c <= '7')) ? int(c - '0') : -1; return ((c >= '0') && (c <= '7')) ? int(c - '0') : -1;
} }
[[nodiscard]] constexpr inline bool isAsciiDigit(uchar c) noexcept [[nodiscard]] constexpr inline bool isAsciiDigit(char32_t c) noexcept
{ {
return c >= '0' && c <= '9'; return c >= '0' && c <= '9';
} }