mirror of
https://git.kernel.org/pub/scm/bluetooth/bluez.git
synced 2024-12-05 01:54:22 +08:00
154 lines
3.5 KiB
Python
Executable File
154 lines
3.5 KiB
Python
Executable File
#!/usr/bin/python
|
|
|
|
from __future__ import absolute_import, print_function, unicode_literals
|
|
|
|
from gi.repository import GObject
|
|
|
|
import os
|
|
import sys
|
|
import dbus
|
|
import dbus.service
|
|
import dbus.mainloop.glib
|
|
from optparse import OptionParser, make_option
|
|
|
|
hfp_record = """
|
|
<?xml version="1.0" encoding="UTF-8" ?>
|
|
|
|
<record>
|
|
<attribute id="0x0000">
|
|
<uint32 value="0x00010002" />
|
|
</attribute>
|
|
<attribute id="0x0001">
|
|
<sequence>
|
|
<uuid value="0x111e" />
|
|
<uuid value="0x1203" />
|
|
</sequence>
|
|
</attribute>
|
|
<attribute id="0x0004">
|
|
<sequence>
|
|
<sequence>
|
|
<uuid value="0x0100" />
|
|
</sequence>
|
|
<sequence>
|
|
<uuid value="0x0003" />
|
|
<uint8 value="0x07" />
|
|
</sequence>
|
|
</sequence>
|
|
</attribute>
|
|
<attribute id="0x0005">
|
|
<sequence>
|
|
<uuid value="0x1002" />
|
|
</sequence>
|
|
</attribute>
|
|
<attribute id="0x0009">
|
|
<sequence>
|
|
<sequence>
|
|
<uuid value="0x111e" />
|
|
<uint16 value="0x0105" />
|
|
</sequence>
|
|
</sequence>
|
|
</attribute>
|
|
<attribute id="0x0100">
|
|
<text value="Handsfree" />
|
|
</attribute>
|
|
<attribute id="0x0311">
|
|
<uint16 value="0x0031" />
|
|
</attribute>
|
|
</record>
|
|
"""
|
|
|
|
class Profile(dbus.service.Object):
|
|
@dbus.service.method("org.bluez.Profile1",
|
|
in_signature="", out_signature="")
|
|
def Release(self):
|
|
print("Release")
|
|
mainloop.quit()
|
|
|
|
@dbus.service.method("org.bluez.Profile1",
|
|
in_signature="", out_signature="")
|
|
def Cancel(self):
|
|
print("Cancel")
|
|
|
|
@dbus.service.method("org.bluez.Profile1",
|
|
in_signature="oha{sv}", out_signature="")
|
|
def NewConnection(self, path, fd, properties):
|
|
fd = fd.take()
|
|
print("NewConnection(%s, %d)" % (path, fd))
|
|
for key in properties.keys():
|
|
if key == "Version" or key == "Features":
|
|
print(" %s = 0x%04x" % (key, properties[key]))
|
|
else:
|
|
print(" %s = %s" % (key, properties[key]))
|
|
|
|
os.close(fd)
|
|
|
|
if __name__ == '__main__':
|
|
dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)
|
|
|
|
bus = dbus.SystemBus()
|
|
|
|
manager = dbus.Interface(bus.get_object("org.bluez",
|
|
"/org/bluez"), "org.bluez.ProfileManager1")
|
|
|
|
option_list = [
|
|
make_option("-u", "--uuid", action="store",
|
|
type="string", dest="uuid",
|
|
default="spp"),
|
|
make_option("-p", "--path", action="store",
|
|
type="string", dest="path",
|
|
default="/foo/bar/profile"),
|
|
make_option("-n", "--name", action="store",
|
|
type="string", dest="name",
|
|
default="Test Profile"),
|
|
make_option("-s", "--server",
|
|
action="store_const",
|
|
const="server", dest="role"),
|
|
make_option("-c", "--client",
|
|
action="store_const",
|
|
const="client", dest="role"),
|
|
make_option("-a", "--auto-connect",
|
|
action="store_true",
|
|
dest="auto_connect", default=False),
|
|
make_option("-P", "--PSM", action="store",
|
|
type="int", dest="psm"),
|
|
make_option("-C", "--channel", action="store",
|
|
type="int", dest="channel"),
|
|
make_option("-r", "--record", action="store",
|
|
type="string", dest="record",
|
|
default=None),
|
|
]
|
|
|
|
parser = OptionParser(option_list=option_list)
|
|
|
|
(options, args) = parser.parse_args()
|
|
|
|
profile = Profile(bus, options.path)
|
|
|
|
mainloop = GObject.MainLoop()
|
|
|
|
if options.uuid == "hfp":
|
|
options.channel = 7
|
|
options.record = hfp_record
|
|
options.name = "HFP HandsFree"
|
|
|
|
opts = {
|
|
"Name" : options.name,
|
|
"AutoConnect" : options.auto_connect,
|
|
}
|
|
|
|
if (options.role):
|
|
opts["Role"] = options.role
|
|
|
|
if (options.psm):
|
|
opts["PSM"] = dbus.UInt16(options.psm)
|
|
|
|
if (options.channel):
|
|
opts["Channel"] = dbus.UInt16(options.channel)
|
|
|
|
if (options.record):
|
|
opts["ServiceRecord"] = options.record
|
|
|
|
manager.RegisterProfile(options.path, options.uuid, opts)
|
|
|
|
mainloop.run()
|