mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2025-07-06 09:15:23 +08:00
qt 6.5.1 original
This commit is contained in:
77
tests/benchmarks/dbus/qdbusperformance/serverobject.h
Normal file
77
tests/benchmarks/dbus/qdbusperformance/serverobject.h
Normal file
@ -0,0 +1,77 @@
|
||||
// Copyright (C) 2016 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
||||
|
||||
|
||||
#ifndef SERVEROBJECT_H
|
||||
#define SERVEROBJECT_H
|
||||
|
||||
#include <QObject>
|
||||
#include <QDBusConnection>
|
||||
#include <QDBusVariant>
|
||||
|
||||
class ServerObject: public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
Q_CLASSINFO("D-Bus Interface", "org.qtproject.autotests.Performance")
|
||||
public:
|
||||
ServerObject(const QString &objectPath, QDBusConnection conn, QObject *parent = nullptr)
|
||||
: QObject(parent)
|
||||
{
|
||||
conn.registerObject(objectPath, this, QDBusConnection::ExportAllSlots);
|
||||
}
|
||||
|
||||
public slots:
|
||||
Q_NOREPLY void noReply(const QByteArray &)
|
||||
{
|
||||
// black hole
|
||||
}
|
||||
Q_NOREPLY void noReply(const QString &)
|
||||
{
|
||||
// black hole
|
||||
}
|
||||
Q_NOREPLY void noReply(const QDBusVariant &)
|
||||
{
|
||||
// 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.typeId()) {
|
||||
case QMetaType::QByteArray:
|
||||
return v.toByteArray().size();
|
||||
case QMetaType::QStringList:
|
||||
return v.toStringList().size();
|
||||
case QMetaType::QString:
|
||||
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
|
Reference in New Issue
Block a user