blob: a998c0dc48362becb9772040aef2e543c759d24f (
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
|
// Copyright (C) 2025 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#include <projectexplorer/devicesupport/idevice.h>
#include <devcontainer/devcontainer.h>
#include <QtTaskTree/QParallelTaskTreeRunner>
#include <utils/qtcprocess.h>
namespace CmdBridge {
class FileAccess;
}
namespace ProjectExplorer {
class Project;
}
namespace DevContainer {
class ProgressPromise;
using ProgressPtr = std::unique_ptr<ProgressPromise>;
class Device : public ProjectExplorer::IDevice
{
public:
Device(ProjectExplorer::Project *project);
~Device();
ProjectExplorer::IDeviceWidget *createWidget() override;
void up(InstanceConfig instanceConfig, std::function<void(Utils::Result<>)> callback);
Utils::Result<> down();
const InstanceConfig &instanceConfig() const { return m_instanceConfig; }
void restart(std::function<void(Utils::Result<>)> callback);
Utils::ProcessInterface *createProcessInterface() const override;
Utils::Result<Utils::Environment> systemEnvironmentWithError() const override;
Utils::Result<> ensureReachable(const Utils::FilePath &other) const override;
Utils::Result<Utils::FilePath> localSource(const Utils::FilePath &other) const override;
bool supportsQtTargetDeviceType(const QSet<Utils::Id> &targetDeviceTypes) const override;
void toMap(Utils::Store &map) const override;
Utils::Result<> supportsBuildingProject(const Utils::FilePath &projectDir) const override;
public: // FilePath stuff
Utils::Result<> handlesFile(const Utils::FilePath &filePath) const override;
Utils::FilePath rootPath() const override;
private:
void onConfigChanged();
QtTaskTree::Group upRecipe(
InstanceConfig instanceConfig, QtTaskTree::Storage<ProgressPtr> progressStorage);
QtTaskTree::Group downRecipe(bool forceDown);
private:
Utils::Process::ProcessInterfaceCreator m_processInterfaceCreator;
InstanceConfig m_instanceConfig;
std::shared_ptr<CmdBridge::FileAccess> m_fileAccess;
std::optional<Utils::Environment> m_systemEnvironment;
std::optional<QtTaskTree::ExecutableItem> m_downRecipe;
std::optional<QtTaskTree::ExecutableItem> m_forceDownRecipe;
QParallelTaskTreeRunner m_taskTreeRunner;
std::unique_ptr<Utils::FilePathWatcher> m_devContainerJsonWatcher;
std::unique_ptr<Utils::FilePathWatcher> m_dockerFileWatcher;
QPointer<ProjectExplorer::Project> m_project;
};
} // namespace DevContainer
|