mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-05 15:49:15 +00:00
Some checks are pending
CI / Linux, x86_64, Sanitizer, Clang (push) Waiting to run
CI / macOS, arm64, Sanitizer, Clang (push) Waiting to run
CI / Linux, x86_64, Fuzzers, Clang (push) Waiting to run
CI / Linux, x86_64, Sanitizer, GNU (push) Waiting to run
Package the js repl as a binary artifact / Linux, arm64 (push) Waiting to run
Package the js repl as a binary artifact / macOS, arm64 (push) Waiting to run
Package the js repl as a binary artifact / Linux, x86_64 (push) Waiting to run
Run test262 and test-wasm / run_and_update_results (push) Waiting to run
Lint Code / lint (push) Waiting to run
Label PRs with merge conflicts / auto-labeler (push) Waiting to run
Push notes / build (push) Waiting to run
As `node->parent()` was being called before comparing `node` with `stay_within`, the code was incorrectly allowing traversal to the parent node even when it should not have. This change ensures that the parent is only checked after confirming that the current node is not the `stay_within` node. All `dom/traversal/NodeIterator.html` WPT tests get fixed after this change.
622 lines
18 KiB
C++
622 lines
18 KiB
C++
/*
|
|
* Copyright (c) 2018-2022, Andreas Kling <andreas@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Assertions.h>
|
|
#include <AK/TypeCasts.h>
|
|
#include <LibGC/Ptr.h>
|
|
#include <LibJS/Heap/Cell.h>
|
|
#include <LibWeb/Forward.h>
|
|
#include <LibWeb/TraversalDecision.h>
|
|
|
|
namespace Web {
|
|
|
|
template<typename T, typename Callback>
|
|
TraversalDecision traverse_preorder(T root, Callback callback)
|
|
{
|
|
T current = root;
|
|
while (current != nullptr) {
|
|
TraversalDecision decision = callback(*current);
|
|
if (decision == TraversalDecision::Break)
|
|
return TraversalDecision::Break;
|
|
|
|
if (decision != TraversalDecision::SkipChildrenAndContinue && current->first_child() != nullptr) {
|
|
current = current->first_child();
|
|
continue;
|
|
}
|
|
if (current == root)
|
|
break;
|
|
|
|
if (current->next_sibling() != nullptr) {
|
|
current = current->next_sibling();
|
|
continue;
|
|
}
|
|
|
|
while (current != root && current->next_sibling() == nullptr)
|
|
current = current->parent();
|
|
if (current == root)
|
|
break;
|
|
|
|
current = current->next_sibling();
|
|
}
|
|
return TraversalDecision::Continue;
|
|
}
|
|
|
|
template<typename T>
|
|
class TreeNode {
|
|
public:
|
|
T* parent() { return m_parent; }
|
|
T const* parent() const { return m_parent; }
|
|
|
|
bool has_children() const { return m_first_child; }
|
|
T* next_sibling() { return m_next_sibling; }
|
|
T* previous_sibling() { return m_previous_sibling; }
|
|
T* first_child() { return m_first_child; }
|
|
T* last_child() { return m_last_child; }
|
|
T const* next_sibling() const { return m_next_sibling; }
|
|
T const* previous_sibling() const { return m_previous_sibling; }
|
|
T const* first_child() const { return m_first_child; }
|
|
T const* last_child() const { return m_last_child; }
|
|
|
|
// https://dom.spec.whatwg.org/#concept-tree-index
|
|
size_t index() const
|
|
{
|
|
// The index of an object is its number of preceding siblings, or 0 if it has none.
|
|
size_t index = 0;
|
|
for (auto* node = previous_sibling(); node; node = node->previous_sibling())
|
|
++index;
|
|
return index;
|
|
}
|
|
|
|
// // https://dom.spec.whatwg.org/#concept-tree-root
|
|
T& root()
|
|
{
|
|
// The root of an object is itself, if its parent is null, or else it is the root of its parent.
|
|
// The root of a tree is any object participating in that tree whose parent is null.
|
|
T* root = static_cast<T*>(this);
|
|
while (root->parent())
|
|
root = root->parent();
|
|
return *root;
|
|
}
|
|
T const& root() const { return const_cast<TreeNode*>(this)->root(); }
|
|
|
|
bool is_ancestor_of(TreeNode const&) const;
|
|
bool is_inclusive_ancestor_of(TreeNode const&) const;
|
|
bool contains(GC::Ptr<T>) const;
|
|
bool is_descendant_of(TreeNode const&) const;
|
|
bool is_inclusive_descendant_of(TreeNode const&) const;
|
|
|
|
bool is_following(TreeNode const&) const;
|
|
bool is_before(TreeNode const&) const;
|
|
|
|
// https://dom.spec.whatwg.org/#concept-tree-preceding (Object A is 'typename U' and Object B is 'this')
|
|
template<typename U>
|
|
bool has_preceding_node_of_type_in_tree_order() const
|
|
{
|
|
for (auto* node = previous_in_pre_order(); node; node = node->previous_in_pre_order()) {
|
|
if (is<U>(node))
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
// https://dom.spec.whatwg.org/#concept-tree-following (Object A is 'typename U' and Object B is 'this')
|
|
template<typename U>
|
|
bool has_following_node_of_type_in_tree_order() const
|
|
{
|
|
for (auto* node = next_in_pre_order(); node; node = node->next_in_pre_order()) {
|
|
if (is<U>(node))
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
bool is_parent_of(TreeNode const& other) const
|
|
{
|
|
for (auto* child = first_child(); child; child = child->next_sibling()) {
|
|
if (&other == child)
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
void append_child(GC::Ref<T> node);
|
|
void prepend_child(GC::Ref<T> node);
|
|
void insert_before(GC::Ref<T> node, GC::Ptr<T> child);
|
|
void remove_child(GC::Ref<T> node);
|
|
|
|
void replace_child(GC::Ref<T> new_child, GC::Ref<T> old_child);
|
|
void remove()
|
|
{
|
|
VERIFY(m_parent);
|
|
m_parent->remove_child(*static_cast<T*>(this));
|
|
}
|
|
|
|
size_t child_count() const
|
|
{
|
|
size_t count = 0;
|
|
for (auto* child = first_child(); child; child = child->next_sibling())
|
|
++count;
|
|
return count;
|
|
}
|
|
|
|
T* child_at_index(int index)
|
|
{
|
|
int count = 0;
|
|
for (auto* child = first_child(); child; child = child->next_sibling()) {
|
|
if (count == index)
|
|
return child;
|
|
++count;
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
T const* child_at_index(int index) const
|
|
{
|
|
return const_cast<TreeNode*>(this)->child_at_index(index);
|
|
}
|
|
|
|
T* next_in_pre_order()
|
|
{
|
|
if (first_child())
|
|
return first_child();
|
|
T* node;
|
|
if (!(node = next_sibling())) {
|
|
node = parent();
|
|
while (node && !node->next_sibling())
|
|
node = node->parent();
|
|
if (node)
|
|
node = node->next_sibling();
|
|
}
|
|
return node;
|
|
}
|
|
|
|
T* next_in_pre_order(T const* stay_within)
|
|
{
|
|
if (first_child())
|
|
return first_child();
|
|
|
|
T* node = static_cast<T*>(this);
|
|
while (node) {
|
|
if (node == stay_within)
|
|
return nullptr;
|
|
if (T* next = node->next_sibling())
|
|
return next;
|
|
node = node->parent();
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
T const* next_in_pre_order() const
|
|
{
|
|
return const_cast<TreeNode*>(this)->next_in_pre_order();
|
|
}
|
|
|
|
T const* next_in_pre_order(T const* stay_within) const
|
|
{
|
|
return const_cast<TreeNode*>(this)->next_in_pre_order(stay_within);
|
|
}
|
|
|
|
T* previous_in_pre_order()
|
|
{
|
|
if (auto* node = previous_sibling()) {
|
|
while (node->last_child())
|
|
node = node->last_child();
|
|
|
|
return node;
|
|
}
|
|
|
|
return parent();
|
|
}
|
|
|
|
T const* previous_in_pre_order() const
|
|
{
|
|
return const_cast<TreeNode*>(this)->previous_in_pre_order();
|
|
}
|
|
|
|
template<typename Callback>
|
|
TraversalDecision for_each_in_inclusive_subtree(Callback callback) const
|
|
{
|
|
return traverse_preorder(static_cast<T const*>(this), callback);
|
|
}
|
|
|
|
template<typename Callback>
|
|
TraversalDecision for_each_in_inclusive_subtree(Callback callback)
|
|
{
|
|
return traverse_preorder(static_cast<T*>(this), callback);
|
|
}
|
|
|
|
template<typename U, typename Callback>
|
|
TraversalDecision for_each_in_inclusive_subtree_of_type(Callback callback)
|
|
{
|
|
return for_each_in_inclusive_subtree([callback = move(callback)](T& node) {
|
|
if (auto* maybe_node_of_type = as_if<U>(node))
|
|
return callback(*maybe_node_of_type);
|
|
return TraversalDecision::Continue;
|
|
});
|
|
}
|
|
|
|
template<typename U, typename Callback>
|
|
TraversalDecision for_each_in_inclusive_subtree_of_type(Callback callback) const
|
|
{
|
|
return for_each_in_inclusive_subtree([callback = move(callback)](T const& node) {
|
|
if (auto* maybe_node_of_type = as_if<U>(node))
|
|
return callback(*maybe_node_of_type);
|
|
return TraversalDecision::Continue;
|
|
});
|
|
}
|
|
|
|
template<typename Callback>
|
|
TraversalDecision for_each_in_subtree(Callback callback) const
|
|
{
|
|
for (auto* child = first_child(); child; child = child->next_sibling()) {
|
|
if (child->for_each_in_inclusive_subtree(callback) == TraversalDecision::Break)
|
|
return TraversalDecision::Break;
|
|
}
|
|
return TraversalDecision::Continue;
|
|
}
|
|
|
|
template<typename Callback>
|
|
TraversalDecision for_each_in_subtree(Callback callback)
|
|
{
|
|
for (auto* child = first_child(); child; child = child->next_sibling()) {
|
|
if (child->for_each_in_inclusive_subtree(callback) == TraversalDecision::Break)
|
|
return TraversalDecision::Break;
|
|
}
|
|
return TraversalDecision::Continue;
|
|
}
|
|
|
|
template<typename U, typename Callback>
|
|
TraversalDecision for_each_in_subtree_of_type(Callback callback)
|
|
{
|
|
for (auto* child = first_child(); child; child = child->next_sibling()) {
|
|
if (child->template for_each_in_inclusive_subtree_of_type<U>(callback) == TraversalDecision::Break)
|
|
return TraversalDecision::Break;
|
|
}
|
|
return TraversalDecision::Continue;
|
|
}
|
|
|
|
template<typename U, typename Callback>
|
|
TraversalDecision for_each_in_subtree_of_type(Callback callback) const
|
|
{
|
|
for (auto* child = first_child(); child; child = child->next_sibling()) {
|
|
if (child->template for_each_in_inclusive_subtree_of_type<U>(callback) == TraversalDecision::Break)
|
|
return TraversalDecision::Break;
|
|
}
|
|
return TraversalDecision::Continue;
|
|
}
|
|
|
|
template<typename Callback>
|
|
void for_each_child(Callback callback) const
|
|
{
|
|
return const_cast<TreeNode*>(this)->for_each_child(move(callback));
|
|
}
|
|
|
|
template<typename Callback>
|
|
void for_each_child(Callback callback)
|
|
{
|
|
for (auto* node = first_child(); node; node = node->next_sibling()) {
|
|
if (callback(*node) == IterationDecision::Break)
|
|
return;
|
|
}
|
|
}
|
|
|
|
template<typename U, typename Callback>
|
|
void for_each_child_of_type(Callback callback)
|
|
{
|
|
for (auto* node = first_child(); node; node = node->next_sibling()) {
|
|
if (auto* node_of_type = as_if<U>(node)) {
|
|
if (callback(*node_of_type) == IterationDecision::Break)
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
|
|
template<typename U, typename Callback>
|
|
void for_each_child_of_type(Callback callback) const
|
|
{
|
|
return const_cast<TreeNode*>(this)->template for_each_child_of_type<U>(move(callback));
|
|
}
|
|
|
|
template<typename U>
|
|
U const* next_sibling_of_type() const
|
|
{
|
|
return const_cast<TreeNode*>(this)->template next_sibling_of_type<U>();
|
|
}
|
|
|
|
template<typename U>
|
|
inline U* next_sibling_of_type()
|
|
{
|
|
for (auto* sibling = next_sibling(); sibling; sibling = sibling->next_sibling()) {
|
|
if (auto* sibling_of_type = as_if<U>(*sibling))
|
|
return sibling_of_type;
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
template<typename U>
|
|
U const* previous_sibling_of_type() const
|
|
{
|
|
return const_cast<TreeNode*>(this)->template previous_sibling_of_type<U>();
|
|
}
|
|
|
|
template<typename U>
|
|
U* previous_sibling_of_type()
|
|
{
|
|
for (auto* sibling = previous_sibling(); sibling; sibling = sibling->previous_sibling()) {
|
|
if (auto* sibling_of_type = as_if<U>(*sibling))
|
|
return sibling_of_type;
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
template<typename U>
|
|
bool has_child_of_type() const
|
|
{
|
|
return first_child_of_type<U>() != nullptr;
|
|
}
|
|
|
|
template<typename U>
|
|
U const* first_child_of_type() const
|
|
{
|
|
return const_cast<TreeNode*>(this)->template first_child_of_type<U>();
|
|
}
|
|
|
|
template<typename U>
|
|
U const* last_child_of_type() const
|
|
{
|
|
return const_cast<TreeNode*>(this)->template last_child_of_type<U>();
|
|
}
|
|
|
|
template<typename U>
|
|
U* first_child_of_type()
|
|
{
|
|
for (auto* child = first_child(); child; child = child->next_sibling()) {
|
|
if (auto* child_of_type = as_if<U>(*child))
|
|
return child_of_type;
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
template<typename U>
|
|
U* last_child_of_type()
|
|
{
|
|
for (auto* child = last_child(); child; child = child->previous_sibling()) {
|
|
if (auto* child_of_type = as_if<U>(*child))
|
|
return child_of_type;
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
template<typename U>
|
|
U const* first_ancestor_of_type() const
|
|
{
|
|
return const_cast<TreeNode*>(this)->template first_ancestor_of_type<U>();
|
|
}
|
|
|
|
template<typename U>
|
|
U* first_ancestor_of_type()
|
|
{
|
|
for (auto* ancestor = parent(); ancestor; ancestor = ancestor->parent()) {
|
|
if (auto* ancestor_of_type = as_if<U>(*ancestor))
|
|
return ancestor_of_type;
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
template<typename Callback>
|
|
void for_each_ancestor(Callback callback) const
|
|
{
|
|
return const_cast<TreeNode*>(this)->for_each_ancestor(move(callback));
|
|
}
|
|
|
|
template<typename Callback>
|
|
void for_each_ancestor(Callback callback)
|
|
{
|
|
for (auto* ancestor = parent(); ancestor; ancestor = ancestor->parent()) {
|
|
if (callback(static_cast<T&>(*ancestor)) == IterationDecision::Break)
|
|
break;
|
|
}
|
|
}
|
|
|
|
template<typename Callback>
|
|
void for_each_inclusive_ancestor(Callback callback) const
|
|
{
|
|
return const_cast<TreeNode*>(this)->for_each_inclusive_ancestor(move(callback));
|
|
}
|
|
|
|
template<typename Callback>
|
|
void for_each_inclusive_ancestor(Callback callback)
|
|
{
|
|
for (auto* ancestor = this; ancestor; ancestor = ancestor->parent()) {
|
|
if (callback(static_cast<T&>(*ancestor)) == IterationDecision::Break)
|
|
break;
|
|
}
|
|
}
|
|
|
|
~TreeNode() = default;
|
|
|
|
protected:
|
|
TreeNode() = default;
|
|
|
|
void visit_edges(JS::Cell::Visitor& visitor)
|
|
{
|
|
visitor.visit(m_parent);
|
|
visitor.visit(m_first_child);
|
|
visitor.visit(m_last_child);
|
|
visitor.visit(m_next_sibling);
|
|
visitor.visit(m_previous_sibling);
|
|
}
|
|
|
|
private:
|
|
T* m_parent { nullptr };
|
|
T* m_first_child { nullptr };
|
|
T* m_last_child { nullptr };
|
|
T* m_next_sibling { nullptr };
|
|
T* m_previous_sibling { nullptr };
|
|
};
|
|
|
|
template<typename T>
|
|
inline void TreeNode<T>::remove_child(GC::Ref<T> node)
|
|
{
|
|
VERIFY(node->m_parent == this);
|
|
|
|
if (m_first_child == node)
|
|
m_first_child = node->m_next_sibling;
|
|
|
|
if (m_last_child == node)
|
|
m_last_child = node->m_previous_sibling;
|
|
|
|
if (node->m_next_sibling)
|
|
node->m_next_sibling->m_previous_sibling = node->m_previous_sibling;
|
|
|
|
if (node->m_previous_sibling)
|
|
node->m_previous_sibling->m_next_sibling = node->m_next_sibling;
|
|
|
|
node->m_next_sibling = nullptr;
|
|
node->m_previous_sibling = nullptr;
|
|
node->m_parent = nullptr;
|
|
}
|
|
|
|
template<typename T>
|
|
inline void TreeNode<T>::append_child(GC::Ref<T> node)
|
|
{
|
|
VERIFY(!node->m_parent);
|
|
|
|
if (m_last_child)
|
|
m_last_child->m_next_sibling = node.ptr();
|
|
node->m_previous_sibling = m_last_child;
|
|
node->m_parent = static_cast<T*>(this);
|
|
m_last_child = node.ptr();
|
|
if (!m_first_child)
|
|
m_first_child = m_last_child;
|
|
}
|
|
|
|
template<typename T>
|
|
inline void TreeNode<T>::replace_child(GC::Ref<T> new_child, GC::Ref<T> old_child)
|
|
{
|
|
VERIFY(old_child != new_child);
|
|
VERIFY(old_child->m_parent == this);
|
|
VERIFY(new_child->m_parent == nullptr);
|
|
if (m_first_child == old_child)
|
|
m_first_child = new_child;
|
|
if (m_last_child == old_child)
|
|
m_last_child = new_child;
|
|
new_child->m_next_sibling = old_child->m_next_sibling;
|
|
if (new_child->m_next_sibling)
|
|
new_child->m_next_sibling->m_previous_sibling = new_child;
|
|
new_child->m_previous_sibling = old_child->m_previous_sibling;
|
|
if (new_child->m_previous_sibling)
|
|
new_child->m_previous_sibling->m_next_sibling = new_child;
|
|
new_child->m_parent = old_child->m_parent;
|
|
old_child->m_next_sibling = nullptr;
|
|
old_child->m_previous_sibling = nullptr;
|
|
old_child->m_parent = nullptr;
|
|
}
|
|
|
|
template<typename T>
|
|
inline void TreeNode<T>::insert_before(GC::Ref<T> node, GC::Ptr<T> child)
|
|
{
|
|
if (!child)
|
|
return append_child(move(node));
|
|
|
|
VERIFY(!node->m_parent);
|
|
VERIFY(child->parent() == this);
|
|
|
|
node->m_previous_sibling = child->m_previous_sibling;
|
|
node->m_next_sibling = child;
|
|
|
|
if (child->m_previous_sibling)
|
|
child->m_previous_sibling->m_next_sibling = node;
|
|
|
|
if (m_first_child == child)
|
|
m_first_child = node;
|
|
|
|
child->m_previous_sibling = node;
|
|
|
|
node->m_parent = static_cast<T*>(this);
|
|
}
|
|
|
|
template<typename T>
|
|
inline void TreeNode<T>::prepend_child(GC::Ref<T> node)
|
|
{
|
|
VERIFY(!node->m_parent);
|
|
|
|
if (m_first_child)
|
|
m_first_child->m_previous_sibling = node.ptr();
|
|
node->m_next_sibling = m_first_child;
|
|
node->m_parent = static_cast<T*>(this);
|
|
m_first_child = node.ptr();
|
|
if (!m_last_child)
|
|
m_last_child = m_first_child;
|
|
node->inserted_into(static_cast<T&>(*this));
|
|
|
|
static_cast<T*>(this)->children_changed();
|
|
}
|
|
|
|
template<typename T>
|
|
inline bool TreeNode<T>::is_ancestor_of(TreeNode<T> const& other) const
|
|
{
|
|
for (auto* ancestor = other.parent(); ancestor; ancestor = ancestor->parent()) {
|
|
if (ancestor == this)
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
template<typename T>
|
|
inline bool TreeNode<T>::is_inclusive_ancestor_of(TreeNode<T> const& other) const
|
|
{
|
|
return &other == this || is_ancestor_of(other);
|
|
}
|
|
|
|
// https://dom.spec.whatwg.org/#dom-node-contains
|
|
template<typename T>
|
|
inline bool TreeNode<T>::contains(GC::Ptr<T> other) const
|
|
{
|
|
// The contains(other) method steps are to return true if other is an inclusive descendant of this; otherwise false (including when other is null).
|
|
return other && other->is_inclusive_descendant_of(*this);
|
|
}
|
|
|
|
template<typename T>
|
|
inline bool TreeNode<T>::is_descendant_of(TreeNode<T> const& other) const
|
|
{
|
|
return other.is_ancestor_of(*this);
|
|
}
|
|
|
|
template<typename T>
|
|
inline bool TreeNode<T>::is_inclusive_descendant_of(TreeNode<T> const& other) const
|
|
{
|
|
return other.is_inclusive_ancestor_of(*this);
|
|
}
|
|
|
|
// https://dom.spec.whatwg.org/#concept-tree-following
|
|
template<typename T>
|
|
inline bool TreeNode<T>::is_following(TreeNode const& other) const
|
|
{
|
|
// An object A is following an object B if A and B are in the same tree and A comes after B in tree order.
|
|
for (auto* node = previous_in_pre_order(); node; node = node->previous_in_pre_order()) {
|
|
if (node == &other)
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
template<typename T>
|
|
inline bool TreeNode<T>::is_before(TreeNode const& other) const
|
|
{
|
|
if (this == &other)
|
|
return false;
|
|
for (auto* node = this; node; node = node->next_in_pre_order()) {
|
|
if (node == &other)
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
}
|