• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/usr/bin/python
2# Script for testing the Attribute D-Bus API
3
4import sys
5from optparse import OptionParser, OptionValueError
6from binascii import hexlify, unhexlify
7
8import gobject
9
10import sys
11import dbus
12import dbus.mainloop.glib
13from optparse import OptionParser, make_option
14
15dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)
16bus = dbus.SystemBus()
17mainloop = gobject.MainLoop()
18
19manager = dbus.Interface(bus.get_object("org.bluez", "/"), "org.bluez.Manager")
20
21option_list = [
22		make_option("-i", "--device", action="store",
23				type="string", dest="dev_id"),
24		]
25parser = OptionParser(option_list=option_list)
26
27(options, args) = parser.parse_args()
28
29if options.dev_id:
30	adapter_path = manager.FindAdapter(options.dev_id)
31else:
32	adapter_path = manager.DefaultAdapter()
33
34adapter = dbus.Interface(bus.get_object("org.bluez", adapter_path),
35							"org.bluez.Adapter")
36
37if (len(args) < 1):
38	print "Usage: %s <command>" % (sys.argv[0])
39	print ""
40	print "	 list"
41	print "	 services <address>"
42	print "	 discover <service path>"
43	print "	 chars <service path>"
44	sys.exit(1)
45
46if (args[0] == "list"):
47	for path in adapter.ListDevices():
48		device = dbus.Interface(bus.get_object("org.bluez", path),
49							"org.bluez.Device")
50		devprop = device.GetProperties()
51		print "[ %s ]" % devprop["Address"]
52		for path in devprop["Services"]:
53
54			service = dbus.Interface(bus.get_object("org.bluez", path),
55									 "org.bluez.Characteristic")
56			srvprop = service.GetProperties()
57			print " * %s" % (path)
58			print "	UUID: %s" % srvprop["UUID"]
59			print "	Chars: ",
60			for char in srvprop["Characteristics"]:
61				print "%s " % char,
62			print
63			print
64		print
65	sys.exit(0)
66
67if (args[0] == "services"):
68	if (len(args) < 2):
69		print "Need address parameter"
70	else:
71		path = adapter.FindDevice(args[1])
72		device = dbus.Interface(bus.get_object("org.bluez", path),
73							"org.bluez.Device")
74		properties = device.GetProperties()
75		for path in properties["Services"]:
76			print path
77	sys.exit(0)
78
79if (args[0] == "discover"):
80	if (len(args) < 2):
81		print "Need service path parameter"
82	else:
83		service = dbus.Interface(bus.get_object("org.bluez", args[1]),
84							"org.bluez.Characteristic")
85		for path in service.DiscoverCharacteristics():
86			print path
87	sys.exit(0)
88
89if (args[0] == "chars"):
90	if (len(args) < 2):
91		print "Need service path parameter"
92	else:
93		service = dbus.Interface(bus.get_object("org.bluez", args[1]),
94								 "org.bluez.Characteristic")
95		srvprop = service.GetProperties()
96		for path in srvprop["Characteristics"]:
97			print "[ %s ]" % (path)
98			char = dbus.Interface(bus.get_object("org.bluez", path),
99								 "org.bluez.Characteristic")
100			charprop = char.GetProperties()
101			print "	Name: %s" % charprop["Name"]
102			print "	UUID: %s" % charprop["UUID"]
103			print
104		print
105	sys.exit(0)
106
107print "Unknown command"
108sys.exit(1)
109