Blob: org.bluez.AdvertisementMonitor.rst

Blob id: e08bf41e7a58726f5058a2af8075705d694e1d37

Size: 4.8 KB

  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
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
==============================
org.bluez.AdvertisementMonitor
==============================

--------------------------------------------------
BlueZ D-Bus AdvertisementMonitor API documentation
--------------------------------------------------

:Version: BlueZ
:Date: October 2023
:Manual section: 5
:Manual group: Linux System Administration

Description
===========

This API allows an client to specify a job of monitoring advertisements by
registering the root of hierarchy and then exposing advertisement monitors
under the root with filtering conditions, thresholds of RSSI and timers
of RSSI thresholds.

Once a monitoring job is activated by **bluetoothd(8)**, the client can expect
to get notified on the targeted advertisements no matter if there is an ongoing
discovery session (see **StartDiscovery()** in **org.bluez.Adapter(5)**).

Interface
=========

:Service:	org.bluez
:Interface:	org.bluez.AdvertisementMonitor1 [experimental]
:Object path:	freely definable

Methods
-------

void Release() [noreply]
````````````````````````

This gets called as a signal for a client to perform clean-up when:

- Monitor cannot be activated after it was exposed
- Monitor has been deactivated.

void Activate() [noreply]
`````````````````````````

After a monitor was exposed, this gets called as a signal for client to get
acknowledged when a monitor has been activated, so the client can expect to
receive calls on **DeviceFound()** or **DeviceLost()**.

void DeviceFound(object device) [noreply]
`````````````````````````````````````````

This gets called to notify the client of finding the targeted device.

Once receiving the call, the client should start to monitor the corresponding
device to retrieve the changes on RSSI and advertisement content.

void DeviceLost(object device) [noreply]
````````````````````````````````````````

This gets called to notify the client of losing the targeted device.

Once receiving this call, the client should stop monitoring the corresponding
device.

Properties
----------

string Type [read-only]
```````````````````````

The type of the monitor. See **SupportedMonitorTypes** in
**org.bluez.AdvertisementMonitorManager(5)** for the available options.

int16 RSSILowThreshold [read-only, optional]
````````````````````````````````````````````

Used in conjunction with **RSSILowTimeout** to determine whether a device
becomes out-of-range.

Valid range is -127 to 20 (dBm), while 127 indicates unset.

int16 RSSIHighThreshold [read-only, optional]
`````````````````````````````````````````````

Used in conjunction with RSSIHighTimeout to determine whether a device becomes
in-range.

Valid range is -127 to 20 (dBm), while 127 indicates unset.

uint16 RSSILowTimeout [read-only, optional]
```````````````````````````````````````````

The time it takes to consider a device as out-of-range. If this many seconds
elapses without receiving any signal at least as strong as **RSSILowThreshold**,
a currently in-range device will be considered as out-of-range (lost). Valid
range is 1 to 300 (seconds), while 0 indicates unset.

uint16 RSSIHighTimeout [read-only, optional]
````````````````````````````````````````````

The time it takes to consider a device as in-range. If this many seconds elapses
while we continuously receive signals at least as strong as
**RSSIHighThreshold**, a currently out-of-range device will be considered as
in-range (found).

Valid range is 1 to 300 (seconds), while 0 indicates unset.

uint16 RSSISamplingPeriod [read-only, optional]
```````````````````````````````````````````````

Grouping rules on how to propagate the received advertisement packets to the
client.

Possible values:

:0:
	All advertisement packets from in-range devices would be
	propagated.

:255:
	Only the first advertisement packet of in-range devices would be
	propagated. If the device becomes lost, then the first packet when it is
	found again will also be propagated.

:1 to 254:
	Advertisement packets would be grouped into 100ms * N time period.
	Packets in the same group will only be reported once, with the RSSI
	value being averaged out.

	Currently this is unimplemented in user space, so the value is only
	used to be forwarded to the kernel.

array{(uint8, uint8, array{byte})} Patterns [read-only, optional]
`````````````````````````````````````````````````````````````````

If the **Type** property is set to **"or_patterns"**, then this property must
exist and have at least one entry in the array.

The structure of a pattern contains the following:

:uint8 start_position:

	The index in an AD data field where the search should start. The
	beginning of an AD data field is index 0.

:uint8 AD_data_type:

	See https://www.bluetooth.com/specifications/assigned-numbers/
	generic-access-profile/ for the possible allowed value.

:array{byte} content_of_pattern:

	This is the value of the pattern. The maximum length of the bytes is 31.