File: topducontextdata.h

package info (click to toggle)
kdevelop 4%3A24.12.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 71,888 kB
  • sloc: cpp: 290,869; python: 3,626; javascript: 3,518; sh: 1,316; ansic: 703; xml: 401; php: 95; lisp: 66; makefile: 31; sed: 12
file content (77 lines) | stat: -rw-r--r-- 2,515 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/*
    SPDX-FileCopyrightText: 2008 David Nolden <david.nolden.kdevelop@art-master.de>

    SPDX-License-Identifier: LGPL-2.0-or-later
*/

#ifndef KDEVPLATFORM_TOPDUCONTEXTDATA_H
#define KDEVPLATFORM_TOPDUCONTEXTDATA_H

#include "ducontextdata.h"
#include "topducontext.h"
#include "declarationid.h"
#include "problem.h"

#include <serialization/indexedstring.h>

namespace KDevelop {
KDEVPLATFORMLANGUAGE_EXPORT DECLARE_LIST_MEMBER_HASH(TopDUContextData, m_usedDeclarationIds, DeclarationId)
KDEVPLATFORMLANGUAGE_EXPORT DECLARE_LIST_MEMBER_HASH(TopDUContextData, m_problems, LocalIndexedProblem)

class KDEVPLATFORMLANGUAGE_EXPORT TopDUContextData
    : public DUContextData
{
public:
    explicit TopDUContextData(const IndexedString& url)
        : DUContextData()
        , m_url(url)
        , m_ownIndex(0)
        , m_currentUsedDeclarationIndex(0)
    {
        initializeAppendedLists();
    }

    TopDUContextData(const TopDUContextData& rhs)
        : DUContextData(rhs)
    {
        initializeAppendedLists();
        copyListsFrom(rhs);
        m_features = rhs.m_features;
        m_url = rhs.m_url;
        m_currentUsedDeclarationIndex = rhs.m_currentUsedDeclarationIndex;
        m_ownIndex = rhs.m_ownIndex;
        m_importsCache = rhs.m_importsCache;
    }

    ~TopDUContextData()
    {
        freeAppendedLists();
    }

    TopDUContextData& operator=(const TopDUContextData& rhs) = delete;

    TopDUContext::Features m_features;

    IndexedString m_url;
    uint m_ownIndex;

    ///If this is not empty, it means that the cache is used instead of the implicit structure.
    TopDUContext::IndexedRecursiveImports m_importsCache;

    ///Is used to count up the used declarations while building uses
    uint m_currentUsedDeclarationIndex;

    START_APPENDED_LISTS_BASE(TopDUContextData, DUContextData);
    ///Maps a declarationIndex to a DeclarationId, which is used when the entry in m_usedDeclaration is zero.
    APPENDED_LIST_FIRST(TopDUContextData, DeclarationId, m_usedDeclarationIds);
    APPENDED_LIST(TopDUContextData, LocalIndexedProblem, m_problems, m_usedDeclarationIds);
    END_APPENDED_LISTS(TopDUContextData, m_problems);

private:
    static void updateImportCacheRecursion(IndexedTopDUContext currentContext, std::set<uint>& visited);
    static void updateImportCacheRecursion(uint baseIndex, IndexedTopDUContext currentContext,
                                           TopDUContext::IndexedRecursiveImports& imports);
    friend class TopDUContext;
};
}
#endif