ViewImplementation.cpp 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425
  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/String.h>
  8. #include <LibCore/DateTime.h>
  9. #include <LibCore/StandardPaths.h>
  10. #include <LibGfx/ImageFormats/PNGWriter.h>
  11. #include <LibWeb/Infra/Strings.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. m_client_state.has_usable_bitmap = true;
  46. m_client_state.back_bitmap.last_painted_size = size.to_type<Web::DevicePixels>();
  47. swap(m_client_state.back_bitmap, m_client_state.front_bitmap);
  48. m_backup_bitmap = nullptr;
  49. if (on_ready_to_paint)
  50. on_ready_to_paint();
  51. }
  52. }
  53. void ViewImplementation::load(AK::URL const& url)
  54. {
  55. m_url = url;
  56. client().async_load_url(url);
  57. }
  58. void ViewImplementation::load_html(StringView html)
  59. {
  60. client().async_load_html(html);
  61. }
  62. void ViewImplementation::load_empty_document()
  63. {
  64. load_html(""sv);
  65. }
  66. void ViewImplementation::zoom_in()
  67. {
  68. if (m_zoom_level >= ZOOM_MAX_LEVEL)
  69. return;
  70. m_zoom_level += ZOOM_STEP;
  71. update_zoom();
  72. }
  73. void ViewImplementation::zoom_out()
  74. {
  75. if (m_zoom_level <= ZOOM_MIN_LEVEL)
  76. return;
  77. m_zoom_level -= ZOOM_STEP;
  78. update_zoom();
  79. }
  80. void ViewImplementation::reset_zoom()
  81. {
  82. m_zoom_level = 1.0f;
  83. update_zoom();
  84. }
  85. void ViewImplementation::set_preferred_color_scheme(Web::CSS::PreferredColorScheme color_scheme)
  86. {
  87. client().async_set_preferred_color_scheme(color_scheme);
  88. }
  89. ByteString ViewImplementation::selected_text()
  90. {
  91. return client().get_selected_text();
  92. }
  93. Optional<String> ViewImplementation::selected_text_with_whitespace_collapsed()
  94. {
  95. auto selected_text = MUST(Web::Infra::strip_and_collapse_whitespace(this->selected_text()));
  96. if (selected_text.is_empty())
  97. return OptionalNone {};
  98. return selected_text;
  99. }
  100. void ViewImplementation::select_all()
  101. {
  102. client().async_select_all();
  103. }
  104. void ViewImplementation::get_source()
  105. {
  106. client().async_get_source();
  107. }
  108. void ViewImplementation::inspect_dom_tree()
  109. {
  110. client().async_inspect_dom_tree();
  111. }
  112. void ViewImplementation::inspect_dom_node(i32 node_id, Optional<Web::CSS::Selector::PseudoElement::Type> pseudo_element)
  113. {
  114. client().async_inspect_dom_node(node_id, move(pseudo_element));
  115. }
  116. void ViewImplementation::inspect_accessibility_tree()
  117. {
  118. client().async_inspect_accessibility_tree();
  119. }
  120. void ViewImplementation::clear_inspected_dom_node()
  121. {
  122. inspect_dom_node(0, {});
  123. }
  124. void ViewImplementation::get_hovered_node_id()
  125. {
  126. client().async_get_hovered_node_id();
  127. }
  128. void ViewImplementation::set_dom_node_text(i32 node_id, String text)
  129. {
  130. client().async_set_dom_node_text(node_id, move(text));
  131. }
  132. void ViewImplementation::set_dom_node_tag(i32 node_id, String name)
  133. {
  134. client().async_set_dom_node_tag(node_id, move(name));
  135. }
  136. void ViewImplementation::add_dom_node_attributes(i32 node_id, Vector<Attribute> attributes)
  137. {
  138. client().async_add_dom_node_attributes(node_id, move(attributes));
  139. }
  140. void ViewImplementation::replace_dom_node_attribute(i32 node_id, String name, Vector<Attribute> replacement_attributes)
  141. {
  142. client().async_replace_dom_node_attribute(node_id, move(name), move(replacement_attributes));
  143. }
  144. void ViewImplementation::create_child_element(i32 node_id)
  145. {
  146. client().async_create_child_element(node_id);
  147. }
  148. void ViewImplementation::create_child_text_node(i32 node_id)
  149. {
  150. client().async_create_child_text_node(node_id);
  151. }
  152. void ViewImplementation::clone_dom_node(i32 node_id)
  153. {
  154. client().async_clone_dom_node(node_id);
  155. }
  156. void ViewImplementation::remove_dom_node(i32 node_id)
  157. {
  158. client().async_remove_dom_node(node_id);
  159. }
  160. void ViewImplementation::get_dom_node_html(i32 node_id)
  161. {
  162. client().async_get_dom_node_html(node_id);
  163. }
  164. void ViewImplementation::debug_request(ByteString const& request, ByteString const& argument)
  165. {
  166. client().async_debug_request(request, argument);
  167. }
  168. void ViewImplementation::run_javascript(StringView js_source)
  169. {
  170. client().async_run_javascript(js_source);
  171. }
  172. void ViewImplementation::js_console_input(ByteString const& js_source)
  173. {
  174. client().async_js_console_input(js_source);
  175. }
  176. void ViewImplementation::js_console_request_messages(i32 start_index)
  177. {
  178. client().async_js_console_request_messages(start_index);
  179. }
  180. void ViewImplementation::alert_closed()
  181. {
  182. client().async_alert_closed();
  183. }
  184. void ViewImplementation::confirm_closed(bool accepted)
  185. {
  186. client().async_confirm_closed(accepted);
  187. }
  188. void ViewImplementation::prompt_closed(Optional<String> response)
  189. {
  190. client().async_prompt_closed(move(response));
  191. }
  192. void ViewImplementation::color_picker_closed(Optional<Color> picked_color)
  193. {
  194. client().async_color_picker_closed(picked_color);
  195. }
  196. void ViewImplementation::select_dropdown_closed(Optional<String> value)
  197. {
  198. client().async_select_dropdown_closed(value);
  199. }
  200. void ViewImplementation::toggle_media_play_state()
  201. {
  202. client().async_toggle_media_play_state();
  203. }
  204. void ViewImplementation::toggle_media_mute_state()
  205. {
  206. client().async_toggle_media_mute_state();
  207. }
  208. void ViewImplementation::toggle_media_loop_state()
  209. {
  210. client().async_toggle_media_loop_state();
  211. }
  212. void ViewImplementation::toggle_media_controls_state()
  213. {
  214. client().async_toggle_media_controls_state();
  215. }
  216. void ViewImplementation::handle_resize()
  217. {
  218. resize_backing_stores_if_needed(WindowResizeInProgress::Yes);
  219. m_backing_store_shrink_timer->restart();
  220. }
  221. void ViewImplementation::resize_backing_stores_if_needed(WindowResizeInProgress window_resize_in_progress)
  222. {
  223. if (m_client_state.has_usable_bitmap) {
  224. // NOTE: We keep the outgoing front bitmap as a backup so we have something to paint until we get a new one.
  225. m_backup_bitmap = m_client_state.front_bitmap.bitmap;
  226. m_backup_bitmap_size = m_client_state.front_bitmap.last_painted_size;
  227. }
  228. m_client_state.has_usable_bitmap = false;
  229. auto viewport_rect = this->viewport_rect();
  230. if (viewport_rect.is_empty())
  231. return;
  232. Web::DevicePixelSize minimum_needed_size;
  233. if (window_resize_in_progress == WindowResizeInProgress::Yes) {
  234. // Pad the minimum needed size so that we don't have to keep reallocating backing stores while the window is being resized.
  235. minimum_needed_size = { viewport_rect.width() + 256, viewport_rect.height() + 256 };
  236. } else {
  237. // If we're not in the middle of a resize, we can shrink the backing store size to match the viewport size.
  238. minimum_needed_size = viewport_rect.size();
  239. m_client_state.front_bitmap = {};
  240. m_client_state.back_bitmap = {};
  241. }
  242. auto old_front_bitmap_id = m_client_state.front_bitmap.id;
  243. auto old_back_bitmap_id = m_client_state.back_bitmap.id;
  244. auto reallocate_backing_store_if_needed = [&](SharedBitmap& backing_store) {
  245. if (!backing_store.bitmap || !backing_store.bitmap->size().contains(minimum_needed_size.to_type<int>())) {
  246. 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()) {
  247. backing_store.bitmap = new_bitmap_or_error.release_value();
  248. backing_store.id = m_client_state.next_bitmap_id++;
  249. }
  250. backing_store.last_painted_size = viewport_rect.size();
  251. }
  252. };
  253. reallocate_backing_store_if_needed(m_client_state.front_bitmap);
  254. reallocate_backing_store_if_needed(m_client_state.back_bitmap);
  255. auto& front_bitmap = m_client_state.front_bitmap;
  256. auto& back_bitmap = m_client_state.back_bitmap;
  257. if (front_bitmap.id != old_front_bitmap_id || back_bitmap.id != old_back_bitmap_id) {
  258. client().async_add_backing_store(front_bitmap.id, front_bitmap.bitmap->to_shareable_bitmap(), back_bitmap.id,
  259. back_bitmap.bitmap->to_shareable_bitmap());
  260. client().async_set_viewport_rect(viewport_rect);
  261. }
  262. }
  263. void ViewImplementation::handle_web_content_process_crash()
  264. {
  265. dbgln("WebContent process crashed!");
  266. ++m_crash_count;
  267. constexpr size_t max_reasonable_crash_count = 5U;
  268. if (m_crash_count >= max_reasonable_crash_count) {
  269. dbgln("WebContent has crashed {} times in quick succession! Not restarting...", m_crash_count);
  270. m_repeated_crash_timer->stop();
  271. return;
  272. }
  273. m_repeated_crash_timer->restart();
  274. create_client();
  275. VERIFY(m_client_state.client);
  276. // Don't keep a stale backup bitmap around.
  277. m_backup_bitmap = nullptr;
  278. handle_resize();
  279. StringBuilder builder;
  280. builder.append("<html><head><title>Crashed: "sv);
  281. builder.append(escape_html_entities(m_url.to_byte_string()));
  282. builder.append("</title></head><body>"sv);
  283. builder.append("<h1>Web page crashed"sv);
  284. if (!m_url.host().has<Empty>()) {
  285. builder.appendff(" on {}", escape_html_entities(m_url.serialized_host().release_value_but_fixme_should_propagate_errors()));
  286. }
  287. builder.append("</h1>"sv);
  288. auto escaped_url = escape_html_entities(m_url.to_byte_string());
  289. builder.appendff("The web page <a href=\"{}\">{}</a> has crashed.<br><br>You can reload the page to try again.", escaped_url, escaped_url);
  290. builder.append("</body></html>"sv);
  291. load_html(builder.to_byte_string());
  292. }
  293. static ErrorOr<LexicalPath> save_screenshot(Gfx::ShareableBitmap const& bitmap)
  294. {
  295. if (!bitmap.is_valid())
  296. return Error::from_string_view("Failed to take a screenshot"sv);
  297. LexicalPath path { Core::StandardPaths::downloads_directory() };
  298. path = path.append(TRY(Core::DateTime::now().to_string("screenshot-%Y-%m-%d-%H-%M-%S.png"sv)));
  299. auto encoded = TRY(Gfx::PNGWriter::encode(*bitmap.bitmap()));
  300. auto dump_file = TRY(Core::File::open(path.string(), Core::File::OpenMode::Write));
  301. TRY(dump_file->write_until_depleted(encoded));
  302. return path;
  303. }
  304. ErrorOr<LexicalPath> ViewImplementation::take_screenshot(ScreenshotType type)
  305. {
  306. Gfx::ShareableBitmap bitmap;
  307. switch (type) {
  308. case ScreenshotType::Visible:
  309. if (auto* visible_bitmap = m_client_state.has_usable_bitmap ? m_client_state.front_bitmap.bitmap.ptr() : m_backup_bitmap.ptr())
  310. bitmap = visible_bitmap->to_shareable_bitmap();
  311. break;
  312. case ScreenshotType::Full:
  313. bitmap = client().take_document_screenshot();
  314. break;
  315. }
  316. return save_screenshot(bitmap);
  317. }
  318. ErrorOr<LexicalPath> ViewImplementation::take_dom_node_screenshot(i32 node_id)
  319. {
  320. auto bitmap = client().take_dom_node_screenshot(node_id);
  321. return save_screenshot(bitmap);
  322. }
  323. ErrorOr<LexicalPath> ViewImplementation::dump_gc_graph()
  324. {
  325. auto gc_graph_json = client().dump_gc_graph();
  326. LexicalPath path { Core::StandardPaths::tempfile_directory() };
  327. path = path.append(TRY(Core::DateTime::now().to_string("gc-graph-%Y-%m-%d-%H-%M-%S.json"sv)));
  328. auto screenshot_file = TRY(Core::File::open(path.string(), Core::File::OpenMode::Write));
  329. TRY(screenshot_file->write_until_depleted(gc_graph_json.bytes()));
  330. return path;
  331. }
  332. void ViewImplementation::set_user_style_sheet(String source)
  333. {
  334. client().async_set_user_style(move(source));
  335. }
  336. void ViewImplementation::use_native_user_style_sheet()
  337. {
  338. extern StringView native_stylesheet_source;
  339. set_user_style_sheet(MUST(String::from_utf8(native_stylesheet_source)));
  340. }
  341. void ViewImplementation::enable_inspector_prototype()
  342. {
  343. client().async_enable_inspector_prototype();
  344. }
  345. }