aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/devicesupport/devicecheckbuildstep.cpp
blob: 84e3b27408470c1973bf0911c0aa416bfd287b6d (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
// Copyright (C) 2016 Research In Motion
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#include "devicecheckbuildstep.h"

#include "../kitinformation.h"
#include "../projectexplorerconstants.h"
#include "../projectexplorertr.h"

#include "devicemanager.h"
#include "idevice.h"
#include "idevicefactory.h"

#include <QMessageBox>

namespace ProjectExplorer {

class DeviceCheckBuildStep : public BuildStep
{
public:
    DeviceCheckBuildStep(BuildStepList *bsl, Utils::Id id)
        : BuildStep(bsl, id)
    {
        setWidgetExpandedByDefault(false);
    }

    bool init() override
    {
        IDevice::ConstPtr device = DeviceKitAspect::device(kit());
        if (!device) {
            Utils::Id deviceTypeId = DeviceTypeKitAspect::deviceTypeId(kit());
            IDeviceFactory *factory = IDeviceFactory::find(deviceTypeId);
            if (!factory || !factory->canCreate()) {
                emit addOutput(Tr::tr("No device configured."), BuildStep::OutputFormat::ErrorMessage);
                return false;
            }

            QMessageBox msgBox(QMessageBox::Question, Tr::tr("Set Up Device"),
                               Tr::tr("There is no device set up for this kit. Do you want to add a device?"),
                               QMessageBox::Yes|QMessageBox::No);
            msgBox.setDefaultButton(QMessageBox::Yes);
            if (msgBox.exec() == QMessageBox::No) {
                emit addOutput(Tr::tr("No device configured."), BuildStep::OutputFormat::ErrorMessage);
                return false;
            }

            IDevice::Ptr newDevice = factory->create();
            if (newDevice.isNull()) {
                emit addOutput(Tr::tr("No device configured."), BuildStep::OutputFormat::ErrorMessage);
                return false;
            }

            DeviceManager *dm = DeviceManager::instance();
            dm->addDevice(newDevice);

            DeviceKitAspect::setDevice(kit(), newDevice);
        }

        return true;
    }

    void doRun() override { emit finished(true); }
};

// Factory

DeviceCheckBuildStepFactory::DeviceCheckBuildStepFactory()
{
    registerStep<DeviceCheckBuildStep>(Constants::DEVICE_CHECK_STEP);
    setDisplayName(Tr::tr("Check for a configured device"));
}

} // ProjectExplorer