如何在没有桌面环境的CentOS中使用dbus

问题描述 投票:0回答:1

我的系统是一个没有gui的centos。我有一个服务器应用程序,它在会话dbus中“监听”方法调用。它显然工作正常。我有pydbuspython3-gobject安装好,我也有dbus-launch工作。这是服务器应用程序:

from pydbus import SessionBus
from gi.repository import GLib
import time

# Variables / Constants / Instantiation...
bus = SessionBus()
BUS = "org.mybus.demo.test"
loop = GLib.MainLoop()
message_count = 0

class DBusService_XML():
    """
    DBus Service XML Definition.
    type = "i" for integer, "s" for string, "d" for double, "as" list of string data.
    """
    dbus = """
    <node>
        <interface name="{}">
            <method name='greeting'>
                <arg type="s" name="input" direction="in">
                </arg>
                <arg type="s" name="output" direction="out">
                </arg>
            </method>
        </interface>
    </node>
    """.format(BUS)

    def greeting(self, clientName):
        "Receive and send arg"
        print("{} is asking for name".format(clientName))
        return "Hello {}, Im Kyle".format(clientName)

if __name__ == "__main__":
    bus.publish(BUS, DBusService_XML())
    loop.run()

现在为了调用那个服务器方法,从另一个终端(同一个用户)我试图使用我的客户端应用程序失败了,然后我尝试了gdbus应用程序失败,出现同样的错误如下:

# dbus-launch gdbus call --session --dest org.mybus.demo.test --object-path /org/mybus/demo/test --method org.mybus.demo.test.greeting "Julia"
Error: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name org.mybus.demo.test was not provided by any .service files

从桌面环境的另一台机器一切正常。我四处搜索,但在那种情况下无法找到使用dbus的方法。有人可以帮忙吗?

x11 dbus pygobject gobject gdbus
1个回答
0
投票

除非您从客户端调用该方法时服务已在运行,否则您需要为其启用服务激活,这涉及编写org.mybus.demo.test.service文件并将其放入/usr/share/dbus-1/services。见the specification。它可能看起来像:

[D-BUS Service]
Name=org.mybus.demo.test
Exec=/path/to/your/application.py
© www.soinside.com 2019 - 2024. All rights reserved.