| 
									
										
										
										
											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>
 | 
					
						
							|  |  |  | #include <LibGfx/ImageFormats/PNGWriter.h>
 | 
					
						
							| 
									
										
										
										
											2023-10-23 16:52:57 -04:00
										 |  |  | #include <LibWeb/Infra/Strings.h>
 | 
					
						
							| 
									
										
										
										
											2023-01-12 19:27:17 +00:00
										 |  |  | #include <LibWebView/ViewImplementation.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace WebView { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-07 16:44:20 +02:00
										 |  |  | ViewImplementation::ViewImplementation() | 
					
						
							| 
									
										
										
										
											2023-05-15 07:59:51 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     m_backing_store_shrink_timer = Core::Timer::create_single_shot(3000, [this] { | 
					
						
							|  |  |  |         resize_backing_stores_if_needed(WindowResizeInProgress::No); | 
					
						
							|  |  |  |     }).release_value_but_fixme_should_propagate_errors(); | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							|  |  |  |     }).release_value_but_fixme_should_propagate_errors(); | 
					
						
							| 
									
										
										
										
											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()) | 
					
						
							|  |  |  |             client().async_handle_file_return(file.error().code(), {}, request_id); | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |             client().async_handle_file_return(0, IPC::File(*file.value()), request_id); | 
					
						
							|  |  |  |     }; | 
					
						
							| 
									
										
										
										
											2023-05-15 07:59:51 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-12 20:30:06 +00:00
										 |  |  | void ViewImplementation::load(AK::URL const& url) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     m_url = url; | 
					
						
							|  |  |  |     client().async_load_url(url); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-17 17:12:17 +02:00
										 |  |  | void ViewImplementation::load_html(StringView html) | 
					
						
							| 
									
										
										
										
											2023-01-12 20:30:06 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-09-17 17:12:17 +02:00
										 |  |  |     client().async_load_html(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
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-12 19:49:49 +00:00
										 |  |  | void ViewImplementation::zoom_in() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (m_zoom_level >= ZOOM_MAX_LEVEL) | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     m_zoom_level += ZOOM_STEP; | 
					
						
							|  |  |  |     update_zoom(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ViewImplementation::zoom_out() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (m_zoom_level <= ZOOM_MIN_LEVEL) | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     m_zoom_level -= ZOOM_STEP; | 
					
						
							|  |  |  |     update_zoom(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ViewImplementation::reset_zoom() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     m_zoom_level = 1.0f; | 
					
						
							|  |  |  |     update_zoom(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-12 20:44:42 +00:00
										 |  |  | void ViewImplementation::set_preferred_color_scheme(Web::CSS::PreferredColorScheme color_scheme) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     client().async_set_preferred_color_scheme(color_scheme); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-16 17:49:34 +03:30
										 |  |  | ByteString ViewImplementation::selected_text() | 
					
						
							| 
									
										
										
										
											2023-01-12 20:42:42 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     return client().get_selected_text(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     client().async_select_all(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-12 19:58:00 +00:00
										 |  |  | void ViewImplementation::get_source() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     client().async_get_source(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-12 20:22:14 +00:00
										 |  |  | void ViewImplementation::inspect_dom_tree() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     client().async_inspect_dom_tree(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ViewImplementation::inspect_accessibility_tree() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     client().async_inspect_accessibility_tree(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-10 21:00:03 +13:00
										 |  |  | ErrorOr<ViewImplementation::DOMNodeProperties> ViewImplementation::inspect_dom_node(i32 node_id, Optional<Web::CSS::Selector::PseudoElement::Type> pseudo_element) | 
					
						
							| 
									
										
										
										
											2023-01-12 20:22:14 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     auto response = client().inspect_dom_node(node_id, pseudo_element); | 
					
						
							|  |  |  |     if (!response.has_style()) | 
					
						
							|  |  |  |         return Error::from_string_view("Inspected node returned no style"sv); | 
					
						
							|  |  |  |     return DOMNodeProperties { | 
					
						
							| 
									
										
										
										
											2023-12-16 17:49:34 +03:30
										 |  |  |         .computed_style_json = TRY(String::from_byte_string(response.take_computed_style())), | 
					
						
							|  |  |  |         .resolved_style_json = TRY(String::from_byte_string(response.take_resolved_style())), | 
					
						
							|  |  |  |         .custom_properties_json = TRY(String::from_byte_string(response.take_custom_properties())), | 
					
						
							|  |  |  |         .node_box_sizing_json = TRY(String::from_byte_string(response.take_node_box_sizing())), | 
					
						
							|  |  |  |         .aria_properties_state_json = TRY(String::from_byte_string(response.take_aria_properties_state())), | 
					
						
							| 
									
										
										
										
											2023-01-12 20:22:14 +00:00
										 |  |  |     }; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ViewImplementation::clear_inspected_dom_node() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     client().inspect_dom_node(0, {}); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | i32 ViewImplementation::get_hovered_node_id() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return client().get_hovered_node_id(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-19 10:42:11 -05:00
										 |  |  | void ViewImplementation::set_dom_node_text(i32 node_id, String text) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     client().async_set_dom_node_text(node_id, move(text)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Optional<i32> ViewImplementation::set_dom_node_tag(i32 node_id, String name) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return client().set_dom_node_tag(node_id, move(name)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-05 16:49:47 -05:00
										 |  |  | void ViewImplementation::add_dom_node_attributes(i32 node_id, Vector<Attribute> attributes) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     client().async_add_dom_node_attributes(node_id, move(attributes)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-19 10:42:11 -05:00
										 |  |  | void ViewImplementation::replace_dom_node_attribute(i32 node_id, String name, Vector<Attribute> replacement_attributes) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     client().async_replace_dom_node_attribute(node_id, move(name), move(replacement_attributes)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-07 11:00:57 -05:00
										 |  |  | Optional<i32> ViewImplementation::create_child_element(i32 node_id) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return client().create_child_element(node_id); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Optional<i32> ViewImplementation::create_child_text_node(i32 node_id) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return client().create_child_text_node(node_id); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-07 11:12:43 -05:00
										 |  |  | Optional<i32> ViewImplementation::clone_dom_node(i32 node_id) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return client().clone_dom_node(node_id); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-05 14:59:54 -05:00
										 |  |  | void ViewImplementation::remove_dom_node(i32 node_id) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     client().async_remove_dom_node(node_id); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-06 10:36:27 -05:00
										 |  |  | Optional<String> ViewImplementation::get_dom_node_html(i32 node_id) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return client().get_dom_node_html(node_id); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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
										 |  |  | { | 
					
						
							|  |  |  |     client().async_debug_request(request, argument); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-12 20:39:08 +00:00
										 |  |  | void ViewImplementation::run_javascript(StringView js_source) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     client().async_run_javascript(js_source); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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
										 |  |  | { | 
					
						
							|  |  |  |     client().async_js_console_input(js_source); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ViewImplementation::js_console_request_messages(i32 start_index) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     client().async_js_console_request_messages(start_index); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-17 14:23:34 -04:00
										 |  |  | void ViewImplementation::alert_closed() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     client().async_alert_closed(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ViewImplementation::confirm_closed(bool accepted) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     client().async_confirm_closed(accepted); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ViewImplementation::prompt_closed(Optional<String> response) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     client().async_prompt_closed(move(response)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-04 11:32:40 +02:00
										 |  |  | void ViewImplementation::color_picker_closed(Optional<Color> picked_color) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     client().async_color_picker_closed(picked_color); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-07 15:53:49 +01:00
										 |  |  | void ViewImplementation::select_dropdown_closed(Optional<String> value) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     client().async_select_dropdown_closed(value); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-16 10:51:38 -04:00
										 |  |  | void ViewImplementation::toggle_media_play_state() | 
					
						
							| 
									
										
										
										
											2023-05-15 11:17:58 -04:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-06-16 10:51:38 -04:00
										 |  |  |     client().async_toggle_media_play_state(); | 
					
						
							| 
									
										
										
										
											2023-05-15 11:17:58 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-16 11:29:54 -04:00
										 |  |  | void ViewImplementation::toggle_media_mute_state() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     client().async_toggle_media_mute_state(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-16 10:51:38 -04:00
										 |  |  | void ViewImplementation::toggle_media_loop_state() | 
					
						
							| 
									
										
										
										
											2023-05-15 11:17:58 -04:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-06-16 10:51:38 -04:00
										 |  |  |     client().async_toggle_media_loop_state(); | 
					
						
							| 
									
										
										
										
											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
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-06-16 10:51:38 -04:00
										 |  |  |     client().async_toggle_media_controls_state(); | 
					
						
							| 
									
										
										
										
											2023-05-15 11:17:58 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-15 07:59:51 +02:00
										 |  |  | void ViewImplementation::handle_resize() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     resize_backing_stores_if_needed(WindowResizeInProgress::Yes); | 
					
						
							|  |  |  |     m_backing_store_shrink_timer->restart(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ViewImplementation::resize_backing_stores_if_needed(WindowResizeInProgress window_resize_in_progress) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     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 viewport_rect = this->viewport_rect(); | 
					
						
							|  |  |  |     if (viewport_rect.is_empty()) | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-14 07:17:00 +01:00
										 |  |  |     Web::DevicePixelSize minimum_needed_size; | 
					
						
							| 
									
										
										
										
											2023-05-15 07:59:51 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (window_resize_in_progress == WindowResizeInProgress::Yes) { | 
					
						
							|  |  |  |         // Pad the minimum needed size so that we don't have to keep reallocating backing stores while the window is being resized.
 | 
					
						
							|  |  |  |         minimum_needed_size = { viewport_rect.width() + 256, viewport_rect.height() + 256 }; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         // If we're not in the middle of a resize, we can shrink the backing store size to match the viewport size.
 | 
					
						
							|  |  |  |         minimum_needed_size = viewport_rect.size(); | 
					
						
							|  |  |  |         m_client_state.front_bitmap = {}; | 
					
						
							|  |  |  |         m_client_state.back_bitmap = {}; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-21 22:58:54 +01:00
										 |  |  |     auto old_front_bitmap_id = m_client_state.front_bitmap.id; | 
					
						
							|  |  |  |     auto old_back_bitmap_id = m_client_state.back_bitmap.id; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-15 07:59:51 +02:00
										 |  |  |     auto reallocate_backing_store_if_needed = [&](SharedBitmap& backing_store) { | 
					
						
							| 
									
										
										
										
											2023-12-14 07:17:00 +01:00
										 |  |  |         if (!backing_store.bitmap || !backing_store.bitmap->size().contains(minimum_needed_size.to_type<int>())) { | 
					
						
							|  |  |  |             if (auto new_bitmap_or_error = Gfx::Bitmap::create_shareable(Gfx::BitmapFormat::BGRA8888, minimum_needed_size.to_type<int>()); !new_bitmap_or_error.is_error()) { | 
					
						
							| 
									
										
										
										
											2023-05-15 07:59:51 +02:00
										 |  |  |                 backing_store.bitmap = new_bitmap_or_error.release_value(); | 
					
						
							|  |  |  |                 backing_store.id = m_client_state.next_bitmap_id++; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             backing_store.last_painted_size = viewport_rect.size(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     reallocate_backing_store_if_needed(m_client_state.front_bitmap); | 
					
						
							|  |  |  |     reallocate_backing_store_if_needed(m_client_state.back_bitmap); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-21 22:58:54 +01:00
										 |  |  |     auto& front_bitmap = m_client_state.front_bitmap; | 
					
						
							|  |  |  |     auto& back_bitmap = m_client_state.back_bitmap; | 
					
						
							| 
									
										
										
										
											2023-05-15 07:59:51 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-21 22:58:54 +01:00
										 |  |  |     if (front_bitmap.id != old_front_bitmap_id || back_bitmap.id != old_back_bitmap_id) | 
					
						
							|  |  |  |         client().async_add_backing_store(front_bitmap.id, front_bitmap.bitmap->to_shareable_bitmap(), back_bitmap.id, back_bitmap.bitmap->to_shareable_bitmap()); | 
					
						
							| 
									
										
										
										
											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!"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-17 09:53:13 -04:00
										 |  |  |     create_client(); | 
					
						
							|  |  |  |     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()) | 
					
						
							|  |  |  |         return Error::from_string_view("Failed to take a screenshot"sv); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     LexicalPath path { Core::StandardPaths::downloads_directory() }; | 
					
						
							|  |  |  |     path = path.append(TRY(Core::DateTime::now().to_string("screenshot-%Y-%m-%d-%H-%M-%S.png"sv))); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     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-09 16:57:57 -05:00
										 |  |  | ErrorOr<LexicalPath> ViewImplementation::take_screenshot(ScreenshotType type) | 
					
						
							| 
									
										
										
										
											2023-05-17 09:53:13 -04:00
										 |  |  | { | 
					
						
							|  |  |  |     Gfx::ShareableBitmap bitmap; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     switch (type) { | 
					
						
							|  |  |  |     case ScreenshotType::Visible: | 
					
						
							|  |  |  |         if (auto* visible_bitmap = m_client_state.has_usable_bitmap ? m_client_state.front_bitmap.bitmap.ptr() : m_backup_bitmap.ptr()) | 
					
						
							|  |  |  |             bitmap = visible_bitmap->to_shareable_bitmap(); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case ScreenshotType::Full: | 
					
						
							|  |  |  |         bitmap = client().take_document_screenshot(); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-09 16:57:57 -05:00
										 |  |  |     return save_screenshot(bitmap); | 
					
						
							| 
									
										
										
										
											2023-12-06 11:51:44 -05:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2023-05-17 09:53:13 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-09 16:57:57 -05:00
										 |  |  | ErrorOr<LexicalPath> ViewImplementation::take_dom_node_screenshot(i32 node_id) | 
					
						
							| 
									
										
										
										
											2023-12-06 11:51:44 -05:00
										 |  |  | { | 
					
						
							|  |  |  |     auto bitmap = client().take_dom_node_screenshot(node_id); | 
					
						
							| 
									
										
										
										
											2023-12-09 16:57:57 -05:00
										 |  |  |     return save_screenshot(bitmap); | 
					
						
							| 
									
										
										
										
											2023-05-17 09:53:13 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-12 13:25:06 +01:00
										 |  |  | ErrorOr<LexicalPath> ViewImplementation::dump_gc_graph() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     auto gc_graph_json = client().dump_gc_graph(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     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))); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     auto screenshot_file = TRY(Core::File::open(path.string(), Core::File::OpenMode::Write)); | 
					
						
							|  |  |  |     TRY(screenshot_file->write_until_depleted(gc_graph_json.bytes())); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return path; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-26 13:34:59 -04:00
										 |  |  | void ViewImplementation::set_user_style_sheet(String source) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     client().async_set_user_style(move(source)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ViewImplementation::use_native_user_style_sheet() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     extern StringView native_stylesheet_source; | 
					
						
							|  |  |  |     set_user_style_sheet(MUST(String::from_utf8(native_stylesheet_source))); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-23 12:22:23 -05:00
										 |  |  | void ViewImplementation::enable_inspector_prototype() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     client().async_enable_inspector_prototype(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-12 19:27:17 +00:00
										 |  |  | } |