| 
									
										
										
										
											2022-02-17 13:31:09 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (c) 2022, Ben Abraham <ben.d.abraham@gmail.com> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * SPDX-License-Identifier: BSD-2-Clause | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #pragma once
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <AK/RefCounted.h>
 | 
					
						
							|  |  |  | #include <AK/URLParser.h>
 | 
					
						
							|  |  |  | #include <LibWeb/Bindings/MainThreadVM.h>
 | 
					
						
							|  |  |  | #include <LibWeb/Forward.h>
 | 
					
						
							|  |  |  | #include <LibWeb/HTML/MessageEvent.h>
 | 
					
						
							|  |  |  | #include <LibWeb/HTML/MessagePort.h>
 | 
					
						
							|  |  |  | #include <LibWeb/HTML/Scripting/ClassicScript.h>
 | 
					
						
							|  |  |  | #include <LibWeb/HTML/Scripting/WindowEnvironmentSettingsObject.h>
 | 
					
						
							|  |  |  | #include <LibWeb/HTML/Scripting/WorkerEnvironmentSettingsObject.h>
 | 
					
						
							| 
									
										
										
										
											2023-10-08 11:59:40 +02:00
										 |  |  | #include <LibWeb/HTML/Window.h>
 | 
					
						
							| 
									
										
										
										
											2023-11-08 11:47:41 -07:00
										 |  |  | #include <LibWeb/HTML/WorkerAgent.h>
 | 
					
						
							| 
									
										
										
										
											2022-02-17 13:31:09 +01:00
										 |  |  | #include <LibWeb/HTML/WorkerDebugConsoleClient.h>
 | 
					
						
							|  |  |  | #include <LibWeb/Loader/ResourceLoader.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define ENUMERATE_WORKER_EVENT_HANDLERS(E)  \
 | 
					
						
							|  |  |  |     E(onmessage, HTML::EventNames::message) \ | 
					
						
							|  |  |  |     E(onmessageerror, HTML::EventNames::messageerror) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace Web::HTML { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // https://html.spec.whatwg.org/multipage/workers.html#dedicated-workers-and-the-worker-interface
 | 
					
						
							| 
									
										
										
										
											2022-08-28 13:42:07 +02:00
										 |  |  | class Worker : public DOM::EventTarget { | 
					
						
							|  |  |  |     WEB_PLATFORM_OBJECT(Worker, DOM::EventTarget); | 
					
						
							| 
									
										
										
										
											2023-11-19 19:47:52 +01:00
										 |  |  |     JS_DECLARE_ALLOCATOR(Worker); | 
					
						
							| 
									
										
										
										
											2022-02-17 13:31:09 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-28 13:42:07 +02:00
										 |  |  | public: | 
					
						
							| 
									
										
										
										
											2023-12-20 13:47:01 -07:00
										 |  |  |     static WebIDL::ExceptionOr<JS::NonnullGCPtr<Worker>> create(String const& script_url, WorkerOptions const& options, DOM::Document& document); | 
					
						
							|  |  |  |     static WebIDL::ExceptionOr<JS::NonnullGCPtr<Worker>> construct_impl(JS::Realm& realm, String const& script_url, WorkerOptions const& options) | 
					
						
							| 
									
										
										
										
											2022-02-17 13:31:09 +01:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2022-09-25 16:38:21 -06:00
										 |  |  |         auto& window = verify_cast<HTML::Window>(realm.global_object()); | 
					
						
							| 
									
										
										
										
											2022-09-21 17:45:18 +01:00
										 |  |  |         return Worker::create(script_url, options, window.associated_document()); | 
					
						
							| 
									
										
										
										
											2022-02-17 13:31:09 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-25 17:03:42 +01:00
										 |  |  |     WebIDL::ExceptionOr<void> terminate(); | 
					
						
							| 
									
										
										
										
											2022-02-17 13:31:09 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-20 13:47:01 -07:00
										 |  |  |     WebIDL::ExceptionOr<void> post_message(JS::Value message, StructuredSerializeOptions const&); | 
					
						
							| 
									
										
										
										
											2022-02-17 13:31:09 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     virtual ~Worker() = default; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-28 13:42:07 +02:00
										 |  |  |     JS::GCPtr<MessagePort> outside_message_port() { return m_outside_port; } | 
					
						
							| 
									
										
										
										
											2022-02-17 13:31:09 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #undef __ENUMERATE
 | 
					
						
							| 
									
										
										
										
											2022-09-24 16:02:41 +01:00
										 |  |  | #define __ENUMERATE(attribute_name, event_name)       \
 | 
					
						
							|  |  |  |     void set_##attribute_name(WebIDL::CallbackType*); \ | 
					
						
							|  |  |  |     WebIDL::CallbackType* attribute_name(); | 
					
						
							| 
									
										
										
										
											2022-02-17 13:31:09 +01:00
										 |  |  |     ENUMERATE_WORKER_EVENT_HANDLERS(__ENUMERATE) | 
					
						
							|  |  |  | #undef __ENUMERATE
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | protected: | 
					
						
							| 
									
										
										
										
											2023-12-20 13:47:01 -07:00
										 |  |  |     Worker(String const&, WorkerOptions const&, DOM::Document&); | 
					
						
							| 
									
										
										
										
											2022-02-17 13:31:09 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							| 
									
										
										
										
											2023-08-07 08:41:28 +02:00
										 |  |  |     virtual void initialize(JS::Realm&) override; | 
					
						
							| 
									
										
										
										
											2022-08-28 13:42:07 +02:00
										 |  |  |     virtual void visit_edges(Cell::Visitor&) override; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-23 12:40:07 +01:00
										 |  |  |     String m_script_url; | 
					
						
							| 
									
										
										
										
											2022-02-17 13:31:09 +01:00
										 |  |  |     WorkerOptions m_options; | 
					
						
							| 
									
										
										
										
											2022-08-28 13:42:07 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     JS::GCPtr<DOM::Document> m_document; | 
					
						
							|  |  |  |     JS::GCPtr<MessagePort> m_outside_port; | 
					
						
							| 
									
										
										
										
											2022-02-17 13:31:09 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-08 11:47:41 -07:00
										 |  |  |     JS::GCPtr<WorkerAgent> m_agent; | 
					
						
							| 
									
										
										
										
											2022-09-05 12:19:41 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-02-11 20:15:39 +13:00
										 |  |  |     void run_a_worker(URL& url, EnvironmentSettingsObject& outside_settings, JS::GCPtr<MessagePort> outside_port, WorkerOptions const& options); | 
					
						
							| 
									
										
										
										
											2022-02-17 13:31:09 +01:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } |