From: Szymon Janc <szymon.janc@tieto.com>
To: Lukasz Rymanowski <lukasz.rymanowski@tieto.com>
Cc: linux-bluetooth@vger.kernel.org
Subject: Re: [PATCH v4 05/11] shared/hfp: Add HFP HF parser
Date: Wed, 22 Oct 2014 13:00:42 +0200 [thread overview]
Message-ID: <2626729.yqIRdlFYHe@uw000953> (raw)
In-Reply-To: <1412898611-12199-6-git-send-email-lukasz.rymanowski@tieto.com>
Hi Łukasz,
On Friday 10 of October 2014 01:50:05 Lukasz Rymanowski wrote:
> This patch adds parser for AT responses and unsolicited results.
> ---
> src/shared/hfp.c | 129 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 129 insertions(+)
>
> diff --git a/src/shared/hfp.c b/src/shared/hfp.c
> index b1cf08e..5179092 100644
> --- a/src/shared/hfp.c
> +++ b/src/shared/hfp.c
> @@ -868,6 +868,126 @@ static void destroy_event_handler(void *data)
> free(handler);
> }
>
> +static void hf_skip_whitespace(struct hfp_hf_result *result)
> +{
> + while (result->data[result->offset] == ' ')
> + result->offset++;
> +}
> +
> +static void hf_call_prefix_handler(struct hfp_hf *hfp, const char *data)
> +{
> + struct event_handler *handler;
> + const char *separators = ";:\0";
> + struct hfp_hf_result result_data;
> + char lookup_prefix[18];
> + uint8_t pref_len = 0;
> + const char *prefix;
> + int i;
> +
> + result_data.offset = 0;
> + result_data.data = data;
> +
> + hf_skip_whitespace(&result_data);
> +
> + if (strlen(data + result_data.offset) < 2)
> + return;
> +
> + prefix = data + result_data.offset;
> +
> + pref_len = strcspn(prefix, separators);
> + if (pref_len > 17 || pref_len < 2)
> + return;
> +
> + for (i = 0; i < pref_len; i++)
> + lookup_prefix[i] = toupper(prefix[i]);
> +
> + lookup_prefix[pref_len] = '\0';
> + result_data.offset += pref_len + 1;
> +
> + handler = queue_find(hfp->event_handlers, match_handler_event_prefix,
> + lookup_prefix);
> + if (!handler)
> + return;
> +
> + handler->callback(&result_data, handler->user_data);
> +}
> +
> +static char *find_cr_lf(char *str, size_t len)
> +{
> + char *ptr;
> + int count;
> + int offset;
> +
> + offset = 0;
> +
> + ptr = memchr(str, '\r', len);
> + while (ptr) {
> + /*
> + * Check if there is more data after '\r'. If so check for
> + * '\n'
> + */
> + count = ptr-str;
Style: spaces around -
> + if ((count < (int) (len - 1)) && *(ptr + 1) == '\n')
> + return ptr;
If you make count size_t then this cast is not needed.
> +
> + /* There is only '\r'? Let's try to find next one */
> + offset += count + 1;
> +
> + if (offset >= (int)len)
If you make offset size_t then this cast is not needed.
Also such casting should have space '(int) foo'.
> + return NULL;
> +
> + ptr = memchr(str + offset, '\r', len - offset);
> + }
> +
> + return NULL;
> +}
> +
> +static void hf_process_input(struct hfp_hf *hfp)
> +{
> + char *str, *ptr;
> + size_t len, count, offset;
> +
> + str = ringbuf_peek(hfp->read_buf, 0, &len);
> + if (!str)
> + return;
> +
> + offset = 0;
> +
> + ptr = find_cr_lf(str, len);
> + while (ptr) {
> + count = ptr - (str + offset);
If you would adjust str pointer instead of using str + offset everywhere
then this code would be a bit simpler to follow.
Also this would not handle wrapped string correctly. Check how this is handled
in process_input().
> + if (count == 0) {
> + /* 2 is for <cr><lf> */
> + offset += 2;
> + } else {
> + *ptr = '\0';
> + hf_call_prefix_handler(hfp, str + offset);
> + offset += count + 2;
> + }
> +
> + if (offset >= len)
> + break;
> +
> + ptr = find_cr_lf(str + offset, len - offset);
> + }
> +
> + ringbuf_drain(hfp->read_buf, offset < len ? offset : len);
> +}
> +
> +static bool hf_can_read_data(struct io *io, void *user_data)
> +{
> + struct hfp_hf *hfp = user_data;
> + ssize_t bytes_read;
> +
> + bytes_read = ringbuf_read(hfp->read_buf, hfp->fd);
> + if (bytes_read < 0)
> + return false;
> +
> + hf_process_input(hfp);
> +
> + return true;
> +}
> +
> struct hfp_hf *hfp_hf_new(int fd)
> {
> struct hfp_hf *hfp;
> @@ -912,6 +1032,15 @@ struct hfp_hf *hfp_hf_new(int fd)
> return NULL;
> }
>
> + if (!io_set_read_handler(hfp->io, hf_can_read_data, hfp,
> + read_watch_destroy)) {
> + queue_destroy(hfp->event_handlers,
> + destroy_event_handler);
> + io_destroy(hfp->io);
> + ringbuf_free(hfp->write_buf);
> + ringbuf_free(hfp->read_buf);
You are missing free(hfp); return NULL; here.
> + }
> +
> return hfp_hf_ref(hfp);
> }
>
>
--
Best regards,
Szymon Janc
next prev parent reply other threads:[~2014-10-22 11:00 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-10-09 23:50 [PATCH v4 00/11] shared/hfp: Add support for HFP HF Lukasz Rymanowski
2014-10-09 23:50 ` [PATCH v4 01/11] " Lukasz Rymanowski
2014-10-22 11:00 ` Szymon Janc
2014-10-23 15:00 ` Lukasz Rymanowski
2014-10-09 23:50 ` [PATCH v4 02/11] shared/hfp: Add set_debug and close_on_unref API " Lukasz Rymanowski
2014-10-09 23:50 ` [PATCH v4 03/11] shared/hfp: Add set disconnect handler and disconnect API to " Lukasz Rymanowski
2014-10-09 23:50 ` [PATCH v4 04/11] shared/hfp: Add register/unregister event for " Lukasz Rymanowski
2014-10-22 11:00 ` Szymon Janc
2014-10-23 15:00 ` Lukasz Rymanowski
2014-10-09 23:50 ` [PATCH v4 05/11] shared/hfp: Add HFP HF parser Lukasz Rymanowski
2014-10-22 11:00 ` Szymon Janc [this message]
2014-10-23 15:00 ` Lukasz Rymanowski
2014-10-09 23:50 ` [PATCH v4 06/11] shared/hfp: Add send AT command API for HFP HF Lukasz Rymanowski
2014-10-22 11:00 ` Szymon Janc
2014-10-23 15:00 ` Lukasz Rymanowski
2014-10-09 23:50 ` [PATCH v4 07/11] unit/test-hfp: Provide test_handler function via struct data Lukasz Rymanowski
2014-10-09 23:50 ` [PATCH v4 08/11] unit/test-hfp: Add init test for HFP HF Lukasz Rymanowski
2014-10-22 11:00 ` Szymon Janc
2014-10-23 15:00 ` Lukasz Rymanowski
2014-10-09 23:50 ` [PATCH v4 09/11] unit/test-hfp: Add send command tests " Lukasz Rymanowski
2014-10-09 23:50 ` [PATCH v4 10/11] unit/test-hfp: Add tests for unsolicited results " Lukasz Rymanowski
2014-10-09 23:50 ` [PATCH v4 11/11] unit/test-hfp: Add some robustness tests " Lukasz Rymanowski
2014-10-21 14:54 ` [PATCH v4 00/11] shared/hfp: Add support " Lukasz Rymanowski
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=2626729.yqIRdlFYHe@uw000953 \
--to=szymon.janc@tieto.com \
--cc=linux-bluetooth@vger.kernel.org \
--cc=lukasz.rymanowski@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