2012-10-21 23:00:06 +02:00
|
|
|
/*
|
|
|
|
* ustream - library for stream buffer management
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 Felix Fietkau <nbd@openwrt.org>
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "ustream.h"
|
|
|
|
|
2013-01-03 15:58:04 +01:00
|
|
|
static bool _init = false;
|
|
|
|
|
2012-12-30 19:21:03 +01:00
|
|
|
static void ustream_fd_set_uloop(struct ustream *s, bool write)
|
2012-10-21 23:00:06 +02:00
|
|
|
{
|
|
|
|
struct ustream_fd *sf = container_of(s, struct ustream_fd, stream);
|
|
|
|
struct ustream_buf *buf;
|
|
|
|
unsigned int flags = ULOOP_EDGE_TRIGGER;
|
|
|
|
|
|
|
|
if (!s->read_blocked && !s->eof)
|
|
|
|
flags |= ULOOP_READ;
|
|
|
|
|
|
|
|
buf = s->w.head;
|
2012-12-30 19:21:03 +01:00
|
|
|
if (write || (buf && s->w.data_bytes && !s->write_error))
|
2012-10-21 23:00:06 +02:00
|
|
|
flags |= ULOOP_WRITE;
|
|
|
|
|
|
|
|
uloop_fd_add(&sf->fd, flags);
|
|
|
|
|
2013-01-03 15:58:04 +01:00
|
|
|
if ((flags & ULOOP_READ) && !_init);
|
2012-10-21 23:00:06 +02:00
|
|
|
sf->fd.cb(&sf->fd, ULOOP_READ);
|
|
|
|
}
|
|
|
|
|
2012-12-30 19:21:03 +01:00
|
|
|
static void ustream_fd_set_read_blocked(struct ustream *s)
|
|
|
|
{
|
|
|
|
ustream_fd_set_uloop(s, false);
|
|
|
|
}
|
|
|
|
|
2012-10-29 23:39:48 +01:00
|
|
|
static void ustream_fd_read_pending(struct ustream_fd *sf, bool *more)
|
2012-10-21 23:00:06 +02:00
|
|
|
{
|
|
|
|
struct ustream *s = &sf->stream;
|
|
|
|
int buflen = 0;
|
|
|
|
ssize_t len;
|
|
|
|
char *buf;
|
|
|
|
|
|
|
|
do {
|
|
|
|
buf = ustream_reserve(s, 1, &buflen);
|
|
|
|
if (!buf)
|
|
|
|
break;
|
|
|
|
|
|
|
|
len = read(sf->fd.fd, buf, buflen);
|
|
|
|
if (len < 0) {
|
|
|
|
if (errno == EINTR)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (errno == EAGAIN)
|
|
|
|
return;
|
2013-01-03 15:46:21 +01:00
|
|
|
|
|
|
|
len = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!len) {
|
|
|
|
sf->fd.eof = true;
|
|
|
|
return;
|
2012-10-21 23:00:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ustream_fill_read(s, len);
|
2012-10-29 23:39:48 +01:00
|
|
|
*more = true;
|
2012-10-21 23:00:06 +02:00
|
|
|
} while (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
if (!buflen)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
retry:
|
|
|
|
len = write(sf->fd.fd, buf, buflen);
|
|
|
|
if (!len)
|
|
|
|
goto retry;
|
|
|
|
|
|
|
|
if (len < 0) {
|
|
|
|
if (errno == EINTR)
|
|
|
|
goto retry;
|
|
|
|
|
|
|
|
if (errno == EAGAIN || errno == EWOULDBLOCK)
|
2012-12-30 19:21:03 +01:00
|
|
|
len = 0;
|
2012-10-21 23:00:06 +02:00
|
|
|
}
|
|
|
|
|
2012-12-30 19:21:03 +01:00
|
|
|
if (len >= 0 && len < buflen)
|
|
|
|
ustream_fd_set_uloop(s, true);
|
|
|
|
|
2012-10-21 23:00:06 +02:00
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
2012-10-29 23:39:48 +01:00
|
|
|
static bool __ustream_fd_poll(struct ustream_fd *sf, unsigned int events)
|
2012-10-21 23:00:06 +02:00
|
|
|
{
|
|
|
|
struct ustream *s = &sf->stream;
|
2012-10-29 23:39:48 +01:00
|
|
|
struct uloop_fd *fd = &sf->fd;
|
|
|
|
bool more = false;
|
2012-10-21 23:00:06 +02:00
|
|
|
|
|
|
|
if (events & ULOOP_READ)
|
2012-10-29 23:39:48 +01:00
|
|
|
ustream_fd_read_pending(sf, &more);
|
2012-10-21 23:00:06 +02:00
|
|
|
|
|
|
|
if (events & ULOOP_WRITE) {
|
2012-12-30 17:26:40 +01:00
|
|
|
if (!ustream_write_pending(s))
|
2012-12-30 19:21:03 +01:00
|
|
|
ustream_fd_set_uloop(s, false);
|
2012-10-21 23:00:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!s->eof && fd->eof) {
|
|
|
|
s->eof = true;
|
2012-12-30 19:21:03 +01:00
|
|
|
ustream_fd_set_uloop(s, false);
|
2012-10-21 23:00:06 +02:00
|
|
|
ustream_state_change(s);
|
|
|
|
}
|
2012-10-29 23:39:48 +01:00
|
|
|
|
|
|
|
return more;
|
2012-10-21 23:00:06 +02:00
|
|
|
}
|
|
|
|
|
2012-10-29 23:39:48 +01:00
|
|
|
static bool ustream_fd_poll(struct ustream *s)
|
|
|
|
{
|
|
|
|
struct ustream_fd *sf = container_of(s, struct ustream_fd, stream);
|
|
|
|
|
2012-12-30 17:26:40 +01:00
|
|
|
return __ustream_fd_poll(sf, ULOOP_READ | ULOOP_WRITE);
|
2012-10-29 23:39:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void ustream_uloop_cb(struct uloop_fd *fd, unsigned int events)
|
|
|
|
{
|
|
|
|
struct ustream_fd *sf = container_of(fd, struct ustream_fd, fd);
|
|
|
|
|
|
|
|
__ustream_fd_poll(sf, events);
|
|
|
|
}
|
2012-10-21 23:00:06 +02:00
|
|
|
|
|
|
|
static void ustream_fd_free(struct ustream *s)
|
|
|
|
{
|
|
|
|
struct ustream_fd *sf = container_of(s, struct ustream_fd, stream);
|
|
|
|
|
|
|
|
uloop_fd_delete(&sf->fd);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ustream_fd_init(struct ustream_fd *sf, int fd)
|
|
|
|
{
|
|
|
|
struct ustream *s = &sf->stream;
|
|
|
|
|
|
|
|
ustream_init_defaults(s);
|
|
|
|
|
|
|
|
sf->fd.fd = fd;
|
|
|
|
sf->fd.cb = ustream_uloop_cb;
|
2012-12-30 19:21:03 +01:00
|
|
|
s->set_read_blocked = ustream_fd_set_read_blocked;
|
2012-10-21 23:00:06 +02:00
|
|
|
s->write = ustream_fd_write;
|
|
|
|
s->free = ustream_fd_free;
|
2012-10-29 23:39:48 +01:00
|
|
|
s->poll = ustream_fd_poll;
|
2013-01-03 15:58:04 +01:00
|
|
|
_init = true;
|
2012-12-30 19:21:03 +01:00
|
|
|
ustream_fd_set_uloop(s, false);
|
2013-01-03 15:58:04 +01:00
|
|
|
_init = false;
|
2012-10-21 23:00:06 +02:00
|
|
|
}
|