2023-08-01 18:29:54 -04:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2023, Tim Flynn <trflynn89@serenityos.org>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AK/HashMap.h>
|
|
|
|
#include <AK/String.h>
|
2024-11-15 04:01:23 +13:00
|
|
|
#include <LibGC/Ptr.h>
|
|
|
|
#include <LibGC/Root.h>
|
2024-05-05 19:59:18 +12:00
|
|
|
#include <LibURL/Forward.h>
|
2023-08-01 18:29:54 -04:00
|
|
|
#include <LibWeb/Forward.h>
|
|
|
|
|
|
|
|
namespace Web::FileAPI {
|
|
|
|
|
|
|
|
// https://w3c.github.io/FileAPI/#blob-url-entry
|
|
|
|
struct BlobURLEntry {
|
2024-11-15 04:01:23 +13:00
|
|
|
GC::Root<Blob> object; // FIXME: This could also be a MediaSource after we implement MSE.
|
|
|
|
GC::Root<HTML::EnvironmentSettingsObject> environment;
|
2023-08-01 18:29:54 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
// https://w3c.github.io/FileAPI/#BlobURLStore
|
|
|
|
using BlobURLStore = HashMap<String, BlobURLEntry>;
|
|
|
|
|
|
|
|
BlobURLStore& blob_url_store();
|
|
|
|
ErrorOr<String> generate_new_blob_url();
|
2024-11-15 04:01:23 +13:00
|
|
|
ErrorOr<String> add_entry_to_blob_url_store(GC::Ref<Blob> object);
|
2023-08-01 18:29:54 -04:00
|
|
|
ErrorOr<void> remove_entry_from_blob_url_store(StringView url);
|
2024-05-05 19:59:18 +12:00
|
|
|
Optional<BlobURLEntry> resolve_a_blob_url(URL::URL const&);
|
2023-08-01 18:29:54 -04:00
|
|
|
|
2024-11-15 04:01:23 +13:00
|
|
|
void run_unloading_cleanup_steps(GC::Ref<DOM::Document>);
|
2024-04-03 20:17:09 +02:00
|
|
|
|
2023-08-01 18:29:54 -04:00
|
|
|
}
|