0

我正在尝试编写 dbus 服务器,我想在其中运行一些外部 shell 程序(grephere)来完成这项工作。

当我做:

提示$ server.py

然后:

prompt$ client.py # 工作正常,即。在子进程中运行 grep 命令。

prompt$ client.py # ...,但第二次调用会产生以下错误消息:

DBusException:org.freedesktop.DBus.Error.ServiceUnknown:名称 org.example.ExampleService 不是由任何 .service 文件提供的

我被困住了。你能帮助我吗?

这里是 server.py(之后是 client.py):

import gtk, glib
import os
import dbus
import dbus.service
import dbus.mainloop.glib
import subprocess

messages_queue=list()
grep_pid=0


def queue_msg(message):
    global messages_queue
    messages_queue.append(message)
    return

def dequeue_msg():
    global messages_queue,grep_pid
    if grep_pid != 0:
        try:
            pid=os.waitpid(grep_pid,os.P_NOWAIT)
        except:
            return True
        if pid[0] == 0:
            return True
        grep_pid=0

    if len(messages_queue) == 0:
            return True
    else:
            tekst=messages_queue.pop(0)

        cmd="grep 'pp'"

        print cmd
        #works fine, when I do return here
        #return True

    grep_pid=os.fork()
    if grep_pid != 0:
        return True
    os.setpgid(0,0)
    pop=subprocess.Popen(cmd,shell=True,stdin=subprocess.PIPE)
    pop.stdin.write(tekst)
    pop.stdin.close()
    pop.wait()
    exit(0)

class DemoException(dbus.DBusException):
    _dbus_error_name = 'org.example.Exception'

class MyServer(dbus.service.Object):

    @dbus.service.method("org.example.ExampleInterface",
                         in_signature='', out_signature='')
    def QueueMsg(self):
            queue_msg("ppppp")

    @dbus.service.method("org.example.ExampleInterface",
                         in_signature='', out_signature='')
    def Exit(self):
        mainloop.quit()

from dbus.mainloop.glib import threads_init

if __name__ == '__main__':
        glib.threads_init()

        threads_init()

        dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)

        session_bus = dbus.SessionBus()
        name = dbus.service.BusName("org.example.ExampleService", session_bus)
        object = MyServer(session_bus, '/My')

        glib.timeout_add_seconds(1, dequeue_msg)
        mainloop = glib.MainLoop()
        print "Running example service."
        mainloop.run()

现在client.py:

import sys
from traceback import print_exc
import dbus

def main():
    bus = dbus.SessionBus()

    try:
        remote_object = bus.get_object("org.example.ExampleService",
                                       "/My")

    except dbus.DBusException:
        print_exc()
        sys.exit(1)

    iface = dbus.Interface(remote_object, "org.example.ExampleInterface")

    iface.QueueMsg()

    if sys.argv[1:] == ['--exit-service']:
        iface.Exit()

if __name__ == '__main__':
    main()
4

2 回答 2

0

关于丢失 .service 文件的错误消息意味着您需要在 dbus-1/services 中创建一个服务文件。

例如:

# /usr/local/share/dbus-1/services/org.example.ExampleService.service
[D-BUS Service]
Name=org.example.ExampleService
Exec=/home/user1401567/service.py

很多教程都没有包含这个细节(也许 .service 文件过去不是必需的?)但是,至少在 Ubuntu 12.04 上,没有它就无法连接 dbus 服务。

于 2012-10-01T01:47:35.967 回答
0

当您尝试访问不再可用的服务时,通常会收到此错误消息。检查您的服务器是否仍在运行。

你可以使用d-feet来调试你的 dbus 连接。

于 2012-06-01T07:02:08.177 回答