Re: [RFC 1/1] doc/gatt-api: New API properties and methods for the GATT D-Bus API.

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi Arman,

> This patch proposes changes to the currently unimplemented GATT D-Bus API for
> desktop bluetoothd. This is the first step in implementing a GATT client layer
> for bluetoothd that will change the way remote attributes are accessed via
> bluetoothd plugins and external applications.
> ---
> doc/gatt-api.txt | 118 ++++++++++++++++++++++++++++++++++++++++++++++++-------
> 1 file changed, 104 insertions(+), 14 deletions(-)
> 
> diff --git a/doc/gatt-api.txt b/doc/gatt-api.txt
> index 8c7975c..bec9674 100644
> --- a/doc/gatt-api.txt
> +++ b/doc/gatt-api.txt
> @@ -32,6 +32,25 @@ Properties	string UUID [read-only]
> 
> 			128-bit service UUID.
> 
> +		boolean Primary [read-only]
> +
> +			Indicates whether or not this GATT service is a
> +			primary service. If false, the service is secondary.

this makes total sense. We most likely never worried about it since all devices these days have everything set as primary service.

> +
> +		object Device [read-only, optional]
> +
> +			Object path of the Bluetooth device the service
> +			belongs to. Only present on services from remote
> +			devices.

I am not sure this is needed. What do you want to use it for?

> +
> +		array{object} Characteristics [read-only]
> +
> +			Array of object paths representing the characteristics
> +			of this service. This property is set only when the
> +			characteristic discovery has been completed, however the
> +			characteristic objects will become available via
> +			ObjectManager as soon as they get discovered.
> +

I really wonder if this is a good idea. Why not delay announcing any service or characteristic via D-Bus as long as the service discovery is still running. I think it makes more sense to allow doing it one way and one way only.

> 		array{object} Includes [read-only]: Not implemented
> 
> 			Array of object paths representing the included
> @@ -48,6 +67,54 @@ Service		org.bluez
> Interface	org.bluez.GattCharacteristic1 [Experimental]
> Object path	[variable prefix]/{hci0,hci1,...}/dev_XX_XX_XX_XX_XX_XX/serviceXX/charYYYY
> 
> +Methods		array{byte} ReadValue()
> +
> +			Issues a request to read the value of the
> +			characteristic and returns the value if the
> +			operation was successful.
> +
> +			Possible Errors: org.bluez.Error.Failed
> +					 org.bluez.Error.InProgress
> +					 org.bluez.Error.ReadNotPermitted
> +					 org.bluez.Error.Authentication
> +					 org.bluez.Error.Authorization
> +					 org.bluez.Error.Encryption
> +
> +		void WriteValue(array{byte} value)
> +
> +			Issues a request to write the value of the
> +			characteristic.
> +
> +			Possible Errors: org.bluez.Error.Failed
> +					 org.bluez.Error.InProgress
> +					 org.bluez.Error.WriteNotPermitted
> +					 org.bluez.Error.Authentication
> +					 org.bluez.Error.Authorization
> +					 org.bluez.Error.Encryption

I have objection to adding these two method. However the error codes should be a bit more descriptive on the level AuthenticationRequired or MissingAuthentication. Then again, I think this detail might be better hidden in the daemon.

For example if you are not encrypted and the characteristic requires an encrypted link, we should upgrade the security level and try again. If no LTK is available, then org.bluez.Error.NoEncryptionKey or similar should be returned. I think it is important that we handle all these details in the daemon to make it transparent for the end user.

> +
> +		void StartNotify()
> +
> +			Starts a notification session from this characteristic
> +			if it supports value notifications or indications.
> +
> +			Possible Errors: org.bluez.Error.Failed
> +					 org.bluez.Error.InProgress
> +					 org.bluez.Error.NotSupported
> +
> +		void StopNotify()
> +
> +			This method will cancel any previous StartNotify
> +			transaction. Note that notifications from a
> +			characteristic are shared between sessions thus
> +			calling StopNotify will release a single session.
> +
> +			Possible Errors: org.bluez.Error.Failed

Seems sensible as well to me. However I am little bit debating the naming of the method a bit. I would have to read the spec in detail again which is the best name. EnableNotification comes to mind as well.

> +
> +Signals		void ValueUpdated(array{bytes} value)
> +
> +			This signal is launched when a characteristic handle
> +			value notification or indication is received.

Why is just sending a PropertyChanged not good enough here? I would consider the property itself the cached value. Extra signals are costing extra overhead.

> +
> Properties	string UUID [read-only]
> 
> 			128-bit characteristic UUID.
> @@ -57,12 +124,12 @@ Properties	string UUID [read-only]
> 			Object path of the GATT service the characteristc
> 			belongs to.
> 
> -		array{byte} Value [read-write]
> +		boolean Notifying [read-only]
> 
> -			Value read from the remote Bluetooth device or from
> -			the external application implementing GATT services.
> +			True, if notifications or indications on this
> +			characteristic are currently enabled.

As said above, I would leave the Value here as well. Maybe make it optional in case it has not yet been read or does not allow reading at all. It would represent the cached value.

I am not fully at ease with the name Notifying yet. Need to think about it a bit or some good convincing.

> 
> -		array{string} Flags [read-only, optional]
> +		array{string} Flags [read-only]
> 
> 			Defines how the characteristic value can be used. See
> 			Core spec "Table 3.5: Characteristic Properties bit
> @@ -79,6 +146,14 @@ Properties	string UUID [read-only]
> 				"reliable-write"
> 				"writable-auxiliaries"
> 
> +		array{object} Descriptors [read-only]
> +
> +			Array of object paths representing the descriptors
> +			of this service. This property is set only when the
> +			descriptor discovery has been completed, however the
> +			descriptor objects will become available via
> +			ObjectManager as soon as they get discovered.
> +

Why is this needed?

> 
> Characteristic Descriptors hierarchy
> ====================================
> @@ -89,6 +164,31 @@ Service		org.bluez
> Interface	org.bluez.GattDescriptor1 [Experimental]
> Object path	[variable prefix]/{hci0,hci1,...}/dev_XX_XX_XX_XX_XX_XX/serviceXX/charYYYY/descriptorZZZ
> 
> +Methods		array{byte} ReadValue()
> +
> +			Issues a request to read the value of the
> +			characteristic and returns the value if the
> +			operation was successful.
> +
> +			Possible Errors: org.bluez.Error.Failed
> +					 org.bluez.Error.InProgress
> +					 org.bluez.Error.ReadNotPermitted
> +					 org.bluez.Error.Authentication
> +					 org.bluez.Error.Authorization
> +					 org.bluez.Error.Encryption
> +
> +		void WriteValue(array{byte} value)
> +
> +			Issues a request to write the value of the
> +			characteristic.
> +
> +			Possible Errors: org.bluez.Error.Failed
> +					 org.bluez.Error.InProgress
> +					 org.bluez.Error.WriteNotPermitted
> +					 org.bluez.Error.Authentication
> +					 org.bluez.Error.Authorization
> +					 org.bluez.Error.Encryption
> +
> Properties	string UUID [read-only]
> 
> 			128-bit descriptor UUID.
> @@ -98,16 +198,6 @@ Properties	string UUID [read-only]
> 			Object path of the GATT characteristc the descriptor
> 			belongs to.
> 
> -		array{byte} Value [read-write]
> -
> -			Raw characteristic descriptor value read from the
> -			remote Bluetooth device or from the external
> -			application implementing GATT services.

Same comments as above. I think the Value should stay and maybe made optional.

> -
> -		string Permissions [read-only]: To be defined
> -
> -			Defines read/write authentication and authorization
> -			requirements.

Why is this removed now?

Regards

Marcel

--
To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html




[Index of Archives]     [Bluez Devel]     [Linux Wireless Networking]     [Linux Wireless Personal Area Networking]     [Linux ATH6KL]     [Linux USB Devel]     [Linux Media Drivers]     [Linux Audio Users]     [Linux Kernel]     [Linux SCSI]     [Big List of Linux Books]

  Powered by Linux