aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/debuggeritemmanager.h
blob: 36ddf9e846315deaccee4f7d9ae78108e70f3570 (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
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

#pragma once

#include "debugger_global.h"
#include "debuggerconstants.h"

#include <utils/filepath.h>

#include <QList>

namespace Debugger {

class DebuggerItem;

class DEBUGGER_EXPORT DebuggerItemManager
{
    Q_DISABLE_COPY_MOVE(DebuggerItemManager)

public:
    DebuggerItemManager();
    ~DebuggerItemManager();

    static const QList<DebuggerItem> debuggers();

    static QVariant registerDebugger(const DebuggerItem &item);
    static void deregisterDebugger(const QVariant &id);

    static void autoDetectDebuggersForDevice(const Utils::FilePaths &searchPaths,
                                             const QString &detectionSource,
                                             QString *logMessage);
    static void removeDetectedDebuggers(const QString &detectionSource, QString *logMessage);
    static void listDetectedDebuggers(const QString &detectionSource, QString *logMessage);

    static const DebuggerItem *findByCommand(const Utils::FilePath &command);
    static const DebuggerItem *findById(const QVariant &id);
    static const DebuggerItem *findByEngineType(DebuggerEngineType engineType);
};

} // namespace Debugger