ViewImplementation.cpp 18 KB

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