/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim: set ts=8 sts=2 et sw=2 tw=80: */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this file,
* You can obtain one at http://mozilla.org/MPL/2.0/. */
class TextDecoderCommon { public: /** * Decodes incoming byte stream of characters in charset indicated by * encoding. * * The encoding algorithm state is reset if aOptions.mStream is not set. * * If the fatal flag is set then a decoding error will throw EncodingError. * Else the decoder will return a decoded string with replacement * character(s) for unidentified character(s). * * @param aInput, incoming byte stream of characters to be decoded to * to UTF-16 code points. * @param aStream, indicates if streaming or not. * @param aOutDecodedString, decoded string of UTF-16 code points. * @param aRv, error result.
*/ void DecodeNative(mozilla::Span<const uint8_t> aInput, constbool aStream,
nsAString& aOutDecodedString, ErrorResult& aRv);
/** * Return the encoding name. * * @param aEncoding, current encoding.
*/ void GetEncoding(nsAString& aEncoding);
/** * Validates provided label and throws an exception if invalid label. * * @param aLabel The encoding label (case insensitive) provided. * @param aOptions The TextDecoderOptions to use. * @return aRv EncodingError exception else null.
*/ void Init(const nsAString& aLabel, const TextDecoderOptions& aOptions,
ErrorResult& aRv);
/** * Performs initialization with a Gecko-canonical encoding name (as opposed * to a label.) * * @param aEncoding An Encoding object * @param aOptions The TextDecoderOptions to use.
*/ void InitWithEncoding(NotNull<const Encoding*> aEncoding, const TextDecoderOptions& aOptions);
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.