source: trunk/examples/dbus/complexpingpong/complexping.cpp@ 561

Last change on this file since 561 was 561, checked in by Dmitry A. Kuminov, 15 years ago

trunk: Merged in qt 4.6.1 sources.

File size: 4.3 KB
RevLine 
[2]1/****************************************************************************
2**
3** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
[561]4** All rights reserved.
5** Contact: Nokia Corporation ([email protected])
[2]6**
7** This file is part of the examples of the Qt Toolkit.
8**
9** $QT_BEGIN_LICENSE:LGPL$
10** Commercial Usage
11** Licensees holding valid Qt Commercial licenses may use this file in
12** accordance with the Qt Commercial License Agreement provided with the
13** Software or, alternatively, in accordance with the terms contained in
14** a written agreement between you and Nokia.
15**
16** GNU Lesser General Public License Usage
17** Alternatively, this file may be used under the terms of the GNU Lesser
18** General Public License version 2.1 as published by the Free Software
19** Foundation and appearing in the file LICENSE.LGPL included in the
20** packaging of this file. Please review the following information to
21** ensure the GNU Lesser General Public License version 2.1 requirements
22** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
23**
[561]24** In addition, as a special exception, Nokia gives you certain additional
25** rights. These rights are described in the Nokia Qt LGPL Exception
26** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
[2]27**
28** GNU General Public License Usage
29** Alternatively, this file may be used under the terms of the GNU
30** General Public License version 3.0 as published by the Free Software
31** Foundation and appearing in the file LICENSE.GPL included in the
32** packaging of this file. Please review the following information to
33** ensure the GNU General Public License version 3.0 requirements will be
34** met: http://www.gnu.org/copyleft/gpl.html.
35**
[561]36** If you have questions regarding the use of this file, please contact
37** Nokia at [email protected].
[2]38** $QT_END_LICENSE$
39**
40****************************************************************************/
41
42#include <stdio.h>
43
44#include <QtCore/QCoreApplication>
45#include <QtCore/QFile>
46#include <QtCore/QDebug>
47#include <QtCore/QProcess>
48#include <QtDBus/QtDBus>
49
50#include "ping-common.h"
51#include "complexping.h"
52
53void Ping::start(const QString &name, const QString &oldValue, const QString &newValue)
54{
55 Q_UNUSED(oldValue);
56
57 if (name != SERVICE_NAME || newValue.isEmpty())
58 return;
59
60 // open stdin for reading
61 qstdin.open(stdin, QIODevice::ReadOnly);
62
63 // find our remote
64 iface = new QDBusInterface(SERVICE_NAME, "/", "com.trolltech.QtDBus.ComplexPong.Pong",
65 QDBusConnection::sessionBus(), this);
66 if (!iface->isValid()) {
67 fprintf(stderr, "%s\n",
68 qPrintable(QDBusConnection::sessionBus().lastError().message()));
69 QCoreApplication::instance()->quit();
70 }
71
72 connect(iface, SIGNAL(aboutToQuit()), QCoreApplication::instance(), SLOT(quit()));
73
74 while (true) {
75 printf("Ask your question: ");
76
77 QString line = QString::fromLocal8Bit(qstdin.readLine()).trimmed();
78 if (line.isEmpty()) {
79 iface->call("quit");
80 return;
81 } else if (line == "value") {
82 QVariant reply = iface->property("value");
83 if (!reply.isNull())
84 printf("value = %s\n", qPrintable(reply.toString()));
85 } else if (line.startsWith("value=")) {
86 iface->setProperty("value", line.mid(6));
87 } else {
88 QDBusReply<QDBusVariant> reply = iface->call("query", line);
89 if (reply.isValid())
90 printf("Reply was: %s\n", qPrintable(reply.value().variant().toString()));
91 }
92
93 if (iface->lastError().isValid())
94 fprintf(stderr, "Call failed: %s\n", qPrintable(iface->lastError().message()));
95 }
96}
97
98int main(int argc, char **argv)
99{
100 QCoreApplication app(argc, argv);
101
102 if (!QDBusConnection::sessionBus().isConnected()) {
103 fprintf(stderr, "Cannot connect to the D-Bus session bus.\n"
104 "To start it, run:\n"
105 "\teval `dbus-launch --auto-syntax`\n");
106 return 1;
107 }
108
109 Ping ping;
110 ping.connect(QDBusConnection::sessionBus().interface(),
111 SIGNAL(serviceOwnerChanged(QString,QString,QString)),
112 SLOT(start(QString,QString,QString)));
113
114 QProcess pong;
115 pong.start("./complexpong");
116
117 app.exec();
118}
Note: See TracBrowser for help on using the repository browser.