#include <QDBusConnection>
#include <QDBusInterface>
#include <QDBusMessage>
#include <QDebug>
#include <QDateTime>
#include <cstdlib>
int main (int /*argc*/, char ** /*argv*/)
{
QDBusConnection dbConnection = QDBusConnection::systemBus();
QDBusInterface dbInterface (
"org.freedesktop.timedate1.set-time"
, "/org/freedesktop/timedate1/set-time/Manager"
, "org.freedesktop.timedate1.set-time.Manager"
, dbConnection);
qDebug() << "DBus interface validation: " << dbInterface.isValid();
if (dbInterface.isValid()) {
QDBusMessage dbMessage = dbInterface.call ("SetTime", QDateTime::currentDateTime().toMSecsSinceEpoch() * 1000, false, false);
qDebug() << "DBus message: " << dbMessage;
}
return EXIT_SUCCESS;
}
しかし、私は持っている:DBus interface validation: false
を。
私はコンソールに呼び出す場合:ソースコード
node /org/freedesktop/timedate1 {
interface org.freedesktop.DBus.Peer {
...
};
interface org.freedesktop.DBus.Introspectable {
...
};
interface org.freedesktop.DBus.Properties {
methods:
...
signals:
...
properties:
};
interface org.freedesktop.timedate1 {
methods:
SetTime(in x arg_0,
in b arg_1,
in b arg_2);
...
signals:
properties:
...
};
};
とGitLabで入手可能なスクリプトを作成:
$ gdbus introspect \
--system \
--dest org.freedesktop.timedate1 \
--object-path /org/freedesktop/timedate1
私はいくつかの関連出力を得る(それは環境に問題がないように見えますので)。
オブジェクトをインスタンス化する必要があるように見えます。私が「d-feet」で見ると、そこにはありません。次に、terminal-timedate1から '$ gdbus introspect --system --dest org.freedesktop.timedate1 --object-path/org/freedesktop/timedate1'が起動します(Qtアプリケーションはそれを有効と報告します)。 – Velkan
@Velkan、 'オブジェクトをインスタンス化する必要があるように見えます.''私はD-Busに慣れていません。あなたは私が何をすべきか説明できますか? – Gluttton