blob: 46047907c44e634ba49ff28f03e91d7ef7d2b1a2 (
plain)
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include <utils/elfreader.h>
#include <utils/treemodel.h>
QT_BEGIN_NAMESPACE
class QAbstractItemModel;
class QSortFilterProxyModel;
QT_END_NAMESPACE
namespace Debugger::Internal {
class DebuggerEngine;
class ModuleItem;
//////////////////////////////////////////////////////////////////
//
// Symbol
//
//////////////////////////////////////////////////////////////////
class Symbol
{
public:
QString address;
QString state;
QString name;
QString section;
QString demangled;
};
using Symbols = QList<Symbol>;
//////////////////////////////////////////////////////////////////
//
// Section
//
//////////////////////////////////////////////////////////////////
class Section
{
public:
QString from;
QString to;
QString address;
QString name;
QString flags;
};
using Sections = QList<Section>;
//////////////////////////////////////////////////////////////////
//
// Module
//
//////////////////////////////////////////////////////////////////
class Module
{
public:
Module() = default;
public:
enum SymbolReadState {
UnknownReadState, // Not tried.
ReadFailed, // Tried to read, but failed.
ReadOk // Dwarf index available.
};
QString moduleName;
Utils::FilePath modulePath;
Utils::FilePath hostPath;
SymbolReadState symbolsRead = UnknownReadState;
quint64 startAddress = 0;
quint64 endAddress = 0;
Utils::ElfData elfData;
};
using Modules = QList<Module>;
//////////////////////////////////////////////////////////////////
//
// ModulesHandler
//
//////////////////////////////////////////////////////////////////
class ModulesModel;
class ModulesHandler : public QObject
{
Q_OBJECT
public:
explicit ModulesHandler(DebuggerEngine *engine);
~ModulesHandler() override;
QAbstractItemModel *model() const;
void removeModule(const Utils::FilePath &modulePath);
void updateModule(const Module &module);
void beginUpdateAll();
void endUpdateAll();
void removeAll();
const Modules modules() const;
private:
ModuleItem *moduleFromPath(const Utils::FilePath &modulePath) const;
ModulesModel *m_model;
QSortFilterProxyModel *m_proxyModel;
};
} // Debugger::Internal
|