ViewImplementation.cpp 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715
  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 <LibCore/Timer.h>
  11. #include <LibGfx/ImageFormats/PNGWriter.h>
  12. #include <LibWeb/Crypto/Crypto.h>
  13. #include <LibWeb/Infra/Strings.h>
  14. #include <LibWebView/Application.h>
  15. #include <LibWebView/HelperProcess.h>
  16. #include <LibWebView/UserAgent.h>
  17. #include <LibWebView/ViewImplementation.h>
  18. #ifdef AK_OS_MACOS
  19. # include <LibCore/IOSurface.h>
  20. # include <LibCore/MachPort.h>
  21. #endif
  22. namespace WebView {
  23. ViewImplementation::ViewImplementation()
  24. {
  25. m_repeated_crash_timer = Core::Timer::create_single_shot(1000, [this] {
  26. // Reset the "crashing a lot" counter after 1 second in case we just
  27. // happen to be visiting crashy websites a lot.
  28. this->m_crash_count = 0;
  29. });
  30. on_request_file = [this](auto const& path, auto request_id) {
  31. auto file = Core::File::open(path, Core::File::OpenMode::Read);
  32. if (file.is_error())
  33. client().async_handle_file_return(page_id(), file.error().code(), {}, request_id);
  34. else
  35. client().async_handle_file_return(page_id(), 0, IPC::File::adopt_file(file.release_value()), request_id);
  36. };
  37. }
  38. ViewImplementation::~ViewImplementation()
  39. {
  40. if (m_client_state.client)
  41. m_client_state.client->unregister_view(m_client_state.page_index);
  42. }
  43. WebContentClient& ViewImplementation::client()
  44. {
  45. VERIFY(m_client_state.client);
  46. return *m_client_state.client;
  47. }
  48. WebContentClient const& ViewImplementation::client() const
  49. {
  50. VERIFY(m_client_state.client);
  51. return *m_client_state.client;
  52. }
  53. u64 ViewImplementation::page_id() const
  54. {
  55. VERIFY(m_client_state.client);
  56. return m_client_state.page_index;
  57. }
  58. void ViewImplementation::server_did_paint(Badge<WebContentClient>, i32 bitmap_id, Gfx::IntSize size)
  59. {
  60. if (m_client_state.back_bitmap.id == bitmap_id) {
  61. m_client_state.has_usable_bitmap = true;
  62. m_client_state.back_bitmap.last_painted_size = size.to_type<Web::DevicePixels>();
  63. swap(m_client_state.back_bitmap, m_client_state.front_bitmap);
  64. m_backup_bitmap = nullptr;
  65. if (on_ready_to_paint)
  66. on_ready_to_paint();
  67. }
  68. client().async_ready_to_paint(page_id());
  69. }
  70. void ViewImplementation::set_window_position(Gfx::IntPoint position)
  71. {
  72. client().async_set_window_position(m_client_state.page_index, position.to_type<Web::DevicePixels>());
  73. }
  74. void ViewImplementation::set_window_size(Gfx::IntSize size)
  75. {
  76. client().async_set_window_size(m_client_state.page_index, size.to_type<Web::DevicePixels>());
  77. }
  78. void ViewImplementation::did_update_window_rect()
  79. {
  80. client().async_did_update_window_rect(m_client_state.page_index);
  81. }
  82. void ViewImplementation::set_system_visibility_state(Web::HTML::VisibilityState visibility_state)
  83. {
  84. m_system_visibility_state = visibility_state;
  85. client().async_set_system_visibility_state(m_client_state.page_index, m_system_visibility_state);
  86. }
  87. void ViewImplementation::load(URL::URL const& url)
  88. {
  89. m_url = url;
  90. client().async_load_url(page_id(), url);
  91. }
  92. void ViewImplementation::load_html(StringView html)
  93. {
  94. client().async_load_html(page_id(), html);
  95. }
  96. void ViewImplementation::load_empty_document()
  97. {
  98. load_html(""sv);
  99. }
  100. void ViewImplementation::reload()
  101. {
  102. client().async_reload(page_id());
  103. }
  104. void ViewImplementation::traverse_the_history_by_delta(int delta)
  105. {
  106. client().async_traverse_the_history_by_delta(page_id(), delta);
  107. }
  108. void ViewImplementation::zoom_in()
  109. {
  110. if (m_zoom_level >= ZOOM_MAX_LEVEL)
  111. return;
  112. m_zoom_level = round_to<int>((m_zoom_level + ZOOM_STEP) * 100) / 100.0f;
  113. update_zoom();
  114. }
  115. void ViewImplementation::zoom_out()
  116. {
  117. if (m_zoom_level <= ZOOM_MIN_LEVEL)
  118. return;
  119. m_zoom_level = round_to<int>((m_zoom_level - ZOOM_STEP) * 100) / 100.0f;
  120. update_zoom();
  121. }
  122. void ViewImplementation::reset_zoom()
  123. {
  124. m_zoom_level = 1.0f;
  125. update_zoom();
  126. }
  127. void ViewImplementation::enqueue_input_event(Web::InputEvent event)
  128. {
  129. // Send the next event over to the WebContent to be handled by JS. We'll later get a message to say whether JS
  130. // prevented the default event behavior, at which point we either discard or handle that event, and then try to
  131. // process the next one.
  132. m_pending_input_events.enqueue(move(event));
  133. m_pending_input_events.tail().visit(
  134. [this](Web::KeyEvent const& event) {
  135. client().async_key_event(m_client_state.page_index, event.clone_without_chrome_data());
  136. },
  137. [this](Web::MouseEvent const& event) {
  138. client().async_mouse_event(m_client_state.page_index, event.clone_without_chrome_data());
  139. },
  140. [this](Web::DragEvent& event) {
  141. auto cloned_event = event.clone_without_chrome_data();
  142. cloned_event.files = move(event.files);
  143. client().async_drag_event(m_client_state.page_index, move(cloned_event));
  144. });
  145. }
  146. void ViewImplementation::did_finish_handling_input_event(Badge<WebContentClient>, Web::EventResult event_result)
  147. {
  148. auto event = m_pending_input_events.dequeue();
  149. if (event_result == Web::EventResult::Handled)
  150. return;
  151. // Here we handle events that were not consumed or cancelled by the WebContent. Propagate the event back
  152. // to the concrete view implementation.
  153. event.visit(
  154. [this](Web::KeyEvent const& event) {
  155. if (on_finish_handling_key_event)
  156. on_finish_handling_key_event(event);
  157. },
  158. [this](Web::DragEvent const& event) {
  159. if (on_finish_handling_drag_event)
  160. on_finish_handling_drag_event(event);
  161. },
  162. [](auto const&) {});
  163. }
  164. void ViewImplementation::set_preferred_color_scheme(Web::CSS::PreferredColorScheme color_scheme)
  165. {
  166. client().async_set_preferred_color_scheme(page_id(), color_scheme);
  167. }
  168. void ViewImplementation::set_preferred_contrast(Web::CSS::PreferredContrast contrast)
  169. {
  170. client().async_set_preferred_contrast(page_id(), contrast);
  171. }
  172. void ViewImplementation::set_preferred_motion(Web::CSS::PreferredMotion motion)
  173. {
  174. client().async_set_preferred_motion(page_id(), motion);
  175. }
  176. void ViewImplementation::set_preferred_languages(Vector<String> preferred_languages)
  177. {
  178. client().async_set_preferred_languages(page_id(), move(preferred_languages));
  179. }
  180. void ViewImplementation::set_enable_do_not_track(bool enable)
  181. {
  182. client().async_set_enable_do_not_track(page_id(), enable);
  183. }
  184. void ViewImplementation::set_enable_autoplay(bool enable)
  185. {
  186. if (enable) {
  187. client().async_set_autoplay_allowed_on_all_websites(page_id());
  188. } else {
  189. client().async_set_autoplay_allowlist(page_id(), {});
  190. }
  191. }
  192. ByteString ViewImplementation::selected_text()
  193. {
  194. return client().get_selected_text(page_id());
  195. }
  196. Optional<String> ViewImplementation::selected_text_with_whitespace_collapsed()
  197. {
  198. auto selected_text = MUST(Web::Infra::strip_and_collapse_whitespace(this->selected_text()));
  199. if (selected_text.is_empty())
  200. return OptionalNone {};
  201. return selected_text;
  202. }
  203. void ViewImplementation::select_all()
  204. {
  205. client().async_select_all(page_id());
  206. }
  207. void ViewImplementation::paste(String const& text)
  208. {
  209. client().async_paste(page_id(), text);
  210. }
  211. void ViewImplementation::find_in_page(String const& query, CaseSensitivity case_sensitivity)
  212. {
  213. client().async_find_in_page(page_id(), query, case_sensitivity);
  214. }
  215. void ViewImplementation::find_in_page_next_match()
  216. {
  217. client().async_find_in_page_next_match(page_id());
  218. }
  219. void ViewImplementation::find_in_page_previous_match()
  220. {
  221. client().async_find_in_page_previous_match(page_id());
  222. }
  223. void ViewImplementation::get_source()
  224. {
  225. client().async_get_source(page_id());
  226. }
  227. void ViewImplementation::inspect_dom_tree()
  228. {
  229. client().async_inspect_dom_tree(page_id());
  230. }
  231. void ViewImplementation::inspect_dom_node(Web::UniqueNodeID node_id, Optional<Web::CSS::Selector::PseudoElement::Type> pseudo_element)
  232. {
  233. client().async_inspect_dom_node(page_id(), node_id, move(pseudo_element));
  234. }
  235. void ViewImplementation::inspect_accessibility_tree()
  236. {
  237. client().async_inspect_accessibility_tree(page_id());
  238. }
  239. void ViewImplementation::clear_inspected_dom_node()
  240. {
  241. inspect_dom_node(0, {});
  242. }
  243. void ViewImplementation::get_hovered_node_id()
  244. {
  245. client().async_get_hovered_node_id(page_id());
  246. }
  247. void ViewImplementation::set_dom_node_text(Web::UniqueNodeID node_id, String text)
  248. {
  249. client().async_set_dom_node_text(page_id(), node_id, move(text));
  250. }
  251. void ViewImplementation::set_dom_node_tag(Web::UniqueNodeID node_id, String name)
  252. {
  253. client().async_set_dom_node_tag(page_id(), node_id, move(name));
  254. }
  255. void ViewImplementation::add_dom_node_attributes(Web::UniqueNodeID node_id, Vector<Attribute> attributes)
  256. {
  257. client().async_add_dom_node_attributes(page_id(), node_id, move(attributes));
  258. }
  259. void ViewImplementation::replace_dom_node_attribute(Web::UniqueNodeID node_id, String name, Vector<Attribute> replacement_attributes)
  260. {
  261. client().async_replace_dom_node_attribute(page_id(), node_id, move(name), move(replacement_attributes));
  262. }
  263. void ViewImplementation::create_child_element(Web::UniqueNodeID node_id)
  264. {
  265. client().async_create_child_element(page_id(), node_id);
  266. }
  267. void ViewImplementation::create_child_text_node(Web::UniqueNodeID node_id)
  268. {
  269. client().async_create_child_text_node(page_id(), node_id);
  270. }
  271. void ViewImplementation::clone_dom_node(Web::UniqueNodeID node_id)
  272. {
  273. client().async_clone_dom_node(page_id(), node_id);
  274. }
  275. void ViewImplementation::remove_dom_node(Web::UniqueNodeID node_id)
  276. {
  277. client().async_remove_dom_node(page_id(), node_id);
  278. }
  279. void ViewImplementation::get_dom_node_html(Web::UniqueNodeID node_id)
  280. {
  281. client().async_get_dom_node_html(page_id(), node_id);
  282. }
  283. void ViewImplementation::list_style_sheets()
  284. {
  285. client().async_list_style_sheets(page_id());
  286. }
  287. void ViewImplementation::request_style_sheet_source(Web::CSS::StyleSheetIdentifier const& identifier)
  288. {
  289. client().async_request_style_sheet_source(page_id(), identifier);
  290. }
  291. void ViewImplementation::debug_request(ByteString const& request, ByteString const& argument)
  292. {
  293. client().async_debug_request(page_id(), request, argument);
  294. }
  295. void ViewImplementation::run_javascript(StringView js_source)
  296. {
  297. client().async_run_javascript(page_id(), js_source);
  298. }
  299. void ViewImplementation::js_console_input(ByteString const& js_source)
  300. {
  301. client().async_js_console_input(page_id(), js_source);
  302. }
  303. void ViewImplementation::js_console_request_messages(i32 start_index)
  304. {
  305. client().async_js_console_request_messages(page_id(), start_index);
  306. }
  307. void ViewImplementation::alert_closed()
  308. {
  309. client().async_alert_closed(page_id());
  310. }
  311. void ViewImplementation::confirm_closed(bool accepted)
  312. {
  313. client().async_confirm_closed(page_id(), accepted);
  314. }
  315. void ViewImplementation::prompt_closed(Optional<String> response)
  316. {
  317. client().async_prompt_closed(page_id(), move(response));
  318. }
  319. void ViewImplementation::color_picker_update(Optional<Color> picked_color, Web::HTML::ColorPickerUpdateState state)
  320. {
  321. client().async_color_picker_update(page_id(), picked_color, state);
  322. }
  323. void ViewImplementation::file_picker_closed(Vector<Web::HTML::SelectedFile> selected_files)
  324. {
  325. client().async_file_picker_closed(page_id(), move(selected_files));
  326. }
  327. void ViewImplementation::select_dropdown_closed(Optional<u32> const& selected_item_id)
  328. {
  329. client().async_select_dropdown_closed(page_id(), selected_item_id);
  330. }
  331. void ViewImplementation::toggle_media_play_state()
  332. {
  333. client().async_toggle_media_play_state(page_id());
  334. }
  335. void ViewImplementation::toggle_media_mute_state()
  336. {
  337. client().async_toggle_media_mute_state(page_id());
  338. }
  339. void ViewImplementation::toggle_media_loop_state()
  340. {
  341. client().async_toggle_media_loop_state(page_id());
  342. }
  343. void ViewImplementation::toggle_media_controls_state()
  344. {
  345. client().async_toggle_media_controls_state(page_id());
  346. }
  347. void ViewImplementation::toggle_page_mute_state()
  348. {
  349. m_mute_state = Web::HTML::invert_mute_state(m_mute_state);
  350. client().async_toggle_page_mute_state(page_id());
  351. }
  352. void ViewImplementation::did_change_audio_play_state(Badge<WebContentClient>, Web::HTML::AudioPlayState play_state)
  353. {
  354. bool state_changed = false;
  355. switch (play_state) {
  356. case Web::HTML::AudioPlayState::Paused:
  357. if (--m_number_of_elements_playing_audio == 0) {
  358. m_audio_play_state = play_state;
  359. state_changed = true;
  360. }
  361. break;
  362. case Web::HTML::AudioPlayState::Playing:
  363. if (m_number_of_elements_playing_audio++ == 0) {
  364. m_audio_play_state = play_state;
  365. state_changed = true;
  366. }
  367. break;
  368. }
  369. if (state_changed && on_audio_play_state_changed)
  370. on_audio_play_state_changed(m_audio_play_state);
  371. }
  372. void ViewImplementation::did_update_navigation_buttons_state(Badge<WebContentClient>, bool back_enabled, bool forward_enabled) const
  373. {
  374. if (on_navigation_buttons_state_changed)
  375. on_navigation_buttons_state_changed(back_enabled, forward_enabled);
  376. }
  377. 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)
  378. {
  379. if (m_client_state.has_usable_bitmap) {
  380. // NOTE: We keep the outgoing front bitmap as a backup so we have something to paint until we get a new one.
  381. m_backup_bitmap = m_client_state.front_bitmap.bitmap;
  382. m_backup_bitmap_size = m_client_state.front_bitmap.last_painted_size;
  383. }
  384. m_client_state.has_usable_bitmap = false;
  385. m_client_state.front_bitmap.bitmap = front_bitmap.bitmap();
  386. m_client_state.front_bitmap.id = front_bitmap_id;
  387. m_client_state.back_bitmap.bitmap = back_bitmap.bitmap();
  388. m_client_state.back_bitmap.id = back_bitmap_id;
  389. }
  390. #ifdef AK_OS_MACOS
  391. void ViewImplementation::did_allocate_iosurface_backing_stores(i32 front_id, Core::MachPort&& front_port, i32 back_id, Core::MachPort&& back_port)
  392. {
  393. if (m_client_state.has_usable_bitmap) {
  394. // NOTE: We keep the outgoing front bitmap as a backup so we have something to paint until we get a new one.
  395. m_backup_bitmap = m_client_state.front_bitmap.bitmap;
  396. m_backup_bitmap_size = m_client_state.front_bitmap.last_painted_size;
  397. }
  398. m_client_state.has_usable_bitmap = false;
  399. auto front_iosurface = Core::IOSurfaceHandle::from_mach_port(move(front_port));
  400. auto back_iosurface = Core::IOSurfaceHandle::from_mach_port(move(back_port));
  401. auto front_size = Gfx::IntSize { front_iosurface.width(), front_iosurface.height() };
  402. auto back_size = Gfx::IntSize { back_iosurface.width(), back_iosurface.height() };
  403. auto bytes_per_row = front_iosurface.bytes_per_row();
  404. 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)] { });
  405. 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)] { });
  406. m_client_state.front_bitmap.bitmap = front_bitmap.release_value_but_fixme_should_propagate_errors();
  407. m_client_state.front_bitmap.id = front_id;
  408. m_client_state.back_bitmap.bitmap = back_bitmap.release_value_but_fixme_should_propagate_errors();
  409. m_client_state.back_bitmap.id = back_id;
  410. }
  411. #endif
  412. void ViewImplementation::handle_resize()
  413. {
  414. client().async_set_viewport_size(page_id(), this->viewport_size());
  415. }
  416. void ViewImplementation::initialize_client(CreateNewClient create_new_client)
  417. {
  418. if (create_new_client == CreateNewClient::Yes) {
  419. m_client_state = {};
  420. // FIXME: Fail to open the tab, rather than crashing the whole application if these fail.
  421. auto request_server_socket = connect_new_request_server_client().release_value_but_fixme_should_propagate_errors();
  422. auto image_decoder_socket = connect_new_image_decoder_client().release_value_but_fixme_should_propagate_errors();
  423. m_client_state.client = launch_web_content_process(*this, AK::move(image_decoder_socket), AK::move(request_server_socket)).release_value_but_fixme_should_propagate_errors();
  424. } else {
  425. m_client_state.client->register_view(m_client_state.page_index, *this);
  426. }
  427. m_client_state.client->on_web_content_process_crash = [this] {
  428. Core::deferred_invoke([this] {
  429. handle_web_content_process_crash();
  430. if (on_web_content_crashed)
  431. on_web_content_crashed();
  432. });
  433. };
  434. m_client_state.client_handle = MUST(Web::Crypto::generate_random_uuid());
  435. client().async_set_window_handle(m_client_state.page_index, m_client_state.client_handle);
  436. client().async_set_device_pixels_per_css_pixel(m_client_state.page_index, m_device_pixel_ratio);
  437. client().async_set_system_visibility_state(m_client_state.page_index, m_system_visibility_state);
  438. if (auto webdriver_content_ipc_path = Application::chrome_options().webdriver_content_ipc_path; webdriver_content_ipc_path.has_value())
  439. client().async_connect_to_webdriver(m_client_state.page_index, *webdriver_content_ipc_path);
  440. if (Application::chrome_options().allow_popups == AllowPopups::Yes)
  441. client().async_debug_request(m_client_state.page_index, "block-pop-ups"sv, "off"sv);
  442. if (auto const& user_agent_preset = Application::web_content_options().user_agent_preset; user_agent_preset.has_value())
  443. client().async_debug_request(m_client_state.page_index, "spoof-user-agent"sv, *user_agents.get(*user_agent_preset));
  444. }
  445. void ViewImplementation::handle_web_content_process_crash(LoadErrorPage load_error_page)
  446. {
  447. dbgln("\033[31;1mWebContent process crashed!\033[0m Last page loaded: {}", m_url);
  448. dbgln("Consider raising an issue at https://github.com/LadybirdBrowser/ladybird/issues/new/choose");
  449. ++m_crash_count;
  450. constexpr size_t max_reasonable_crash_count = 5U;
  451. if (m_crash_count >= max_reasonable_crash_count) {
  452. dbgln("WebContent has crashed {} times in quick succession! Not restarting...", m_crash_count);
  453. m_repeated_crash_timer->stop();
  454. return;
  455. }
  456. m_repeated_crash_timer->restart();
  457. initialize_client();
  458. VERIFY(m_client_state.client);
  459. // Don't keep a stale backup bitmap around.
  460. m_backup_bitmap = nullptr;
  461. handle_resize();
  462. if (load_error_page == LoadErrorPage::Yes) {
  463. StringBuilder builder;
  464. builder.append("<html><head><title>Crashed: "sv);
  465. builder.append(escape_html_entities(m_url.to_byte_string()));
  466. builder.append("</title></head><body>"sv);
  467. builder.append("<h1>Web page crashed"sv);
  468. if (m_url.host().has_value()) {
  469. builder.appendff(" on {}", escape_html_entities(m_url.serialized_host()));
  470. }
  471. builder.append("</h1>"sv);
  472. auto escaped_url = escape_html_entities(m_url.to_byte_string());
  473. builder.appendff("The web page <a href=\"{}\">{}</a> has crashed.<br><br>You can reload the page to try again.", escaped_url, escaped_url);
  474. builder.append("</body></html>"sv);
  475. load_html(builder.to_byte_string());
  476. }
  477. }
  478. static ErrorOr<LexicalPath> save_screenshot(Gfx::ShareableBitmap const& bitmap)
  479. {
  480. if (!bitmap.is_valid())
  481. return Error::from_string_literal("Failed to take a screenshot");
  482. auto file = Core::DateTime::now().to_byte_string("screenshot-%Y-%m-%d-%H-%M-%S.png"sv);
  483. auto path = TRY(Application::the().path_for_downloaded_file(file));
  484. auto encoded = TRY(Gfx::PNGWriter::encode(*bitmap.bitmap()));
  485. auto dump_file = TRY(Core::File::open(path.string(), Core::File::OpenMode::Write));
  486. TRY(dump_file->write_until_depleted(encoded));
  487. return path;
  488. }
  489. NonnullRefPtr<Core::Promise<LexicalPath>> ViewImplementation::take_screenshot(ScreenshotType type)
  490. {
  491. auto promise = Core::Promise<LexicalPath>::construct();
  492. if (m_pending_screenshot) {
  493. // For simplicitly, only allow taking one screenshot at a time for now. Revisit if we need
  494. // to allow spamming screenshot requests for some reason.
  495. promise->reject(Error::from_string_literal("A screenshot request is already in progress"));
  496. return promise;
  497. }
  498. Gfx::ShareableBitmap bitmap;
  499. switch (type) {
  500. case ScreenshotType::Visible:
  501. if (auto* visible_bitmap = m_client_state.has_usable_bitmap ? m_client_state.front_bitmap.bitmap.ptr() : m_backup_bitmap.ptr()) {
  502. if (auto result = save_screenshot(visible_bitmap->to_shareable_bitmap()); result.is_error())
  503. promise->reject(result.release_error());
  504. else
  505. promise->resolve(result.release_value());
  506. }
  507. break;
  508. case ScreenshotType::Full:
  509. m_pending_screenshot = promise;
  510. client().async_take_document_screenshot(page_id());
  511. break;
  512. }
  513. return promise;
  514. }
  515. NonnullRefPtr<Core::Promise<LexicalPath>> ViewImplementation::take_dom_node_screenshot(Web::UniqueNodeID node_id)
  516. {
  517. auto promise = Core::Promise<LexicalPath>::construct();
  518. if (m_pending_screenshot) {
  519. // For simplicitly, only allow taking one screenshot at a time for now. Revisit if we need
  520. // to allow spamming screenshot requests for some reason.
  521. promise->reject(Error::from_string_literal("A screenshot request is already in progress"));
  522. return promise;
  523. }
  524. m_pending_screenshot = promise;
  525. client().async_take_dom_node_screenshot(page_id(), node_id);
  526. return promise;
  527. }
  528. void ViewImplementation::did_receive_screenshot(Badge<WebContentClient>, Gfx::ShareableBitmap const& screenshot)
  529. {
  530. VERIFY(m_pending_screenshot);
  531. if (auto result = save_screenshot(screenshot); result.is_error())
  532. m_pending_screenshot->reject(result.release_error());
  533. else
  534. m_pending_screenshot->resolve(result.release_value());
  535. m_pending_screenshot = nullptr;
  536. }
  537. NonnullRefPtr<Core::Promise<String>> ViewImplementation::request_internal_page_info(PageInfoType type)
  538. {
  539. auto promise = Core::Promise<String>::construct();
  540. if (m_pending_info_request) {
  541. // For simplicitly, only allow one info request at a time for now.
  542. promise->reject(Error::from_string_literal("A page info request is already in progress"));
  543. return promise;
  544. }
  545. m_pending_info_request = promise;
  546. client().async_request_internal_page_info(page_id(), type);
  547. return promise;
  548. }
  549. void ViewImplementation::did_receive_internal_page_info(Badge<WebContentClient>, PageInfoType, String const& info)
  550. {
  551. VERIFY(m_pending_info_request);
  552. m_pending_info_request->resolve(String { info });
  553. m_pending_info_request = nullptr;
  554. }
  555. ErrorOr<LexicalPath> ViewImplementation::dump_gc_graph()
  556. {
  557. auto promise = request_internal_page_info(PageInfoType::GCGraph);
  558. auto gc_graph_json = TRY(promise->await());
  559. LexicalPath path { Core::StandardPaths::tempfile_directory() };
  560. path = path.append(TRY(Core::DateTime::now().to_string("gc-graph-%Y-%m-%d-%H-%M-%S.json"sv)));
  561. auto dump_file = TRY(Core::File::open(path.string(), Core::File::OpenMode::Write));
  562. TRY(dump_file->write_until_depleted(gc_graph_json.bytes()));
  563. return path;
  564. }
  565. void ViewImplementation::set_user_style_sheet(String source)
  566. {
  567. client().async_set_user_style(page_id(), move(source));
  568. }
  569. void ViewImplementation::use_native_user_style_sheet()
  570. {
  571. extern String native_stylesheet_source;
  572. set_user_style_sheet(native_stylesheet_source);
  573. }
  574. void ViewImplementation::enable_inspector_prototype()
  575. {
  576. client().async_enable_inspector_prototype(page_id());
  577. }
  578. }