![]() |
Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
|
\inmodule QtCore More...
#include <qstringconverter.h>
Classes | |
struct | DecodedData |
Public Types | |
using | FinalizeResult = FinalizeResultChar<char> |
This is an alias for QStringConverter::FinalizeResultChar<char>. | |
Public Types inherited from QStringConverter | |
enum class | Flag { Default = 0 , Stateless = 0x1 , ConvertInvalidToNull = 0x2 , WriteBom = 0x4 , ConvertInitialBom = 0x8 , UsesIcu = 0x10 } |
\value Default Default conversion rules apply. More... | |
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 Member Functions | |
constexpr | QStringEncoder () noexcept |
Default constructs an encoder. | |
constexpr | QStringEncoder (Encoding encoding, Flags flags=Flag::Default) |
Creates an encoder object using encoding and flags. | |
QStringEncoder (QAnyStringView name, Flags flags=Flag::Default) | |
Creates an encoder object using name and flags. | |
Q_WEAK_OVERLOAD DecodedData< const QString & > | operator() (const QString &str) |
DecodedData< QStringView > | operator() (QStringView in) |
Converts in and returns a struct that is implicitly convertible to QByteArray. | |
Q_WEAK_OVERLOAD DecodedData< const QString & > | encode (const QString &str) |
DecodedData< QStringView > | encode (QStringView in) |
qsizetype | requiredSpace (qsizetype inputLength) const |
Returns the maximum amount of characters required to be able to process inputLength decoded data. | |
char * | appendToBuffer (char *out, QStringView in) |
Encodes in and writes the encoded result into the buffer starting at out. | |
Q_REQUIRED_RESULT Q_CORE_EXPORT FinalizeResult | finalize (char *out, qsizetype maxlen) |
Q_REQUIRED_RESULT FinalizeResult | finalize () |
Signals to the decoder that no further data will arrive. | |
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. |
Protected Member Functions | |
constexpr | QStringEncoder (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 (QAnyStringView name, Flags f) |
~QStringConverter ()=default |
Additional Inherited Members | |
Static Public Member Functions inherited from QStringConverter | |
static Q_CORE_EXPORT std::optional< Encoding > | encodingForName (QAnyStringView name) noexcept |
Convert name to the corresponding \l Encoding member, if there is one. | |
Q_DECL_PURE_FUNCTION static Q_CORE_EXPORT const char * | nameForEncoding (Encoding e) noexcept |
Returns the canonical name for encoding e or \nullptr if e is an invalid value. | |
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. | |
static Q_CORE_EXPORT QStringList | availableCodecs () |
Returns a list of names of supported codecs. | |
Protected Attributes inherited from QStringConverter | |
const Interface * | iface |
State | state |
\inmodule QtCore
The QStringEncoder class provides a state-based encoder for text. \reentrant
A text encoder converts text from Qt's internal representation into an encoded text format using a specific encoding.
Converting a string from Unicode to the local encoding can be achieved using the following code:
The encoder 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 encoder whenever new data is available:
The QStringEncoder object maintains state between chunks and therefore works correctly even if a UTF-16 surrogate character is split between chunks.
QStringEncoder objects can't be copied because of their internal state, but can be moved.
Definition at line 20 of file qstringconverter.h.
using QStringEncoder::FinalizeResult = FinalizeResultChar<char> |
This is an alias for QStringConverter::FinalizeResultChar<char>.
Definition at line 66 of file qstringconverter.h.
|
inlineexplicitconstexprprotectednoexcept |
Definition at line 23 of file qstringconverter.h.
|
inlineconstexprnoexcept |
Default constructs an encoder.
The default encoder is not valid, and can't be used for converting text.
Definition at line 27 of file qstringconverter.h.
|
inlineexplicitconstexpr |
Creates an encoder object using encoding and flags.
Definition at line 30 of file qstringconverter.h.
|
inlineexplicit |
Creates an encoder object using name and flags.
If name is not the name of a known encoding an invalid converter will get created.
{const char *}, which was expected to be UTF-8-encoded.Definition at line 33 of file qstringconverter.h.
|
inline |
Encodes in and writes the encoded result into the buffer starting at out.
Returns a pointer to the end of the data written.
{out + requiredSpace()}, including those past the returned end pointer.Definition at line 57 of file qstringconverter.h.
|
inline |
Definition at line 50 of file qstringconverter.h.
|
inline |
Definition at line 52 of file qstringconverter.h.
|
inline |
Signals to the decoder that no further data will arrive.
May also provide data from residual content that was pending decoding. When there is no residual data to account for, the return's error
field will be set to \l {QCharConverter::FinalizeResult::Error::} {NoError}.
If out is supplied and non-null, it must have space in which up to maxlen characters may be written. Up to this many characters of residual output are written to this space, with the end indicated by the return-value's next
field. Typically this residual data shall consist of one replacement character per remaining unconverted input character. When using a stateful encoding, such as ISO-2022-JP, this may also write bytes to restore, or end, the current state in the character stream.
If all residual content has been delivered via out, if out is \nullptr, or if there is no residual data, the decoder is reset on return from finalize(). Otherwise, the remaining data can be retrieved or discarded by a further call to finalize().
Definition at line 70 of file qstringconverter.h.
auto QStringEncoder::finalize | ( | char * | out, |
qsizetype | maxlen ) |
Definition at line 2816 of file qstringconverter.cpp.
|
inline |
Definition at line 45 of file qstringconverter.h.
|
inline |
Converts in and returns a struct that is implicitly convertible to QByteArray.
Definition at line 47 of file qstringconverter.h.
Returns the maximum amount of characters required to be able to process inputLength decoded data.
Definition at line 55 of file qstringconverter.h.