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>
|
2025-01-19 19:02:18 +13:00
|
|
|
#include <LibURL/URL.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 {
|
2025-08-18 00:37:34 +02:00
|
|
|
using Object = Variant<GC::Root<Blob>, GC::Root<MediaSourceExtensions::MediaSource>>;
|
|
|
|
|
|
|
|
Object object;
|
2024-11-15 04:01:23 +13:00
|
|
|
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();
|
2025-08-17 10:21:56 +02:00
|
|
|
ErrorOr<Utf16String> generate_new_blob_url();
|
2025-08-18 00:37:34 +02:00
|
|
|
ErrorOr<Utf16String> add_entry_to_blob_url_store(BlobURLEntry::Object);
|
2025-01-19 19:02:18 +13:00
|
|
|
bool check_for_same_partition_blob_url_usage(URL::BlobURLEntry const&, GC::Ref<HTML::Environment>);
|
|
|
|
struct NavigationEnvironment { };
|
2025-07-19 19:35:33 -07:00
|
|
|
WEB_API Optional<URL::BlobURLEntry::Object> obtain_a_blob_object(URL::BlobURLEntry const&, Variant<GC::Ref<HTML::Environment>, NavigationEnvironment> environment);
|
2025-01-22 17:21:14 +13:00
|
|
|
void remove_entry_from_blob_url_store(URL::URL const& url);
|
2024-11-25 13:23:31 +01:00
|
|
|
Optional<BlobURLEntry const&> 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
|
|
|
}
|