// Copyright (C) 2021 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only #ifndef QMLDOMFILELOCATIONS_P_H #define QMLDOMFILELOCATIONS_P_H // // W A R N I N G // ------------- // // This file is not part of the Qt API. It exists purely as an // implementation detail. This header file may change from version to // version without notice, or even be removed. // // We mean it. // #include "qqmldom_global.h" #include "qqmldomitem_p.h" #include QT_BEGIN_NAMESPACE namespace QQmlJS { namespace Dom { namespace FileLocations { struct Info { constexpr static DomType kindValue = DomType::FileLocationsInfo; // mainly used for debugging, for example dumping qmlFile bool iterateDirectSubpaths(const DomItem &self, DirectVisitor) const; SourceLocation fullRegion; QMap regions; }; using Tree = std::shared_ptr; Tree createTree(const Path &basePath); Tree ensure(const Tree &base, const Path &basePath); Tree find(const Tree &self, const Path &p); bool visitTree(const Tree &base, function_ref visitor, const Path &basePath = Path()); // TODO move to some testing utils QString canonicalPathForTesting(const Tree &base); // returns the path looked up and the found tree when looking for the info attached to item Tree treeOf(const DomItem &); // beware of shrinking and reassigning regions (QTBUG-131288) void addRegion(const Tree &fLoc, FileLocationRegion region, SourceLocation loc); QQmlJS::SourceLocation region(const Tree &fLoc, FileLocationRegion region); class QMLDOM_EXPORT Node : public OwningItem, public std::enable_shared_from_this { public: constexpr static DomType kindValue = DomType::FileLocationsNode; using Ptr = std::shared_ptr; DomType kind() const override { return kindValue; } Path canonicalPath(const DomItem &self) const override { return self.m_ownerPath; } // mainly used for debugging, for example dumping qmlFile bool iterateDirectSubpaths(const DomItem &self, DirectVisitor visitor) const override; Node::Ptr makeCopy(const DomItem &self) const { return std::static_pointer_cast(doCopy(self)); } static Ptr instantiate(const Ptr &parent = nullptr, const Path &p = Path()); Path path() const { return m_path; } Ptr parent() const { return m_parent.lock(); } QMap subItems() const { return m_subItems; } FileLocations::Info &info() { return m_info; } void setPath(const Path &p) { m_path = p; } Ptr insertOrReturnChildAt(const Path &path); private: // Because of the current implementation (weak_ptr to the parent, extensive use of shared_ptr-s) // it's safer to prohibit construction on the stack or non-shared heap. // Otherwise there is a high chance of misuse leading to double free Node(const Ptr &parent = nullptr, const Path &p = Path()) : m_path(p), m_parent(parent) { } Node(const Node &o) = default; std::shared_ptr doCopy(const DomItem &) const override; private: Path m_path; std::weak_ptr m_parent; QMap m_subItems; FileLocations::Info m_info; }; } // namespace FileLocations } // end namespace Dom } // end namespace QQmlJS QT_END_NAMESPACE #endif // QMLDOMFILELOCATIONS_P_H