2022-02-08 15:38:29 -03:00
|
|
|
/*
|
2024-10-04 08:19:50 -03:00
|
|
|
* Copyright (c) 2022, Andreas Kling <andreas@ladybird.org>
|
2023-02-27 21:06:10 -03:00
|
|
|
* Copyright (c) 2023, Luke Wilde <lukew@serenityos.org>
|
2022-02-08 15:38:29 -03:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <AK/HashMap.h>
|
2024-01-09 20:05:03 -03:00
|
|
|
#include <LibWeb/Bindings/PlatformObject.h>
|
2022-09-25 13:03:42 -03:00
|
|
|
#include <LibWeb/WebIDL/ExceptionOr.h>
|
2022-02-08 15:38:29 -03:00
|
|
|
|
|
|
|
|
namespace Web::HTML {
|
|
|
|
|
|
2024-01-09 20:05:03 -03:00
|
|
|
class Storage : public Bindings::PlatformObject {
|
|
|
|
|
WEB_PLATFORM_OBJECT(Storage, Bindings::PlatformObject);
|
2023-11-19 15:47:52 -03:00
|
|
|
JS_DECLARE_ALLOCATOR(Storage);
|
2022-02-08 15:38:29 -03:00
|
|
|
|
2022-09-03 14:44:37 -03:00
|
|
|
public:
|
2023-08-13 08:05:26 -03:00
|
|
|
[[nodiscard]] static JS::NonnullGCPtr<Storage> create(JS::Realm&);
|
2022-02-08 15:38:29 -03:00
|
|
|
~Storage();
|
|
|
|
|
|
|
|
|
|
size_t length() const;
|
2023-08-26 01:30:02 -03:00
|
|
|
Optional<String> key(size_t index);
|
|
|
|
|
Optional<String> get_item(StringView key) const;
|
|
|
|
|
WebIDL::ExceptionOr<void> set_item(String const& key, String const& value);
|
|
|
|
|
void remove_item(StringView key);
|
2022-02-08 15:38:29 -03:00
|
|
|
void clear();
|
|
|
|
|
|
2022-04-01 18:14:04 -03:00
|
|
|
auto const& map() const { return m_map; }
|
|
|
|
|
|
2022-02-08 15:50:14 -03:00
|
|
|
void dump() const;
|
|
|
|
|
|
2022-02-08 15:38:29 -03:00
|
|
|
private:
|
2022-09-25 19:38:21 -03:00
|
|
|
explicit Storage(JS::Realm&);
|
2022-02-08 15:38:29 -03:00
|
|
|
|
2023-08-07 03:41:28 -03:00
|
|
|
virtual void initialize(JS::Realm&) override;
|
2023-01-10 08:28:20 -03:00
|
|
|
|
2024-01-09 20:05:03 -03:00
|
|
|
// ^PlatformObject
|
2024-10-17 19:04:35 -03:00
|
|
|
virtual Optional<JS::Value> item_value(size_t index) const override;
|
2024-07-25 02:36:10 -03:00
|
|
|
virtual JS::Value named_item_value(FlyString const&) const override;
|
2023-11-20 20:15:56 -03:00
|
|
|
virtual WebIDL::ExceptionOr<DidDeletionFail> delete_value(String const&) override;
|
2023-12-24 16:59:00 -03:00
|
|
|
virtual Vector<FlyString> supported_property_names() const override;
|
2024-10-17 19:04:35 -03:00
|
|
|
virtual WebIDL::ExceptionOr<void> set_value_of_indexed_property(u32, JS::Value) override;
|
2023-11-20 20:15:56 -03:00
|
|
|
virtual WebIDL::ExceptionOr<void> set_value_of_named_property(String const& key, JS::Value value) override;
|
2023-02-27 21:06:10 -03:00
|
|
|
|
2022-02-08 15:38:29 -03:00
|
|
|
void reorder();
|
2023-08-26 01:30:02 -03:00
|
|
|
void broadcast(StringView key, StringView old_value, StringView new_value);
|
2022-02-08 15:38:29 -03:00
|
|
|
|
2023-08-26 01:30:02 -03:00
|
|
|
OrderedHashMap<String, String> m_map;
|
2022-02-08 15:38:29 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|