/* * Copyright (c) 2022, Andreas Kling * Copyright (c) 2023, Luke Wilde * Copyright (c) 2024-2025, Shannon Booth * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include #include namespace Web::HTML { // https://html.spec.whatwg.org/multipage/webstorage.html#storage-2 class Storage : public Bindings::PlatformObject { WEB_PLATFORM_OBJECT(Storage, Bindings::PlatformObject); GC_DECLARE_ALLOCATOR(Storage); public: // https://html.spec.whatwg.org/multipage/webstorage.html#concept-storage-type enum class Type { Local, Session, }; [[nodiscard]] static GC::Ref create(JS::Realm&, Type, NonnullRefPtr); ~Storage(); size_t length() const; Optional key(size_t index); Optional get_item(StringView key) const; WebIDL::ExceptionOr set_item(String const& key, String const& value); void remove_item(String const& key); void clear(); auto const& map() const { return m_storage_bottle->map; } auto& map() { return m_storage_bottle->map; } Type type() const { return m_type; } void dump() const; private: Storage(JS::Realm&, Type, NonnullRefPtr); virtual void initialize(JS::Realm&) override; virtual void finalize() override; // ^PlatformObject virtual Optional item_value(size_t index) const override; virtual JS::Value named_item_value(FlyString const&) const override; virtual WebIDL::ExceptionOr delete_value(String const&) override; virtual Vector supported_property_names() const override; virtual WebIDL::ExceptionOr set_value_of_indexed_property(u32, JS::Value) override; virtual WebIDL::ExceptionOr set_value_of_named_property(String const& key, JS::Value value) override; void reorder(); void broadcast(Optional const& key, Optional const& old_value, Optional const& new_value); Type m_type {}; NonnullRefPtr m_storage_bottle; u64 m_stored_bytes { 0 }; }; }