| 
									
										
										
										
											2023-01-12 19:27:17 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (c) 2023, Linus Groh <linusg@serenityos.org> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * SPDX-License-Identifier: BSD-2-Clause | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-12 20:22:14 +00:00
										 |  |  | #include <AK/Error.h>
 | 
					
						
							|  |  |  | #include <AK/String.h>
 | 
					
						
							| 
									
										
										
										
											2023-05-17 09:53:13 -04:00
										 |  |  | #include <LibCore/DateTime.h>
 | 
					
						
							|  |  |  | #include <LibCore/StandardPaths.h>
 | 
					
						
							| 
									
										
										
										
											2024-06-28 14:24:49 +02:00
										 |  |  | #include <LibCore/Timer.h>
 | 
					
						
							| 
									
										
										
										
											2023-05-17 09:53:13 -04:00
										 |  |  | #include <LibGfx/ImageFormats/PNGWriter.h>
 | 
					
						
							| 
									
										
										
										
											2023-10-23 16:52:57 -04:00
										 |  |  | #include <LibWeb/Infra/Strings.h>
 | 
					
						
							| 
									
										
										
										
											2024-08-28 15:32:50 -04:00
										 |  |  | #include <LibWebView/Application.h>
 | 
					
						
							| 
									
										
										
										
											2023-01-12 19:27:17 +00:00
										 |  |  | #include <LibWebView/ViewImplementation.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-06-20 21:34:51 +03:00
										 |  |  | #ifdef AK_OS_MACOS
 | 
					
						
							|  |  |  | #    include <LibCore/IOSurface.h>
 | 
					
						
							|  |  |  | #    include <LibCore/MachPort.h>
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-12 19:27:17 +00:00
										 |  |  | namespace WebView { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-07 16:44:20 +02:00
										 |  |  | ViewImplementation::ViewImplementation() | 
					
						
							| 
									
										
										
										
											2023-05-15 07:59:51 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-05-27 10:46:45 -06:00
										 |  |  |     m_repeated_crash_timer = Core::Timer::create_single_shot(1000, [this] { | 
					
						
							|  |  |  |         // Reset the "crashing a lot" counter after 1 second in case we just
 | 
					
						
							|  |  |  |         // happen to be visiting crashy websites a lot.
 | 
					
						
							|  |  |  |         this->m_crash_count = 0; | 
					
						
							| 
									
										
										
										
											2024-04-16 20:34:01 +02:00
										 |  |  |     }); | 
					
						
							| 
									
										
										
										
											2023-08-23 06:54:22 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     on_request_file = [this](auto const& path, auto request_id) { | 
					
						
							|  |  |  |         auto file = Core::File::open(path, Core::File::OpenMode::Read); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (file.is_error()) | 
					
						
							| 
									
										
										
										
											2024-02-02 18:00:48 -07:00
										 |  |  |             client().async_handle_file_return(page_id(), file.error().code(), {}, request_id); | 
					
						
							| 
									
										
										
										
											2023-08-23 06:54:22 -04:00
										 |  |  |         else | 
					
						
							| 
									
										
										
										
											2024-04-16 13:46:30 -06:00
										 |  |  |             client().async_handle_file_return(page_id(), 0, IPC::File::adopt_file(file.release_value()), request_id); | 
					
						
							| 
									
										
										
										
											2023-08-23 06:54:22 -04:00
										 |  |  |     }; | 
					
						
							| 
									
										
										
										
											2023-05-15 07:59:51 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-02-02 18:00:48 -07:00
										 |  |  | ViewImplementation::~ViewImplementation() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (m_client_state.client) | 
					
						
							|  |  |  |         m_client_state.client->unregister_view(m_client_state.page_index); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-12 19:27:17 +00:00
										 |  |  | WebContentClient& ViewImplementation::client() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     VERIFY(m_client_state.client); | 
					
						
							|  |  |  |     return *m_client_state.client; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | WebContentClient const& ViewImplementation::client() const | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     VERIFY(m_client_state.client); | 
					
						
							|  |  |  |     return *m_client_state.client; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-02-02 18:00:48 -07:00
										 |  |  | u64 ViewImplementation::page_id() const | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     VERIFY(m_client_state.client); | 
					
						
							|  |  |  |     return m_client_state.page_index; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-20 10:50:05 -04:00
										 |  |  | void ViewImplementation::server_did_paint(Badge<WebContentClient>, i32 bitmap_id, Gfx::IntSize size) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2023-12-21 22:58:54 +01:00
										 |  |  |     if (m_client_state.back_bitmap.id == bitmap_id) { | 
					
						
							|  |  |  |         m_client_state.has_usable_bitmap = true; | 
					
						
							|  |  |  |         m_client_state.back_bitmap.last_painted_size = size.to_type<Web::DevicePixels>(); | 
					
						
							|  |  |  |         swap(m_client_state.back_bitmap, m_client_state.front_bitmap); | 
					
						
							|  |  |  |         m_backup_bitmap = nullptr; | 
					
						
							|  |  |  |         if (on_ready_to_paint) | 
					
						
							|  |  |  |             on_ready_to_paint(); | 
					
						
							| 
									
										
										
										
											2023-05-20 10:50:05 -04:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2024-01-07 10:35:45 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-02-02 18:00:48 -07:00
										 |  |  |     client().async_ready_to_paint(page_id()); | 
					
						
							| 
									
										
										
										
											2023-05-20 10:50:05 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-18 16:22:27 +13:00
										 |  |  | void ViewImplementation::load(URL::URL const& url) | 
					
						
							| 
									
										
										
										
											2023-01-12 20:30:06 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     m_url = url; | 
					
						
							| 
									
										
										
										
											2024-02-02 18:00:48 -07:00
										 |  |  |     client().async_load_url(page_id(), url); | 
					
						
							| 
									
										
										
										
											2023-01-12 20:30:06 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-17 17:12:17 +02:00
										 |  |  | void ViewImplementation::load_html(StringView html) | 
					
						
							| 
									
										
										
										
											2023-01-12 20:30:06 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2024-02-02 18:00:48 -07:00
										 |  |  |     client().async_load_html(page_id(), html); | 
					
						
							| 
									
										
										
										
											2023-01-12 20:30:06 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ViewImplementation::load_empty_document() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2023-09-17 17:12:17 +02:00
										 |  |  |     load_html(""sv); | 
					
						
							| 
									
										
										
										
											2023-01-12 20:30:06 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-13 18:51:27 +02:00
										 |  |  | void ViewImplementation::reload() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     client().async_reload(page_id()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-13 22:33:48 +02:00
										 |  |  | void ViewImplementation::traverse_the_history_by_delta(int delta) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     client().async_traverse_the_history_by_delta(page_id(), delta); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-12 19:49:49 +00:00
										 |  |  | void ViewImplementation::zoom_in() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (m_zoom_level >= ZOOM_MAX_LEVEL) | 
					
						
							|  |  |  |         return; | 
					
						
							| 
									
										
										
										
											2024-09-18 12:23:12 +00:00
										 |  |  |     m_zoom_level = round_to<int>((m_zoom_level + ZOOM_STEP) * 100) / 100.0f; | 
					
						
							| 
									
										
										
										
											2023-01-12 19:49:49 +00:00
										 |  |  |     update_zoom(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ViewImplementation::zoom_out() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (m_zoom_level <= ZOOM_MIN_LEVEL) | 
					
						
							|  |  |  |         return; | 
					
						
							| 
									
										
										
										
											2024-09-18 12:23:12 +00:00
										 |  |  |     m_zoom_level = round_to<int>((m_zoom_level - ZOOM_STEP) * 100) / 100.0f; | 
					
						
							| 
									
										
										
										
											2023-01-12 19:49:49 +00:00
										 |  |  |     update_zoom(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ViewImplementation::reset_zoom() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     m_zoom_level = 1.0f; | 
					
						
							|  |  |  |     update_zoom(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-03 22:07:49 -05:00
										 |  |  | void ViewImplementation::enqueue_input_event(Web::InputEvent event) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     // Send the next event over to the WebContent to be handled by JS. We'll later get a message to say whether JS
 | 
					
						
							|  |  |  |     // prevented the default event behavior, at which point we either discard or handle that event, and then try to
 | 
					
						
							|  |  |  |     // process the next one.
 | 
					
						
							|  |  |  |     m_pending_input_events.enqueue(move(event)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     m_pending_input_events.tail().visit( | 
					
						
							|  |  |  |         [this](Web::KeyEvent const& event) { | 
					
						
							| 
									
										
										
										
											2024-03-05 17:06:32 -05:00
										 |  |  |             client().async_key_event(m_client_state.page_index, event.clone_without_chrome_data()); | 
					
						
							| 
									
										
										
										
											2024-03-03 22:07:49 -05:00
										 |  |  |         }, | 
					
						
							|  |  |  |         [this](Web::MouseEvent const& event) { | 
					
						
							| 
									
										
										
										
											2024-03-05 17:06:32 -05:00
										 |  |  |             client().async_mouse_event(m_client_state.page_index, event.clone_without_chrome_data()); | 
					
						
							| 
									
										
										
										
											2024-08-17 13:36:28 -04:00
										 |  |  |         }, | 
					
						
							|  |  |  |         [this](Web::DragEvent& event) { | 
					
						
							|  |  |  |             auto cloned_event = event.clone_without_chrome_data(); | 
					
						
							|  |  |  |             cloned_event.files = move(event.files); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             client().async_drag_event(m_client_state.page_index, move(cloned_event)); | 
					
						
							| 
									
										
										
										
											2024-03-03 22:07:49 -05:00
										 |  |  |         }); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-12 12:56:31 -04:00
										 |  |  | void ViewImplementation::did_finish_handling_input_event(Badge<WebContentClient>, Web::EventResult event_result) | 
					
						
							| 
									
										
										
										
											2024-03-03 22:07:49 -05:00
										 |  |  | { | 
					
						
							|  |  |  |     auto event = m_pending_input_events.dequeue(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-12 12:56:31 -04:00
										 |  |  |     if (event_result == Web::EventResult::Handled) | 
					
						
							| 
									
										
										
										
											2024-08-17 13:36:28 -04:00
										 |  |  |         return; | 
					
						
							| 
									
										
										
										
											2024-03-03 22:07:49 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-17 13:36:28 -04:00
										 |  |  |     // Here we handle events that were not consumed or cancelled by the WebContent. Propagate the event back
 | 
					
						
							|  |  |  |     // to the concrete view implementation.
 | 
					
						
							|  |  |  |     event.visit( | 
					
						
							|  |  |  |         [this](Web::KeyEvent const& event) { | 
					
						
							|  |  |  |             if (on_finish_handling_key_event) | 
					
						
							|  |  |  |                 on_finish_handling_key_event(event); | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |         [this](Web::DragEvent const& event) { | 
					
						
							|  |  |  |             if (on_finish_handling_drag_event) | 
					
						
							|  |  |  |                 on_finish_handling_drag_event(event); | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |         [](auto const&) {}); | 
					
						
							| 
									
										
										
										
											2024-03-03 22:07:49 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-12 20:44:42 +00:00
										 |  |  | void ViewImplementation::set_preferred_color_scheme(Web::CSS::PreferredColorScheme color_scheme) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2024-02-02 18:00:48 -07:00
										 |  |  |     client().async_set_preferred_color_scheme(page_id(), color_scheme); | 
					
						
							| 
									
										
										
										
											2023-01-12 20:44:42 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-06-13 01:03:56 +02:00
										 |  |  | void ViewImplementation::set_preferred_contrast(Web::CSS::PreferredContrast contrast) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     client().async_set_preferred_contrast(page_id(), contrast); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-06-13 16:15:59 +02:00
										 |  |  | void ViewImplementation::set_preferred_motion(Web::CSS::PreferredMotion motion) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     client().async_set_preferred_motion(page_id(), motion); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-07-23 21:10:24 +01:00
										 |  |  | void ViewImplementation::set_preferred_languages(Vector<String> preferred_languages) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     client().async_set_preferred_languages(page_id(), move(preferred_languages)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-07-02 20:29:43 +01:00
										 |  |  | void ViewImplementation::set_enable_do_not_track(bool enable) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     client().async_set_enable_do_not_track(page_id(), enable); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-22 23:12:36 +01:00
										 |  |  | void ViewImplementation::set_enable_autoplay(bool enable) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (enable) { | 
					
						
							|  |  |  |         client().async_set_autoplay_allowed_on_all_websites(page_id()); | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         client().async_set_autoplay_allowlist(page_id(), {}); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-16 17:49:34 +03:30
										 |  |  | ByteString ViewImplementation::selected_text() | 
					
						
							| 
									
										
										
										
											2023-01-12 20:42:42 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2024-02-02 18:00:48 -07:00
										 |  |  |     return client().get_selected_text(page_id()); | 
					
						
							| 
									
										
										
										
											2023-01-12 20:42:42 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-23 16:52:57 -04:00
										 |  |  | Optional<String> ViewImplementation::selected_text_with_whitespace_collapsed() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     auto selected_text = MUST(Web::Infra::strip_and_collapse_whitespace(this->selected_text())); | 
					
						
							|  |  |  |     if (selected_text.is_empty()) | 
					
						
							|  |  |  |         return OptionalNone {}; | 
					
						
							|  |  |  |     return selected_text; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-12 20:42:42 +00:00
										 |  |  | void ViewImplementation::select_all() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2024-02-02 18:00:48 -07:00
										 |  |  |     client().async_select_all(page_id()); | 
					
						
							| 
									
										
										
										
											2023-01-12 20:42:42 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-22 11:56:49 +01:00
										 |  |  | void ViewImplementation::paste(String const& text) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     client().async_paste(page_id(), text); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-31 16:01:34 -04:00
										 |  |  | void ViewImplementation::find_in_page(String const& query, CaseSensitivity case_sensitivity) | 
					
						
							| 
									
										
										
										
											2024-05-29 20:09:33 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2024-05-31 16:01:34 -04:00
										 |  |  |     client().async_find_in_page(page_id(), query, case_sensitivity); | 
					
						
							| 
									
										
										
										
											2024-05-29 20:09:33 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ViewImplementation::find_in_page_next_match() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     client().async_find_in_page_next_match(page_id()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ViewImplementation::find_in_page_previous_match() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     client().async_find_in_page_previous_match(page_id()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-12 19:58:00 +00:00
										 |  |  | void ViewImplementation::get_source() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2024-02-02 18:00:48 -07:00
										 |  |  |     client().async_get_source(page_id()); | 
					
						
							| 
									
										
										
										
											2023-01-12 19:58:00 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-12 20:22:14 +00:00
										 |  |  | void ViewImplementation::inspect_dom_tree() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2024-02-02 18:00:48 -07:00
										 |  |  |     client().async_inspect_dom_tree(page_id()); | 
					
						
							| 
									
										
										
										
											2023-01-12 20:22:14 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-30 09:30:27 -05:00
										 |  |  | void ViewImplementation::inspect_dom_node(i32 node_id, Optional<Web::CSS::Selector::PseudoElement::Type> pseudo_element) | 
					
						
							| 
									
										
										
										
											2023-01-12 20:22:14 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2024-02-02 18:00:48 -07:00
										 |  |  |     client().async_inspect_dom_node(page_id(), node_id, move(pseudo_element)); | 
					
						
							| 
									
										
										
										
											2023-01-12 20:22:14 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-30 09:30:27 -05:00
										 |  |  | void ViewImplementation::inspect_accessibility_tree() | 
					
						
							| 
									
										
										
										
											2023-01-12 20:22:14 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2024-02-02 18:00:48 -07:00
										 |  |  |     client().async_inspect_accessibility_tree(page_id()); | 
					
						
							| 
									
										
										
										
											2023-01-12 20:22:14 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ViewImplementation::clear_inspected_dom_node() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2023-12-30 09:30:27 -05:00
										 |  |  |     inspect_dom_node(0, {}); | 
					
						
							| 
									
										
										
										
											2023-01-12 20:22:14 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-30 09:42:24 -05:00
										 |  |  | void ViewImplementation::get_hovered_node_id() | 
					
						
							| 
									
										
										
										
											2023-01-12 20:22:14 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2024-02-02 18:00:48 -07:00
										 |  |  |     client().async_get_hovered_node_id(page_id()); | 
					
						
							| 
									
										
										
										
											2023-01-12 20:22:14 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-19 10:42:11 -05:00
										 |  |  | void ViewImplementation::set_dom_node_text(i32 node_id, String text) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2024-02-02 18:00:48 -07:00
										 |  |  |     client().async_set_dom_node_text(page_id(), node_id, move(text)); | 
					
						
							| 
									
										
										
										
											2023-11-19 10:42:11 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-30 10:08:33 -05:00
										 |  |  | void ViewImplementation::set_dom_node_tag(i32 node_id, String name) | 
					
						
							| 
									
										
										
										
											2023-11-19 10:42:11 -05:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2024-02-02 18:00:48 -07:00
										 |  |  |     client().async_set_dom_node_tag(page_id(), node_id, move(name)); | 
					
						
							| 
									
										
										
										
											2023-11-19 10:42:11 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-05 16:49:47 -05:00
										 |  |  | void ViewImplementation::add_dom_node_attributes(i32 node_id, Vector<Attribute> attributes) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2024-02-02 18:00:48 -07:00
										 |  |  |     client().async_add_dom_node_attributes(page_id(), node_id, move(attributes)); | 
					
						
							| 
									
										
										
										
											2023-12-05 16:49:47 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-19 10:42:11 -05:00
										 |  |  | void ViewImplementation::replace_dom_node_attribute(i32 node_id, String name, Vector<Attribute> replacement_attributes) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2024-02-02 18:00:48 -07:00
										 |  |  |     client().async_replace_dom_node_attribute(page_id(), node_id, move(name), move(replacement_attributes)); | 
					
						
							| 
									
										
										
										
											2023-11-19 10:42:11 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-30 10:08:33 -05:00
										 |  |  | void ViewImplementation::create_child_element(i32 node_id) | 
					
						
							| 
									
										
										
										
											2023-12-07 11:00:57 -05:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2024-02-02 18:00:48 -07:00
										 |  |  |     client().async_create_child_element(page_id(), node_id); | 
					
						
							| 
									
										
										
										
											2023-12-07 11:00:57 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-30 10:08:33 -05:00
										 |  |  | void ViewImplementation::create_child_text_node(i32 node_id) | 
					
						
							| 
									
										
										
										
											2023-12-07 11:00:57 -05:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2024-02-02 18:00:48 -07:00
										 |  |  |     client().async_create_child_text_node(page_id(), node_id); | 
					
						
							| 
									
										
										
										
											2023-12-07 11:00:57 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-30 10:08:33 -05:00
										 |  |  | void ViewImplementation::clone_dom_node(i32 node_id) | 
					
						
							| 
									
										
										
										
											2023-12-07 11:12:43 -05:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2024-02-02 18:00:48 -07:00
										 |  |  |     client().async_clone_dom_node(page_id(), node_id); | 
					
						
							| 
									
										
										
										
											2023-12-07 11:12:43 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-05 14:59:54 -05:00
										 |  |  | void ViewImplementation::remove_dom_node(i32 node_id) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2024-02-02 18:00:48 -07:00
										 |  |  |     client().async_remove_dom_node(page_id(), node_id); | 
					
						
							| 
									
										
										
										
											2023-12-05 14:59:54 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-30 14:32:50 -05:00
										 |  |  | void ViewImplementation::get_dom_node_html(i32 node_id) | 
					
						
							| 
									
										
										
										
											2023-12-06 10:36:27 -05:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2024-02-02 18:00:48 -07:00
										 |  |  |     client().async_get_dom_node_html(page_id(), node_id); | 
					
						
							| 
									
										
										
										
											2023-12-06 10:36:27 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-23 11:18:35 +01:00
										 |  |  | void ViewImplementation::list_style_sheets() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     client().async_list_style_sheets(page_id()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ViewImplementation::request_style_sheet_source(Web::CSS::StyleSheetIdentifier const& identifier) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     client().async_request_style_sheet_source(page_id(), identifier); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-16 17:49:34 +03:30
										 |  |  | void ViewImplementation::debug_request(ByteString const& request, ByteString const& argument) | 
					
						
							| 
									
										
										
										
											2023-01-12 20:34:08 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2024-02-02 18:00:48 -07:00
										 |  |  |     client().async_debug_request(page_id(), request, argument); | 
					
						
							| 
									
										
										
										
											2023-01-12 20:34:08 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-12 20:39:08 +00:00
										 |  |  | void ViewImplementation::run_javascript(StringView js_source) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2024-02-02 18:00:48 -07:00
										 |  |  |     client().async_run_javascript(page_id(), js_source); | 
					
						
							| 
									
										
										
										
											2023-01-12 20:39:08 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-16 17:49:34 +03:30
										 |  |  | void ViewImplementation::js_console_input(ByteString const& js_source) | 
					
						
							| 
									
										
										
										
											2023-05-17 11:54:36 -04:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2024-02-02 18:00:48 -07:00
										 |  |  |     client().async_js_console_input(page_id(), js_source); | 
					
						
							| 
									
										
										
										
											2023-05-17 11:54:36 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ViewImplementation::js_console_request_messages(i32 start_index) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2024-02-02 18:00:48 -07:00
										 |  |  |     client().async_js_console_request_messages(page_id(), start_index); | 
					
						
							| 
									
										
										
										
											2023-05-17 11:54:36 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-17 14:23:34 -04:00
										 |  |  | void ViewImplementation::alert_closed() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2024-02-02 18:00:48 -07:00
										 |  |  |     client().async_alert_closed(page_id()); | 
					
						
							| 
									
										
										
										
											2023-05-17 14:23:34 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ViewImplementation::confirm_closed(bool accepted) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2024-02-02 18:00:48 -07:00
										 |  |  |     client().async_confirm_closed(page_id(), accepted); | 
					
						
							| 
									
										
										
										
											2023-05-17 14:23:34 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ViewImplementation::prompt_closed(Optional<String> response) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2024-02-02 18:00:48 -07:00
										 |  |  |     client().async_prompt_closed(page_id(), move(response)); | 
					
						
							| 
									
										
										
										
											2023-05-17 14:23:34 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-11 06:53:10 +01:00
										 |  |  | void ViewImplementation::color_picker_update(Optional<Color> picked_color, Web::HTML::ColorPickerUpdateState state) | 
					
						
							| 
									
										
										
										
											2023-09-04 11:32:40 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2024-02-02 18:00:48 -07:00
										 |  |  |     client().async_color_picker_update(page_id(), picked_color, state); | 
					
						
							| 
									
										
										
										
											2023-09-04 11:32:40 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-02-25 13:02:47 -05:00
										 |  |  | void ViewImplementation::file_picker_closed(Vector<Web::HTML::SelectedFile> selected_files) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     client().async_file_picker_closed(page_id(), move(selected_files)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-03 19:19:08 +02:00
										 |  |  | void ViewImplementation::select_dropdown_closed(Optional<u32> const& selected_item_id) | 
					
						
							| 
									
										
										
										
											2023-12-07 15:53:49 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2024-04-03 19:19:08 +02:00
										 |  |  |     client().async_select_dropdown_closed(page_id(), selected_item_id); | 
					
						
							| 
									
										
										
										
											2023-12-07 15:53:49 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-16 10:51:38 -04:00
										 |  |  | void ViewImplementation::toggle_media_play_state() | 
					
						
							| 
									
										
										
										
											2023-05-15 11:17:58 -04:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2024-02-02 18:00:48 -07:00
										 |  |  |     client().async_toggle_media_play_state(page_id()); | 
					
						
							| 
									
										
										
										
											2023-05-15 11:17:58 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-16 11:29:54 -04:00
										 |  |  | void ViewImplementation::toggle_media_mute_state() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2024-02-02 18:00:48 -07:00
										 |  |  |     client().async_toggle_media_mute_state(page_id()); | 
					
						
							| 
									
										
										
										
											2023-06-16 11:29:54 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-16 10:51:38 -04:00
										 |  |  | void ViewImplementation::toggle_media_loop_state() | 
					
						
							| 
									
										
										
										
											2023-05-15 11:17:58 -04:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2024-02-02 18:00:48 -07:00
										 |  |  |     client().async_toggle_media_loop_state(page_id()); | 
					
						
							| 
									
										
										
										
											2023-05-15 11:17:58 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-16 10:51:38 -04:00
										 |  |  | void ViewImplementation::toggle_media_controls_state() | 
					
						
							| 
									
										
										
										
											2023-05-15 11:17:58 -04:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2024-02-02 18:00:48 -07:00
										 |  |  |     client().async_toggle_media_controls_state(page_id()); | 
					
						
							| 
									
										
										
										
											2023-05-15 11:17:58 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-30 09:41:15 -04:00
										 |  |  | void ViewImplementation::toggle_page_mute_state() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     m_mute_state = Web::HTML::invert_mute_state(m_mute_state); | 
					
						
							|  |  |  |     client().async_toggle_page_mute_state(page_id()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-26 19:27:06 -04:00
										 |  |  | void ViewImplementation::did_change_audio_play_state(Badge<WebContentClient>, Web::HTML::AudioPlayState play_state) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2024-03-30 09:34:23 -04:00
										 |  |  |     bool state_changed = false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     switch (play_state) { | 
					
						
							|  |  |  |     case Web::HTML::AudioPlayState::Paused: | 
					
						
							|  |  |  |         if (--m_number_of_elements_playing_audio == 0) { | 
					
						
							|  |  |  |             m_audio_play_state = play_state; | 
					
						
							|  |  |  |             state_changed = true; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case Web::HTML::AudioPlayState::Playing: | 
					
						
							|  |  |  |         if (m_number_of_elements_playing_audio++ == 0) { | 
					
						
							|  |  |  |             m_audio_play_state = play_state; | 
					
						
							|  |  |  |             state_changed = true; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2024-03-26 19:27:06 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-30 09:34:23 -04:00
										 |  |  |     if (state_changed && on_audio_play_state_changed) | 
					
						
							| 
									
										
										
										
											2024-03-26 19:27:06 -04:00
										 |  |  |         on_audio_play_state_changed(m_audio_play_state); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-13 23:12:55 +02:00
										 |  |  | void ViewImplementation::did_update_navigation_buttons_state(Badge<WebContentClient>, bool back_enabled, bool forward_enabled) const | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (on_navigation_buttons_state_changed) | 
					
						
							|  |  |  |         on_navigation_buttons_state_changed(back_enabled, forward_enabled); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-06-17 18:50:57 +03:00
										 |  |  | void ViewImplementation::did_allocate_backing_stores(Badge<WebContentClient>, i32 front_bitmap_id, Gfx::ShareableBitmap const& front_bitmap, i32 back_bitmap_id, Gfx::ShareableBitmap const& back_bitmap) | 
					
						
							| 
									
										
										
										
											2023-05-15 07:59:51 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     if (m_client_state.has_usable_bitmap) { | 
					
						
							|  |  |  |         // NOTE: We keep the outgoing front bitmap as a backup so we have something to paint until we get a new one.
 | 
					
						
							|  |  |  |         m_backup_bitmap = m_client_state.front_bitmap.bitmap; | 
					
						
							|  |  |  |         m_backup_bitmap_size = m_client_state.front_bitmap.last_painted_size; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     m_client_state.has_usable_bitmap = false; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-06-17 18:50:57 +03:00
										 |  |  |     m_client_state.front_bitmap.bitmap = front_bitmap.bitmap(); | 
					
						
							|  |  |  |     m_client_state.front_bitmap.id = front_bitmap_id; | 
					
						
							|  |  |  |     m_client_state.back_bitmap.bitmap = back_bitmap.bitmap(); | 
					
						
							|  |  |  |     m_client_state.back_bitmap.id = back_bitmap_id; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2023-05-15 07:59:51 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-06-20 21:34:51 +03:00
										 |  |  | #ifdef AK_OS_MACOS
 | 
					
						
							|  |  |  | void ViewImplementation::did_allocate_iosurface_backing_stores(i32 front_id, Core::MachPort&& front_port, i32 back_id, Core::MachPort&& back_port) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (m_client_state.has_usable_bitmap) { | 
					
						
							|  |  |  |         // NOTE: We keep the outgoing front bitmap as a backup so we have something to paint until we get a new one.
 | 
					
						
							|  |  |  |         m_backup_bitmap = m_client_state.front_bitmap.bitmap; | 
					
						
							|  |  |  |         m_backup_bitmap_size = m_client_state.front_bitmap.last_painted_size; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     m_client_state.has_usable_bitmap = false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     auto front_iosurface = Core::IOSurfaceHandle::from_mach_port(move(front_port)); | 
					
						
							|  |  |  |     auto back_iosurface = Core::IOSurfaceHandle::from_mach_port(move(back_port)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     auto front_size = Gfx::IntSize { front_iosurface.width(), front_iosurface.height() }; | 
					
						
							|  |  |  |     auto back_size = Gfx::IntSize { back_iosurface.width(), back_iosurface.height() }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-06-25 16:43:39 +02:00
										 |  |  |     auto bytes_per_row = front_iosurface.bytes_per_row(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
											  
											
												LibGfx: Store alpha type information in `Gfx::Bitmap`
We use instances of `Gfx::Bitmap` to move pixel data all the way from
raw image bytes up to the Skia renderer. A vital piece of information
for correct blending of bitmaps is the alpha type, i.e. are we dealing
with premultiplied or unpremultiplied color values?
Premultiplied means that the RGB colors have been multiplied with the
associated alpha value, i.e. RGB(255, 255, 255) with an alpha of 2% is
stored as RGBA(5, 5, 5, 2%).
Unpremultiplied means that the original RGB colors are stored,
regardless of the alpha value. I.e. RGB(255, 255, 255) with an alpha of
2% is stored as RGBA(255, 255, 255, 2%).
It is important to know how the color data is stored in a
`Gfx::Bitmap`, because correct blending depends on knowing the alpha
type: premultiplied blending uses `S + (1 - A) * D`, while
unpremultiplied blending uses `A * S + (1 - A) * D`.
This adds the alpha type information to `Gfx::Bitmap` across the board.
It isn't used anywhere yet.
											
										 
											2024-08-02 12:52:14 +02:00
										 |  |  |     auto front_bitmap = Gfx::Bitmap::create_wrapper(Gfx::BitmapFormat::BGRA8888, Gfx::AlphaType::Premultiplied, front_size, bytes_per_row, front_iosurface.data(), [handle = move(front_iosurface)] {}); | 
					
						
							|  |  |  |     auto back_bitmap = Gfx::Bitmap::create_wrapper(Gfx::BitmapFormat::BGRA8888, Gfx::AlphaType::Premultiplied, back_size, bytes_per_row, back_iosurface.data(), [handle = move(back_iosurface)] {}); | 
					
						
							| 
									
										
										
										
											2024-06-20 21:34:51 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  |     m_client_state.front_bitmap.bitmap = front_bitmap.release_value_but_fixme_should_propagate_errors(); | 
					
						
							|  |  |  |     m_client_state.front_bitmap.id = front_id; | 
					
						
							|  |  |  |     m_client_state.back_bitmap.bitmap = back_bitmap.release_value_but_fixme_should_propagate_errors(); | 
					
						
							|  |  |  |     m_client_state.back_bitmap.id = back_id; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-06-17 18:50:57 +03:00
										 |  |  | void ViewImplementation::handle_resize() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     client().async_set_viewport_size(page_id(), this->viewport_size()); | 
					
						
							| 
									
										
										
										
											2023-05-15 07:59:51 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-17 09:53:13 -04:00
										 |  |  | void ViewImplementation::handle_web_content_process_crash() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     dbgln("WebContent process crashed!"); | 
					
						
							| 
									
										
										
										
											2024-07-24 18:20:19 +09:00
										 |  |  |     dbgln("Consider raising an issue at https://github.com/LadybirdBrowser/ladybird/issues"); | 
					
						
							| 
									
										
										
										
											2023-05-17 09:53:13 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-27 10:46:45 -06:00
										 |  |  |     ++m_crash_count; | 
					
						
							|  |  |  |     constexpr size_t max_reasonable_crash_count = 5U; | 
					
						
							|  |  |  |     if (m_crash_count >= max_reasonable_crash_count) { | 
					
						
							|  |  |  |         dbgln("WebContent has crashed {} times in quick succession! Not restarting...", m_crash_count); | 
					
						
							|  |  |  |         m_repeated_crash_timer->stop(); | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     m_repeated_crash_timer->restart(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-30 09:12:14 -07:00
										 |  |  |     initialize_client(); | 
					
						
							| 
									
										
										
										
											2023-05-17 09:53:13 -04:00
										 |  |  |     VERIFY(m_client_state.client); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // Don't keep a stale backup bitmap around.
 | 
					
						
							|  |  |  |     m_backup_bitmap = nullptr; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     handle_resize(); | 
					
						
							|  |  |  |     StringBuilder builder; | 
					
						
							|  |  |  |     builder.append("<html><head><title>Crashed: "sv); | 
					
						
							| 
									
										
										
										
											2023-12-16 17:49:34 +03:30
										 |  |  |     builder.append(escape_html_entities(m_url.to_byte_string())); | 
					
						
							| 
									
										
										
										
											2023-05-17 09:53:13 -04:00
										 |  |  |     builder.append("</title></head><body>"sv); | 
					
						
							|  |  |  |     builder.append("<h1>Web page crashed"sv); | 
					
						
							| 
									
										
										
										
											2023-07-27 21:40:41 +12:00
										 |  |  |     if (!m_url.host().has<Empty>()) { | 
					
						
							|  |  |  |         builder.appendff(" on {}", escape_html_entities(m_url.serialized_host().release_value_but_fixme_should_propagate_errors())); | 
					
						
							| 
									
										
										
										
											2023-05-17 09:53:13 -04:00
										 |  |  |     } | 
					
						
							|  |  |  |     builder.append("</h1>"sv); | 
					
						
							| 
									
										
										
										
											2023-12-16 17:49:34 +03:30
										 |  |  |     auto escaped_url = escape_html_entities(m_url.to_byte_string()); | 
					
						
							| 
									
										
										
										
											2023-05-17 09:53:13 -04:00
										 |  |  |     builder.appendff("The web page <a href=\"{}\">{}</a> has crashed.<br><br>You can reload the page to try again.", escaped_url, escaped_url); | 
					
						
							|  |  |  |     builder.append("</body></html>"sv); | 
					
						
							| 
									
										
										
										
											2023-12-16 17:49:34 +03:30
										 |  |  |     load_html(builder.to_byte_string()); | 
					
						
							| 
									
										
										
										
											2023-05-17 09:53:13 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-09 16:57:57 -05:00
										 |  |  | static ErrorOr<LexicalPath> save_screenshot(Gfx::ShareableBitmap const& bitmap) | 
					
						
							| 
									
										
										
										
											2023-12-06 11:51:44 -05:00
										 |  |  | { | 
					
						
							|  |  |  |     if (!bitmap.is_valid()) | 
					
						
							| 
									
										
										
										
											2024-09-05 15:06:15 +04:00
										 |  |  |         return Error::from_string_literal("Failed to take a screenshot"); | 
					
						
							| 
									
										
										
										
											2023-12-06 11:51:44 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-28 15:32:50 -04:00
										 |  |  |     auto file = Core::DateTime::now().to_byte_string("screenshot-%Y-%m-%d-%H-%M-%S.png"sv); | 
					
						
							|  |  |  |     auto path = TRY(Application::the().path_for_downloaded_file(file)); | 
					
						
							| 
									
										
										
										
											2023-12-06 11:51:44 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |     auto encoded = TRY(Gfx::PNGWriter::encode(*bitmap.bitmap())); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-12 13:25:06 +01:00
										 |  |  |     auto dump_file = TRY(Core::File::open(path.string(), Core::File::OpenMode::Write)); | 
					
						
							|  |  |  |     TRY(dump_file->write_until_depleted(encoded)); | 
					
						
							| 
									
										
										
										
											2023-12-06 11:51:44 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-09 16:57:57 -05:00
										 |  |  |     return path; | 
					
						
							| 
									
										
										
										
											2023-12-06 11:51:44 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-31 09:51:02 -05:00
										 |  |  | NonnullRefPtr<Core::Promise<LexicalPath>> ViewImplementation::take_screenshot(ScreenshotType type) | 
					
						
							| 
									
										
										
										
											2023-05-17 09:53:13 -04:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-12-31 09:51:02 -05:00
										 |  |  |     auto promise = Core::Promise<LexicalPath>::construct(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (m_pending_screenshot) { | 
					
						
							|  |  |  |         // For simplicitly, only allow taking one screenshot at a time for now. Revisit if we need
 | 
					
						
							|  |  |  |         // to allow spamming screenshot requests for some reason.
 | 
					
						
							|  |  |  |         promise->reject(Error::from_string_literal("A screenshot request is already in progress")); | 
					
						
							|  |  |  |         return promise; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-17 09:53:13 -04:00
										 |  |  |     Gfx::ShareableBitmap bitmap; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     switch (type) { | 
					
						
							|  |  |  |     case ScreenshotType::Visible: | 
					
						
							| 
									
										
										
										
											2023-12-31 09:51:02 -05:00
										 |  |  |         if (auto* visible_bitmap = m_client_state.has_usable_bitmap ? m_client_state.front_bitmap.bitmap.ptr() : m_backup_bitmap.ptr()) { | 
					
						
							|  |  |  |             if (auto result = save_screenshot(visible_bitmap->to_shareable_bitmap()); result.is_error()) | 
					
						
							|  |  |  |                 promise->reject(result.release_error()); | 
					
						
							|  |  |  |             else | 
					
						
							|  |  |  |                 promise->resolve(result.release_value()); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2023-05-17 09:53:13 -04:00
										 |  |  |         break; | 
					
						
							| 
									
										
										
										
											2023-12-31 09:51:02 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-17 09:53:13 -04:00
										 |  |  |     case ScreenshotType::Full: | 
					
						
							| 
									
										
										
										
											2023-12-31 09:51:02 -05:00
										 |  |  |         m_pending_screenshot = promise; | 
					
						
							| 
									
										
										
										
											2024-02-02 18:00:48 -07:00
										 |  |  |         client().async_take_document_screenshot(page_id()); | 
					
						
							| 
									
										
										
										
											2023-05-17 09:53:13 -04:00
										 |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-31 09:51:02 -05:00
										 |  |  |     return promise; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | NonnullRefPtr<Core::Promise<LexicalPath>> ViewImplementation::take_dom_node_screenshot(i32 node_id) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     auto promise = Core::Promise<LexicalPath>::construct(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (m_pending_screenshot) { | 
					
						
							|  |  |  |         // For simplicitly, only allow taking one screenshot at a time for now. Revisit if we need
 | 
					
						
							|  |  |  |         // to allow spamming screenshot requests for some reason.
 | 
					
						
							|  |  |  |         promise->reject(Error::from_string_literal("A screenshot request is already in progress")); | 
					
						
							|  |  |  |         return promise; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     m_pending_screenshot = promise; | 
					
						
							| 
									
										
										
										
											2024-02-02 18:00:48 -07:00
										 |  |  |     client().async_take_dom_node_screenshot(page_id(), node_id); | 
					
						
							| 
									
										
										
										
											2023-12-31 09:51:02 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return promise; | 
					
						
							| 
									
										
										
										
											2023-12-06 11:51:44 -05:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2023-05-17 09:53:13 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-31 09:51:02 -05:00
										 |  |  | void ViewImplementation::did_receive_screenshot(Badge<WebContentClient>, Gfx::ShareableBitmap const& screenshot) | 
					
						
							| 
									
										
										
										
											2023-12-06 11:51:44 -05:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-12-31 09:51:02 -05:00
										 |  |  |     VERIFY(m_pending_screenshot); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (auto result = save_screenshot(screenshot); result.is_error()) | 
					
						
							|  |  |  |         m_pending_screenshot->reject(result.release_error()); | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         m_pending_screenshot->resolve(result.release_value()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     m_pending_screenshot = nullptr; | 
					
						
							| 
									
										
										
										
											2023-05-17 09:53:13 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-19 10:40:00 -04:00
										 |  |  | NonnullRefPtr<Core::Promise<String>> ViewImplementation::request_internal_page_info(PageInfoType type) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     auto promise = Core::Promise<String>::construct(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (m_pending_info_request) { | 
					
						
							|  |  |  |         // For simplicitly, only allow one info request at a time for now.
 | 
					
						
							|  |  |  |         promise->reject(Error::from_string_literal("A page info request is already in progress")); | 
					
						
							|  |  |  |         return promise; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     m_pending_info_request = promise; | 
					
						
							|  |  |  |     client().async_request_internal_page_info(page_id(), type); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return promise; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ViewImplementation::did_receive_internal_page_info(Badge<WebContentClient>, PageInfoType, String const& info) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     VERIFY(m_pending_info_request); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     m_pending_info_request->resolve(String { info }); | 
					
						
							|  |  |  |     m_pending_info_request = nullptr; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-12 13:25:06 +01:00
										 |  |  | ErrorOr<LexicalPath> ViewImplementation::dump_gc_graph() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2024-09-19 10:40:00 -04:00
										 |  |  |     auto promise = request_internal_page_info(PageInfoType::GCGraph); | 
					
						
							|  |  |  |     auto gc_graph_json = TRY(promise->await()); | 
					
						
							| 
									
										
										
										
											2023-12-12 13:25:06 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     LexicalPath path { Core::StandardPaths::tempfile_directory() }; | 
					
						
							|  |  |  |     path = path.append(TRY(Core::DateTime::now().to_string("gc-graph-%Y-%m-%d-%H-%M-%S.json"sv))); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-19 10:40:00 -04:00
										 |  |  |     auto dump_file = TRY(Core::File::open(path.string(), Core::File::OpenMode::Write)); | 
					
						
							|  |  |  |     TRY(dump_file->write_until_depleted(gc_graph_json.bytes())); | 
					
						
							| 
									
										
										
										
											2023-12-12 13:25:06 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return path; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-26 13:34:59 -04:00
										 |  |  | void ViewImplementation::set_user_style_sheet(String source) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2024-02-02 18:00:48 -07:00
										 |  |  |     client().async_set_user_style(page_id(), move(source)); | 
					
						
							| 
									
										
										
										
											2023-08-26 13:34:59 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ViewImplementation::use_native_user_style_sheet() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2024-08-22 12:42:12 +01:00
										 |  |  |     extern String native_stylesheet_source; | 
					
						
							|  |  |  |     set_user_style_sheet(native_stylesheet_source); | 
					
						
							| 
									
										
										
										
											2023-08-26 13:34:59 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-23 12:22:23 -05:00
										 |  |  | void ViewImplementation::enable_inspector_prototype() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2024-02-02 18:00:48 -07:00
										 |  |  |     client().async_enable_inspector_prototype(page_id()); | 
					
						
							| 
									
										
										
										
											2023-11-23 12:22:23 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-12 19:27:17 +00:00
										 |  |  | } |