acadeef76d
Splitted up ping receiver from notification receiver in KDE Improved pausemusic receiver Fixed same computer being discovered multiple times Fixed some other minor bugs and compilation warnings
72 lines
2.4 KiB
C++
72 lines
2.4 KiB
C++
/**
|
|
* 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 NETWORKPACKAGE_H
|
|
#define NETWORKPACKAGE_H
|
|
|
|
#include "networkpackagetypes.h"
|
|
#include <QObject>
|
|
#include <QString>
|
|
#include <QVariant>
|
|
#include <qjson/parser.h>
|
|
#include "default_args.h"
|
|
|
|
class NetworkPackage : public QObject
|
|
{
|
|
Q_OBJECT
|
|
Q_PROPERTY( long id READ id WRITE setId )
|
|
Q_PROPERTY( QString type READ type WRITE setType )
|
|
Q_PROPERTY( QVariantMap body READ body WRITE setBody )
|
|
Q_PROPERTY( int version READ version WRITE setVersion )
|
|
|
|
public:
|
|
|
|
NetworkPackage() {};
|
|
NetworkPackage(QString type);
|
|
|
|
static void unserialize(QByteArray, NetworkPackage*);
|
|
QByteArray serialize() const;
|
|
|
|
long id() const { return mId; }
|
|
const QString& type() const { return mType; }
|
|
QVariantMap& body() { return mBody; }
|
|
int version() const { return mVersion; }
|
|
|
|
//Get and set info from body. Note that id, type and version can not be accessed through these.
|
|
template<typename T> T get(const QString& property, const T& defaultValue = default_arg<T>::get()) const {
|
|
return mBody.value(property,defaultValue).template value<T>(); //Important note: Awesome template syntax is awesome
|
|
}
|
|
template<typename T> void set(const QString& property, const T& value) { mBody[property] = value; }
|
|
|
|
private:
|
|
void setId(long id) { mId = id; }
|
|
void setType(const QString& t) { mType = t; }
|
|
void setBody(const QVariantMap& b) { mBody = b; }
|
|
void setVersion(int v) { mVersion = v; }
|
|
|
|
long mId;
|
|
QString mType;
|
|
QVariantMap mBody; //json in the Android side
|
|
int mVersion;
|
|
|
|
};
|
|
|
|
|
|
#endif // NETWORKPACKAGE_H
|