X-Git-Url: http://git.archive.openwrt.org/?p=project%2Flibubox.git;a=blobdiff_plain;f=ustream.c;h=e7ee9f07c5952057bb2bc558ae9330af180bc753;hp=fd4339527d305dfcd9851fe0fb4562e7b6082141;hb=155bf39896f126b1ba121b816922a88dc34c31e3;hpb=c434230a76e2fdd97b77ca96f64569c91e7df8a1 diff --git a/ustream.c b/ustream.c index fd43395..e7ee9f0 100644 --- a/ustream.c +++ b/ustream.c @@ -94,9 +94,6 @@ void ustream_free(struct ustream *s) uloop_timeout_cancel(&s->state_change); ustream_free_buffers(&s->r); ustream_free_buffers(&s->w); - s->write_error = false; - s->eof = false; - s->read_blocked = 0; } static void ustream_state_change_cb(struct uloop_timeout *t) @@ -131,6 +128,16 @@ void ustream_init_defaults(struct ustream *s) #undef DEFAULT_SET s->state_change.cb = ustream_state_change_cb; + s->write_error = false; + s->eof = false; + s->eof_write_done = false; + s->read_blocked = 0; + + s->r.buffers = 0; + s->r.data_bytes = 0; + + s->w.buffers = 0; + s->w.data_bytes = 0; } static bool ustream_should_move(struct ustream_buf_list *l, struct ustream_buf *buf, int len) @@ -138,21 +145,26 @@ static bool ustream_should_move(struct ustream_buf_list *l, struct ustream_buf * int maxlen; int offset; + /* nothing to squeeze */ if (buf->data == buf->head) return false; maxlen = buf->end - buf->head; offset = buf->data - buf->head; + /* less than half is available */ if (offset > maxlen / 2) return true; + /* less than 32 bytes data but takes more than 1/4 space */ if (buf->tail - buf->data < 32 && offset > maxlen / 4) return true; + /* more buf is already in list or can be allocated */ if (buf != l->tail || ustream_can_alloc(l)) return false; + /* no need to move if len is available at the tail */ return (buf->end - buf->tail < len); } @@ -248,13 +260,14 @@ static bool ustream_prepare_buf(struct ustream *s, struct ustream_buf_list *l, i if (l == &s->r) ustream_fixup_string(s, buf); } + /* some chunks available at the tail */ if (buf->tail != buf->end) return true; - } - - if (buf && buf->next) { - l->data_tail = buf->next; - return true; + /* next buf available */ + if (buf->next) { + l->data_tail = buf->next; + return true; + } } if (!ustream_can_alloc(l)) @@ -269,7 +282,7 @@ static bool ustream_prepare_buf(struct ustream *s, struct ustream_buf_list *l, i char *ustream_reserve(struct ustream *s, int len, int *maxlen) { - struct ustream_buf *buf = s->r.head; + struct ustream_buf *buf; if (!ustream_prepare_buf(s, &s->r, len)) { __ustream_set_read_blocked(s, s->read_blocked | READ_BLOCKED_FULL); @@ -326,6 +339,26 @@ char *ustream_get_read_buf(struct ustream *s, int *buflen) return data; } +int ustream_read(struct ustream *s, char *buf, int buflen) +{ + char *chunk; + int chunk_len; + int len = 0; + + do { + chunk = ustream_get_read_buf(s, &chunk_len); + if (!chunk) + break; + if (chunk_len > buflen - len) + chunk_len = buflen - len; + memcpy(buf + len, chunk, chunk_len); + ustream_consume(s, chunk_len); + len += chunk_len; + } while (len < buflen); + + return len; +} + static void ustream_write_error(struct ustream *s) { if (!s->write_error)