2007-05-21 20:51:48 +08:00
|
|
|
#!/usr/bin/python
|
|
|
|
|
2012-05-25 13:44:25 +08:00
|
|
|
from __future__ import absolute_import, print_function, unicode_literals
|
|
|
|
|
2008-06-08 21:23:35 +08:00
|
|
|
import sys
|
2007-05-21 20:51:48 +08:00
|
|
|
import time
|
|
|
|
import dbus
|
2012-12-05 20:51:30 +08:00
|
|
|
import bluezutils
|
2007-05-21 20:51:48 +08:00
|
|
|
|
|
|
|
xml = ' \
|
|
|
|
<?xml version="1.0" encoding="UTF-8" ?> \
|
|
|
|
<record> \
|
|
|
|
<attribute id="0x0001"> \
|
|
|
|
<sequence> \
|
|
|
|
<uuid value="0x1101"/> \
|
|
|
|
</sequence> \
|
|
|
|
</attribute> \
|
2007-05-21 22:18:27 +08:00
|
|
|
\
|
2007-05-22 00:16:23 +08:00
|
|
|
<attribute id="0x0002"> \
|
|
|
|
<uint32 value="0"/> \
|
|
|
|
</attribute> \
|
|
|
|
\
|
2007-05-21 22:18:27 +08:00
|
|
|
<attribute id="0x0003"> \
|
|
|
|
<uuid value="00001101-0000-1000-8000-00805f9b34fb"/> \
|
|
|
|
</attribute> \
|
|
|
|
\
|
2007-05-21 20:51:48 +08:00
|
|
|
<attribute id="0x0004"> \
|
|
|
|
<sequence> \
|
|
|
|
<sequence> \
|
|
|
|
<uuid value="0x0100"/> \
|
|
|
|
</sequence> \
|
|
|
|
<sequence> \
|
|
|
|
<uuid value="0x0003"/> \
|
2007-05-21 22:18:27 +08:00
|
|
|
<uint8 value="23"/> \
|
2007-05-21 20:51:48 +08:00
|
|
|
</sequence> \
|
|
|
|
</sequence> \
|
|
|
|
</attribute> \
|
2007-05-21 22:18:27 +08:00
|
|
|
\
|
2007-05-22 00:16:23 +08:00
|
|
|
<attribute id="0x0005"> \
|
|
|
|
<sequence> \
|
|
|
|
<uuid value="0x1002"/> \
|
|
|
|
</sequence> \
|
|
|
|
</attribute> \
|
|
|
|
\
|
2007-05-21 22:18:27 +08:00
|
|
|
<attribute id="0x0006"> \
|
|
|
|
<sequence> \
|
|
|
|
<uint16 value="0x656e"/> \
|
|
|
|
<uint16 value="0x006a"/> \
|
|
|
|
<uint16 value="0x0100"/> \
|
|
|
|
</sequence> \
|
|
|
|
</attribute> \
|
|
|
|
\
|
2007-05-22 00:43:46 +08:00
|
|
|
<attribute id="0x0007"> \
|
|
|
|
<uint32 value="0"/> \
|
|
|
|
</attribute> \
|
|
|
|
\
|
|
|
|
<attribute id="0x0008"> \
|
|
|
|
<uint8 value="0xff"/> \
|
|
|
|
</attribute> \
|
|
|
|
\
|
2007-05-22 00:29:08 +08:00
|
|
|
<attribute id="0x0009"> \
|
|
|
|
<sequence> \
|
|
|
|
<sequence> \
|
|
|
|
<uuid value="0x1101"/> \
|
|
|
|
<uint16 value="0x0100"/> \
|
|
|
|
</sequence> \
|
|
|
|
</sequence> \
|
|
|
|
</attribute> \
|
|
|
|
\
|
2007-05-21 22:18:27 +08:00
|
|
|
<attribute id="0x000a"> \
|
|
|
|
<url value="http://www.bluez.org/"/> \
|
|
|
|
</attribute> \
|
|
|
|
\
|
|
|
|
<attribute id="0x000b"> \
|
|
|
|
<url value="http://www.bluez.org/"/> \
|
|
|
|
</attribute> \
|
|
|
|
\
|
|
|
|
<attribute id="0x000c"> \
|
|
|
|
<url value="http://www.bluez.org/"/> \
|
|
|
|
</attribute> \
|
|
|
|
\
|
2007-05-21 20:51:48 +08:00
|
|
|
<attribute id="0x0100"> \
|
2007-05-21 22:18:27 +08:00
|
|
|
<text value="Serial Port"/> \
|
|
|
|
</attribute> \
|
|
|
|
\
|
|
|
|
<attribute id="0x0101"> \
|
|
|
|
<text value="Serial Port Service"/> \
|
|
|
|
</attribute> \
|
|
|
|
\
|
|
|
|
<attribute id="0x0102"> \
|
|
|
|
<text value="BlueZ"/> \
|
2007-05-22 00:29:08 +08:00
|
|
|
</attribute> \
|
|
|
|
\
|
|
|
|
<attribute id="0x0200"> \
|
|
|
|
<sequence> \
|
|
|
|
<uint16 value="0x0100"/> \
|
|
|
|
</sequence> \
|
|
|
|
</attribute> \
|
|
|
|
\
|
|
|
|
<attribute id="0x0201"> \
|
|
|
|
<uint32 value="0"/> \
|
2007-05-21 20:51:48 +08:00
|
|
|
</attribute> \
|
|
|
|
</record> \
|
|
|
|
'
|
|
|
|
|
2008-06-08 21:23:35 +08:00
|
|
|
bus = dbus.SystemBus()
|
|
|
|
|
|
|
|
if len(sys.argv) > 1:
|
2012-12-05 20:51:30 +08:00
|
|
|
path = bluezutils.find_adapter(sys.argv[1]).object_path
|
2008-06-08 21:23:35 +08:00
|
|
|
else:
|
2012-12-05 20:51:30 +08:00
|
|
|
path = bluezutils.find_adapter().object_path
|
2008-06-08 21:23:35 +08:00
|
|
|
|
2008-09-06 10:23:46 +08:00
|
|
|
service = dbus.Interface(bus.get_object("org.bluez", path),
|
|
|
|
"org.bluez.Service")
|
2007-05-21 20:51:48 +08:00
|
|
|
|
2008-09-06 10:23:46 +08:00
|
|
|
handle = service.AddRecord(xml)
|
2007-05-21 20:51:48 +08:00
|
|
|
|
2012-05-25 13:44:25 +08:00
|
|
|
print("Service record with handle 0x%04x added" % (handle))
|
2007-05-21 20:51:48 +08:00
|
|
|
|
2012-05-25 13:44:25 +08:00
|
|
|
print("Press CTRL-C to remove service record")
|
2007-05-21 20:51:48 +08:00
|
|
|
|
|
|
|
try:
|
|
|
|
time.sleep(1000)
|
2012-05-25 13:44:25 +08:00
|
|
|
print("Terminating session")
|
2007-05-21 20:51:48 +08:00
|
|
|
except:
|
|
|
|
pass
|
|
|
|
|
2008-09-06 10:23:46 +08:00
|
|
|
service.RemoveRecord(dbus.UInt32(handle))
|