summaryrefslogtreecommitdiff
path: root/test/test-service
blob: 09e351f09fede26973184ca6e1101b3671e5a4b7 (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
#!/usr/bin/python

from __future__ import absolute_import, print_function, unicode_literals

import sys
import dbus
import time
from optparse import OptionParser, make_option
import bluezutils

bus = dbus.SystemBus()

option_list = [
		make_option("-i", "--device", action="store",
				type="string", dest="dev_id"),
		]
parser = OptionParser(option_list=option_list)

(options, args) = parser.parse_args()

adapter_path = bluezutils.find_adapter(options.dev_id).object_path

service = dbus.Interface(bus.get_object("org.bluez", adapter_path),
						"org.bluez.Service")

if (len(args) < 1):
	print("Usage: %s <command>" % (sys.argv[0]))
	print("")
	print("  addrecord <file>")
	sys.exit(1)

if (args[0] == "addrecord"):
	if (len(args) < 2):
		print("Need file parameter")
	else:
		f = open(args[1])
		record = f.read()
		f.close()
		handle = service.AddRecord(record)
		print("0x%x" % (handle))
		time.sleep(120)
	sys.exit(0)

print("Unknown command")
sys.exit(1)