blob: 236a941e242ad3029f6ca668fd9737b5092b58cf (
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
|
// Copyright (C) 2016 Tim Sander <tim@krieglstein.org>
// Copyright (C) 2016 Denis Shienkov <denis.shienkov@gmail.com>
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
#include "baremetalconstants.h"
#include "baremetaldevice.h"
#include "baremetaldeviceconfigurationwidget.h"
#include "baremetaldeviceconfigurationwizard.h"
#include "debugserverprovidermanager.h"
#include "idebugserverprovider.h"
#include <utils/qtcassert.h>
using namespace ProjectExplorer;
namespace BareMetal {
namespace Internal {
const char debugServerProviderIdKeyC[] = "IDebugServerProviderId";
// BareMetalDevice
BareMetalDevice::BareMetalDevice()
{
setDisplayType(tr("Bare Metal"));
setDefaultDisplayName(defaultDisplayName());
setOsType(Utils::OsTypeOther);
}
BareMetalDevice::~BareMetalDevice()
{
if (IDebugServerProvider *provider = DebugServerProviderManager::findProvider(
m_debugServerProviderId))
provider->unregisterDevice(this);
}
QString BareMetalDevice::defaultDisplayName()
{
return tr("Bare Metal Device");
}
QString BareMetalDevice::debugServerProviderId() const
{
return m_debugServerProviderId;
}
void BareMetalDevice::setDebugServerProviderId(const QString &id)
{
if (id == m_debugServerProviderId)
return;
if (IDebugServerProvider *currentProvider =
DebugServerProviderManager::findProvider(m_debugServerProviderId))
currentProvider->unregisterDevice(this);
m_debugServerProviderId = id;
if (IDebugServerProvider *provider = DebugServerProviderManager::findProvider(id))
provider->registerDevice(this);
}
void BareMetalDevice::unregisterDebugServerProvider(IDebugServerProvider *provider)
{
if (provider->id() == m_debugServerProviderId)
m_debugServerProviderId.clear();
}
void BareMetalDevice::fromMap(const QVariantMap &map)
{
IDevice::fromMap(map);
QString providerId = map.value(debugServerProviderIdKeyC).toString();
if (providerId.isEmpty()) {
const QString name = displayName();
if (IDebugServerProvider *provider =
DebugServerProviderManager::findByDisplayName(name)) {
providerId = provider->id();
setDebugServerProviderId(providerId);
}
} else {
setDebugServerProviderId(providerId);
}
}
QVariantMap BareMetalDevice::toMap() const
{
QVariantMap map = IDevice::toMap();
map.insert(debugServerProviderIdKeyC, debugServerProviderId());
return map;
}
DeviceProcessSignalOperation::Ptr BareMetalDevice::signalOperation() const
{
return DeviceProcessSignalOperation::Ptr();
}
IDeviceWidget *BareMetalDevice::createWidget()
{
return new BareMetalDeviceConfigurationWidget(sharedFromThis());
}
// Factory
BareMetalDeviceFactory::BareMetalDeviceFactory()
: IDeviceFactory(Constants::BareMetalOsType)
{
setDisplayName(BareMetalDevice::tr("Bare Metal Device"));
setCombinedIcon(":/baremetal/images/baremetaldevicesmall.png",
":/baremetal/images/baremetaldevice.png");
setConstructionFunction(&BareMetalDevice::create);
setCreator([] {
BareMetalDeviceConfigurationWizard wizard;
if (wizard.exec() != QDialog::Accepted)
return IDevice::Ptr();
return wizard.device();
});
}
} //namespace Internal
} //namespace BareMetal
|