doc/mesh-api: Forward compatibility modifications 63/229663/1
authorInga Stotland <inga.stotland@intel.com>
Fri, 27 Mar 2020 18:42:54 +0000 (11:42 -0700)
committerAnupam Roy <anupam.r@samsung.com>
Wed, 1 Apr 2020 20:50:12 +0000 (02:20 +0530)
The following methods are modified to allow for future development:

Interface org.bluez.mesh.Management1:

Old: void UnprovisionedScan(uint16 seconds)
New: void UnprovisionedScan(dict options)

    The options parameter is a dictionary with the following keys defined:
    uint16 Seconds
                Specifies number of seconds for scanning to be active.
                If set to 0 or if this key is not present, then the
                scanning will continue until UnprovisionedScanCancel()
                or AddNode() methods are called.
    other keys TBD

Old: void AddNode(array{byte}[16] uuid)
New: void AddNode(array{byte}[16] uuid, dict options)

    The options parameter is currently an empty dictionary

Interface org.bluez.mesh.Provisioner1

Old: void ScanResult(int16 rssi, array{byte} data)
New: void ScanResult(int16 rssi, array{byte} data, dict options)

    The options parameter is currently an empty dictionary

Change-Id: I6e9922a4f0ade412980693e463f024d363899530
Signed-off-by: Anupam Roy <anupam.r@samsung.com>
doc/mesh-api.txt

index 131de6b..cc351b6 100644 (file)
@@ -455,14 +455,20 @@ Object path       /org/bluez/mesh/node<uuid>
                CreateNetwork() or Import()
 
 Methods:
-       void UnprovisionedScan(uint16 seconds)
+       void UnprovisionedScan(dict options)
 
                This method is used by the application that supports
                org.bluez.mesh.Provisioner1 interface to start listening
-               (scanning) for unprovisioned devices in the area. Scanning
-               will continue for the specified number of seconds, or, if 0 is
-               specified, then continuously until UnprovisionedScanCancel() is
-               called or if AddNode() method is called.
+               (scanning) for unprovisioned devices in the area.
+
+               The options parameter is a dictionary with the following keys
+               defined:
+
+               uint16 Seconds
+                       Specifies number of seconds for scanning to be active.
+                       If set to 0 or if this key is not present, then the
+                       scanning will continue until UnprovisionedScanCancel()
+                       or AddNode() methods are called.
 
                Each time a unique unprovisioned beacon is heard, the
                ScanResult() method on the app will be called with the result.
@@ -482,7 +488,7 @@ Methods:
                        org.bluez.mesh.Error.InvalidArguments
                        org.bluez.mesh.Error.NotAuthorized
 
-       void AddNode(array{byte}[16] uuid)
+       void AddNode(array{byte}[16] uuid, dict options)
 
                This method is used by the application that supports
                org.bluez.mesh.Provisioner1 interface to add the
@@ -491,6 +497,10 @@ Methods:
                The uuid parameter is a 16-byte array that contains Device UUID
                of the unprovisioned device to be added to the network.
 
+               The options parameter is a dictionary that may contain
+               additional configuration info (currently an empty placeholder
+               for forward compatibility).
+
                PossibleErrors:
                        org.bluez.mesh.Error.InvalidArguments
                        org.bluez.mesh.Error.NotAuthorized
@@ -927,7 +937,7 @@ Service             unique name
 Interface      org.bluez.mesh.Provisioner1
 Object path    freely definable
 
-       void ScanResult(int16 rssi, array{byte} data)
+       void ScanResult(int16 rssi, array{byte} data, dict options)
 
                The method is called from the bluetooth-meshd daemon when a
                unique UUID has been seen during UnprovisionedScan() for
@@ -943,6 +953,10 @@ Object path        freely definable
                bit set in OOB mask). Whether these fields exist or not is a
                decision of the remote device.
 
+               The options parameter is a dictionary that may contain
+               additional scan result info (currently an empty placeholder for
+               forward compatibility).
+
                If a beacon with a UUID that has already been reported is
                recieved by the daemon, it will be silently discarded unless it
                was recieved at a higher rssi power level.