2022-02-08 19:38:29 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AK/HashMap.h>
|
2022-09-03 19:44:37 +02:00
|
|
|
#include <LibWeb/Bindings/PlatformObject.h>
|
2022-09-25 17:03:42 +01:00
|
|
|
#include <LibWeb/WebIDL/ExceptionOr.h>
|
2022-02-08 19:38:29 +01:00
|
|
|
|
|
|
|
namespace Web::HTML {
|
|
|
|
|
2022-09-03 19:44:37 +02:00
|
|
|
class Storage : public Bindings::PlatformObject {
|
|
|
|
WEB_PLATFORM_OBJECT(Storage, Bindings::PlatformObject);
|
2022-02-08 19:38:29 +01:00
|
|
|
|
2022-09-03 19:44:37 +02:00
|
|
|
public:
|
2022-09-25 16:38:21 -06:00
|
|
|
static JS::NonnullGCPtr<Storage> create(JS::Realm&);
|
2022-02-08 19:38:29 +01:00
|
|
|
~Storage();
|
|
|
|
|
|
|
|
size_t length() const;
|
2022-12-04 18:02:33 +00:00
|
|
|
DeprecatedString key(size_t index);
|
|
|
|
DeprecatedString get_item(DeprecatedString const& key) const;
|
|
|
|
WebIDL::ExceptionOr<void> set_item(DeprecatedString const& key, DeprecatedString const& value);
|
|
|
|
void remove_item(DeprecatedString const& key);
|
2022-02-08 19:38:29 +01:00
|
|
|
void clear();
|
|
|
|
|
2022-12-04 18:02:33 +00:00
|
|
|
Vector<DeprecatedString> supported_property_names() const;
|
2022-02-08 19:38:29 +01:00
|
|
|
|
2022-04-02 00:14:04 +03:00
|
|
|
auto const& map() const { return m_map; }
|
|
|
|
|
2022-02-08 19:50:14 +01:00
|
|
|
void dump() const;
|
|
|
|
|
2022-02-08 19:38:29 +01:00
|
|
|
private:
|
2022-09-25 16:38:21 -06:00
|
|
|
explicit Storage(JS::Realm&);
|
2022-02-08 19:38:29 +01:00
|
|
|
|
2023-01-28 12:33:35 -05:00
|
|
|
virtual JS::ThrowCompletionOr<void> initialize(JS::Realm&) override;
|
2023-01-10 06:28:20 -05:00
|
|
|
|
2022-02-08 19:38:29 +01:00
|
|
|
void reorder();
|
2022-12-04 18:02:33 +00:00
|
|
|
void broadcast(DeprecatedString const& key, DeprecatedString const& old_value, DeprecatedString const& new_value);
|
2022-02-08 19:38:29 +01:00
|
|
|
|
2022-12-04 18:02:33 +00:00
|
|
|
OrderedHashMap<DeprecatedString, DeprecatedString> m_map;
|
2022-02-08 19:38:29 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|