mirror of
https://github.com/RGBCube/serenity
synced 2025-05-16 10:24:59 +00:00

To improve the performance of the DOM Inspector when the Browser is run in multi-process mode, do not create copies of the JSON values sent via IPC when searching for a model index. Methods that are guaranteed to return a value now return a reference. Methods that do not have such a guarantee return a pointer (rather than an Optional, because Optional cannot hold references). The DOM Inspector performs well at first, but will start lagging again once the tree is expanded a few nodes deep and/or with many nodes visible in the tree.
56 lines
1.8 KiB
C++
56 lines
1.8 KiB
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
* Copyright (c) 2018-2020, Adam Hodgen <ant1441@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/JsonObject.h>
|
|
#include <LibGUI/Model.h>
|
|
#include <LibWeb/Forward.h>
|
|
|
|
namespace Web {
|
|
|
|
class DOMTreeJSONModel final : public GUI::Model {
|
|
public:
|
|
static NonnullRefPtr<DOMTreeJSONModel> create(StringView dom_tree)
|
|
{
|
|
auto json_or_error = JsonValue::from_string(dom_tree);
|
|
if (!json_or_error.has_value())
|
|
VERIFY_NOT_REACHED();
|
|
|
|
return adopt_ref(*new DOMTreeJSONModel(json_or_error.value().as_object()));
|
|
}
|
|
|
|
virtual ~DOMTreeJSONModel() override;
|
|
|
|
virtual int row_count(const GUI::ModelIndex& = GUI::ModelIndex()) const override;
|
|
virtual int column_count(const GUI::ModelIndex& = GUI::ModelIndex()) const override;
|
|
virtual GUI::Variant data(const GUI::ModelIndex&, GUI::ModelRole) const override;
|
|
virtual GUI::ModelIndex index(int row, int column, const GUI::ModelIndex& parent = GUI::ModelIndex()) const override;
|
|
virtual GUI::ModelIndex parent_index(const GUI::ModelIndex&) const override;
|
|
virtual void update() override;
|
|
|
|
private:
|
|
explicit DOMTreeJSONModel(JsonObject);
|
|
|
|
JsonObject const* find_parent_of_child_with_internal_id(size_t) const;
|
|
JsonObject const* find_parent_of_child_with_internal_id(JsonObject const&, size_t) const;
|
|
|
|
JsonObject const* find_child_with_internal_id(size_t) const;
|
|
JsonObject const* find_child_with_internal_id(JsonObject const&, size_t) const;
|
|
|
|
JsonObject const& find_node(GUI::ModelIndex const&) const;
|
|
|
|
static size_t get_internal_id(const JsonObject& o);
|
|
static JsonArray const* get_children(const JsonObject& o);
|
|
|
|
GUI::Icon m_document_icon;
|
|
GUI::Icon m_element_icon;
|
|
GUI::Icon m_text_icon;
|
|
JsonObject m_dom_tree;
|
|
};
|
|
|
|
}
|