From: Szymon Janc <szymon.janc@tieto.com>
To: Mariusz Skamra <mariusz.skamra@tieto.com>
Cc: linux-bluetooth@vger.kernel.org
Subject: Re: [PATCH 26/28] android/hog: Remove attrib/
Date: Thu, 02 Apr 2015 17:44:38 +0200 [thread overview]
Message-ID: <1788979.VrCZlfXUXW@leonov> (raw)
In-Reply-To: <1427906444-11769-27-git-send-email-mariusz.skamra@tieto.com>
On Wednesday 01 of April 2015 18:40:42 Mariusz Skamra wrote:
> All the attrib/ include files can be now removed since all the dependencies
> have been previously removed.
Make this commit subject a bit more intuitive, my first impression was 'why to
remove attrib/ folder in hog patch' :)
> ---
> android/hidhost.c | 2 +-
> android/hog.c | 62
> +++++++++++++++++++++++++++---------------------------- android/hog.h |
> 2 +-
> unit/test-hog.c | 2 +-
> 4 files changed, 33 insertions(+), 35 deletions(-)
>
> diff --git a/android/hidhost.c b/android/hidhost.c
> index 3d4ee85..9bd96a1 100644
> --- a/android/hidhost.c
> +++ b/android/hidhost.c
> @@ -816,7 +816,7 @@ static void client_ready_cb(bool success, uint8_t
> att_ecode, void *user_data) goto fail;
> }
>
> - if (!bt_hog_attach(dev->hog, dev->attrib, dev->client)) {
> + if (!bt_hog_attach(dev->hog, dev->client)) {
> error("HoG: unable to attach");
> goto fail;
> }
> diff --git a/android/hog.c b/android/hog.c
> index eb9c9d4..c2017f8 100644
> --- a/android/hog.c
> +++ b/android/hog.c
> @@ -50,10 +50,6 @@
> #include "src/shared/gatt-client.h"
> #include "src/log.h"
>
> -#include "attrib/att.h"
> -#include "attrib/gattrib.h"
> -#include "attrib/gatt.h"
> -
> #include "android/scpp.h"
> #include "android/dis.h"
> #include "android/bas.h"
> @@ -94,7 +90,6 @@ struct bt_hog {
> uint16_t vendor;
> uint16_t product;
> uint16_t version;
> - GAttrib *attrib;
> struct queue *reports;
> struct bt_uhid *uhid;
> int uhid_fd;
> @@ -116,6 +111,11 @@ struct bt_hog {
> struct gatt_db *db;
> };
>
> +struct gatt_char {
> + uint8_t properties;
> + uint16_t value_handle;
> +};
> +
> struct report {
> struct bt_hog *hog;
> uint8_t id;
> @@ -162,8 +162,8 @@ static void report_value_cb(uint16_t value_handle, const
> uint8_t *value, static void report_ccc_written_cb(uint16_t status, void
> *user_data) {
> if (status != 0) {
> - error("Write report characteristic descriptor failed: %s",
> - att_ecode2str(status));
> + error("Write report characteristic descriptor failed: %d",
> + status);
Hmm I think we could have similar code2str function in src/shared/att.
> return;
> }
>
> @@ -201,8 +201,8 @@ static void report_reference_cb(bool success, uint8_t
> status, struct report *report = user_data;
>
> if (!success) {
> - error("Read Report Reference descriptor failed: %s",
> - att_ecode2str(status));
> + error("Read Report Reference descriptor failed: att_ecode %d",
> + status);
> return;
> }
>
> @@ -258,8 +258,7 @@ static void report_read_cb(bool success, uint8_t
> att_ecode, struct report *report = user_data;
>
> if (!success) {
> - error("Error reading Report value: %s",
> - att_ecode2str(att_ecode));
> + error("Error reading Report value: att_ecode %d", att_ecode);
> return;
> }
>
> @@ -312,8 +311,8 @@ static void external_report_reference_cb(bool success,
> uint8_t status, struct queue *chrs;
>
> if (!success) {
> - error("Read External Report Reference descriptor failed: %s",
> - att_ecode2str(status));
> + error("Read External Report Reference descriptor failed: %d",
> + status);
> return;
> }
>
> @@ -403,7 +402,7 @@ static struct report *find_report_by_rtype(struct bt_hog
> *hog, uint8_t rtype, static void output_written_cb(bool success, uint8_t
> status, void *user_data) {
> if (!success) {
> - error("Write output report failed: %s", att_ecode2str(status));
> + error("Write output report failed: att_ecode %d", status);
> return;
> }
> }
> @@ -414,6 +413,7 @@ static void forward_report(struct uhid_event *ev, void
> *user_data) struct report *report;
> void *data;
> int size;
> + uint8_t properties;
>
> report = find_report_by_rtype(hog, ev->u.output.rtype,
> ev->u.output.data[0]);
> @@ -433,12 +433,13 @@ static void forward_report(struct uhid_event *ev, void
> *user_data) if (hog->client == NULL)
> return;
>
> - if (report->decl->properties & GATT_CHR_PROP_WRITE)
> + properties = report->decl->properties;
> + if (properties & BT_GATT_CHRC_PROP_WRITE)
> bt_gatt_client_write_value(hog->client,
> report->decl->value_handle,
> data, size, output_written_cb,
> hog, NULL);
> - else if (report->decl->properties & GATT_CHR_PROP_WRITE_WITHOUT_RESP)
> + else if (properties & BT_GATT_CHRC_PROP_WRITE_WITHOUT_RESP)
> bt_gatt_client_write_without_response(hog->client,
> report->decl->value_handle,
> false, data, size);
> @@ -490,7 +491,7 @@ static void set_report_cb(bool success, uint8_t status,
> void *user_data) rsp.u.set_report_reply.err = status;
>
> if (!success)
> - error("Error setting Report value: %s", att_ecode2str(status));
> + error("Error setting Report value: att_ecode %d", status);
>
> err = bt_uhid_send(hog->uhid, &rsp);
> if (err < 0)
> @@ -562,7 +563,7 @@ static void get_report_cb(bool success, uint8_t status,
> const uint8_t *value, rsp.u.get_report_reply.id = hog->getrep_id;
>
> if (!success) {
> - error("Error reading Report value: %s", att_ecode2str(status));
> + error("Error reading Report value: att_ecode %d", status);
> goto exit;
> }
>
> @@ -738,7 +739,7 @@ static void report_map_read_cb(bool success, uint8_t
> att_ecode, int i;
>
> if (!success) {
> - error("Report Map read failed: %s", att_ecode2str(att_ecode));
> + error("Report Map read failed: att_ecode %d", att_ecode);
> return;
> }
>
> @@ -776,7 +777,7 @@ static void info_read_cb(bool success, uint8_t status,
> const uint8_t *value, struct bt_hog *hog = user_data;
>
> if (!success) {
> - error("HID Information read failed: %s", att_ecode2str(status));
> + error("HID Information read failed: att_ecode %d", status);
> return;
> }
>
> @@ -800,8 +801,8 @@ static void proto_mode_read_cb(bool success, uint8_t
> att_ecode, struct bt_hog *hog = user_data;
>
> if (!success) {
> - error("Protocol Mode characteristic read failed: %s",
> - att_ecode2str(att_ecode));
> + error("Protocol Mode characteristic read failed: att_ecode %d",
> + att_ecode);
> return;
> }
>
> @@ -1022,7 +1023,7 @@ static void hog_attach_hog(struct bt_hog *hog,
> uint16_t service_handle) if (!instance)
> return;
>
> - bt_hog_attach(instance, hog->attrib, hog->client);
> + bt_hog_attach(instance, hog->client);
> queue_push_tail(hog->instances, instance);
> }
>
> @@ -1049,14 +1050,13 @@ static void service_cb(struct gatt_db_attribute
> *attrib, void *user_data) hog_attach_bas(hog, service_handle);
> }
>
> -bool bt_hog_attach(struct bt_hog *hog, void *gatt, void *client)
> +bool bt_hog_attach(struct bt_hog *hog, void *client)
> {
> const struct queue_entry *hog_entry;
>
> - if (hog->attrib || hog->client)
> + if (hog->client)
> return false;
>
> - hog->attrib = g_attrib_ref(gatt);
> hog->client = bt_gatt_client_ref(client);
> hog->db = bt_gatt_client_get_db(hog->client);
>
> @@ -1077,7 +1077,7 @@ bool bt_hog_attach(struct bt_hog *hog, void *gatt,
> void *client) while (hog_entry) {
> struct bt_hog *instance = hog_entry->data;
>
> - bt_hog_attach(instance, gatt, client);
> + bt_hog_attach(instance, client);
> }
>
> if (queue_isempty(hog->reports)) {
> @@ -1096,7 +1096,7 @@ bool bt_hog_attach(struct bt_hog *hog, void *gatt,
> void *client)
>
> void bt_hog_detach(struct bt_hog *hog)
> {
> - if (!hog->attrib || !hog->client)
> + if (!hog->client)
> return;
>
> queue_foreach(hog->bas, (void *) bt_bas_detach, NULL);
> @@ -1111,9 +1111,7 @@ void bt_hog_detach(struct bt_hog *hog)
>
> gatt_db_unref(hog->db);
> bt_gatt_client_unref(hog->client);
> - g_attrib_unref(hog->attrib);
> hog->client = NULL;
> - hog->attrib = NULL;
> }
>
> int bt_hog_set_control_point(struct bt_hog *hog, bool suspend)
> @@ -1149,13 +1147,13 @@ int bt_hog_send_report(struct bt_hog *hog, void
> *data, size_t size, int type)
>
> DBG("hog: Write report, handle 0x%X", report->decl->value_handle);
>
> - if (report->decl->properties & GATT_CHR_PROP_WRITE)
> + if (report->decl->properties & BT_GATT_CHRC_PROP_WRITE)
> bt_gatt_client_write_value(hog->client,
> report->decl->value_handle,
> data, size, output_written_cb,
> hog, NULL);
>
> - if (report->decl->properties & GATT_CHR_PROP_WRITE_WITHOUT_RESP)
> + if (report->decl->properties & BT_GATT_CHRC_PROP_WRITE_WITHOUT_RESP)
> bt_gatt_client_write_without_response(hog->client,
> report->decl->value_handle,
> false, data, size);
> diff --git a/android/hog.h b/android/hog.h
> index 8fe8422..fa3d114 100644
> --- a/android/hog.h
> +++ b/android/hog.h
> @@ -36,7 +36,7 @@ struct bt_hog *bt_hog_new(int fd, const char *name,
> uint16_t vendor, struct bt_hog *bt_hog_ref(struct bt_hog *hog);
> void bt_hog_unref(struct bt_hog *hog);
>
> -bool bt_hog_attach(struct bt_hog *hog, void *gatt, void *client);
> +bool bt_hog_attach(struct bt_hog *hog, void *client);
> void bt_hog_detach(struct bt_hog *hog);
>
> int bt_hog_set_control_point(struct bt_hog *hog, bool suspend);
> diff --git a/unit/test-hog.c b/unit/test-hog.c
> index 16805e7..81aada2 100644
> --- a/unit/test-hog.c
> +++ b/unit/test-hog.c
> @@ -227,7 +227,7 @@ static void test_hog(gconstpointer data)
> {
> struct context *context = create_context(data);
>
> - g_assert(bt_hog_attach(context->hog, context->attrib, NULL));
> + g_assert(bt_hog_attach(context->hog, NULL));
> }
>
> int main(int argc, char *argv[])
--
BR
Szymon Janc
next prev parent reply other threads:[~2015-04-02 15:44 UTC|newest]
Thread overview: 41+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-04-01 16:40 [PATCH 00/28] android/hog Introduce bt_gatt_client Mariusz Skamra
2015-04-01 16:40 ` [PATCH 01/28] android/hidhost: Create bt_gatt_client Mariusz Skamra
2015-04-02 14:16 ` Szymon Janc
2015-04-01 16:40 ` [PATCH 02/28] android/hog: Introduce bt_gatt_client Mariusz Skamra
2015-04-02 14:17 ` Szymon Janc
2015-04-01 16:40 ` [PATCH 03/28] shared/gatt-client: Expose gatt_db Mariusz Skamra
2015-04-02 14:20 ` Szymon Janc
2015-04-01 16:40 ` [PATCH 04/28] android/hog: Remove tracking gatt operations Mariusz Skamra
2015-04-01 16:40 ` [PATCH 05/28] android/hog: Use bt_gatt_client to read characteristic value Mariusz Skamra
2015-04-01 16:40 ` [PATCH 06/28] android/hog: Use bt_gatt_client to register for notifications Mariusz Skamra
2015-04-01 16:40 ` [PATCH 07/28] android/hog: Use bt_gatt_client to write without response Mariusz Skamra
2015-04-01 16:40 ` [PATCH 08/28] android/hog: Replace gatt_write_char with bt_gatt_client_write_value Mariusz Skamra
2015-04-01 16:40 ` [PATCH 09/28] android/hog: Use gatt_db to search for services and characteristics in db Mariusz Skamra
2015-04-02 15:22 ` Szymon Janc
2015-04-01 16:40 ` [PATCH 10/28] android/hog: Add helper to create uhid device Mariusz Skamra
2015-04-01 16:40 ` [PATCH 11/28] lib/uuid: Add define for HoG UUID Mariusz Skamra
2015-04-01 16:40 ` [PATCH 12/28] android/hog: Replace list of reports with a queue of reports Mariusz Skamra
2015-04-01 16:40 ` [PATCH 13/28] android/hog: Replace definitions of characteristic uuids with bt_uuids Mariusz Skamra
2015-04-02 15:26 ` Szymon Janc
2015-04-01 16:40 ` [PATCH 14/28] android/hog: Replace GSList of hog instances with queue of instances Mariusz Skamra
2015-04-02 15:29 ` Szymon Janc
2015-04-01 16:40 ` [PATCH 15/28] android/dis: Remove tracking pending gatt operations Mariusz Skamra
2015-04-01 16:40 ` [PATCH 16/28] android/dis: Introduce bt_gatt_client Mariusz Skamra
2015-04-01 16:40 ` [PATCH 17/28] android/scpp: Remove tracking pending gatt operations Mariusz Skamra
2015-04-01 16:40 ` [PATCH 18/28] android/scpp: Introduce bt_gatt_client Mariusz Skamra
2015-04-02 15:34 ` Szymon Janc
2015-04-01 16:40 ` [PATCH 19/28] android/scpp: Merge refresh_discovered_cb with iwin_discovered_cb Mariusz Skamra
2015-04-01 16:40 ` [PATCH 20/28] android/bas: Remove tracking pending gatt operations Mariusz Skamra
2015-04-01 16:40 ` [PATCH 21/28] android/bas: Start using bt_gatt_client Mariusz Skamra
2015-04-02 15:37 ` Szymon Janc
2015-04-01 16:40 ` [PATCH 22/28] android/hog: Strip btio dependencies Mariusz Skamra
2015-04-02 15:39 ` Szymon Janc
2015-04-01 16:40 ` [PATCH 23/28] android/hog: Enable Input Report notifications only if uhid is created Mariusz Skamra
2015-04-01 16:40 ` [PATCH 24/28] android/bas: Enable Battery Level notifications after reconnection Mariusz Skamra
2015-04-01 16:40 ` [PATCH 25/28] android/hog: Add MIN definition Mariusz Skamra
2015-04-02 15:41 ` Szymon Janc
2015-04-01 16:40 ` [PATCH 26/28] android/hog: Remove attrib/ Mariusz Skamra
2015-04-02 15:44 ` Szymon Janc [this message]
2015-04-01 16:40 ` [PATCH 27/28] android/hog: Remove glib dependencies Mariusz Skamra
2015-04-02 15:45 ` Szymon Janc
2015-04-01 16:40 ` [PATCH 28/28] android/hog: Remove redundant code Mariusz Skamra
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=1788979.VrCZlfXUXW@leonov \
--to=szymon.janc@tieto.com \
--cc=linux-bluetooth@vger.kernel.org \
--cc=mariusz.skamra@tieto.com \
/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;
as well as URLs for NNTP newsgroup(s).