/* -*- 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/. */
void TextDecoder::Init(const nsAString& aLabel, const TextDecoderOptions& aOptions, ErrorResult& aRv) { // Let encoding be the result of getting an encoding from label. // If encoding is failure or replacement, throw a RangeError // (https://encoding.spec.whatwg.org/#dom-textdecoder). const Encoding* encoding = Encoding::ForLabelNoReplacement(aLabel); if (!encoding) {
NS_ConvertUTF16toUTF8 label(aLabel);
label.Trim(" \t\n\f\r");
aRv.ThrowRangeError<MSG_ENCODING_NOT_SUPPORTED>(label); return;
}
InitWithEncoding(WrapNotNull(encoding), aOptions);
}
void TextDecoder::InitWithEncoding(NotNull<const Encoding*> aEncoding, const TextDecoderOptions& aOptions) {
aEncoding->Name(mEncoding); // Store the flags passed via our options dictionary.
mFatal = aOptions.mFatal;
mIgnoreBOM = aOptions.mIgnoreBOM;
// Create a decoder object for mEncoding. if (mIgnoreBOM) {
mDecoder = aEncoding->NewDecoderWithoutBOMHandling();
} else {
mDecoder = aEncoding->NewDecoderWithBOMRemoval();
}
}
if (!aOutDecodedString.SetLength(written, fallible)) {
aRv.Throw(NS_ERROR_OUT_OF_MEMORY); return;
}
// If the internal streaming flag of the decoder object is not set, // then reset the encoding algorithm state to the default values if (!aStream) { if (mIgnoreBOM) {
mDecoder->Encoding()->NewDecoderWithoutBOMHandlingInto(*mDecoder);
} else {
mDecoder->Encoding()->NewDecoderWithBOMRemovalInto(*mDecoder);
}
}
}
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.