#include <sys/fcntl.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include "local.h"
struct fopencookie_thunk {
void *foc_cookie;
cookie_io_functions_t foc_io;
};
static int _fopencookie_read(void *, char *, int);
static int _fopencookie_write(void *, const char *, int);
static fpos_t _fopencookie_seek(void *, fpos_t, int);
static int _fopencookie_close(void *);
FILE *
fopencookie(void *cookie, const char *mode, cookie_io_functions_t io_funcs)
{
int (*readfn)(void *, char *, int);
int (*writefn)(void *, const char *, int);
struct fopencookie_thunk *thunk;
FILE *fp;
int flags, oflags;
if ((flags = __sflags(mode, &oflags)) == 0)
return (NULL);
thunk = malloc(sizeof(*thunk));
if (thunk == NULL)
return (NULL);
thunk->foc_cookie = cookie;
thunk->foc_io = io_funcs;
readfn = _fopencookie_read;
writefn = _fopencookie_write;
if (flags == __SWR)
readfn = NULL;
else if (flags == __SRD)
writefn = NULL;
fp = funopen(thunk, readfn, writefn, _fopencookie_seek,
_fopencookie_close);
if (fp == NULL) {
free(thunk);
return (NULL);
}
if ((oflags & O_APPEND) != 0)
fp->_flags |= __SAPP;
return (fp);
}
static int
_fopencookie_read(void *cookie, char *buf, int size)
{
struct fopencookie_thunk *thunk;
thunk = cookie;
if (thunk->foc_io.read == NULL)
return (0);
return ((int)thunk->foc_io.read(thunk->foc_cookie, buf, (size_t)size));
}
static int
_fopencookie_write(void *cookie, const char *buf, int size)
{
struct fopencookie_thunk *thunk;
thunk = cookie;
if (thunk->foc_io.write == NULL)
return (size);
return ((int)thunk->foc_io.write(thunk->foc_cookie, buf,
(size_t)size));
}
static fpos_t
_fopencookie_seek(void *cookie, fpos_t offset, int whence)
{
struct fopencookie_thunk *thunk;
off64_t off64;
int res;
switch (whence) {
case SEEK_SET:
case SEEK_CUR:
case SEEK_END:
break;
default:
errno = EINVAL;
return (-1);
}
thunk = cookie;
if (thunk->foc_io.seek == NULL) {
errno = ENOTSUP;
return (-1);
}
off64 = (off64_t)offset;
res = thunk->foc_io.seek(thunk->foc_cookie, &off64, whence);
if (res < 0)
return (res);
return ((fpos_t)off64);
}
static int
_fopencookie_close(void *cookie)
{
struct fopencookie_thunk *thunk;
int ret, serrno;
ret = 0;
thunk = cookie;
if (thunk->foc_io.close != NULL)
ret = thunk->foc_io.close(thunk->foc_cookie);
serrno = errno;
free(thunk);
errno = serrno;
return (ret);
}