summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/Storage.h
blob: 091b2c0b7580657f68d43c85c9d28acecfb5d429 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*
 * Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <AK/HashMap.h>
#include <AK/RefCounted.h>
#include <LibWeb/Bindings/Wrappable.h>
#include <LibWeb/DOM/ExceptionOr.h>
#include <LibWeb/Forward.h>

namespace Web::HTML {

class Storage
    : public RefCounted<Storage>
    , public Bindings::Wrappable {
public:
    using WrapperType = Bindings::StorageWrapper;

    static NonnullRefPtr<Storage> create();
    ~Storage();

    size_t length() const;
    String key(size_t index);
    String get_item(String const& key) const;
    DOM::ExceptionOr<void> set_item(String const& key, String const& value);
    void remove_item(String const& key);
    void clear();

    Vector<String> supported_property_names() const;

    void dump() const;

private:
    Storage();

    void reorder();
    void broadcast(String const& key, String const& old_value, String const& new_value);

    OrderedHashMap<String, String> m_map;
};

}

namespace Web::Bindings {

StorageWrapper* wrap(JS::GlobalObject&, HTML::Storage&);

}