2016-02-01 03:33:31 +02:00
|
|
|
/****************************************************************************
|
|
|
|
**
|
|
|
|
** Copyright (C) 2015 The Qt Company Ltd.
|
2021-02-05 06:13:36 +02:00
|
|
|
** Copyright (C) 2016 Ivailo Monev
|
2016-02-01 03:33:31 +02:00
|
|
|
**
|
2019-06-03 13:38:02 +00:00
|
|
|
** This file is part of the test suite of the Katie Toolkit.
|
2016-02-01 03:33:31 +02:00
|
|
|
**
|
|
|
|
** $QT_BEGIN_LICENSE:LGPL$
|
2019-12-29 23:21:34 +00:00
|
|
|
**
|
2016-02-01 03:33:31 +02:00
|
|
|
** GNU Lesser General Public License Usage
|
2019-12-29 23:21:34 +00:00
|
|
|
** This file may be used under the terms of the GNU Lesser
|
|
|
|
** General Public License version 2.1 as published by the Free Software
|
|
|
|
** Foundation and appearing in the file LICENSE.LGPL included in the
|
|
|
|
** packaging of this file. Please review the following information to
|
|
|
|
** ensure the GNU Lesser General Public License version 2.1 requirements
|
|
|
|
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
2016-02-01 03:33:31 +02:00
|
|
|
**
|
|
|
|
** $QT_END_LICENSE$
|
|
|
|
**
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef SERVEROBJECT_H
|
|
|
|
#define SERVEROBJECT_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <QtDBus/QtDBus>
|
|
|
|
|
|
|
|
class ServerObject: public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
Q_CLASSINFO("D-Bus Interface", "com.trolltech.autotests.Performance")
|
|
|
|
public:
|
|
|
|
ServerObject(const QString &objectPath, QDBusConnection conn, QObject *parent = 0)
|
|
|
|
: QObject(parent)
|
|
|
|
{
|
|
|
|
conn.registerObject(objectPath, this, QDBusConnection::ExportAllSlots);
|
|
|
|
}
|
|
|
|
|
|
|
|
public slots:
|
2016-09-11 19:34:02 +00:00
|
|
|
void noReply(const QByteArray &)
|
2016-02-01 03:33:31 +02:00
|
|
|
{
|
|
|
|
// black hole
|
|
|
|
}
|
2016-09-11 19:34:02 +00:00
|
|
|
void noReply(const QString &)
|
2016-02-01 03:33:31 +02:00
|
|
|
{
|
|
|
|
// black hole
|
|
|
|
}
|
2016-09-11 19:34:02 +00:00
|
|
|
void noReply(const QDBusVariant &)
|
2016-02-01 03:33:31 +02:00
|
|
|
{
|
|
|
|
// black hole
|
|
|
|
}
|
|
|
|
|
|
|
|
int size(const QByteArray &data)
|
|
|
|
{
|
|
|
|
return data.size();
|
|
|
|
}
|
|
|
|
int size(const QString &data)
|
|
|
|
{
|
|
|
|
return data.size();
|
|
|
|
}
|
|
|
|
int size(const QDBusVariant &data)
|
|
|
|
{
|
|
|
|
QVariant v = data.variant();
|
|
|
|
switch (v.type())
|
|
|
|
{
|
|
|
|
case QVariant::ByteArray:
|
|
|
|
return v.toByteArray().size();
|
|
|
|
case QVariant::StringList:
|
|
|
|
return v.toStringList().size();
|
|
|
|
case QVariant::String:
|
|
|
|
default:
|
|
|
|
return v.toString().size();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QByteArray echo(const QByteArray &data)
|
|
|
|
{
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
QString echo(const QString &data)
|
|
|
|
{
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
QDBusVariant echo(const QDBusVariant &data)
|
|
|
|
{
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
void nothing()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|