![]() |
Qt 6.x
The Qt SDK
|
\inmodule QtCore More...
#include <qstringconverter.h>
Inheritance diagram for QStringDecoder:
Collaboration diagram for QStringDecoder:Classes | |
| struct | EncodedData |
Public Member Functions | |
| constexpr | QStringDecoder (Encoding encoding, Flags flags=Flag::Default) |
| Creates an decoder object using encoding and flags. | |
| constexpr | QStringDecoder () noexcept |
| Default constructs an decoder. | |
| QStringDecoder (const char *name, Flags f=Flag::Default) | |
| Creates an decoder object using name and flags. | |
| Q_WEAK_OVERLOAD EncodedData< const QByteArray & > | operator() (const QByteArray &ba) |
| EncodedData< QByteArrayView > | operator() (QByteArrayView ba) |
| Q_WEAK_OVERLOAD EncodedData< const QByteArray & > | decode (const QByteArray &ba) |
| EncodedData< QByteArrayView > | decode (QByteArrayView ba) |
| Converts ba and returns the data as a QString. | |
| qsizetype | requiredSpace (qsizetype inputLength) const |
| Returns the maximum amount of UTF-16 code units required to be able to process inputLength encoded data. | |
| QChar * | appendToBuffer (QChar *out, QByteArrayView ba) |
| Decodes the sequence of bytes viewed by in and writes the decoded result into the buffer starting at out. | |
| char16_t * | appendToBuffer (char16_t *out, QByteArrayView ba) |
Public Member Functions inherited from QStringConverter | |
| QStringConverter (QStringConverter &&)=default | |
| QStringConverter & | operator= (QStringConverter &&)=default |
| bool | isValid () const noexcept |
| Returns true if this is a valid string converter that can be used for encoding or decoding text. | |
| void | resetState () noexcept |
| Resets the internal state of the converter, clearing potential errors or partial conversions. | |
| bool | hasError () const noexcept |
| Returns true if a conversion could not correctly convert a character. | |
| Q_CORE_EXPORT const char * | name () const noexcept |
| Returns the canonical name of the encoding this QStringConverter can encode or decode. | |
Static Public Member Functions | |
| static Q_CORE_EXPORT QStringDecoder | decoderForHtml (QByteArrayView data) |
| Tries to determine the encoding of the HTML in data by looking at leading byte order marks or a charset specifier in the HTML meta tag and returns a QStringDecoder matching the encoding. | |
Static Public Member Functions inherited from QStringConverter | |
| static Q_CORE_EXPORT std::optional< Encoding > | encodingForName (const char *name) noexcept |
| Convert name to the corresponding \l Encoding member, if there is one. | |
| static Q_CORE_EXPORT const char * | nameForEncoding (Encoding e) |
| Returns the canonical name for encoding e. | |
| static Q_CORE_EXPORT std::optional< Encoding > | encodingForData (QByteArrayView data, char16_t expectedFirstCharacter=0) noexcept |
| Returns the encoding for the content of data if it can be determined. | |
| static Q_CORE_EXPORT std::optional< Encoding > | encodingForHtml (QByteArrayView data) |
| Tries to determine the encoding of the HTML in data by looking at leading byte order marks or a charset specifier in the HTML meta tag. | |
Protected Member Functions | |
| constexpr | QStringDecoder (const Interface *i) noexcept |
Protected Member Functions inherited from QStringConverter | |
| constexpr | QStringConverter () noexcept |
| constexpr | QStringConverter (Encoding encoding, Flags f) |
| constexpr | QStringConverter (const Interface *i) noexcept |
| Q_CORE_EXPORT | QStringConverter (const char *name, Flags f) |
| ~QStringConverter ()=default | |
Protected Member Functions inherited from QStringConverterBase | |
| ~QStringConverterBase ()=default | |
Additional Inherited Members | |
Public Types inherited from QStringConverter | |
| enum | Encoding { Utf8 , Utf16 , Utf16LE , Utf16BE , Utf32 , Utf32LE , Utf32BE , Latin1 , System , LastEncoding = System } |
| \value Utf8 Create a converter to or from UTF-8 \value Utf16 Create a converter to or from UTF-16. More... | |
Public Types inherited from QStringConverterBase | |
| enum class | Flag { Default = 0 , Stateless = 0x1 , ConvertInvalidToNull = 0x2 , WriteBom = 0x4 , ConvertInitialBom = 0x8 , UsesIcu = 0x10 } |
Protected Attributes inherited from QStringConverter | |
| const Interface * | iface |
| State | state |
\inmodule QtCore
The QStringDecoder class provides a state-based decoder for text. \reentrant
A text decoder converts text an encoded text format that uses a specific encoding into Qt's internal representation.
Converting encoded data into a QString can be achieved using the following code:
The decoder remembers any state that is required between calls, so converting data received in chunks, for example, when receiving it over a network, is just as easy, by calling the decoder whenever new data is available:
The QStringDecoder object maintains state between chunks and therefore works correctly even if chunks are split in the middle of a multi-byte character sequence.
QStringDecoder objects can't be copied because of their internal state, but can be moved.
Definition at line 91 of file qstringconverter.h.
|
inlineexplicitconstexprprotectednoexcept |
Definition at line 94 of file qstringconverter.h.
|
inlineexplicitconstexpr |
Creates an decoder object using encoding and flags.
Definition at line 98 of file qstringconverter.h.
|
inlineconstexprnoexcept |
Default constructs an decoder.
The default decoder is not valid, and can't be used for converting text.
Definition at line 101 of file qstringconverter.h.
Referenced by decoderForHtml().
Here is the caller graph for this function:
|
inlineexplicit |
Creates an decoder object using name and flags.
If name is not the name of a known encoding an invalid converter will get created.
Definition at line 104 of file qstringconverter.h.
|
inline |
Definition at line 143 of file qstringconverter.h.
References appendToBuffer(), ba, and out.
Here is the call graph for this function:
|
inline |
Decodes the sequence of bytes viewed by in and writes the decoded result into the buffer starting at out.
Returns a pointer to the end of data written.
out needs to be large enough to be able to hold all the decoded data. Use \l{requiredSpace} to determine the maximum size requirements to decode an encoded data buffer of in.size() bytes.
Definition at line 135 of file qstringconverter.h.
References ba, QStringConverter::iface, QStringConverterBase::State::invalidChars, out, QStringConverter::state, and QStringConverter::Interface::toUtf16.
Referenced by appendToBuffer().
Here is the caller graph for this function:
|
inline |
Definition at line 127 of file qstringconverter.h.
References ba.
Referenced by QClipboard::text().
Here is the caller graph for this function:
|
inline |
Converts ba and returns the data as a QString.
Definition at line 129 of file qstringconverter.h.
References ba.
|
static |
Tries to determine the encoding of the HTML in data by looking at leading byte order marks or a charset specifier in the HTML meta tag and returns a QStringDecoder matching the encoding.
If the returned decoder is not valid, the encoding specified is not supported by QStringConverter. If no encoding is detected, the method returns a decoder for Utf8.
Definition at line 2175 of file qstringconverter.cpp.
References QStringDecoder(), QStringConverter::encodingForData(), QByteArray::isEmpty(), parseHtmlMetaForEncoding(), and QStringConverter::Utf8.
Referenced by QMimeDataPrivate::retrieveTypedData(), and QTextBrowserPrivate::setSource().
Here is the call graph for this function:
Here is the caller graph for this function:
|
inline |
Definition at line 122 of file qstringconverter.h.
References ba.
|
inline |
Definition at line 124 of file qstringconverter.h.
References ba.
Returns the maximum amount of UTF-16 code units required to be able to process inputLength encoded data.
Definition at line 133 of file qstringconverter.h.
References QStringConverter::iface, and QStringConverter::Interface::toUtf16Len.