61 lines
1.6 KiB
C++
61 lines
1.6 KiB
C++
#ifndef DEVICEDISCOVERY_H
|
|
#define DEVICEDISCOVERY_H
|
|
|
|
#include <QAbstractListModel>
|
|
#include <QUuid>
|
|
|
|
#include "jsonrpc/jsonrpcclient.h"
|
|
|
|
class DeviceDiscovery : public QAbstractListModel
|
|
{
|
|
Q_OBJECT
|
|
Q_PROPERTY(JsonRpcClient* jsonRpcClient READ jsonRpcClient WRITE setJsonRpcClient)
|
|
Q_PROPERTY(bool busy READ busy NOTIFY busyChanged)
|
|
Q_PROPERTY(int count READ rowCount NOTIFY countChanged)
|
|
public:
|
|
enum Roles {
|
|
RoleId,
|
|
RoleName,
|
|
RoleDescription
|
|
};
|
|
|
|
DeviceDiscovery(QObject *parent = nullptr);
|
|
|
|
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
|
|
QVariant data(const QModelIndex &index, int role) const override;
|
|
QHash<int, QByteArray> roleNames() const override;
|
|
|
|
|
|
Q_INVOKABLE void discoverDevices(const QUuid &deviceClassId, const QVariantList &discoveryParams = {});
|
|
|
|
JsonRpcClient* jsonRpcClient() const;
|
|
void setJsonRpcClient(JsonRpcClient *jsonRpcClient);
|
|
|
|
bool busy() const;
|
|
|
|
private slots:
|
|
void discoverDevicesResponse(const QVariantMap ¶ms);
|
|
|
|
signals:
|
|
void busyChanged();
|
|
void countChanged();
|
|
void jsonRpcClientChanged();
|
|
|
|
private:
|
|
class DeviceDescriptor {
|
|
public:
|
|
DeviceDescriptor(const QUuid &id, const QString &name, const QString &description): m_id(id), m_name(name), m_description(description) {}
|
|
QUuid m_id;
|
|
QString m_name;
|
|
QString m_description;
|
|
};
|
|
|
|
JsonRpcClient *m_jsonRpcClient = nullptr;
|
|
bool m_busy = false;
|
|
|
|
bool contains(const QUuid &deviceDescriptorId) const;
|
|
QList<DeviceDescriptor> m_foundDevices;
|
|
};
|
|
|
|
#endif // DEVICEDISCOVERY_H
|