From 2aa4a82499d4becd2284cdb482213d541b8804dd Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 28 Apr 2024 16:29:10 +0200 Subject: Adding upstream version 86.0.1. Signed-off-by: Daniel Baumann --- dom/encoding/TextEncoder.cpp | 52 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 dom/encoding/TextEncoder.cpp (limited to 'dom/encoding/TextEncoder.cpp') diff --git a/dom/encoding/TextEncoder.cpp b/dom/encoding/TextEncoder.cpp new file mode 100644 index 0000000000..4f7b3767b4 --- /dev/null +++ b/dom/encoding/TextEncoder.cpp @@ -0,0 +1,52 @@ +/* -*- 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/. */ + +#include "mozilla/dom/TextEncoder.h" +#include "mozilla/CheckedInt.h" +#include "mozilla/ErrorResult.h" +#include "mozilla/UniquePtrExtensions.h" +#include "nsReadableUtils.h" + +namespace mozilla::dom { + +void TextEncoder::Encode(JSContext* aCx, JS::Handle aObj, + const nsACString& aUtf8String, + JS::MutableHandle aRetval, + OOMReporter& aRv) { + JSAutoRealm ar(aCx, aObj); + JSObject* outView = Uint8Array::Create(aCx, aUtf8String); + if (!outView) { + aRv.ReportOOM(); + return; + } + + aRetval.set(outView); +} + +void TextEncoder::EncodeInto(JSContext* aCx, JS::Handle aSrc, + const Uint8Array& aDst, + TextEncoderEncodeIntoResult& aResult, + OOMReporter& aError) { + aDst.ComputeState(); + size_t read; + size_t written; + auto maybe = JS_EncodeStringToUTF8BufferPartial( + aCx, aSrc, AsWritableChars(Span(aDst.Data(), aDst.Length()))); + if (!maybe) { + aError.ReportOOM(); + return; + } + Tie(read, written) = *maybe; + MOZ_ASSERT(written <= aDst.Length()); + aResult.mRead.Construct() = read; + aResult.mWritten.Construct() = written; +} + +void TextEncoder::GetEncoding(nsACString& aEncoding) { + aEncoding.AssignLiteral("utf-8"); +} + +} // namespace mozilla::dom -- cgit v1.2.3