summaryrefslogtreecommitdiffstats
path: root/demo/dbus-python-service.py
blob: 3abedc1eddcb717c76aab37ca313bd21d4f1dfa0 (plain)
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
#!/usr/bin/env python2.5
#
#  json dbus bridge
#
#  Copyright (c) 2009 by Michael Olbrich <m.olbrich@pengutronix.de>
#
#  This program is free software; you can redistribute it and/or modify
#  it under the terms of the GNU Lesser General Public License as
#  published by the Free Software Foundation; either version 2.1 of
#  the License, or (at your option) any later version.
#
#  This program is distributed in the hope that it will be useful,
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#  GNU Lesser General Public License for more details.
#
#  You should have received a copy of the GNU General Public License
#  along with this program.  If not, see <http://www.gnu.org/licenses/>.
#

import gobject

import dbus
import dbus.service
import dbus.mainloop.glib

class Service(dbus.service.Object):
	def __init__(self, bus, name):
		self._state = 1
		dbus.service.Object.__init__(self, None, "/", name)

	@dbus.service.method("com.pengutronix.devel.Data",
		in_signature='', out_signature='a{sai}')
	def Dump(self):
		return {"foo": [1, 2], "bar": [3, 4] }

if __name__ == '__main__':
	dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)

	session_bus = dbus.SessionBus()
	name = dbus.service.BusName("com.pengutronix.devel.demo1", session_bus)
	object = Service(session_bus, name)

	mainloop = gobject.MainLoop()
	mainloop.run()