2022-02-15 14:16:21 +03:30
|
|
|
/*
|
|
|
|
* Copyright (c) 2022, Ali Mohammad Pur <mpfard@serenityos.org>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AK/Forward.h>
|
|
|
|
#include <AK/NonnullRefPtr.h>
|
|
|
|
#include <LibJS/Forward.h>
|
|
|
|
#include <LibTextCodec/Decoder.h>
|
2022-09-04 11:03:16 +02:00
|
|
|
#include <LibWeb/Bindings/PlatformObject.h>
|
2022-02-15 14:16:21 +03:30
|
|
|
#include <LibWeb/Forward.h>
|
2022-09-25 17:03:42 +01:00
|
|
|
#include <LibWeb/WebIDL/ExceptionOr.h>
|
2022-02-15 14:16:21 +03:30
|
|
|
|
|
|
|
namespace Web::Encoding {
|
|
|
|
|
|
|
|
// https://encoding.spec.whatwg.org/#textdecoder
|
2022-09-04 11:03:16 +02:00
|
|
|
class TextDecoder : public Bindings::PlatformObject {
|
|
|
|
WEB_PLATFORM_OBJECT(TextDecoder, Bindings::PlatformObject);
|
2022-02-15 14:16:21 +03:30
|
|
|
|
2022-09-04 11:03:16 +02:00
|
|
|
public:
|
LibWeb: Remove unecessary dependence on Window from assorted classes
These classes only needed Window to get at its realm. Pass a realm
directly to construct Crypto, Encoding, HRT, IntersectionObserver,
NavigationTiming, Page, RequestIdleCallback, Selection, Streams, URL,
and XML classes.
2022-09-25 18:11:21 -06:00
|
|
|
static WebIDL::ExceptionOr<JS::NonnullGCPtr<TextDecoder>> construct_impl(JS::Realm&, FlyString encoding);
|
2022-02-15 14:16:21 +03:30
|
|
|
|
2022-09-04 11:03:16 +02:00
|
|
|
virtual ~TextDecoder() override;
|
2022-02-15 14:16:21 +03:30
|
|
|
|
2022-09-25 17:03:42 +01:00
|
|
|
WebIDL::ExceptionOr<String> decode(JS::Handle<JS::Object> const&) const;
|
2022-02-15 14:16:21 +03:30
|
|
|
|
|
|
|
FlyString const& encoding() const { return m_encoding; }
|
|
|
|
bool fatal() const { return m_fatal; }
|
|
|
|
bool ignore_bom() const { return m_ignore_bom; };
|
|
|
|
|
2022-09-04 11:03:16 +02:00
|
|
|
private:
|
2022-02-15 14:16:21 +03:30
|
|
|
// https://encoding.spec.whatwg.org/#dom-textdecoder
|
LibWeb: Remove unecessary dependence on Window from assorted classes
These classes only needed Window to get at its realm. Pass a realm
directly to construct Crypto, Encoding, HRT, IntersectionObserver,
NavigationTiming, Page, RequestIdleCallback, Selection, Streams, URL,
and XML classes.
2022-09-25 18:11:21 -06:00
|
|
|
TextDecoder(JS::Realm&, TextCodec::Decoder&, FlyString encoding, bool fatal, bool ignore_bom);
|
2022-02-15 14:16:21 +03:30
|
|
|
|
|
|
|
TextCodec::Decoder& m_decoder;
|
|
|
|
FlyString m_encoding;
|
|
|
|
bool m_fatal { false };
|
|
|
|
bool m_ignore_bom { false };
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|