X-Git-Url: https://git.archive.openwrt.org/?p=project%2Flibubox.git;a=blobdiff_plain;f=ustream-fd.c;h=e39da98e3d5ccfa120b7f4a5ee8e6845626dd0f9;hp=93fd501903701e50f82edafa111c730e70001dd9;hb=f24b6294c2d070e03ce663a60cdc50c9e5ab50e8;hpb=29c066cfd60cc9101201a2c31a9aa66288288719 diff --git a/ustream-fd.c b/ustream-fd.c index 93fd501..e39da98 100644 --- a/ustream-fd.c +++ b/ustream-fd.c @@ -21,6 +21,8 @@ #include #include "ustream.h" +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); @@ -36,7 +38,7 @@ static void ustream_fd_set_uloop(struct ustream *s, bool write) uloop_fd_add(&sf->fd, flags); - if (flags & ULOOP_READ) + if ((flags & ULOOP_READ) && !_init); sf->fd.cb(&sf->fd, ULOOP_READ); } @@ -58,17 +60,21 @@ 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; + ustream_state_change(s); + ustream_fd_set_uloop(s, false); + return; } ustream_fill_read(s, len); @@ -79,34 +85,38 @@ static void ustream_fd_read_pending(struct ustream_fd *sf, bool *more) static int ustream_fd_write(struct ustream *s, const char *buf, int buflen, bool more) { struct ustream_fd *sf = container_of(s, struct ustream_fd, stream); - ssize_t len; + ssize_t ret = 0, len; if (!buflen) return 0; -retry: - len = write(sf->fd.fd, buf, buflen); - if (!len) - goto retry; + while (buflen) { + len = write(sf->fd.fd, buf, buflen); + + if (len < 0) { + if (errno == EINTR) + continue; + + if (errno == EAGAIN || errno == EWOULDBLOCK) + break; - if (len < 0) { - if (errno == EINTR) - goto retry; + return -1; + } - if (errno == EAGAIN || errno == EWOULDBLOCK) - len = 0; + ret += len; + buf += len; + buflen -= len; } - if (len >= 0 && len < buflen) + if (buflen) ustream_fd_set_uloop(s, true); - return len; + return ret; } static bool __ustream_fd_poll(struct ustream_fd *sf, unsigned int events) { struct ustream *s = &sf->stream; - struct uloop_fd *fd = &sf->fd; bool more = false; if (events & ULOOP_READ) @@ -117,12 +127,6 @@ static bool __ustream_fd_poll(struct ustream_fd *sf, unsigned int events) ustream_fd_set_uloop(s, false); } - if (!s->eof && fd->eof) { - s->eof = true; - ustream_fd_set_uloop(s, false); - ustream_state_change(s); - } - return more; } @@ -159,5 +163,7 @@ void ustream_fd_init(struct ustream_fd *sf, int fd) s->write = ustream_fd_write; s->free = ustream_fd_free; s->poll = ustream_fd_poll; + _init = true; ustream_fd_set_uloop(s, false); + _init = false; }