TextEncoder.cpp 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /*
  2. * Copyright (c) 2021-2022, Linus Groh <linusg@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #include <AK/DeprecatedFlyString.h>
  7. #include <LibJS/Runtime/TypedArray.h>
  8. #include <LibWeb/Bindings/Intrinsics.h>
  9. #include <LibWeb/Encoding/TextEncoder.h>
  10. namespace Web::Encoding {
  11. JS::NonnullGCPtr<TextEncoder> TextEncoder::construct_impl(JS::Realm& realm)
  12. {
  13. return realm.heap().allocate<TextEncoder>(realm, realm);
  14. }
  15. TextEncoder::TextEncoder(JS::Realm& realm)
  16. : PlatformObject(realm)
  17. {
  18. }
  19. TextEncoder::~TextEncoder() = default;
  20. void TextEncoder::initialize(JS::Realm& realm)
  21. {
  22. Base::initialize(realm);
  23. set_prototype(&Bindings::ensure_web_prototype<Bindings::TextEncoderPrototype>(realm, "TextEncoder"));
  24. }
  25. // https://encoding.spec.whatwg.org/#dom-textencoder-encode
  26. JS::Uint8Array* TextEncoder::encode(DeprecatedString const& input) const
  27. {
  28. // NOTE: The AK::DeprecatedString returned from PrimitiveString::string() is always UTF-8, regardless of the internal string type, so most of these steps are no-ops.
  29. // 1. Convert input to an I/O queue of scalar values.
  30. // 2. Let output be the I/O queue of bytes « end-of-queue ».
  31. // 3. While true:
  32. // 1. Let item be the result of reading from input.
  33. // 2. Let result be the result of processing an item with item, an instance of the UTF-8 encoder, input, output, and "fatal".
  34. // 3. Assert: result is not an error.
  35. // 4. If result is finished, then convert output into a byte sequence and return a Uint8Array object wrapping an ArrayBuffer containing output.
  36. auto byte_buffer = input.to_byte_buffer();
  37. auto array_length = byte_buffer.size();
  38. auto array_buffer = JS::ArrayBuffer::create(realm(), move(byte_buffer));
  39. return JS::Uint8Array::create(realm(), array_length, *array_buffer);
  40. }
  41. // https://encoding.spec.whatwg.org/#dom-textencoder-encoding
  42. DeprecatedFlyString const& TextEncoder::encoding()
  43. {
  44. static DeprecatedFlyString encoding = "utf-8"sv;
  45. return encoding;
  46. }
  47. }