From: Zhenhua Zhang <zhenhua.zhang@intel.com>
To: ofono@ofono.org
Subject: Re: [PATCH 3/4] Add write buffer queue for non-blocking write
Date: Fri, 26 Feb 2010 18:02:48 +0800 [thread overview]
Message-ID: <4B879C48.3000804@intel.com> (raw)
In-Reply-To: <1267178192-21396-3-git-send-email-zhenhua.zhang@intel.com>
[-- Attachment #1: Type: text/plain, Size: 5148 bytes --]
Hi Denis,
On 02/26/2010 05:56 PM, Zhang, Zhenhua wrote:
> The head of the queue is the data to be written, the tail is the
> free buffer to cache data into.
>
> If the tail of queue is full, allocate a new free buffer and
> append it at the tail.
> ---
> gatchat/gatserver.c | 105 ++++++++++++++++++++++++++++++++++++++++++++++-----
> 1 files changed, 95 insertions(+), 10 deletions(-)
>
> +
> +static void send_common(GAtServer *server, const char *buf, unsigned int len)
> +{
> + gsize towrite = len;
> + gsize bytes_written = 0;
> + struct ring_buffer *write_buf;
> +
> + write_buf = g_queue_peek_tail(server->write_queue);
This is the updated 3/4 patch. For this write_buf, it should alway exist
since we allocate one buffer in g_at_server_new. So I don't check
write_buf here.
> + while (bytes_written< towrite) {
> + gsize wbytes = MIN((gsize)ring_buffer_avail(write_buf),
> + towrite - bytes_written);
> +
> + bytes_written += ring_buffer_write(write_buf,
> + buf + bytes_written,
> + wbytes);
> +
> + if (ring_buffer_avail(write_buf) == 0)
> + write_buf = allocate_next(server);
> + }
> +
> + g_at_server_wakeup_writer(server);
> +}
> +
> static void g_at_server_send_result(GAtServer *server, GAtServerResult result)
> {
> struct v250_settings v250 = server->v250;
> @@ -110,7 +149,7 @@ static void g_at_server_send_result(GAtServer *server, GAtServerResult result)
> char buf[1024];
> char t = v250.s3;
> char r = v250.s4;
> - gsize wbuf;
> + unsigned int len;
>
> if (v250.quiet)
> return;
> @@ -119,16 +158,13 @@ static void g_at_server_send_result(GAtServer *server, GAtServerResult result)
> return;
>
> if (v250.is_v1)
> - snprintf(buf, sizeof(buf), "%c%c%s%c%c", t, r, result_str,
> + len = snprintf(buf, sizeof(buf), "%c%c%s%c%c", t, r, result_str,
> t, r);
> else
> - snprintf(buf, sizeof(buf), "%u%c", (unsigned int) result, t);
> -
> - g_at_util_debug_chat(FALSE, buf, strlen(buf),
> - server->debugf, server->debug_data);
> + len = snprintf(buf, sizeof(buf), "%u%c", (unsigned int) result,
> + t);
>
> - g_io_channel_write(server->channel, (char *) buf, strlen(buf),
> - &wbuf);
> + send_common(server, buf, MIN(len, sizeof(buf)-1));
Update to avoid buffer overflow case. However, it's rarely possible in
g_at_server_result.
Let me know if any comments for the patches. Thanks.
Zhenhua.
> }
>
> static inline gboolean is_at_command_prefix(const char c)
> @@ -434,12 +470,31 @@ static gboolean received_data(GIOChannel *channel, GIOCondition cond,
> return TRUE;
> }
>
> +static gboolean can_write_data(GIOChannel *channel, GIOCondition cond,
> + gpointer data)
> +{
> + return FALSE;
> +}
> +
> +static void write_queue_free(GQueue *write_queue)
> +{
> + struct ring_buffer *write_buf;
> +
> + while ((write_buf = g_queue_pop_head(write_queue)))
> + ring_buffer_free(write_buf);
> +
> + g_queue_free(write_queue);
> +}
> +
> static void g_at_server_cleanup(GAtServer *server)
> {
> /* Cleanup all received data */
> ring_buffer_free(server->read_buf);
> server->read_buf = NULL;
>
> + /* Cleanup pending data to write */
> + write_queue_free(server->write_queue);
> +
> server->channel = NULL;
> }
>
> @@ -455,6 +510,23 @@ static void read_watcher_destroy_notify(GAtServer *server)
> g_free(server);
> }
>
> +static void write_watcher_destroy_notify(GAtServer *server)
> +{
> + server->write_watch = 0;
> +}
> +
> +static void g_at_server_wakeup_writer(GAtServer *server)
> +{
> + if (server->write_watch != 0)
> + return;
> +
> + server->write_watch = g_io_add_watch_full(server->channel,
> + G_PRIORITY_DEFAULT,
> + G_IO_OUT | G_IO_HUP | G_IO_ERR | G_IO_NVAL,
> + can_write_data, server,
> + (GDestroyNotify)write_watcher_destroy_notify);
> +}
> +
> static void v250_settings_create(struct v250_settings *v250)
> {
> v250->s3 = '\r';
> @@ -483,11 +555,18 @@ GAtServer *g_at_server_new(GIOChannel *io)
> v250_settings_create(&server->v250);
> server->channel = io;
> server->read_buf = ring_buffer_new(BUF_SIZE);
> - server->max_read_attempts = 3;
> -
> if (!server->read_buf)
> goto error;
>
> + server->write_queue = g_queue_new();
> + if (!server->write_queue)
> + goto error;
> +
> + if (!allocate_next(server))
> + goto error;
> +
> + server->max_read_attempts = 3;
> +
> if (!g_at_util_setup_io(server->channel, G_IO_FLAG_NONBLOCK))
> goto error;
>
> @@ -502,6 +581,9 @@ error:
> if (server->read_buf)
> ring_buffer_free(server->read_buf);
>
> + if (server->write_queue)
> + write_queue_free(server->write_queue);
> +
> if (server)
> g_free(server);
>
> @@ -552,6 +634,9 @@ gboolean g_at_server_shutdown(GAtServer *server)
> server->user_disconnect = NULL;
> server->user_disconnect_data = NULL;
>
> + if (server->write_watch)
> + g_source_remove(server->write_watch);
> +
> if (server->read_watch)
> g_source_remove(server->read_watch);
>
next prev parent reply other threads:[~2010-02-26 10:02 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-02-26 9:56 [PATCH 1/4] Do not trigger user disconnect at g_at_shutdown Zhenhua Zhang
2010-02-26 9:56 ` [PATCH 2/4] Add define for read and write buffer size Zhenhua Zhang
2010-02-26 9:56 ` [PATCH 3/4] Add write buffer queue for non-blocking write Zhenhua Zhang
2010-02-26 9:56 ` [PATCH 4/4] Add write server response into non-blocking IO Zhenhua Zhang
2010-02-26 22:20 ` Denis Kenzior
2010-02-26 10:02 ` Zhenhua Zhang [this message]
2010-02-26 22:19 ` [PATCH 3/4] Add write buffer queue for non-blocking write Denis Kenzior
2010-02-26 22:19 ` [PATCH 2/4] Add define for read and write buffer size Denis Kenzior
2010-02-26 22:18 ` [PATCH 1/4] Do not trigger user disconnect at g_at_shutdown Denis Kenzior
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=4B879C48.3000804@intel.com \
--to=zhenhua.zhang@intel.com \
--cc=ofono@ofono.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