| 
									
										
										
										
											2022-10-03 20:58:36 +02:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2023-10-29 01:46:02 +02:00
										 |  |  |  * Copyright (c) 2022-2023, networkException <networkexception@serenityos.org> | 
					
						
							| 
									
										
										
										
											2022-10-03 20:58:36 +02:00
										 |  |  |  * | 
					
						
							|  |  |  |  * SPDX-License-Identifier: BSD-2-Clause | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #pragma once
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-04 09:49:56 +02:00
										 |  |  | #include <LibJS/Heap/Cell.h>
 | 
					
						
							| 
									
										
										
										
											2023-10-29 01:46:02 +02:00
										 |  |  | #include <LibJS/Heap/HeapFunction.h>
 | 
					
						
							| 
									
										
										
										
											2024-03-18 16:22:27 +13:00
										 |  |  | #include <LibURL/URL.h>
 | 
					
						
							| 
									
										
										
										
											2022-10-03 20:58:36 +02:00
										 |  |  | #include <LibWeb/HTML/Scripting/ModuleScript.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace Web::HTML { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class ModuleLocationTuple { | 
					
						
							|  |  |  | public: | 
					
						
							| 
									
										
										
										
											2024-03-18 16:22:27 +13:00
										 |  |  |     ModuleLocationTuple(URL::URL url, ByteString type) | 
					
						
							| 
									
										
										
										
											2022-10-03 20:58:36 +02:00
										 |  |  |         : m_url(move(url)) | 
					
						
							|  |  |  |         , m_type(move(type)) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-18 16:22:27 +13:00
										 |  |  |     URL::URL const& url() const { return m_url; } | 
					
						
							| 
									
										
										
										
											2023-12-16 17:49:34 +03:30
										 |  |  |     ByteString const& type() const { return m_type; } | 
					
						
							| 
									
										
										
										
											2022-10-03 20:58:36 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     bool operator==(ModuleLocationTuple const& other) const | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return other.url() == m_url && other.type() == m_type; | 
					
						
							| 
									
										
										
										
											2023-07-07 22:48:11 -04:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2022-10-03 20:58:36 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							| 
									
										
										
										
											2024-03-18 16:22:27 +13:00
										 |  |  |     URL::URL m_url; | 
					
						
							| 
									
										
										
										
											2023-12-16 17:49:34 +03:30
										 |  |  |     ByteString m_type; | 
					
						
							| 
									
										
										
										
											2022-10-03 20:58:36 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // https://html.spec.whatwg.org/multipage/webappapis.html#module-map
 | 
					
						
							| 
									
										
										
										
											2023-05-04 09:49:56 +02:00
										 |  |  | class ModuleMap final : public JS::Cell { | 
					
						
							|  |  |  |     JS_CELL(ModuleMap, Cell); | 
					
						
							| 
									
										
										
										
											2023-11-19 19:47:52 +01:00
										 |  |  |     JS_DECLARE_ALLOCATOR(ModuleMap); | 
					
						
							| 
									
										
										
										
											2022-10-03 20:58:36 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  |     ModuleMap() = default; | 
					
						
							|  |  |  |     ~ModuleMap() = default; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     enum class EntryType { | 
					
						
							|  |  |  |         Fetching, | 
					
						
							|  |  |  |         Failed, | 
					
						
							|  |  |  |         ModuleScript | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     struct Entry { | 
					
						
							|  |  |  |         EntryType type; | 
					
						
							| 
									
										
										
										
											2023-02-26 16:09:02 -07:00
										 |  |  |         JS::GCPtr<JavaScriptModuleScript> module_script; | 
					
						
							| 
									
										
										
										
											2022-10-03 20:58:36 +02:00
										 |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-29 01:46:02 +02:00
										 |  |  |     using CallbackFunction = JS::NonnullGCPtr<JS::HeapFunction<void(Entry)>>; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-18 16:22:27 +13:00
										 |  |  |     bool is_fetching(URL::URL const& url, ByteString const& type) const; | 
					
						
							|  |  |  |     bool is_failed(URL::URL const& url, ByteString const& type) const; | 
					
						
							| 
									
										
										
										
											2022-10-03 20:58:36 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-18 16:22:27 +13:00
										 |  |  |     bool is(URL::URL const& url, ByteString const& type, EntryType) const; | 
					
						
							| 
									
										
										
										
											2022-10-03 20:58:36 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-18 16:22:27 +13:00
										 |  |  |     Optional<Entry> get(URL::URL const& url, ByteString const& type) const; | 
					
						
							| 
									
										
										
										
											2022-10-03 20:58:36 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-18 16:22:27 +13:00
										 |  |  |     AK::HashSetResult set(URL::URL const& url, ByteString const& type, Entry); | 
					
						
							| 
									
										
										
										
											2022-10-03 20:58:36 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-18 16:22:27 +13:00
										 |  |  |     void wait_for_change(JS::Heap&, URL::URL const& url, ByteString const& type, Function<void(Entry)> callback); | 
					
						
							| 
									
										
										
										
											2022-10-03 20:58:36 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							| 
									
										
										
										
											2023-05-04 09:49:56 +02:00
										 |  |  |     virtual void visit_edges(JS::Cell::Visitor&) override; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-03 20:58:36 +02:00
										 |  |  |     HashMap<ModuleLocationTuple, Entry> m_values; | 
					
						
							| 
									
										
										
										
											2023-10-29 01:46:02 +02:00
										 |  |  |     HashMap<ModuleLocationTuple, Vector<CallbackFunction>> m_callbacks; | 
					
						
							| 
									
										
										
										
											2023-12-16 18:32:01 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     bool m_firing_callbacks { false }; | 
					
						
							| 
									
										
										
										
											2022-10-03 20:58:36 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace AK { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | template<> | 
					
						
							| 
									
										
										
										
											2023-11-08 20:29:12 +01:00
										 |  |  | struct Traits<Web::HTML::ModuleLocationTuple> : public DefaultTraits<Web::HTML::ModuleLocationTuple> { | 
					
						
							| 
									
										
										
										
											2022-10-03 20:58:36 +02:00
										 |  |  |     static unsigned hash(Web::HTML::ModuleLocationTuple const& tuple) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2023-12-16 17:49:34 +03:30
										 |  |  |         return pair_int_hash(tuple.url().to_byte_string().hash(), tuple.type().hash()); | 
					
						
							| 
									
										
										
										
											2022-10-03 20:58:36 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } |