1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238
|
/* GNU Mailutils -- a suite of utilities for electronic mail
Copyright (C) 2009-2025 Free Software Foundation, Inc.
This library is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 3, or (at your option)
any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with GNU Mailutils. If not, see <http://www.gnu.org/licenses/>. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <stdlib.h>
#include <errno.h>
#include <mailutils/types.h>
#include <mailutils/errno.h>
#include <mailutils/sys/rdcache_stream.h>
static int
rdcache_read (struct _mu_stream *str, char *buf, size_t size, size_t *pnbytes)
{
struct _mu_rdcache_stream *sp = (struct _mu_rdcache_stream *) str;
int status = 0;
size_t nbytes = 0;
if (sp->offset < sp->size)
{
status = mu_stream_read (sp->cache, buf, size, &nbytes);
if (status)
return status;
sp->offset += nbytes;
buf += nbytes;
size -= nbytes;
}
else if (sp->offset > sp->size)
{
size_t left = sp->offset - sp->size;
status = mu_stream_seek (sp->cache, 0, MU_SEEK_END, NULL);
if (status)
return status;
status = mu_stream_copy (sp->cache, sp->transport, left, NULL);
if (status)
return status;
sp->size = sp->offset;
}
if (size)
{
size_t rdbytes;
status = mu_stream_read (sp->transport, buf, size, &rdbytes);
if (rdbytes)
{
int rc;
sp->offset += rdbytes;
sp->size += rdbytes;
nbytes += rdbytes;
rc = mu_stream_write (sp->cache, buf, rdbytes, NULL);
if (rc)
{
if (status == 0)
status = rc;
}
}
}
if (pnbytes)
*pnbytes = nbytes;
return status;
}
static int
rdcache_size (struct _mu_stream *str, mu_off_t *psize)
{
struct _mu_rdcache_stream *sp = (struct _mu_rdcache_stream *) str;
int rc;
if (mu_stream_eof (sp->transport))
{
*psize = sp->size;
rc = 0;
}
else
{
rc = mu_stream_size (sp->transport, psize);
switch (rc)
{
case EAGAIN:
case EINTR:
case ENOSYS:
case EINPROGRESS:
rc = MU_ERR_INFO_UNAVAILABLE;
}
}
return rc;
}
static int
rdcache_seek (struct _mu_stream *str, mu_off_t off, mu_off_t *presult)
{
struct _mu_rdcache_stream *sp = (struct _mu_rdcache_stream *) str;
if (off < 0)
return ESPIPE;
if (off < sp->size)
{
int status = mu_stream_seek (sp->cache, off, MU_SEEK_SET, NULL);
if (status)
return status;
}
sp->offset = off;
*presult = sp->offset;
return 0;
}
static int
rdcache_wait (struct _mu_stream *str, int *pflags, struct timeval *tvp)
{
struct _mu_rdcache_stream *sp = (struct _mu_rdcache_stream *) str;
return mu_stream_wait (sp->transport, pflags, tvp);
}
/* FIXME: Truncate? */
static int
rdcache_ioctl (struct _mu_stream *str, int code, int opcode, void *arg)
{
struct _mu_rdcache_stream *sp = (struct _mu_rdcache_stream *) str;
switch (code)
{
case MU_IOCTL_TRANSPORT:
if (!arg)
return EINVAL;
else
{
mu_transport_t *ptrans = arg;
switch (opcode)
{
case MU_IOCTL_OP_GET:
ptrans[0] = (mu_transport_t) sp->transport;
ptrans[1] = NULL;
break;
case MU_IOCTL_OP_SET:
return ENOSYS;
default:
return EINVAL;
}
}
break;
case MU_IOCTL_TRANSPORT_BUFFER:
if (!arg)
return EINVAL;
else
{
struct mu_buffer_query *qp = arg;
if (qp->type != MU_TRANSPORT_INPUT || !sp->transport)
return EINVAL;
return mu_stream_ioctl (sp->transport, code, opcode, arg);
}
default:
return mu_stream_ioctl (sp->transport, code, opcode, arg);
}
return 0;
}
static int
rdcache_open (struct _mu_stream *str)
{
struct _mu_rdcache_stream *sp = (struct _mu_rdcache_stream *) str;
return mu_stream_open (sp->transport);
}
static int
rdcache_close (struct _mu_stream *str)
{
struct _mu_rdcache_stream *sp = (struct _mu_rdcache_stream *) str;
return mu_stream_close (sp->transport);
}
static void
rdcache_done (struct _mu_stream *str)
{
struct _mu_rdcache_stream *sp = (struct _mu_rdcache_stream *) str;
mu_stream_unref (sp->transport);
mu_stream_unref (sp->cache);
}
int
mu_rdcache_stream_create (mu_stream_t *pstream, mu_stream_t transport,
int flags)
{
struct _mu_rdcache_stream *sp;
int rc;
int sflags = MU_STREAM_READ | MU_STREAM_SEEK;
if (flags & ~sflags)
return EINVAL;
sp = (struct _mu_rdcache_stream *)
_mu_stream_create (sizeof (*sp), sflags | _MU_STR_OPEN);
if (!sp)
return ENOMEM;
sp->stream.read = rdcache_read;
sp->stream.open = rdcache_open;
sp->stream.close = rdcache_close;
sp->stream.done = rdcache_done;
sp->stream.seek = rdcache_seek;
sp->stream.size = rdcache_size;
sp->stream.ctl = rdcache_ioctl;
sp->stream.wait = rdcache_wait;
mu_stream_ref (transport);
sp->transport = transport;
if ((rc = mu_memory_stream_create (&sp->cache, MU_STREAM_RDWR)))
{
mu_stream_destroy ((mu_stream_t*) &sp);
return rc;
}
*pstream = (mu_stream_t) sp;
return 0;
}
|