2015-07-05 14:23:53 +01:00
|
|
|
/**
|
|
|
|
* Copyright 2015 Vineet Garg <grg.vineet@gmail.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of
|
|
|
|
* the License or (at your option) version 3 or any later version
|
|
|
|
* accepted by the membership of KDE e.V. (or its successor approved
|
|
|
|
* by the membership of KDE e.V.), which shall act as a proxy
|
|
|
|
* defined in Section 14 of version 3 of the license.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2019-03-23 16:29:26 +00:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2015-07-05 14:23:53 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef KDECONNECT_PAIRINGHANDLER_H
|
|
|
|
#define KDECONNECT_PAIRINGHANDLER_H
|
|
|
|
|
2018-03-04 19:48:51 +00:00
|
|
|
#include "networkpacket.h"
|
2015-07-25 12:45:19 +01:00
|
|
|
#include "devicelink.h"
|
2015-07-05 14:23:53 +01:00
|
|
|
|
2015-08-11 04:34:02 +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
|
2015-07-25 12:45:19 +01:00
|
|
|
{
|
|
|
|
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);
|
2016-06-20 08:05:02 +01:00
|
|
|
~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
|
|
|
|
2018-03-04 19:48:51 +00:00
|
|
|
virtual void packetReceived(const NetworkPacket& np) = 0;
|
2015-07-25 12:45:19 +01:00
|
|
|
virtual void unpair() = 0;
|
2017-01-24 23:22:22 +00:00
|
|
|
static int pairingTimeoutMsec() { return 30 * 1000; } // 30 seconds of timeout (default), subclasses that use different values should override
|
2015-07-25 12:45:19 +01:00
|
|
|
|
|
|
|
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
|