2013-06-06 04:57:06 +01:00
|
|
|
/**
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-FileCopyrightText: 2013 Albert Vaca <albertvaka@gmail.com>
|
2013-06-06 04:57:06 +01:00
|
|
|
*
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
2013-06-06 04:57:06 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef DEVICELINK_H
|
|
|
|
#define DEVICELINK_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
|
2023-06-27 12:10:59 +01:00
|
|
|
#include "deviceinfo.h"
|
2019-04-30 18:03:24 +01:00
|
|
|
#include "networkpacket.h"
|
2013-06-06 04:57:06 +01:00
|
|
|
|
2013-07-24 17:42:33 +01:00
|
|
|
class LinkProvider;
|
2013-06-18 01:14:22 +01:00
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
class DeviceLink : public QObject
|
2013-06-06 04:57:06 +01:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2022-09-10 22:23:52 +01:00
|
|
|
DeviceLink(const QString &deviceId, LinkProvider *parent);
|
2013-06-06 04:57:06 +01:00
|
|
|
|
2023-06-27 12:10:59 +01:00
|
|
|
QString deviceId() const
|
2022-09-10 22:23:52 +01:00
|
|
|
{
|
2023-06-27 12:10:59 +01:00
|
|
|
return deviceInfo().id;
|
2022-09-10 22:23:52 +01:00
|
|
|
}
|
2013-09-09 17:35:56 +01:00
|
|
|
|
2023-10-01 11:39:59 +01:00
|
|
|
int priority() const
|
|
|
|
{
|
|
|
|
return priorityFromProvider;
|
|
|
|
}
|
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
virtual bool sendPacket(NetworkPacket &np) = 0;
|
2013-09-13 22:27:16 +01:00
|
|
|
|
2023-06-27 12:10:59 +01:00
|
|
|
virtual DeviceInfo deviceInfo() const = 0;
|
2020-11-26 10:28:32 +00:00
|
|
|
|
2023-10-01 11:39:59 +01:00
|
|
|
private:
|
|
|
|
int priorityFromProvider;
|
|
|
|
|
2013-09-01 21:13:03 +01:00
|
|
|
Q_SIGNALS:
|
2022-09-10 22:23:52 +01:00
|
|
|
void receivedPacket(const NetworkPacket &np);
|
2013-06-06 04:57:06 +01:00
|
|
|
};
|
|
|
|
|
2013-09-13 22:27:16 +01:00
|
|
|
#endif
|