ViewImplementation.cpp 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362
  1. /*
  2. * Copyright (c) 2023, Linus Groh <linusg@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #include <AK/Error.h>
  7. #include <AK/LexicalPath.h>
  8. #include <AK/String.h>
  9. #include <LibCore/DateTime.h>
  10. #include <LibCore/StandardPaths.h>
  11. #include <LibGfx/ImageFormats/PNGWriter.h>
  12. #include <LibWebView/ViewImplementation.h>
  13. namespace WebView {
  14. ViewImplementation::ViewImplementation()
  15. {
  16. m_backing_store_shrink_timer = Core::Timer::create_single_shot(3000, [this] {
  17. resize_backing_stores_if_needed(WindowResizeInProgress::No);
  18. }).release_value_but_fixme_should_propagate_errors();
  19. m_repeated_crash_timer = Core::Timer::create_single_shot(1000, [this] {
  20. // Reset the "crashing a lot" counter after 1 second in case we just
  21. // happen to be visiting crashy websites a lot.
  22. this->m_crash_count = 0;
  23. }).release_value_but_fixme_should_propagate_errors();
  24. on_request_file = [this](auto const& path, auto request_id) {
  25. auto file = Core::File::open(path, Core::File::OpenMode::Read);
  26. if (file.is_error())
  27. client().async_handle_file_return(file.error().code(), {}, request_id);
  28. else
  29. client().async_handle_file_return(0, IPC::File(*file.value()), request_id);
  30. };
  31. }
  32. WebContentClient& ViewImplementation::client()
  33. {
  34. VERIFY(m_client_state.client);
  35. return *m_client_state.client;
  36. }
  37. WebContentClient const& ViewImplementation::client() const
  38. {
  39. VERIFY(m_client_state.client);
  40. return *m_client_state.client;
  41. }
  42. void ViewImplementation::server_did_paint(Badge<WebContentClient>, i32 bitmap_id, Gfx::IntSize size)
  43. {
  44. if (m_client_state.back_bitmap.id != bitmap_id)
  45. return;
  46. m_client_state.has_usable_bitmap = true;
  47. m_client_state.back_bitmap.pending_paints--;
  48. m_client_state.back_bitmap.last_painted_size = size;
  49. swap(m_client_state.back_bitmap, m_client_state.front_bitmap);
  50. // We don't need the backup bitmap anymore, so drop it.
  51. m_backup_bitmap = nullptr;
  52. if (on_ready_to_paint)
  53. on_ready_to_paint();
  54. if (m_client_state.got_repaint_requests_while_painting) {
  55. m_client_state.got_repaint_requests_while_painting = false;
  56. request_repaint();
  57. }
  58. }
  59. void ViewImplementation::server_did_invalidate_content_rect(Badge<WebContentClient>, Gfx::IntRect)
  60. {
  61. request_repaint();
  62. }
  63. void ViewImplementation::server_did_change_selection(Badge<WebContentClient>)
  64. {
  65. request_repaint();
  66. }
  67. void ViewImplementation::load(AK::URL const& url)
  68. {
  69. m_url = url;
  70. client().async_load_url(url);
  71. }
  72. void ViewImplementation::load_html(StringView html, AK::URL const& url)
  73. {
  74. m_url = url;
  75. client().async_load_html(html, url);
  76. }
  77. void ViewImplementation::load_empty_document()
  78. {
  79. load_html(""sv, {});
  80. }
  81. void ViewImplementation::zoom_in()
  82. {
  83. if (m_zoom_level >= ZOOM_MAX_LEVEL)
  84. return;
  85. m_zoom_level += ZOOM_STEP;
  86. update_zoom();
  87. }
  88. void ViewImplementation::zoom_out()
  89. {
  90. if (m_zoom_level <= ZOOM_MIN_LEVEL)
  91. return;
  92. m_zoom_level -= ZOOM_STEP;
  93. update_zoom();
  94. }
  95. void ViewImplementation::reset_zoom()
  96. {
  97. m_zoom_level = 1.0f;
  98. update_zoom();
  99. }
  100. void ViewImplementation::set_preferred_color_scheme(Web::CSS::PreferredColorScheme color_scheme)
  101. {
  102. client().async_set_preferred_color_scheme(color_scheme);
  103. }
  104. DeprecatedString ViewImplementation::selected_text()
  105. {
  106. return client().get_selected_text();
  107. }
  108. void ViewImplementation::select_all()
  109. {
  110. client().async_select_all();
  111. }
  112. void ViewImplementation::get_source()
  113. {
  114. client().async_get_source();
  115. }
  116. void ViewImplementation::inspect_dom_tree()
  117. {
  118. client().async_inspect_dom_tree();
  119. }
  120. void ViewImplementation::inspect_accessibility_tree()
  121. {
  122. client().async_inspect_accessibility_tree();
  123. }
  124. ErrorOr<ViewImplementation::DOMNodeProperties> ViewImplementation::inspect_dom_node(i32 node_id, Optional<Web::CSS::Selector::PseudoElement> pseudo_element)
  125. {
  126. auto response = client().inspect_dom_node(node_id, pseudo_element);
  127. if (!response.has_style())
  128. return Error::from_string_view("Inspected node returned no style"sv);
  129. return DOMNodeProperties {
  130. .computed_style_json = TRY(String::from_deprecated_string(response.take_computed_style())),
  131. .resolved_style_json = TRY(String::from_deprecated_string(response.take_resolved_style())),
  132. .custom_properties_json = TRY(String::from_deprecated_string(response.take_custom_properties())),
  133. .node_box_sizing_json = TRY(String::from_deprecated_string(response.take_node_box_sizing())),
  134. .aria_properties_state_json = TRY(String::from_deprecated_string(response.take_aria_properties_state())),
  135. };
  136. }
  137. void ViewImplementation::clear_inspected_dom_node()
  138. {
  139. client().inspect_dom_node(0, {});
  140. }
  141. i32 ViewImplementation::get_hovered_node_id()
  142. {
  143. return client().get_hovered_node_id();
  144. }
  145. void ViewImplementation::debug_request(DeprecatedString const& request, DeprecatedString const& argument)
  146. {
  147. client().async_debug_request(request, argument);
  148. }
  149. void ViewImplementation::run_javascript(StringView js_source)
  150. {
  151. client().async_run_javascript(js_source);
  152. }
  153. void ViewImplementation::js_console_input(DeprecatedString const& js_source)
  154. {
  155. client().async_js_console_input(js_source);
  156. }
  157. void ViewImplementation::js_console_request_messages(i32 start_index)
  158. {
  159. client().async_js_console_request_messages(start_index);
  160. }
  161. void ViewImplementation::alert_closed()
  162. {
  163. client().async_alert_closed();
  164. }
  165. void ViewImplementation::confirm_closed(bool accepted)
  166. {
  167. client().async_confirm_closed(accepted);
  168. }
  169. void ViewImplementation::prompt_closed(Optional<String> response)
  170. {
  171. client().async_prompt_closed(move(response));
  172. }
  173. void ViewImplementation::toggle_media_play_state()
  174. {
  175. client().async_toggle_media_play_state();
  176. }
  177. void ViewImplementation::toggle_media_mute_state()
  178. {
  179. client().async_toggle_media_mute_state();
  180. }
  181. void ViewImplementation::toggle_media_loop_state()
  182. {
  183. client().async_toggle_media_loop_state();
  184. }
  185. void ViewImplementation::toggle_media_controls_state()
  186. {
  187. client().async_toggle_media_controls_state();
  188. }
  189. void ViewImplementation::handle_resize()
  190. {
  191. resize_backing_stores_if_needed(WindowResizeInProgress::Yes);
  192. m_backing_store_shrink_timer->restart();
  193. }
  194. void ViewImplementation::resize_backing_stores_if_needed(WindowResizeInProgress window_resize_in_progress)
  195. {
  196. if (m_client_state.has_usable_bitmap) {
  197. // NOTE: We keep the outgoing front bitmap as a backup so we have something to paint until we get a new one.
  198. m_backup_bitmap = m_client_state.front_bitmap.bitmap;
  199. m_backup_bitmap_size = m_client_state.front_bitmap.last_painted_size;
  200. }
  201. m_client_state.has_usable_bitmap = false;
  202. auto viewport_rect = this->viewport_rect();
  203. if (viewport_rect.is_empty())
  204. return;
  205. Gfx::IntSize minimum_needed_size;
  206. if (window_resize_in_progress == WindowResizeInProgress::Yes) {
  207. // Pad the minimum needed size so that we don't have to keep reallocating backing stores while the window is being resized.
  208. minimum_needed_size = { viewport_rect.width() + 256, viewport_rect.height() + 256 };
  209. } else {
  210. // If we're not in the middle of a resize, we can shrink the backing store size to match the viewport size.
  211. minimum_needed_size = viewport_rect.size();
  212. m_client_state.front_bitmap = {};
  213. m_client_state.back_bitmap = {};
  214. }
  215. auto reallocate_backing_store_if_needed = [&](SharedBitmap& backing_store) {
  216. if (!backing_store.bitmap || !backing_store.bitmap->size().contains(minimum_needed_size)) {
  217. if (auto new_bitmap_or_error = Gfx::Bitmap::create_shareable(Gfx::BitmapFormat::BGRA8888, minimum_needed_size); !new_bitmap_or_error.is_error()) {
  218. if (backing_store.bitmap)
  219. client().async_remove_backing_store(backing_store.id);
  220. backing_store.pending_paints = 0;
  221. backing_store.bitmap = new_bitmap_or_error.release_value();
  222. backing_store.id = m_client_state.next_bitmap_id++;
  223. client().async_add_backing_store(backing_store.id, backing_store.bitmap->to_shareable_bitmap());
  224. }
  225. backing_store.last_painted_size = viewport_rect.size();
  226. }
  227. };
  228. reallocate_backing_store_if_needed(m_client_state.front_bitmap);
  229. reallocate_backing_store_if_needed(m_client_state.back_bitmap);
  230. request_repaint();
  231. }
  232. void ViewImplementation::request_repaint()
  233. {
  234. // If this widget was instantiated but not yet added to a window,
  235. // it won't have a back bitmap yet, so we can just skip repaint requests.
  236. if (!m_client_state.back_bitmap.bitmap)
  237. return;
  238. // Don't request a repaint until pending paint requests have finished.
  239. if (m_client_state.back_bitmap.pending_paints) {
  240. m_client_state.got_repaint_requests_while_painting = true;
  241. return;
  242. }
  243. m_client_state.back_bitmap.pending_paints++;
  244. client().async_paint(viewport_rect(), m_client_state.back_bitmap.id);
  245. }
  246. void ViewImplementation::handle_web_content_process_crash()
  247. {
  248. dbgln("WebContent process crashed!");
  249. ++m_crash_count;
  250. constexpr size_t max_reasonable_crash_count = 5U;
  251. if (m_crash_count >= max_reasonable_crash_count) {
  252. dbgln("WebContent has crashed {} times in quick succession! Not restarting...", m_crash_count);
  253. m_repeated_crash_timer->stop();
  254. return;
  255. }
  256. m_repeated_crash_timer->restart();
  257. create_client();
  258. VERIFY(m_client_state.client);
  259. // Don't keep a stale backup bitmap around.
  260. m_backup_bitmap = nullptr;
  261. handle_resize();
  262. StringBuilder builder;
  263. builder.append("<html><head><title>Crashed: "sv);
  264. builder.append(escape_html_entities(m_url.to_deprecated_string()));
  265. builder.append("</title></head><body>"sv);
  266. builder.append("<h1>Web page crashed"sv);
  267. if (!m_url.host().has<Empty>()) {
  268. builder.appendff(" on {}", escape_html_entities(m_url.serialized_host().release_value_but_fixme_should_propagate_errors()));
  269. }
  270. builder.append("</h1>"sv);
  271. auto escaped_url = escape_html_entities(m_url.to_deprecated_string());
  272. builder.appendff("The web page <a href=\"{}\">{}</a> has crashed.<br><br>You can reload the page to try again.", escaped_url, escaped_url);
  273. builder.append("</body></html>"sv);
  274. load_html(builder.to_deprecated_string(), m_url);
  275. }
  276. ErrorOr<void> ViewImplementation::take_screenshot(ScreenshotType type)
  277. {
  278. Gfx::ShareableBitmap bitmap;
  279. switch (type) {
  280. case ScreenshotType::Visible:
  281. if (auto* visible_bitmap = m_client_state.has_usable_bitmap ? m_client_state.front_bitmap.bitmap.ptr() : m_backup_bitmap.ptr())
  282. bitmap = visible_bitmap->to_shareable_bitmap();
  283. break;
  284. case ScreenshotType::Full:
  285. bitmap = client().take_document_screenshot();
  286. break;
  287. }
  288. if (!bitmap.is_valid())
  289. return Error::from_string_view("Failed to take a screenshot of the current tab"sv);
  290. LexicalPath path { Core::StandardPaths::downloads_directory() };
  291. path = path.append(TRY(Core::DateTime::now().to_string("screenshot-%Y-%m-%d-%H-%M-%S.png"sv)));
  292. auto encoded = TRY(Gfx::PNGWriter::encode(*bitmap.bitmap()));
  293. auto screenshot_file = TRY(Core::File::open(path.string(), Core::File::OpenMode::Write));
  294. TRY(screenshot_file->write_until_depleted(encoded));
  295. return {};
  296. }
  297. }