2022-05-10 10:06:48 +00:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
#include "ping-common.h"
|
|
|
|
#include "pong.h"
|
|
|
|
|
2021-01-08 11:57:47 +00:00
|
|
|
#include <QCoreApplication>
|
|
|
|
#include <QDBusConnection>
|
|
|
|
#include <QDBusError>
|
|
|
|
#include <QTimer>
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
QString Pong::ping(const QString &arg)
|
|
|
|
{
|
|
|
|
QMetaObject::invokeMethod(QCoreApplication::instance(), "quit");
|
|
|
|
return QString("ping(\"%1\") got called").arg(arg);
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
QCoreApplication app(argc, argv);
|
|
|
|
|
|
|
|
if (!QDBusConnection::sessionBus().isConnected()) {
|
|
|
|
fprintf(stderr, "Cannot connect to the D-Bus session bus.\n"
|
|
|
|
"To start it, run:\n"
|
|
|
|
"\teval `dbus-launch --auto-syntax`\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!QDBusConnection::sessionBus().registerService(SERVICE_NAME)) {
|
|
|
|
fprintf(stderr, "%s\n",
|
2013-03-14 23:42:15 +00:00
|
|
|
qPrintable(QDBusConnection::sessionBus().lastError().message()));
|
2011-04-27 10:05:43 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
Pong pong;
|
|
|
|
QDBusConnection::sessionBus().registerObject("/", &pong, QDBusConnection::ExportAllSlots);
|
2013-03-14 23:42:15 +00:00
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
app.exec();
|
|
|
|
return 0;
|
|
|
|
}
|