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
|
#!/usr/bin/env python
from twisted.internet import reactor
from txdbus import client
from txdbus.interface import DBusInterface, Method
iface = DBusInterface( 'org.freedesktop.DBus.Peer',
Method('Ping')
)
def onConnected(cli):
d = cli.getRemoteObject( 'org.example', '/MyObjPath', iface )
def gotObject( ro ):
def onReply( rep ):
print 'Object is available'
reactor.stop()
def onErr( err ):
print 'Object does not exist. Retrying...'
def ping():
reactor.callLater(1, ping)
ro.callRemote('Ping').addCallbacks( onReply, onErr )
ping()
d.addCallbacks( gotObject )
return d
def onFailed(err):
print 'Failed: ', err.getErrorMessage()
dc = client.connect(reactor)
dc.addCallbacks(onConnected)
dc.addErrback(onFailed)
reactor.run()
|