X-Git-Url: http://dolda2000.com/gitweb/?a=blobdiff_plain;f=lib%2Fmtio.c;h=c084473bdc8fab7b607e7bec0e6fb7ce51ecc9eb;hb=d8aea4cfb5e8ed4e7aa5969f75099d5693b63ef1;hp=70a0949684d4169c8aa6fec6cb51944939ba49c5;hpb=9d82f27c53c5fb79ceee52904b996edefb27628a;p=ashd.git diff --git a/lib/mtio.c b/lib/mtio.c index 70a0949..c084473 100644 --- a/lib/mtio.c +++ b/lib/mtio.c @@ -38,7 +38,7 @@ struct stdiofd { int timeout; }; -static ssize_t mtread(void *cookie, char *buf, size_t len) +static ssize_t mtread(void *cookie, void *buf, size_t len) { struct stdiofd *d = cookie; int ev; @@ -63,7 +63,7 @@ static ssize_t mtread(void *cookie, char *buf, size_t len) } } -static ssize_t mtwrite(void *cookie, const char *buf, size_t len) +static ssize_t mtwrite(void *cookie, const void *buf, size_t len) { struct stdiofd *d = cookie; int ev; @@ -107,66 +107,142 @@ static int mtclose(void *cookie) return(0); } -#if defined(HAVE_GLIBC_STDIO) -static cookie_io_functions_t iofuns = { - .read = mtread, - .write = mtwrite, - .close = mtclose, -}; - FILE *mtstdopen(int fd, int issock, int timeout, char *mode) { struct stdiofd *d; FILE *ret; + int r, w; + if(!strcmp(mode, "r")) { + r = 1; w = 0; + } else if(!strcmp(mode, "w")) { + r = 0; w = 1; + } else if(!strcmp(mode, "r+")) { + r = w = 1; + } else { + return(NULL); + } omalloc(d); d->fd = fd; d->sock = issock; d->timeout = timeout; - ret = fopencookie(d, mode, iofuns); + ret = funstdio(d, r?mtread:NULL, w?mtwrite:NULL, NULL, mtclose); if(!ret) free(d); else fcntl(fd, F_SETFL, fcntl(fd, F_GETFL) | O_NONBLOCK); return(ret); } -#elif defined(HAVE_BSD_STDIO) -static int bsd2mtread(void *cookie, char *buf, int len) + +struct pipe { + struct charbuf data; + size_t bufmax; + int closed; + struct muth *r, *w; +}; + +static void freepipe(struct pipe *p) { - return(mtread(cookie, buf, len)); + buffree(p->data); + free(p); } -static int bsd2mtwrite(void *cookie, const char *buf, int len) +static ssize_t piperead(void *pdata, void *buf, size_t len) { - return(mtwrite(cookie, buf, len)); + struct pipe *p = pdata; + ssize_t ret; + + while(p->data.d == 0) { + if(p->closed & 2) + return(0); + if(p->r) { + errno = EBUSY; + return(-1); + } + p->r = current; + yield(); + p->r = NULL; + } + ret = min(len, p->data.d); + memcpy(buf, p->data.b, ret); + memmove(p->data.b, p->data.b + ret, p->data.d -= ret); + if(p->w) + resume(p->w, 0); + return(ret); } -FILE *mtstdopen(int fd, int issock, int timeout, char *mode) +static int piperclose(void *pdata) { - struct stdiofd *d; - FILE *ret; - int r, w; + struct pipe *p = pdata; - if(!strcmp(mode, "r")) { - r = 1; w = 0; - } else if(!strcmp(mode, "w")) { - r = 0; w = 1; - } else if(!strcmp(mode, "r+")) { - r = w = 1; + if(p->closed & 2) { + freepipe(p); } else { - return(NULL); + p->closed |= 1; + if(p->w) + resume(p->w, 0); } - omalloc(d); - d->fd = fd; - d->sock = issock; - d->timeout = timeout; - ret = funopen(d, r?bsd2mtread:NULL, w?bsd2mtwrite:NULL, NULL, mtclose); - if(!ret) - free(d); - else - fcntl(fd, F_SETFL, fcntl(fd, F_GETFL) | O_NONBLOCK); - return(ret); + return(0); +} + +static ssize_t pipewrite(void *pdata, const void *buf, size_t len) +{ + struct pipe *p = pdata; + size_t off, part; + + if(p->closed & 1) { + errno = EPIPE; + return(-1); + } + off = 0; + while(off < len) { + while(p->data.d >= p->bufmax) { + if(p->w) { + errno = EBUSY; + return(-1); + } + if(p->closed & 1) { + if(off == 0) { + errno = EPIPE; + return(-1); + } + return(off); + } + p->w = current; + yield(); + p->w = NULL; + } + part = min(len - off, p->bufmax - p->data.d); + sizebuf(p->data, p->data.d + part); + memcpy(p->data.b + p->data.d, buf + off, part); + off += part; + p->data.d += part; + if(p->r) + resume(p->r, 0); + } + return(off); +} + +static int pipewclose(void *pdata) +{ + struct pipe *p = pdata; + + if(p->closed & 1) { + freepipe(p); + } else { + p->closed |= 2; + if(p->r) + resume(p->r, 0); + } + return(0); +} + +void mtiopipe(FILE **read, FILE **write) +{ + struct pipe *p; + + omalloc(p); + p->bufmax = 4096; + *read = funstdio(p, piperead, NULL, NULL, piperclose); + *write = funstdio(p, NULL, pipewrite, NULL, pipewclose); } -#else -#error "No stdio implementation for this system" -#endif