From: Vinicius Costa Gomes <vinicius.gomes@openbossa.org>
To: Alex Deymo <deymo@chromium.org>
Cc: linux-bluetooth@vger.kernel.org, marcel@holtmann.org,
keybuk@chromium.org
Subject: Re: [PATCH v4 2/2] input: Implement the new ReconnectMode Input1 property.
Date: Thu, 4 Apr 2013 18:49:13 -0300 [thread overview]
Message-ID: <20130404214913.GB7065@echo> (raw)
In-Reply-To: <1365111113-13741-3-git-send-email-deymo@chromium.org>
Hi Alex,
On 14:31 Thu 04 Apr, Alex Deymo wrote:
> The "Connectability" of a HID device, as defined by the HID spec,
> governs the way the host may and should connect to a HID device or
> expect a connection from it. In the comon case of mice and keyboards
> the HIDNormallyConnectable is FALSE and HIDReconnectInitiate is TRUE,
> since those devices only attempt a connection to the host when they
> have some data to transfer. A connection attempt initiated from the
> host after the device drops the connection (while still paired) will
> result in a Page timeout.
>
> This patch exposes a new property called "ReconnectMode" combining the
> those two SDP attributes as shown in the Connectability section of the
> HID spec (see section 5.4.2). The property can have one of the following
> four values: "None", "Device", "Host", "Any", and is derived from the
> SDP cached value on device creation even if the device is off.
> ---
> profiles/input/device.c | 89 +++++++++++++++++++++++++++++++++++++++++++++++--
> 1 file changed, 86 insertions(+), 3 deletions(-)
>
> diff --git a/profiles/input/device.c b/profiles/input/device.c
> index 1da9d99..33a6f65 100644
> --- a/profiles/input/device.c
> +++ b/profiles/input/device.c
> @@ -54,6 +54,22 @@
>
> #include "sdp-client.h"
>
> +#define INPUT_INTERFACE "org.bluez.Input1"
> +
> +enum reconnect_mode_t {
> + RECONNECT_NONE = 0,
> + RECONNECT_DEVICE,
> + RECONNECT_HOST,
> + RECONNECT_ANY
> +};
> +
> +static const char * const reconnect_value[] = {
> + "None",
> + "Device",
> + "Host",
> + "Any"
> +};
I would suggest changing this to a explicit function to make the conversion,
something like 'mode_to_string()'.
> +
> struct input_device {
> struct btd_device *device;
> char *path;
> @@ -69,8 +85,9 @@ struct input_device {
> int timeout;
> struct hidp_connadd_req *req;
> guint dc_id;
> - gboolean disable_sdp;
> + bool disable_sdp;
And I would put this change in another commit.
> char *name;
> + enum reconnect_mode_t reconnect_mode;
> };
>
> static GSList *devices = NULL;
> @@ -676,7 +693,7 @@ int input_device_disconnect(struct btd_device *dev, struct btd_profile *profile)
>
> static struct input_device *input_device_new(struct btd_device *device,
> const char *path, const uint32_t handle,
> - gboolean disable_sdp)
> + bool disable_sdp)
> {
> struct btd_adapter *adapter = device_get_adapter(device);
> struct input_device *idev;
> @@ -697,7 +714,7 @@ static struct input_device *input_device_new(struct btd_device *device,
> return idev;
> }
>
> -static gboolean is_device_sdp_disable(const sdp_record_t *rec)
> +static bool is_device_sdp_disable(const sdp_record_t *rec)
> {
> sdp_data_t *data;
>
> @@ -706,6 +723,56 @@ static gboolean is_device_sdp_disable(const sdp_record_t *rec)
> return data && data->val.uint8;
> }
>
> +static enum reconnect_mode_t hid_reconnection_mode(bool reconnect_initiate,
> + bool normally_connectable)
> +{
> + if (!reconnect_initiate && !normally_connectable)
> + return RECONNECT_NONE;
> + else if (!reconnect_initiate && normally_connectable)
> + return RECONNECT_HOST;
> + else if (reconnect_initiate && !normally_connectable)
> + return RECONNECT_DEVICE;
> + else /* (reconnect_initiate && normally_connectable) */
> + return RECONNECT_ANY;
> +}
> +
> +static void extract_hid_props(struct input_device *idev,
> + const sdp_record_t *rec)
> +{
> + /* Extract HID connectability */
> + bool reconnect_initiate, normally_connectable;
> + sdp_data_t *pdlist;
> +
> + /* HIDNormallyConnectable is optional and assumed FALSE
> + * if not present. */
> + pdlist = sdp_data_get(rec, SDP_ATTR_HID_RECONNECT_INITIATE);
> + reconnect_initiate = pdlist ? pdlist->val.uint8 : TRUE;
> +
> + pdlist = sdp_data_get(rec, SDP_ATTR_HID_NORMALLY_CONNECTABLE);
> + normally_connectable = pdlist ? pdlist->val.uint8 : FALSE;
> +
> + /* Update local values */
> + idev->reconnect_mode =
> + hid_reconnection_mode(reconnect_initiate, normally_connectable);
> +}
> +
> +static gboolean property_get_reconnect_mode(
> + const GDBusPropertyTable *property,
> + DBusMessageIter *iter, void *data)
> +{
> + struct input_device *idev = data;
> +
> + dbus_message_iter_append_basic(iter, DBUS_TYPE_STRING,
> + reconnect_value + idev->reconnect_mode);
> +
> + return TRUE;
> +}
> +
> +static const GDBusPropertyTable input_properties[] = {
> + { "ReconnectMode", "s", property_get_reconnect_mode },
> + { }
> +};
> +
> int input_device_register(struct btd_device *device,
> const char *path, const char *uuid,
> const sdp_record_t *rec, int timeout)
> @@ -723,6 +790,19 @@ int input_device_register(struct btd_device *device,
> if (!idev)
> return -EINVAL;
>
> + /* Initialize device properties */
> + extract_hid_props(idev, rec);
> +
> + if (g_dbus_register_interface(btd_get_dbus_connection(),
> + idev->path, INPUT_INTERFACE,
> + NULL, NULL,
> + input_properties, idev,
> + NULL) == FALSE) {
> + error("Unable to register %s interface", INPUT_INTERFACE);
> + input_device_free(idev);
> + return -EINVAL;
> + }
> +
> idev->timeout = timeout;
> idev->uuid = g_strdup(uuid);
>
> @@ -761,6 +841,9 @@ int input_device_unregister(const char *path, const char *uuid)
> return -EBUSY;
> }
>
> + g_dbus_unregister_interface(btd_get_dbus_connection(),
> + idev->path, INPUT_INTERFACE);
> +
> devices = g_slist_remove(devices, idev);
> input_device_free(idev);
>
> --
> 1.8.1.3
>
Cheers,
--
Vinicius
next prev parent reply other threads:[~2013-04-04 21:49 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-04-04 21:31 [PATCH v4 0/2] Input1 Connectability revisited Alex Deymo
2013-04-04 21:31 ` [PATCH v4 1/2] input: Documentation for new Input1 interface Alex Deymo
2013-04-04 21:31 ` [PATCH v4 2/2] input: Implement the new ReconnectMode Input1 property Alex Deymo
2013-04-04 21:49 ` Vinicius Costa Gomes [this message]
2013-04-04 21:44 ` [PATCH v4 0/2] Input1 Connectability revisited Vinicius Costa Gomes
2013-04-05 2:47 ` Alex Deymo
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20130404214913.GB7065@echo \
--to=vinicius.gomes@openbossa.org \
--cc=deymo@chromium.org \
--cc=keybuk@chromium.org \
--cc=linux-bluetooth@vger.kernel.org \
--cc=marcel@holtmann.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox