forked from qt-creator/qt-creator
Amends 1fa3255242
Change-Id: Idd2e0916769cd822b97e1fc851d8f706316cca83
Reviewed-by: hjk <hjk@qt.io>
128 lines
3.7 KiB
C++
128 lines
3.7 KiB
C++
// Copyright (C) 2021 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 "dockersettings.h"
|
|
|
|
#include <coreplugin/documentmanager.h>
|
|
|
|
#include <projectexplorer/devicesupport/idevice.h>
|
|
#include <projectexplorer/devicesupport/idevicefactory.h>
|
|
|
|
#include <QMutex>
|
|
|
|
namespace Docker::Internal {
|
|
|
|
class DockerDeviceData
|
|
{
|
|
public:
|
|
bool operator==(const DockerDeviceData &other) const
|
|
{
|
|
return imageId == other.imageId && repo == other.repo && tag == other.tag
|
|
&& useLocalUidGid == other.useLocalUidGid && mounts == other.mounts
|
|
&& keepEntryPoint == other.keepEntryPoint;
|
|
}
|
|
|
|
bool operator!=(const DockerDeviceData &other) const { return !(*this == other); }
|
|
|
|
// Used for "docker run"
|
|
QString repoAndTag() const
|
|
{
|
|
if (repo == "<none>")
|
|
return imageId;
|
|
|
|
if (tag == "<none>")
|
|
return repo;
|
|
|
|
return repo + ':' + tag;
|
|
}
|
|
|
|
QString imageId;
|
|
QString repo;
|
|
QString tag;
|
|
QString size;
|
|
bool useLocalUidGid = true;
|
|
QStringList mounts = {Core::DocumentManager::projectsDirectory().toString()};
|
|
bool keepEntryPoint = false;
|
|
};
|
|
|
|
class DockerDevice : public ProjectExplorer::IDevice
|
|
{
|
|
public:
|
|
using Ptr = QSharedPointer<DockerDevice>;
|
|
using ConstPtr = QSharedPointer<const DockerDevice>;
|
|
|
|
explicit DockerDevice(DockerSettings *settings, const DockerDeviceData &data);
|
|
~DockerDevice();
|
|
|
|
void shutdown();
|
|
|
|
static Ptr create(DockerSettings *settings, const DockerDeviceData &data)
|
|
{
|
|
return Ptr(new DockerDevice(settings, data));
|
|
}
|
|
|
|
ProjectExplorer::IDeviceWidget *createWidget() override;
|
|
QList<ProjectExplorer::Task> validate() const override;
|
|
|
|
Utils::ProcessInterface *createProcessInterface() const override;
|
|
|
|
bool canAutoDetectPorts() const override;
|
|
ProjectExplorer::PortsGatheringMethod portsGatheringMethod() const override;
|
|
bool canCreateProcessModel() const override { return false; }
|
|
ProjectExplorer::DeviceProcessList *createProcessListModel(QObject *parent) const override;
|
|
bool hasDeviceTester() const override { return false; }
|
|
ProjectExplorer::DeviceTester *createDeviceTester() const override;
|
|
ProjectExplorer::DeviceProcessSignalOperation::Ptr signalOperation() const override;
|
|
ProjectExplorer::DeviceEnvironmentFetcher::Ptr environmentFetcher() const override;
|
|
bool usableAsBuildDevice() const override;
|
|
|
|
Utils::FilePath mapToGlobalPath(const Utils::FilePath &pathOnDevice) const override;
|
|
|
|
Utils::FilePath rootPath() const override;
|
|
|
|
bool handlesFile(const Utils::FilePath &filePath) const override;
|
|
bool ensureReachable(const Utils::FilePath &other) const override;
|
|
|
|
Utils::Environment systemEnvironment() const override;
|
|
|
|
const DockerDeviceData data() const;
|
|
DockerDeviceData data();
|
|
|
|
void setData(const DockerDeviceData &data);
|
|
|
|
void updateContainerAccess() const;
|
|
void setMounts(const QStringList &mounts) const;
|
|
|
|
bool prepareForBuild(const ProjectExplorer::Target *target) override;
|
|
|
|
protected:
|
|
void fromMap(const QVariantMap &map) final;
|
|
QVariantMap toMap() 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(DockerSettings *settings);
|
|
|
|
void shutdownExistingDevices();
|
|
|
|
private:
|
|
QMutex m_deviceListMutex;
|
|
std::vector<QWeakPointer<DockerDevice>> m_existingDevices;
|
|
};
|
|
|
|
} // namespace Docker::Internal
|
|
|
|
Q_DECLARE_METATYPE(Docker::Internal::DockerDeviceData)
|