-
-
Save ohcibi/f7c5f740b1ff46d1c6ae67b25078b1f7 to your computer and use it in GitHub Desktop.
Simple client-service dbus example in python.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import dbus | |
bus = dbus.SystemBus() | |
service = bus.get_object('com.example.service', "/com/example/service") | |
message = service.get_dbus_method('get_message', 'com.example.service.Message') | |
quit = service.get_dbus_method('quit', 'com.example.service.Quit') | |
print("Mesage from service: " + message()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import dbus | |
import dbus.service | |
import dbus.mainloop.glib | |
import gobject | |
class Service(dbus.service.Object): | |
def __init__(self, message): | |
self._message = message | |
def run(self): | |
dbus.mainloop.glib.DBusGMainLoop(set_as_default=True) | |
bus_name = dbus.service.BusName("com.example.service", dbus.SystemBus()) | |
dbus.service.Object.__init__(self, bus_name, "/com/example/service") | |
self._loop = gobject.MainLoop() | |
print "Service running..." | |
self._loop.run() | |
print "Service stopped" | |
@dbus.service.method("com.example.service.Message", in_signature='', out_signature='s') | |
def get_message(self): | |
print " sending message" | |
return self._message | |
@dbus.service.method("com.example.service.Quit", in_signature='', out_signature='') | |
def quit(self): | |
print " shutting down" | |
self._loop.quit() | |
if __name__ == "__main__": | |
Service("This is the service").run() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment