mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2025-07-05 00:35:27 +08:00
qt 6.5.1 original
This commit is contained in:
38
tests/auto/dbus/qdbusinterface/CMakeLists.txt
Normal file
38
tests/auto/dbus/qdbusinterface/CMakeLists.txt
Normal file
@ -0,0 +1,38 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
add_subdirectory(qmyserver)
|
||||
|
||||
#####################################################################
|
||||
## ../tst_qdbusinterface Test:
|
||||
#####################################################################
|
||||
|
||||
qt_internal_add_test(tst_qdbusinterface
|
||||
SOURCES
|
||||
myobject.h
|
||||
tst_qdbusinterface.cpp
|
||||
LIBRARIES
|
||||
Qt::CorePrivate
|
||||
Qt::DBusPrivate
|
||||
LIBRARIES
|
||||
Qt::Core
|
||||
Qt::DBus
|
||||
)
|
||||
|
||||
## Scopes:
|
||||
#####################################################################
|
||||
|
||||
qt_internal_extend_target(tst_qdbusinterface CONDITION QT_FEATURE_dbus_linked
|
||||
DEFINES
|
||||
QT_LINKED_LIBDBUS
|
||||
LIBRARIES
|
||||
dbus-1
|
||||
)
|
||||
|
||||
qt_internal_extend_target(tst_qdbusinterface CONDITION NOT QT_FEATURE_dbus_linked
|
||||
SOURCES
|
||||
../../../../src/dbus/qdbus_symbols.cpp
|
||||
)
|
||||
|
||||
add_dependencies(tst_qdbusinterface qmyserver_qdbusinterface)
|
||||
|
120
tests/auto/dbus/qdbusinterface/myobject.h
Normal file
120
tests/auto/dbus/qdbusinterface/myobject.h
Normal file
@ -0,0 +1,120 @@
|
||||
// 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 <QDBusMessage>
|
||||
#include <QDBusContext>
|
||||
#include <QDBusConnection>
|
||||
|
||||
class MyObject: public QObject, protected QDBusContext
|
||||
{
|
||||
Q_OBJECT
|
||||
Q_CLASSINFO("D-Bus Interface", "org.qtproject.QtDBus.MyObject")
|
||||
Q_CLASSINFO("D-Bus Introspection", ""
|
||||
" <interface name=\"org.qtproject.QtDBus.MyObject\" >\n"
|
||||
" <property access=\"readwrite\" type=\"i\" name=\"prop1\" />\n"
|
||||
" <property name=\"complexProp\" type=\"ai\" access=\"readwrite\">\n"
|
||||
" <annotation name=\"org.qtproject.QtDBus.QtTypeName\" value=\"QList<int>\"/>\n"
|
||||
" </property>\n"
|
||||
" <signal name=\"somethingHappened\" >\n"
|
||||
" <arg direction=\"out\" type=\"s\" />\n"
|
||||
" </signal>\n"
|
||||
" <method name=\"ping\" >\n"
|
||||
" <arg direction=\"in\" type=\"v\" name=\"ping\" />\n"
|
||||
" <arg direction=\"out\" type=\"v\" name=\"ping\" />\n"
|
||||
" </method>\n"
|
||||
" <method name=\"ping_invokable\" >\n"
|
||||
" <arg direction=\"in\" type=\"v\" name=\"ping_invokable\" />\n"
|
||||
" <arg direction=\"out\" type=\"v\" name=\"ping_invokable\" />\n"
|
||||
" </method>\n"
|
||||
" <method name=\"ping\" >\n"
|
||||
" <arg direction=\"in\" type=\"v\" name=\"ping1\" />\n"
|
||||
" <arg direction=\"in\" type=\"v\" name=\"ping2\" />\n"
|
||||
" <arg direction=\"out\" type=\"v\" name=\"pong1\" />\n"
|
||||
" <arg direction=\"out\" type=\"v\" name=\"pong2\" />\n"
|
||||
" </method>\n"
|
||||
" <method name=\"ping_invokable\" >\n"
|
||||
" <arg direction=\"in\" type=\"v\" name=\"ping1_invokable\" />\n"
|
||||
" <arg direction=\"in\" type=\"v\" name=\"ping2_invokable\" />\n"
|
||||
" <arg direction=\"out\" type=\"v\" name=\"pong1_invokable\" />\n"
|
||||
" <arg direction=\"out\" type=\"v\" name=\"pong2_invokable\" />\n"
|
||||
" </method>\n"
|
||||
" <method name=\"ping\" >\n"
|
||||
" <arg direction=\"in\" type=\"ai\" name=\"ping\" />\n"
|
||||
" <arg direction=\"out\" type=\"ai\" name=\"ping\" />\n"
|
||||
" <annotation name=\"org.qtproject.QtDBus.QtTypeName.In0\" value=\"QList<int>\"/>\n"
|
||||
" <annotation name=\"org.qtproject.QtDBus.QtTypeName.Out0\" value=\"QList<int>\"/>\n"
|
||||
" </method>\n"
|
||||
" <method name=\"ping_invokable\" >\n"
|
||||
" <arg direction=\"in\" type=\"ai\" name=\"ping_invokable\" />\n"
|
||||
" <arg direction=\"out\" type=\"ai\" name=\"ping_invokable\" />\n"
|
||||
" <annotation name=\"org.qtproject.QtDBus.QtTypeName.In0\" value=\"QList<int>\"/>\n"
|
||||
" <annotation name=\"org.qtproject.QtDBus.QtTypeName.Out0\" value=\"QList<int>\"/>\n"
|
||||
" </method>\n"
|
||||
" </interface>\n"
|
||||
"")
|
||||
Q_PROPERTY(int prop1 READ prop1 WRITE setProp1)
|
||||
Q_PROPERTY(QList<int> complexProp READ complexProp WRITE setComplexProp)
|
||||
|
||||
public:
|
||||
static int callCount;
|
||||
static QVariantList callArgs;
|
||||
MyObject()
|
||||
{
|
||||
QObject *subObject = new QObject(this);
|
||||
subObject->setObjectName("subObject");
|
||||
}
|
||||
|
||||
int m_prop1;
|
||||
int prop1() const
|
||||
{
|
||||
++callCount;
|
||||
return m_prop1;
|
||||
}
|
||||
void setProp1(int value)
|
||||
{
|
||||
++callCount;
|
||||
m_prop1 = value;
|
||||
}
|
||||
|
||||
QList<int> m_complexProp;
|
||||
QList<int> complexProp() const
|
||||
{
|
||||
++callCount;
|
||||
return m_complexProp;
|
||||
}
|
||||
void setComplexProp(const QList<int> &value)
|
||||
{
|
||||
++callCount;
|
||||
m_complexProp = value;
|
||||
}
|
||||
|
||||
Q_INVOKABLE void ping_invokable(QDBusMessage msg)
|
||||
{
|
||||
Q_ASSERT(QDBusContext::calledFromDBus());
|
||||
++callCount;
|
||||
callArgs = msg.arguments();
|
||||
|
||||
msg.setDelayedReply(true);
|
||||
if (!QDBusContext::connection().send(msg.createReply(callArgs)))
|
||||
exit(1);
|
||||
}
|
||||
|
||||
public slots:
|
||||
|
||||
void ping(QDBusMessage msg)
|
||||
{
|
||||
Q_ASSERT(QDBusContext::calledFromDBus());
|
||||
++callCount;
|
||||
callArgs = msg.arguments();
|
||||
|
||||
msg.setDelayedReply(true);
|
||||
if (!QDBusContext::connection().send(msg.createReply(callArgs)))
|
||||
exit(1);
|
||||
}
|
||||
};
|
||||
|
||||
#endif // INTERFACE_H
|
16
tests/auto/dbus/qdbusinterface/qmyserver/CMakeLists.txt
Normal file
16
tests/auto/dbus/qdbusinterface/qmyserver/CMakeLists.txt
Normal file
@ -0,0 +1,16 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
#####################################################################
|
||||
## qmyserver_qdbusinterface Binary:
|
||||
#####################################################################
|
||||
|
||||
qt_internal_add_executable(qmyserver_qdbusinterface
|
||||
OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/"
|
||||
NO_INSTALL
|
||||
SOURCES
|
||||
../myobject.h
|
||||
qmyserver.cpp
|
||||
LIBRARIES
|
||||
Qt::DBus
|
||||
)
|
148
tests/auto/dbus/qdbusinterface/qmyserver/qmyserver.cpp
Normal file
148
tests/auto/dbus/qdbusinterface/qmyserver/qmyserver.cpp
Normal file
@ -0,0 +1,148 @@
|
||||
// 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 "../myobject.h"
|
||||
|
||||
static const char serviceName[] = "org.qtproject.autotests.qmyserver";
|
||||
static const char objectPath[] = "/org/qtproject/qmyserver";
|
||||
//static const char *interfaceName = serviceName;
|
||||
|
||||
int MyObject::callCount = 0;
|
||||
QVariantList MyObject::callArgs;
|
||||
|
||||
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")
|
||||
{
|
||||
connect(this, SIGNAL(newConnection(QDBusConnection)), SLOT(handleConnection(QDBusConnection)));
|
||||
}
|
||||
|
||||
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();
|
||||
}
|
||||
|
||||
void emitSignal(const QString &interface, const QString &name, const QString &arg)
|
||||
{
|
||||
QDBusMessage msg = QDBusMessage::createSignal("/", interface, name);
|
||||
msg << arg;
|
||||
m_conn.send(msg);
|
||||
}
|
||||
|
||||
void reset()
|
||||
{
|
||||
MyObject::callCount = 0;
|
||||
obj.m_complexProp.clear();
|
||||
}
|
||||
|
||||
int callCount()
|
||||
{
|
||||
return MyObject::callCount;
|
||||
}
|
||||
|
||||
QVariantList callArgs()
|
||||
{
|
||||
return MyObject::callArgs;
|
||||
}
|
||||
|
||||
void setProp1(int val)
|
||||
{
|
||||
obj.m_prop1 = val;
|
||||
}
|
||||
|
||||
int prop1()
|
||||
{
|
||||
return obj.m_prop1;
|
||||
}
|
||||
|
||||
void setComplexProp(QList<int> val)
|
||||
{
|
||||
obj.m_complexProp = val;
|
||||
}
|
||||
|
||||
QList<int> complexProp()
|
||||
{
|
||||
return obj.m_complexProp;
|
||||
}
|
||||
|
||||
bool interactiveAuthorization()
|
||||
{
|
||||
if (message().isInteractiveAuthorizationAllowed())
|
||||
return true;
|
||||
|
||||
sendErrorReply(QStringLiteral("org.freedesktop.DBus.Error.InteractiveAuthorizationRequired"),
|
||||
QStringLiteral("Interactive authentication required."));
|
||||
return false;
|
||||
}
|
||||
|
||||
void quit()
|
||||
{
|
||||
qApp->quit();
|
||||
}
|
||||
|
||||
private slots:
|
||||
void handleConnection(const QDBusConnection& con)
|
||||
{
|
||||
m_conn = con;
|
||||
m_conn.registerObject("/", &obj, QDBusConnection::ExportAllProperties
|
||||
| QDBusConnection::ExportAllSlots
|
||||
| QDBusConnection::ExportAllInvokables);
|
||||
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"
|
1152
tests/auto/dbus/qdbusinterface/tst_qdbusinterface.cpp
Normal file
1152
tests/auto/dbus/qdbusinterface/tst_qdbusinterface.cpp
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user