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
|
#!/usr/bin/env python
from twisted.internet import reactor
from txdbus import client, objects
from txdbus.interface import DBusInterface, Method, Signal
class ExampleException (Exception):
dbusErrorName = 'org.example.ExampleException'
class MyObj (objects.DBusObject):
count = 0
iface = DBusInterface('org.example.MyIFace',
Method('throwError'))
dbusInterfaces = [iface]
def __init__(self, objectPath):
objects.DBusObject.__init__(self, objectPath)
def dbus_throwError(self):
self.count += 1
raise ExampleException('Exception count %d' % self.count)
def onConnected(conn):
conn.exportObject( MyObj('/MyObjPath') )
return conn.requestBusName('org.example')
d = client.connect(reactor)
d.addCallback(onConnected)
reactor.run()
|