kdeconnect-kde/core/networkpacket.h

102 lines
3.9 KiB
C
Raw Normal View History

2013-06-06 04:57:06 +01:00
/**
* Copyright 2013 Albert Vaca <albertvaka@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
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef NETWORKPACKET_H
#define NETWORKPACKET_H
2013-06-06 04:57:06 +01:00
#include "networkpackettypes.h"
2013-08-28 22:47:39 +01:00
#include <QObject>
2013-06-06 04:57:06 +01:00
#include <QString>
#include <QVariant>
#include <QIODevice>
#include <QSharedPointer>
#include <QUrl>
#include "kdeconnectcore_export.h"
2013-06-06 04:57:06 +01:00
class FileTransferJob;
class KDECONNECTCORE_EXPORT NetworkPacket
2013-06-06 04:57:06 +01:00
{
Q_GADGET
Q_PROPERTY( QString id READ id WRITE setId )
Q_PROPERTY( QString type READ type WRITE setType )
Q_PROPERTY( QVariantMap body READ body WRITE setBody )
Q_PROPERTY( QVariantMap payloadTransferInfo READ payloadTransferInfo WRITE setPayloadTransferInfo )
Q_PROPERTY( qint64 payloadSize READ payloadSize WRITE setPayloadSize )
2013-06-06 04:57:06 +01:00
public:
const static int s_protocolVersion;
explicit NetworkPacket(const QString& type = QStringLiteral("empty"), const QVariantMap& body = {});
NetworkPacket(const NetworkPacket& other); // Copy constructor, required for QMetaType and queued signals
2013-06-17 11:23:08 +01:00
static void createIdentityPacket(NetworkPacket*);
QByteArray serialize() const;
static bool unserialize(const QByteArray& json, NetworkPacket* out);
2013-06-06 04:57:06 +01:00
const QString& id() const { return m_id; }
const QString& type() const { return m_type; }
QVariantMap& body() { return m_body; }
const QVariantMap& body() const { return m_body; }
2013-06-06 04:57:06 +01:00
//Get and set info from body. Note that id and type can not be accessed through these.
template<typename T> T get(const QString& key, const T& defaultValue = {}) const {
return m_body.value(key,defaultValue).template value<T>(); //Important note: Awesome template syntax is awesome
}
template<typename T> void set(const QString& key, const T& value) { m_body[key] = QVariant(value); }
bool has(const QString& key) const { return m_body.contains(key); }
2013-06-17 11:23:08 +01:00
QSharedPointer<QIODevice> payload() const { return m_payload; }
void setPayload(const QSharedPointer<QIODevice>& device, qint64 payloadSize) { m_payload = device; m_payloadSize = payloadSize; Q_ASSERT(m_payloadSize >= -1); }
bool hasPayload() const { return (m_payloadSize != 0); }
qint64 payloadSize() const { return m_payloadSize; } //-1 means it is an endless stream
FileTransferJob* createPayloadTransferJob(const QUrl& destination) const;
//To be called by a particular DeviceLink
QVariantMap payloadTransferInfo() const { return m_payloadTransferInfo; }
void setPayloadTransferInfo(const QVariantMap& map) { m_payloadTransferInfo = map; }
bool hasPayloadTransferInfo() const { return !m_payloadTransferInfo.isEmpty(); }
2013-06-06 04:57:06 +01:00
private:
void setId(const QString& id) { m_id = id; }
void setType(const QString& t) { m_type = t; }
void setBody(const QVariantMap& b) { m_body = b; }
void setPayloadSize(qint64 s) { m_payloadSize = s; }
2013-06-06 04:57:06 +01:00
QString m_id;
QString m_type;
QVariantMap m_body;
QSharedPointer<QIODevice> m_payload;
qint64 m_payloadSize;
QVariantMap m_payloadTransferInfo;
2013-06-06 04:57:06 +01:00
};
KDECONNECTCORE_EXPORT QDebug operator<<(QDebug s, const NetworkPacket& pkg);
Q_DECLARE_METATYPE(NetworkPacket)
#endif // NETWORKPACKET_H