mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2025-07-02 23:35:28 +08:00
qt 6.5.1 original
This commit is contained in:
14
tests/auto/dbus/qdbusabstractadaptor/CMakeLists.txt
Normal file
14
tests/auto/dbus/qdbusabstractadaptor/CMakeLists.txt
Normal file
@ -0,0 +1,14 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
add_subdirectory(qmyserver)
|
||||
|
||||
qt_internal_add_test(tst_qdbusabstractadaptor
|
||||
SOURCES
|
||||
myobject.h
|
||||
tst_qdbusabstractadaptor.cpp
|
||||
LIBRARIES
|
||||
Qt::CorePrivate
|
||||
Qt::DBus
|
||||
)
|
||||
add_dependencies(tst_qdbusabstractadaptor qmyserver)
|
254
tests/auto/dbus/qdbusabstractadaptor/myobject.h
Normal file
254
tests/auto/dbus/qdbusabstractadaptor/myobject.h
Normal file
@ -0,0 +1,254 @@
|
||||
// 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 MYOBJECT_H
|
||||
#define MYOBJECT_H
|
||||
|
||||
#include <QObject>
|
||||
#include <QVariant>
|
||||
#include <QUrl>
|
||||
#include <QDBusMessage>
|
||||
#include <QDBusAbstractAdaptor>
|
||||
|
||||
extern const char *slotSpy;
|
||||
extern QString valueSpy;
|
||||
|
||||
class QDBusSignalSpy: public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public slots:
|
||||
void slot(const QDBusMessage &msg)
|
||||
{
|
||||
++count;
|
||||
interface = msg.interface();
|
||||
name = msg.member();
|
||||
signature = msg.signature();
|
||||
path = msg.path();
|
||||
value.clear();
|
||||
if (msg.arguments().size())
|
||||
value = msg.arguments().at(0);
|
||||
}
|
||||
|
||||
public:
|
||||
QDBusSignalSpy() : count(0) { }
|
||||
|
||||
int count;
|
||||
QString interface;
|
||||
QString name;
|
||||
QString signature;
|
||||
QString path;
|
||||
QVariant value;
|
||||
};
|
||||
|
||||
class Interface1: public QDBusAbstractAdaptor
|
||||
{
|
||||
Q_OBJECT
|
||||
Q_CLASSINFO("D-Bus Interface", "local.Interface1")
|
||||
public:
|
||||
Interface1(QObject *parent) : QDBusAbstractAdaptor(parent)
|
||||
{ }
|
||||
};
|
||||
|
||||
class Interface2: public QDBusAbstractAdaptor
|
||||
{
|
||||
Q_OBJECT
|
||||
Q_CLASSINFO("D-Bus Interface", "local.Interface2")
|
||||
Q_PROPERTY(QString prop1 READ prop1)
|
||||
Q_PROPERTY(QString prop2 READ prop2 WRITE setProp2 SCRIPTABLE true)
|
||||
Q_PROPERTY(QUrl nonDBusProperty READ nonDBusProperty)
|
||||
public:
|
||||
Interface2(QObject *parent) : QDBusAbstractAdaptor(parent)
|
||||
{ setAutoRelaySignals(true); }
|
||||
|
||||
QString prop1() const
|
||||
{ return QLatin1String("QString Interface2::prop1() const"); }
|
||||
|
||||
QString prop2() const
|
||||
{ return QLatin1String("QString Interface2::prop2() const"); }
|
||||
|
||||
void setProp2(const QString &value)
|
||||
{
|
||||
slotSpy = "void Interface2::setProp2(const QString &)";
|
||||
valueSpy = value;
|
||||
}
|
||||
|
||||
QUrl nonDBusProperty() const
|
||||
{ return QUrl(); }
|
||||
|
||||
void emitSignal(const QString &, const QVariant &)
|
||||
{ emit signal(); }
|
||||
|
||||
public slots:
|
||||
void method()
|
||||
{
|
||||
slotSpy = "void Interface2::method()";
|
||||
}
|
||||
|
||||
Q_SCRIPTABLE void scriptableMethod()
|
||||
{
|
||||
slotSpy = "void Interface2::scriptableMethod()";
|
||||
}
|
||||
|
||||
signals:
|
||||
void signal();
|
||||
};
|
||||
|
||||
class Interface3: public QDBusAbstractAdaptor
|
||||
{
|
||||
Q_OBJECT
|
||||
Q_CLASSINFO("D-Bus Interface", "local.Interface3")
|
||||
Q_PROPERTY(QString prop1 READ prop1)
|
||||
Q_PROPERTY(QString prop2 READ prop2 WRITE setProp2)
|
||||
Q_PROPERTY(QString interface3prop READ interface3prop)
|
||||
public:
|
||||
Interface3(QObject *parent) : QDBusAbstractAdaptor(parent)
|
||||
{ setAutoRelaySignals(true); }
|
||||
|
||||
QString prop1() const
|
||||
{ return QLatin1String("QString Interface3::prop1() const"); }
|
||||
|
||||
QString prop2() const
|
||||
{ return QLatin1String("QString Interface3::prop2() const"); }
|
||||
|
||||
void setProp2(const QString &value)
|
||||
{
|
||||
slotSpy = "void Interface3::setProp2(const QString &)";
|
||||
valueSpy = value;
|
||||
}
|
||||
|
||||
QString interface3prop() const
|
||||
{ return QLatin1String("QString Interface3::interface3prop() const"); }
|
||||
|
||||
void emitSignal(const QString &name, const QVariant &value)
|
||||
{
|
||||
if (name == "signalVoid")
|
||||
emit signalVoid();
|
||||
else if (name == "signalInt")
|
||||
emit signalInt(value.toInt());
|
||||
else if (name == "signalString")
|
||||
emit signalString(value.toString());
|
||||
}
|
||||
|
||||
public slots:
|
||||
void methodVoid() { slotSpy = "void Interface3::methodVoid()"; }
|
||||
void methodInt(int) { slotSpy = "void Interface3::methodInt(int)"; }
|
||||
void methodString(QString) { slotSpy = "void Interface3::methodString(QString)"; }
|
||||
|
||||
int methodStringString(const QString &s, QString &out)
|
||||
{
|
||||
slotSpy = "int Interface3::methodStringString(const QString &, QString &)";
|
||||
out = s;
|
||||
return 42;
|
||||
}
|
||||
|
||||
signals:
|
||||
void signalVoid();
|
||||
void signalInt(int);
|
||||
void signalString(const QString &);
|
||||
};
|
||||
|
||||
class Interface4: public QDBusAbstractAdaptor
|
||||
{
|
||||
Q_OBJECT
|
||||
Q_CLASSINFO("D-Bus Interface", "local.Interface4")
|
||||
Q_PROPERTY(QString prop1 READ prop1)
|
||||
Q_PROPERTY(QString prop2 READ prop2 WRITE setProp2)
|
||||
Q_PROPERTY(QString interface4prop READ interface4prop)
|
||||
public:
|
||||
Interface4(QObject *parent) : QDBusAbstractAdaptor(parent)
|
||||
{ setAutoRelaySignals(true); }
|
||||
|
||||
QString prop1() const
|
||||
{ return QLatin1String("QString Interface4::prop1() const"); }
|
||||
|
||||
QString prop2() const
|
||||
{ return QLatin1String("QString Interface4::prop2() const"); }
|
||||
|
||||
QString interface4prop() const
|
||||
{ return QLatin1String("QString Interface4::interface4prop() const"); }
|
||||
|
||||
void setProp2(const QString &value)
|
||||
{
|
||||
slotSpy = "void Interface4::setProp2(const QString &)";
|
||||
valueSpy = value;
|
||||
}
|
||||
|
||||
void emitSignal(const QString &, const QVariant &value)
|
||||
{
|
||||
switch (value.metaType().id())
|
||||
{
|
||||
case QMetaType::UnknownType:
|
||||
emit signal();
|
||||
break;
|
||||
case QMetaType::Int:
|
||||
emit signal(value.toInt());
|
||||
break;
|
||||
case QMetaType::QString:
|
||||
emit signal(value.toString());
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
public slots:
|
||||
void method() { slotSpy = "void Interface4::method()"; }
|
||||
void method(int) { slotSpy = "void Interface4::method(int)"; }
|
||||
void method(QString) { slotSpy = "void Interface4::method(QString)"; }
|
||||
|
||||
signals:
|
||||
void signal();
|
||||
void signal(int);
|
||||
void signal(const QString &);
|
||||
};
|
||||
|
||||
class MyObject: public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
Q_CLASSINFO("D-Bus Interface", "local.MyObject")
|
||||
public:
|
||||
Interface1 *if1;
|
||||
Interface2 *if2;
|
||||
Interface3 *if3;
|
||||
Interface4 *if4;
|
||||
|
||||
MyObject(int n = 4)
|
||||
: if1(0), if2(0), if3(0), if4(0)
|
||||
{
|
||||
switch (n)
|
||||
{
|
||||
case 4:
|
||||
if4 = new Interface4(this);
|
||||
Q_FALLTHROUGH();
|
||||
case 3:
|
||||
if3 = new Interface3(this);
|
||||
Q_FALLTHROUGH();
|
||||
case 2:
|
||||
if2 = new Interface2(this);
|
||||
Q_FALLTHROUGH();
|
||||
case 1:
|
||||
if1 = new Interface1(this);
|
||||
}
|
||||
}
|
||||
|
||||
void emitSignal(const QString &name, const QVariant &value)
|
||||
{
|
||||
if (name == "scriptableSignalVoid")
|
||||
emit scriptableSignalVoid();
|
||||
else if (name == "scriptableSignalInt")
|
||||
emit scriptableSignalInt(value.toInt());
|
||||
else if (name == "scriptableSignalString")
|
||||
emit scriptableSignalString(value.toString());
|
||||
else if (name == "nonScriptableSignalVoid")
|
||||
emit nonScriptableSignalVoid();
|
||||
}
|
||||
|
||||
signals:
|
||||
Q_SCRIPTABLE void scriptableSignalVoid();
|
||||
Q_SCRIPTABLE void scriptableSignalInt(int);
|
||||
Q_SCRIPTABLE void scriptableSignalString(QString);
|
||||
void nonScriptableSignalVoid();
|
||||
};
|
||||
|
||||
#endif // MYOBJECT_H
|
@ -0,0 +1,16 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
#####################################################################
|
||||
## qmyserver Binary:
|
||||
#####################################################################
|
||||
|
||||
qt_internal_add_executable(qmyserver
|
||||
OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/"
|
||||
NO_INSTALL
|
||||
SOURCES
|
||||
../myobject.h
|
||||
qmyserver.cpp
|
||||
LIBRARIES
|
||||
Qt::DBus
|
||||
)
|
166
tests/auto/dbus/qdbusabstractadaptor/qmyserver/qmyserver.cpp
Normal file
166
tests/auto/dbus/qdbusabstractadaptor/qmyserver/qmyserver.cpp
Normal file
@ -0,0 +1,166 @@
|
||||
// Copyright (C) 2016 The Qt Company Ltd.
|
||||
// Copyright (C) 2016 Intel Corporation.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
||||
|
||||
#include <QCoreApplication>
|
||||
#include <QDBusServer>
|
||||
#include <QDBusContext>
|
||||
#include <QDBusConnection>
|
||||
#include <QDBusVariant>
|
||||
#include <QDBusServer>
|
||||
|
||||
#include "../myobject.h"
|
||||
|
||||
static const char serviceName[] = "org.qtproject.autotests.qmyserver";
|
||||
static const char objectPath[] = "/org/qtproject/qmyserver";
|
||||
//static const char *interfaceName = serviceName;
|
||||
|
||||
const char *slotSpy;
|
||||
QString valueSpy;
|
||||
|
||||
Q_DECLARE_METATYPE(QDBusConnection::RegisterOptions)
|
||||
|
||||
class MyServer : public QDBusServer, protected QDBusContext
|
||||
{
|
||||
Q_OBJECT
|
||||
Q_CLASSINFO("D-Bus Interface", "org.qtproject.autotests.qmyserver")
|
||||
|
||||
public:
|
||||
MyServer(QObject* parent = nullptr)
|
||||
: QDBusServer(parent),
|
||||
m_conn("none"),
|
||||
obj(NULL)
|
||||
{
|
||||
connect(this, SIGNAL(newConnection(QDBusConnection)), SLOT(handleConnection(QDBusConnection)));
|
||||
}
|
||||
|
||||
~MyServer()
|
||||
{
|
||||
if (obj)
|
||||
obj->deleteLater();
|
||||
}
|
||||
|
||||
public slots:
|
||||
QString address() const
|
||||
{
|
||||
if (!QDBusServer::isConnected())
|
||||
sendErrorReply(QDBusServer::lastError().name(), QDBusServer::lastError().message());
|
||||
return QDBusServer::address();
|
||||
}
|
||||
|
||||
void waitForConnected()
|
||||
{
|
||||
if (callPendingReply.type() != QDBusMessage::InvalidMessage) {
|
||||
sendErrorReply(QDBusError::NotSupported, "One call already pending!");
|
||||
return;
|
||||
}
|
||||
if (m_conn.isConnected())
|
||||
return;
|
||||
// not connected, we'll reply later
|
||||
setDelayedReply(true);
|
||||
callPendingReply = message();
|
||||
}
|
||||
|
||||
Q_NOREPLY void requestSync(const QString &seq)
|
||||
{
|
||||
emit syncReceived(seq);
|
||||
}
|
||||
|
||||
void emitSignal(const QString& interface, const QString& name, const QDBusVariant& parameter)
|
||||
{
|
||||
if (interface.endsWith('2'))
|
||||
obj->if2->emitSignal(name, parameter.variant());
|
||||
else if (interface.endsWith('3'))
|
||||
obj->if3->emitSignal(name, parameter.variant());
|
||||
else if (interface.endsWith('4'))
|
||||
obj->if4->emitSignal(name, parameter.variant());
|
||||
else
|
||||
obj->emitSignal(name, parameter.variant());
|
||||
}
|
||||
|
||||
void emitSignal2(const QString& interface, const QString& name)
|
||||
{
|
||||
if (interface.endsWith('2'))
|
||||
obj->if2->emitSignal(name, QVariant());
|
||||
else if (interface.endsWith('3'))
|
||||
obj->if3->emitSignal(name, QVariant());
|
||||
else if (interface.endsWith('4'))
|
||||
obj->if4->emitSignal(name, QVariant());
|
||||
else
|
||||
obj->emitSignal(name, QVariant());
|
||||
}
|
||||
|
||||
void newMyObject(int nInterfaces = 4)
|
||||
{
|
||||
if (obj)
|
||||
obj->deleteLater();
|
||||
obj = new MyObject(nInterfaces);
|
||||
}
|
||||
|
||||
void registerMyObject(const QString & path, int options)
|
||||
{
|
||||
m_conn.registerObject(path, obj, (QDBusConnection::RegisterOptions)options);
|
||||
}
|
||||
|
||||
QString slotSpyServer()
|
||||
{
|
||||
return QLatin1String(slotSpy);
|
||||
}
|
||||
|
||||
QString valueSpyServer()
|
||||
{
|
||||
return valueSpy;
|
||||
}
|
||||
|
||||
void clearValueSpy()
|
||||
{
|
||||
valueSpy.clear();
|
||||
}
|
||||
|
||||
void quit()
|
||||
{
|
||||
qApp->quit();
|
||||
}
|
||||
|
||||
signals:
|
||||
Q_SCRIPTABLE void syncReceived(const QString &sequence);
|
||||
|
||||
private slots:
|
||||
void handleConnection(QDBusConnection con)
|
||||
{
|
||||
m_conn = con;
|
||||
con.registerObject(objectPath, this, QDBusConnection::ExportScriptableSignals);
|
||||
|
||||
if (callPendingReply.type() != QDBusMessage::InvalidMessage) {
|
||||
QDBusConnection::sessionBus().send(callPendingReply.createReply());
|
||||
callPendingReply = QDBusMessage();
|
||||
}
|
||||
}
|
||||
|
||||
private:
|
||||
QDBusConnection m_conn;
|
||||
QDBusMessage callPendingReply;
|
||||
MyObject* obj;
|
||||
};
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
QCoreApplication app(argc, argv);
|
||||
|
||||
QDBusConnection con = QDBusConnection::sessionBus();
|
||||
if (!con.isConnected())
|
||||
exit(1);
|
||||
|
||||
if (!con.registerService(serviceName))
|
||||
exit(2);
|
||||
|
||||
MyServer server;
|
||||
con.registerObject(objectPath, &server, QDBusConnection::ExportAllSlots);
|
||||
|
||||
printf("ready.\n");
|
||||
fflush(stdout);
|
||||
|
||||
return app.exec();
|
||||
}
|
||||
|
||||
#include "qmyserver.moc"
|
1896
tests/auto/dbus/qdbusabstractadaptor/tst_qdbusabstractadaptor.cpp
Normal file
1896
tests/auto/dbus/qdbusabstractadaptor/tst_qdbusabstractadaptor.cpp
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user