X-Git-Url: http://git.archive.openwrt.org/?a=blobdiff_plain;f=ustream-fd.c;h=a47ff9430a1d3cda85e858f0c0ab771ffb9d77bd;hb=8686989fffaf8041889edbe5319581bc0fa8c847;hp=0cd2eb3d7915c1e18e8e7d683afbc8aa52006dca;hpb=300a809a7a6b30595962308c4215ead6ec361053;p=project%2Flibubox.git diff --git a/ustream-fd.c b/ustream-fd.c index 0cd2eb3..a47ff94 100644 --- a/ustream-fd.c +++ b/ustream-fd.c @@ -21,7 +21,9 @@ #include #include "ustream.h" -static void ustream_fd_set_uloop(struct ustream *s) +static bool _init = false; + +static void ustream_fd_set_uloop(struct ustream *s, bool write) { struct ustream_fd *sf = container_of(s, struct ustream_fd, stream); struct ustream_buf *buf; @@ -31,15 +33,20 @@ static void ustream_fd_set_uloop(struct ustream *s) flags |= ULOOP_READ; buf = s->w.head; - if (buf && s->w.data_bytes && !s->write_error) + if (write || (buf && s->w.data_bytes && !s->write_error)) flags |= ULOOP_WRITE; uloop_fd_add(&sf->fd, flags); - if (flags & ULOOP_READ) + if ((flags & ULOOP_READ) && !_init); sf->fd.cb(&sf->fd, ULOOP_READ); } +static void ustream_fd_set_read_blocked(struct ustream *s) +{ + ustream_fd_set_uloop(s, false); +} + static void ustream_fd_read_pending(struct ustream_fd *sf, bool *more) { struct ustream *s = &sf->stream; @@ -53,17 +60,19 @@ static void ustream_fd_read_pending(struct ustream_fd *sf, bool *more) break; len = read(sf->fd.fd, buf, buflen); - if (!len) { - sf->fd.eof = true; - return; - } - if (len < 0) { if (errno == EINTR) continue; if (errno == EAGAIN) return; + + len = 0; + } + + if (!len) { + sf->fd.eof = true; + return; } ustream_fill_read(s, len); @@ -89,9 +98,12 @@ retry: goto retry; if (errno == EAGAIN || errno == EWOULDBLOCK) - return 0; + len = 0; } + if (len >= 0 && len < buflen) + ustream_fd_set_uloop(s, true); + return len; } @@ -106,12 +118,12 @@ static bool __ustream_fd_poll(struct ustream_fd *sf, unsigned int events) if (events & ULOOP_WRITE) { if (!ustream_write_pending(s)) - ustream_fd_set_uloop(s); + ustream_fd_set_uloop(s, false); } if (!s->eof && fd->eof) { s->eof = true; - ustream_fd_set_uloop(s); + ustream_fd_set_uloop(s, false); ustream_state_change(s); } @@ -147,9 +159,11 @@ void ustream_fd_init(struct ustream_fd *sf, int fd) sf->fd.fd = fd; sf->fd.cb = ustream_uloop_cb; - s->set_read_blocked = ustream_fd_set_uloop; + s->set_read_blocked = ustream_fd_set_read_blocked; s->write = ustream_fd_write; s->free = ustream_fd_free; s->poll = ustream_fd_poll; - ustream_fd_set_uloop(s); + _init = true; + ustream_fd_set_uloop(s, false); + _init = false; }