113d703984
svn path=/branches/work/~ervin/sodep/; revision=945432
116 lines
2.4 KiB
C++
116 lines
2.4 KiB
C++
/**
|
|
* This file is part of the KDE project
|
|
* Copyright (C) 2008 Kevin Ottens <ervin@kde.org>
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Library General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Library General Public License
|
|
* along with this library; see the file COPYING.LIB. If not, write to
|
|
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#include "sodepmessage.h"
|
|
|
|
#include <QtCore/QString>
|
|
|
|
#include "sodephelpers_p.h"
|
|
|
|
class SodepMessagePrivate
|
|
{
|
|
public:
|
|
SodepMessagePrivate() : id(0) {}
|
|
|
|
qint64 id;
|
|
QString resourcePath;
|
|
QString operationName;
|
|
SodepFault fault;
|
|
SodepValue data;
|
|
};
|
|
|
|
SodepMessage::SodepMessage()
|
|
: d(new SodepMessagePrivate)
|
|
{
|
|
}
|
|
|
|
SodepMessage::SodepMessage(const QString &resourcePath, const QString &operationName, qint64 id)
|
|
: d(new SodepMessagePrivate)
|
|
{
|
|
static qint64 lastId = 0;
|
|
|
|
if (id==0) {
|
|
d->id = ++lastId;
|
|
} else {
|
|
d->id = id;
|
|
}
|
|
d->resourcePath = resourcePath;
|
|
d->operationName = operationName;
|
|
}
|
|
|
|
SodepMessage::SodepMessage(const SodepMessage &other)
|
|
: d(new SodepMessagePrivate)
|
|
{
|
|
*d = *other.d;
|
|
}
|
|
|
|
SodepMessage::~SodepMessage()
|
|
{
|
|
delete d;
|
|
}
|
|
|
|
SodepMessage &SodepMessage::operator=(const SodepMessage &other)
|
|
{
|
|
*d = *other.d;
|
|
|
|
return *this;
|
|
}
|
|
|
|
qint64 SodepMessage::id() const
|
|
{
|
|
return d->id;
|
|
}
|
|
|
|
QString SodepMessage::resourcePath() const
|
|
{
|
|
return d->resourcePath;
|
|
}
|
|
|
|
QString SodepMessage::operationName() const
|
|
{
|
|
return d->operationName;
|
|
}
|
|
|
|
SodepFault SodepMessage::fault() const
|
|
{
|
|
return d->fault;
|
|
}
|
|
|
|
void SodepMessage::setFault(const SodepFault &fault)
|
|
{
|
|
d->fault = fault;
|
|
}
|
|
|
|
SodepValue SodepMessage::data() const
|
|
{
|
|
return d->data;
|
|
}
|
|
|
|
void SodepMessage::setData(const SodepValue &data)
|
|
{
|
|
d->data = data;
|
|
}
|
|
|
|
bool SodepMessage::isValid()
|
|
{
|
|
return !d->resourcePath.isEmpty() && !d->operationName.isEmpty();
|
|
}
|
|
|