forked from qt-creator/qt-creator
All devices that support it use the same mechanism to gather ports so this patch removes the individual implementations in favor of a single one in IDevice.cpp. This patch also removes: * canAutodetectPorts() as it was not used. * Port::parseFrom...Output as they are not used anymore. Change-Id: I8ecedec2d71e60985402387982c64311c5a651e6 Reviewed-by: hjk <hjk@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
94 lines
2.5 KiB
C++
94 lines
2.5 KiB
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
#pragma once
|
|
|
|
#include "iostoolhandler.h"
|
|
|
|
#include <projectexplorer/devicesupport/idevice.h>
|
|
#include <projectexplorer/devicesupport/idevicefactory.h>
|
|
|
|
#include <QVariantMap>
|
|
#include <QMap>
|
|
#include <QString>
|
|
#include <QStringList>
|
|
#include <QTimer>
|
|
|
|
namespace Ios {
|
|
class IosConfigurations;
|
|
|
|
namespace Internal {
|
|
class IosDeviceManager;
|
|
|
|
class IosDevice final : public ProjectExplorer::IDevice
|
|
{
|
|
public:
|
|
using Dict = QMap<QString, QString>;
|
|
using ConstPtr = QSharedPointer<const IosDevice>;
|
|
using Ptr = QSharedPointer<IosDevice>;
|
|
|
|
ProjectExplorer::IDevice::DeviceInfo deviceInformation() const override;
|
|
ProjectExplorer::IDeviceWidget *createWidget() override;
|
|
|
|
QString deviceName() const;
|
|
QString uniqueDeviceID() const;
|
|
QString uniqueInternalDeviceId() const;
|
|
QString osVersion() const;
|
|
QString cpuArchitecture() const;
|
|
Utils::Port nextPort() const;
|
|
|
|
static QString name();
|
|
|
|
protected:
|
|
void fromMap(const QVariantMap &map) final;
|
|
QVariantMap toMap() const final;
|
|
|
|
friend class IosDeviceFactory;
|
|
friend class Ios::Internal::IosDeviceManager;
|
|
IosDevice();
|
|
IosDevice(const QString &uid);
|
|
|
|
enum CtorHelper {};
|
|
IosDevice(CtorHelper);
|
|
|
|
Dict m_extraInfo;
|
|
bool m_ignoreDevice = false;
|
|
mutable quint16 m_lastPort;
|
|
};
|
|
|
|
class IosDeviceFactory final : public ProjectExplorer::IDeviceFactory
|
|
{
|
|
public:
|
|
IosDeviceFactory();
|
|
|
|
bool canRestore(const QVariantMap &map) const override;
|
|
};
|
|
|
|
class IosDeviceManager : public QObject
|
|
{
|
|
public:
|
|
using TranslationMap = QHash<QString, QString>;
|
|
|
|
static TranslationMap translationMap();
|
|
static IosDeviceManager *instance();
|
|
|
|
void updateAvailableDevices(const QStringList &devices);
|
|
void deviceConnected(const QString &uid, const QString &name = QString());
|
|
void deviceDisconnected(const QString &uid);
|
|
friend class IosConfigurations;
|
|
void updateInfo(const QString &devId);
|
|
void deviceInfo(Ios::IosToolHandler *gatherer, const QString &deviceId,
|
|
const Ios::IosToolHandler::Dict &info);
|
|
void infoGathererFinished(Ios::IosToolHandler *gatherer);
|
|
void monitorAvailableDevices();
|
|
|
|
private:
|
|
void updateUserModeDevices();
|
|
IosDeviceManager(QObject *parent = nullptr);
|
|
QTimer m_userModeDevicesTimer;
|
|
QStringList m_userModeDeviceIds;
|
|
};
|
|
|
|
} // namespace Internal
|
|
} // namespace Ios
|