在python中动态创建DBus信号

时间:2012-06-07 07:25:58

标签: python metaprogramming dbus

我已经阅读了一些与动态创建python方法相关的主题,并且我按照他们的说明操作,但它不起作用。我不知道是不是因为我使用了装饰器@或其他东西。

代码就在这里,非常简单。

运行此代码时,没有发生错误,但是当我使用D-feet(检查dbus信息的工具)时,我找不到我创建的新信号。

#!/usr/bin/python

import dbus
import dbus.service
import dbus.glib
import gobject
from dbus.mainloop.glib import DBusGMainLoop

import psutil

class EventServer(dbus.service.Object):
    i = 0

    @dbus.service.signal('com.github.bxshi.event')
    def singal_example(self,msg):
        """ example of singals
        """
        print msg

    def __init__(self):
        bus_name = dbus.service.BusName('com.github.bxshi.event', bus=dbus.SessionBus())
        dbus.service.Object.__init__(self, bus_name, '/com/github/bxshi/event')

    def create(self):
        self.i +=1
        setattr(self.__class__, 'signal_'+str(self.i), self.singal_example)


if __name__ == "__main__":
    DBusGMainLoop(set_as_default=True)
    bus = dbus.SessionBus()
    eventserver = EventServer()
    gobject.timeout_add(1000,eventserver.create)
    loop = gobject.MainLoop()
    loop.run() 

1 个答案:

答案 0 :(得分:0)

  1. 你有一个拼写错误:singal_example而不是signal_example
  2. create - 您在课堂上调用setattr的方法中。我不知道你要做什么,但你应该只是发出信号
  3. 这是固定的例子:

    #!/usr/bin/python
    
    import dbus
    import dbus.service
    import dbus.glib
    import gobject
    from dbus.mainloop.glib import DBusGMainLoop
    
    #import psutil
    
    class EventServer(dbus.service.Object):
        i = 0
    
        @dbus.service.signal('com.github.bxshi.event')
        def signal_example(self,msg):
            """ example of singals
            """
            print msg
    
        def __init__(self):
            bus_name = dbus.service.BusName('com.github.bxshi.event', bus=dbus.SessionBus())
            dbus.service.Object.__init__(self, bus_name, '/com/github/bxshi/event')
    
        def create(self):
            self.i +=1
            #setattr(self.__class__, 'signal_'+str(self.i), self.singal_example)
            self.signal_example('msg: %d' % self.i)
    
    
    if __name__ == "__main__":
        DBusGMainLoop(set_as_default=True)
        bus = dbus.SessionBus()
        eventserver = EventServer()
        gobject.timeout_add(1000,eventserver.create)
        loop = gobject.MainLoop()
        loop.run()
    

    之后,您可以连接到信号:

    # ...
    bus = dbus.Bus()
    service=bus.get_object('com.github.bxshi.event', '/com/github/bxshi/event')
    service.connect_to_signal("signal_example", listener)
    # ...