BrowsingContext.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315
  1. /*
  2. * Copyright (c) 2018-2022, Andreas Kling <kling@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <AK/Function.h>
  8. #include <AK/Noncopyable.h>
  9. #include <AK/RefPtr.h>
  10. #include <AK/WeakPtr.h>
  11. #include <LibGfx/Bitmap.h>
  12. #include <LibGfx/Rect.h>
  13. #include <LibGfx/Size.h>
  14. #include <LibJS/Forward.h>
  15. #include <LibJS/Heap/Cell.h>
  16. #include <LibWeb/DOM/Position.h>
  17. #include <LibWeb/HTML/BrowsingContextContainer.h>
  18. #include <LibWeb/HTML/HistoryHandlingBehavior.h>
  19. #include <LibWeb/HTML/Origin.h>
  20. #include <LibWeb/HTML/SessionHistoryEntry.h>
  21. #include <LibWeb/HTML/VisibilityState.h>
  22. #include <LibWeb/Loader/FrameLoader.h>
  23. #include <LibWeb/Page/EventHandler.h>
  24. #include <LibWeb/Platform/Timer.h>
  25. #include <LibWeb/TreeNode.h>
  26. namespace Web::HTML {
  27. class BrowsingContext final
  28. : public JS::Cell
  29. , public Weakable<BrowsingContext> {
  30. JS_CELL(BrowsingContext, JS::Cell);
  31. public:
  32. static JS::NonnullGCPtr<BrowsingContext> create_a_new_browsing_context(Page&, JS::GCPtr<DOM::Document> creator, JS::GCPtr<DOM::Element> embedder, BrowsingContextGroup&);
  33. static JS::NonnullGCPtr<BrowsingContext> create_a_new_top_level_browsing_context(Page&);
  34. ~BrowsingContext();
  35. JS::GCPtr<BrowsingContext> parent() const { return m_parent; }
  36. void append_child(JS::NonnullGCPtr<BrowsingContext>);
  37. void remove_child(JS::NonnullGCPtr<BrowsingContext>);
  38. JS::GCPtr<BrowsingContext> first_child() const;
  39. JS::GCPtr<BrowsingContext> next_sibling() const;
  40. bool is_ancestor_of(BrowsingContext const&) const;
  41. template<typename Callback>
  42. IterationDecision for_each_in_inclusive_subtree(Callback callback) const
  43. {
  44. if (callback(*this) == IterationDecision::Break)
  45. return IterationDecision::Break;
  46. for (auto child = first_child(); child; child = child->next_sibling()) {
  47. if (child->for_each_in_inclusive_subtree(callback) == IterationDecision::Break)
  48. return IterationDecision::Break;
  49. }
  50. return IterationDecision::Continue;
  51. }
  52. template<typename Callback>
  53. IterationDecision for_each_in_inclusive_subtree(Callback callback)
  54. {
  55. if (callback(*this) == IterationDecision::Break)
  56. return IterationDecision::Break;
  57. for (auto child = first_child(); child; child = child->next_sibling()) {
  58. if (child->for_each_in_inclusive_subtree(callback) == IterationDecision::Break)
  59. return IterationDecision::Break;
  60. }
  61. return IterationDecision::Continue;
  62. }
  63. template<typename Callback>
  64. void for_each_child(Callback callback) const
  65. {
  66. for (auto node = first_child(); node; node = node->next_sibling())
  67. callback(*node);
  68. }
  69. template<typename Callback>
  70. void for_each_child(Callback callback)
  71. {
  72. for (auto node = first_child(); node; node = node->next_sibling())
  73. callback(*node);
  74. }
  75. template<typename Callback>
  76. IterationDecision for_each_in_subtree(Callback callback) const
  77. {
  78. for (auto child = first_child(); child; child = child->next_sibling()) {
  79. if (child->for_each_in_inclusive_subtree(callback) == IterationDecision::Break)
  80. return IterationDecision::Break;
  81. }
  82. return IterationDecision::Continue;
  83. }
  84. template<typename Callback>
  85. IterationDecision for_each_in_subtree(Callback callback)
  86. {
  87. for (auto child = first_child(); child; child = child->next_sibling()) {
  88. if (child->for_each_in_inclusive_subtree(callback) == IterationDecision::Break)
  89. return IterationDecision::Break;
  90. }
  91. return IterationDecision::Continue;
  92. }
  93. class ViewportClient {
  94. public:
  95. virtual ~ViewportClient() = default;
  96. virtual void browsing_context_did_set_viewport_rect(Gfx::IntRect const&) = 0;
  97. };
  98. void register_viewport_client(ViewportClient&);
  99. void unregister_viewport_client(ViewportClient&);
  100. bool is_top_level() const;
  101. bool is_focused_context() const;
  102. DOM::Document const* active_document() const;
  103. DOM::Document* active_document();
  104. void set_active_document(JS::NonnullGCPtr<DOM::Document>);
  105. HTML::WindowProxy* window_proxy();
  106. HTML::WindowProxy const* window_proxy() const;
  107. HTML::Window* active_window();
  108. HTML::Window const* active_window() const;
  109. Page* page() { return m_page; }
  110. Page const* page() const { return m_page; }
  111. Gfx::IntSize const& size() const { return m_size; }
  112. void set_size(Gfx::IntSize const&);
  113. void set_needs_display();
  114. void set_needs_display(Gfx::IntRect const&);
  115. Gfx::IntPoint const& viewport_scroll_offset() const { return m_viewport_scroll_offset; }
  116. Gfx::IntRect viewport_rect() const { return { m_viewport_scroll_offset, m_size }; }
  117. void set_viewport_rect(Gfx::IntRect const&);
  118. FrameLoader& loader() { return m_loader; }
  119. FrameLoader const& loader() const { return m_loader; }
  120. Web::EventHandler& event_handler() { return m_event_handler; }
  121. Web::EventHandler const& event_handler() const { return m_event_handler; }
  122. void scroll_to(Gfx::IntPoint const&);
  123. void scroll_to_anchor(String const&);
  124. BrowsingContext& top_level_browsing_context()
  125. {
  126. BrowsingContext* context = this;
  127. while (context->parent())
  128. context = context->parent();
  129. return *context;
  130. }
  131. BrowsingContext const& top_level_browsing_context() const { return const_cast<BrowsingContext*>(this)->top_level_browsing_context(); }
  132. BrowsingContext* choose_a_browsing_context(StringView name, bool noopener);
  133. size_t document_tree_child_browsing_context_count() const;
  134. bool is_child_of(BrowsingContext const&) const;
  135. HTML::BrowsingContextContainer* container() { return m_container; }
  136. HTML::BrowsingContextContainer const* container() const { return m_container; }
  137. Gfx::IntPoint to_top_level_position(Gfx::IntPoint const&);
  138. Gfx::IntRect to_top_level_rect(Gfx::IntRect const&);
  139. DOM::Position const& cursor_position() const { return m_cursor_position; }
  140. void set_cursor_position(DOM::Position);
  141. bool increment_cursor_position_offset();
  142. bool decrement_cursor_position_offset();
  143. bool cursor_blink_state() const { return m_cursor_blink_state; }
  144. String selected_text() const;
  145. void select_all();
  146. void did_edit(Badge<EditEventHandler>);
  147. void register_frame_nesting(AK::URL const&);
  148. bool is_frame_nesting_allowed(AK::URL const&) const;
  149. void set_frame_nesting_levels(HashMap<AK::URL, size_t> frame_nesting_levels) { m_frame_nesting_levels = move(frame_nesting_levels); };
  150. HashMap<AK::URL, size_t> const& frame_nesting_levels() const { return m_frame_nesting_levels; }
  151. DOM::Document* container_document();
  152. DOM::Document const* container_document() const;
  153. bool has_a_rendering_opportunity() const;
  154. JS::GCPtr<DOM::Node> currently_focused_area();
  155. String const& name() const { return m_name; }
  156. void set_name(String const& name) { m_name = name; }
  157. Vector<SessionHistoryEntry>& session_history() { return m_session_history; }
  158. Vector<SessionHistoryEntry> const& session_history() const { return m_session_history; }
  159. size_t session_history_index() const { return *m_session_history_index; }
  160. // https://html.spec.whatwg.org/multipage/dom.html#still-on-its-initial-about:blank-document
  161. bool still_on_its_initial_about_blank_document() const;
  162. BrowsingContextGroup* group();
  163. void set_group(BrowsingContextGroup*);
  164. // https://html.spec.whatwg.org/multipage/browsers.html#bcg-remove
  165. void remove();
  166. // https://html.spec.whatwg.org/multipage/browsers.html#allowed-to-navigate
  167. bool is_allowed_to_navigate(BrowsingContext const&) const;
  168. // https://html.spec.whatwg.org/multipage/browsing-the-web.html#navigate
  169. WebIDL::ExceptionOr<void> navigate(
  170. JS::NonnullGCPtr<Fetch::Infrastructure::Request> resource,
  171. BrowsingContext& source_browsing_context,
  172. bool exceptions_enabled = false,
  173. HistoryHandlingBehavior history_handling = HistoryHandlingBehavior::Default,
  174. Optional<PolicyContainer> history_policy_container = {},
  175. String navigation_type = "other",
  176. Optional<String> navigation_id = {},
  177. Function<void(JS::NonnullGCPtr<Fetch::Infrastructure::Response>)> process_response_end_of_body = {});
  178. // https://html.spec.whatwg.org/multipage/browsing-the-web.html#navigate-fragid
  179. WebIDL::ExceptionOr<void> navigate_to_a_fragment(AK::URL const&, HistoryHandlingBehavior, String navigation_id);
  180. // https://html.spec.whatwg.org/multipage/origin.html#one-permitted-sandboxed-navigator
  181. BrowsingContext const* the_one_permitted_sandboxed_navigator() const;
  182. // https://html.spec.whatwg.org/multipage/browsing-the-web.html#traverse-the-history
  183. WebIDL::ExceptionOr<void> traverse_the_history(size_t entry_index, HistoryHandlingBehavior = HistoryHandlingBehavior::Default, bool explicit_history_navigation = false);
  184. Vector<JS::Handle<DOM::Document>> document_family() const;
  185. bool document_family_contains(DOM::Document const&) const;
  186. VisibilityState system_visibility_state() const;
  187. void set_system_visibility_state(VisibilityState);
  188. // https://html.spec.whatwg.org/multipage/window-object.html#a-browsing-context-is-discarded
  189. void discard();
  190. bool has_been_discarded() const { return m_has_been_discarded; }
  191. // https://html.spec.whatwg.org/multipage/window-object.html#close-a-browsing-context
  192. void close();
  193. private:
  194. explicit BrowsingContext(Page&, HTML::BrowsingContextContainer*);
  195. virtual void visit_edges(Cell::Visitor&) override;
  196. void reset_cursor_blink_cycle();
  197. void scroll_offset_did_change();
  198. WeakPtr<Page> m_page;
  199. FrameLoader m_loader;
  200. Web::EventHandler m_event_handler;
  201. // https://html.spec.whatwg.org/multipage/history.html#current-entry
  202. SessionHistoryEntry& current_entry() { return m_session_history[*m_session_history_index]; }
  203. SessionHistoryEntry const& current_entry() const { return m_session_history[*m_session_history_index]; }
  204. Optional<size_t> m_session_history_index { 0 };
  205. // https://html.spec.whatwg.org/multipage/history.html#session-history
  206. Vector<SessionHistoryEntry> m_session_history;
  207. // https://html.spec.whatwg.org/multipage/browsers.html#creator-url
  208. Optional<AK::URL> m_creator_url;
  209. // https://html.spec.whatwg.org/multipage/browsers.html#creator-base-url
  210. Optional<AK::URL> m_creator_base_url;
  211. // https://html.spec.whatwg.org/multipage/browsers.html#creator-origin
  212. Optional<HTML::Origin> m_creator_origin;
  213. JS::GCPtr<HTML::BrowsingContextContainer> m_container;
  214. Gfx::IntSize m_size;
  215. Gfx::IntPoint m_viewport_scroll_offset;
  216. // https://html.spec.whatwg.org/multipage/browsers.html#browsing-context
  217. JS::GCPtr<HTML::WindowProxy> m_window_proxy;
  218. DOM::Position m_cursor_position;
  219. RefPtr<Platform::Timer> m_cursor_blink_timer;
  220. bool m_cursor_blink_state { false };
  221. HashTable<ViewportClient*> m_viewport_clients;
  222. HashMap<AK::URL, size_t> m_frame_nesting_levels;
  223. String m_name;
  224. // https://html.spec.whatwg.org/multipage/browsers.html#tlbc-group
  225. JS::GCPtr<BrowsingContextGroup> m_group;
  226. // https://html.spec.whatwg.org/multipage/interaction.html#system-visibility-state
  227. VisibilityState m_system_visibility_state { VisibilityState::Hidden };
  228. JS::GCPtr<BrowsingContext> m_parent;
  229. JS::GCPtr<BrowsingContext> m_first_child;
  230. JS::GCPtr<BrowsingContext> m_last_child;
  231. JS::GCPtr<BrowsingContext> m_next_sibling;
  232. JS::GCPtr<BrowsingContext> m_previous_sibling;
  233. bool m_has_been_discarded { false };
  234. };
  235. HTML::Origin determine_the_origin(BrowsingContext const& browsing_context, Optional<AK::URL> url, SandboxingFlagSet sandbox_flags, Optional<HTML::Origin> invocation_origin);
  236. }