kdeconnect-kde/core/backends/pairinghandler.h

55 lines
1.7 KiB
C
Raw Normal View History

2015-07-05 14:23:53 +01:00
/**
* SPDX-FileCopyrightText: 2015 Vineet Garg <grg.vineet@gmail.com>
2015-07-05 14:23:53 +01:00
*
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
2015-07-05 14:23:53 +01:00
*/
#ifndef KDECONNECT_PAIRINGHANDLER_H
#define KDECONNECT_PAIRINGHANDLER_H
#include "networkpacket.h"
#include "devicelink.h"
2015-07-05 14:23:53 +01:00
/*
* This class separates the pairing interface for each type of link.
* Since different links can pair via different methods, like for LanLink certificate and public key should be shared,
* for Bluetooth link they should be paired via bluetooth etc.
* Each "Device" instance maintains a hash map for these pairing handlers so that there can be single pairing handler per
* per link type per device.
* Pairing handler keeps information about device, latest link, and pair status of the link
* During first pairing process, the pairing process is nearly same as old process.
* After that if any one of the link is paired, then we can say that device is paired, so new link will pair automatically
*/
2016-07-05 13:13:48 +01:00
class KDECONNECTCORE_EXPORT PairingHandler
: public QObject
{
Q_OBJECT
2015-07-27 16:28:58 +01:00
2015-11-30 18:36:01 +00:00
public:
2015-12-17 13:54:24 +00:00
PairingHandler(DeviceLink* parent);
~PairingHandler() override = default;
2015-07-05 14:23:53 +01:00
2015-12-01 18:45:14 +00:00
DeviceLink* deviceLink() const;
2015-12-01 15:25:34 +00:00
void setDeviceLink(DeviceLink* dl);
2015-07-27 16:28:58 +01:00
virtual void packetReceived(const NetworkPacket& np) = 0;
virtual void unpair() = 0;
static int pairingTimeoutMsec() { return 30 * 1000; } // 30 seconds of timeout (default), subclasses that use different values should override
public Q_SLOTS:
2015-12-01 18:45:14 +00:00
virtual bool requestPairing() = 0;
virtual bool acceptPairing() = 0;
virtual void rejectPairing() = 0;
2015-07-27 16:28:58 +01:00
2015-11-30 18:36:01 +00:00
Q_SIGNALS:
2015-12-01 18:45:14 +00:00
void pairingError(const QString& errorMessage);
2015-11-30 18:36:01 +00:00
2015-07-27 16:28:58 +01:00
private:
2016-07-07 00:07:51 +01:00
DeviceLink* m_deviceLink;
2015-07-05 14:23:53 +01:00
};
#endif //KDECONNECT_PAIRINGHANDLER_H