mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-22 17:01:54 +00:00
This change follows the pattern of our cookies persistence implementation: the "browser" process is responsible for interacting with the sqlite database, and WebContent communicates all storage operations via IPC. The new database table uses (storage_endpoint, storage_key, bottle_key) as the primary key. This design follows concepts from the https://storage.spec.whatwg.org/ and is intended to support reuse of the persistence layer for other APIs (e.g., CacheStorage, IndexedDB). For now, `storage_endpoint` is always "localStorage", `storage_key` is the website's origin, and `bottle_key` is the name of the localStorage key.
41 lines
1.2 KiB
C++
41 lines
1.2 KiB
C++
/*
|
|
* Copyright (c) 2024-2025, Shannon Booth <shannon@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibGC/Heap.h>
|
|
#include <LibWeb/HTML/Scripting/Environments.h>
|
|
#include <LibWeb/HTML/Window.h>
|
|
#include <LibWeb/StorageAPI/StorageShed.h>
|
|
|
|
namespace Web::StorageAPI {
|
|
|
|
GC_DEFINE_ALLOCATOR(StorageShed);
|
|
|
|
void StorageShed::visit_edges(GC::Cell::Visitor& visitor)
|
|
{
|
|
Base::visit_edges(visitor);
|
|
visitor.visit(m_data);
|
|
}
|
|
|
|
// https://storage.spec.whatwg.org/#obtain-a-storage-shelf
|
|
GC::Ptr<StorageShelf> StorageShed::obtain_a_storage_shelf(HTML::EnvironmentSettingsObject& environment, StorageType type)
|
|
{
|
|
// 1. Let key be the result of running obtain a storage key with environment.
|
|
auto key = obtain_a_storage_key(environment);
|
|
|
|
auto& page = as<HTML::Window>(environment.global_object()).page();
|
|
|
|
// 2. If key is failure, then return failure.
|
|
if (!key.has_value())
|
|
return {};
|
|
|
|
// 3. If shed[key] does not exist, then set shed[key] to the result of running create a storage shelf with type.
|
|
// 4. Return shed[key].
|
|
return m_data.ensure(key.value(), [&page, key, type, &heap = this->heap()] {
|
|
return StorageShelf::create(heap, page, *key, type);
|
|
});
|
|
}
|
|
|
|
}
|