blob: 236ed21bb22d40f11ca6d0e9a9c4f041b43e18c4 (
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
|
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include "dockerdeviceenvironmentaspect.h"
#include <coreplugin/documentmanager.h>
#include <projectexplorer/devicesupport/idevice.h>
#include <projectexplorer/devicesupport/idevicefactory.h>
#include <utils/synchronizedvalue.h>
namespace Docker::Internal {
class PortMappings : public Utils::AspectList
{
public:
PortMappings(Utils::AspectContainer *container);
QStringList createArguments() const;
};
class DockerDevice : public ProjectExplorer::IDevice
{
public:
using Ptr = std::shared_ptr<DockerDevice>;
using ConstPtr = std::shared_ptr<const DockerDevice>;
DockerDevice();
~DockerDevice();
void shutdown();
static Ptr create() { return Ptr(new DockerDevice); }
Utils::CommandLine createCommandLine() const;
ProjectExplorer::IDeviceWidget *createWidget() override;
QList<ProjectExplorer::Task> validate() const override;
Utils::ProcessInterface *createProcessInterface() const override;
bool canCreateProcessModel() const override { return true; }
bool hasDeviceTester() const override { return false; }
ProjectExplorer::DeviceTester *createDeviceTester() override;
Utils::FilePath rootPath() const override;
bool canMount(const Utils::FilePath &filePath) const override
{
return filePath.isLocal() || filePath.isSameDevice(rootPath());
}
bool handlesFile(const Utils::FilePath &filePath) const override;
bool ensureReachable(const Utils::FilePath &other) const override;
Utils::Result<Utils::FilePath> localSource(const Utils::FilePath &other) const override;
Utils::Result<Utils::Environment> systemEnvironmentWithError() const override;
Utils::Result<> updateContainerAccess() const;
void setMounts(const QStringList &mounts) const;
bool prepareForBuild(const ProjectExplorer::Target *target) override;
std::optional<Utils::FilePath> clangdExecutable() const override;
QString repoAndTag() const;
QString repoAndTagEncoded() const;
Utils::StringAspect imageId{this};
Utils::StringAspect repo{this};
Utils::StringAspect tag{this};
Utils::BoolAspect useLocalUidGid{this};
Utils::FilePathListAspect mounts{this};
Utils::BoolAspect keepEntryPoint{this};
Utils::BoolAspect enableLldbFlags{this};
Utils::FilePathAspect clangdExecutableAspect{this};
Utils::StringSelectionAspect network{this};
Utils::StringAspect extraArgs{this};
DockerDeviceEnvironmentAspect environment{this};
PortMappings portMappings{this};
Utils::TextDisplay containerStatus{this};
protected:
void fromMap(const Utils::Store &map) final;
void toMap(Utils::Store &map) const final;
private:
void aboutToBeRemoved() const final;
class DockerDevicePrivate *d = nullptr;
friend class DockerDeviceSetupWizard;
friend class DockerDeviceWidget;
};
class DockerDeviceFactory final : public ProjectExplorer::IDeviceFactory
{
public:
DockerDeviceFactory();
void shutdownExistingDevices();
private:
Utils::SynchronizedValue<std::vector<std::weak_ptr<DockerDevice>>> m_existingDevices;
};
} // namespace Docker::Internal
|