1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
#!/usr/bin/env python
from twisted.internet import reactor
from txdbus import client, objects
from txdbus.interface import DBusInterface, Method, Signal
class SignalSender (objects.DBusObject):
iface = DBusInterface( 'org.example.SignalSender',
Signal('tick', 'u')
)
dbusInterfaces = [iface]
def __init__(self, objectPath):
objects.DBusObject.__init__(self, objectPath)
self.count = 0
def sendTick(self):
self.emitSignal('tick', self.count)
self.count += 1
reactor.callLater(1, self.sendTick)
def onErr(err):
print 'Failed: ', err.getErrorMessage()
reactor.stop()
def onConnected(conn):
s = SignalSender('/Signaller')
conn.exportObject( s )
dn = conn.requestBusName('org.example')
def onReady(_):
print 'Emitting periodic "tick" signals. Bus name: org.example, Object Path /Signaller'
s.sendTick()
dn.addCallback( onReady )
return dn
dconnect = client.connect(reactor)
dconnect.addCallback(onConnected)
dconnect.addErrback(onErr)
reactor.run()
|