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 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306
|
/* GNU Mailutils -- a suite of utilities for electronic mail
Copyright (C) 1999-2001, 2006-2007, 2009-2012 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 of the License, 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 this library. If not, see
<http://www.gnu.org/licenses/>. */
#include "mu_scm.h"
#include <mailutils/io.h>
#ifndef HAVE_SCM_T_OFF
typedef off_t scm_t_off;
#endif
struct mu_port
{
mu_stream_t stream; /* Associated stream */
SCM msg; /* Message the port belongs to */
};
#define DEFAULT_BUF_SIZE 1024
#define MU_PORT(x) ((struct mu_port *) SCM_STREAM (x))
static void
mu_port_alloc_buffer (SCM port, size_t read_size, size_t write_size)
{
scm_port *pt = SCM_PTAB_ENTRY (port);
static char *s_mu_port_alloc_buffer = "mu_port_alloc_buffer";
if (!read_size)
read_size = DEFAULT_BUF_SIZE;
if (!write_size)
write_size = DEFAULT_BUF_SIZE;
if (SCM_INPUT_PORT_P (port))
{
pt->read_buf = malloc (read_size);
if (pt->read_buf == NULL)
scm_memory_error (s_mu_port_alloc_buffer);
pt->read_pos = pt->read_end = pt->read_buf;
pt->read_buf_size = read_size;
}
else
{
pt->read_pos = pt->read_buf = pt->read_end = &pt->shortbuf;
pt->read_buf_size = 1;
}
if (SCM_OUTPUT_PORT_P (port))
{
pt->write_buf = malloc (write_size);
if (pt->write_buf == NULL)
scm_memory_error (s_mu_port_alloc_buffer);
pt->write_pos = pt->write_buf;
pt->write_buf_size = write_size;
pt->write_end = pt->write_buf + pt->write_buf_size;
}
else
{
pt->write_buf = pt->write_pos = &pt->shortbuf;
pt->write_buf_size = 1;
}
SCM_SET_CELL_WORD_0 (port, SCM_CELL_WORD_0 (port) & ~SCM_BUF0);
}
static long scm_tc16_smuport;
SCM
mu_port_make_from_stream (SCM msg, mu_stream_t stream, long mode)
{
struct mu_port *mp;
SCM port;
scm_port *pt;
int flags;
mp = scm_gc_malloc (sizeof (struct mu_port), "mu-port");
mp->msg = msg;
mp->stream = stream;
port = scm_new_port_table_entry (scm_tc16_smuport | mode);
pt = SCM_PTAB_ENTRY (port);
mu_stream_get_flags (stream, &flags);
pt->rw_random = flags & MU_STREAM_SEEK;
SCM_SETSTREAM (port, mp);
mu_port_alloc_buffer (port, 0, 0);
/* FIXME:
SCM_PTAB_ENTRY (port)->file_name = "name";*/
return port;
}
static SCM
mu_port_mark (SCM port)
{
if (SCM_CELL_WORD_0 (port) & SCM_OPN)
{
struct mu_port *mp = MU_PORT (port);
return mp->msg;
}
return SCM_BOOL_F;
}
static void
mu_port_flush (SCM port)
{
struct mu_port *mp = MU_PORT (port);
scm_port *pt = SCM_PTAB_ENTRY (port);
int wrsize = pt->write_pos - pt->write_buf;
if (wrsize)
{
int status = mu_stream_write (mp->stream, pt->write_buf, wrsize, NULL);
if (status)
mu_scm_error ("mu_port_flush", status,
"Error writing to stream", SCM_BOOL_F);
}
pt->write_pos = pt->write_buf;
pt->rw_active = SCM_PORT_NEITHER;
}
static int
mu_port_close (SCM port)
{
struct mu_port *mp = MU_PORT (port);
scm_port *pt = SCM_PTAB_ENTRY (port);
mu_port_flush (port);
mu_stream_close (mp->stream);
SCM_SETSTREAM (port, NULL);
if (pt->read_buf != &pt->shortbuf)
free (pt->read_buf);
if (pt->write_buf != &pt->shortbuf)
free (pt->write_buf);
free (mp);
return 0;
}
static scm_sizet
mu_port_free (SCM port)
{
struct mu_port *mp = MU_PORT (port);
mu_stream_unref (mp->stream);
mu_port_close (port);
return 0;
}
static int
mu_port_fill_input (SCM port)
{
struct mu_port *mp = MU_PORT (port);
scm_port *pt = SCM_PTAB_ENTRY (port);
size_t nread = 0;
int status;
status = mu_stream_read (mp->stream, (char*) pt->read_buf, pt->read_buf_size,
&nread);
if (status)
mu_scm_error ("mu_port_fill_input", status,
"Error reading from stream", SCM_BOOL_F);
if (nread == 0)
return EOF;
pt->read_pos = pt->read_buf;
pt->read_end = pt->read_buf + nread;
return *pt->read_buf;
}
static void
mu_port_write (SCM port, const void *data, size_t size)
{
scm_port *pt = SCM_PTAB_ENTRY (port);
size_t remaining = size;
char *input = (char*) data;
while (remaining > 0)
{
int space = pt->write_end - pt->write_pos;
int write_len = (remaining > space) ? space : remaining;
memcpy (pt->write_pos, input, write_len);
pt->write_pos += write_len;
remaining -= write_len;
input += write_len;
if (write_len == space)
mu_port_flush (port);
}
}
/* Perform the synchronisation required for switching from input to
output on the port.
Clear the read buffer and adjust the file position for unread bytes. */
static void
mu_port_end_input (SCM port, int offset)
{
struct mu_port *mp = MU_PORT (port);
scm_port *pt = SCM_PTAB_ENTRY (port);
int delta = pt->read_end - pt->read_pos;
offset += delta;
if (offset > 0)
{
pt->read_pos = pt->read_end;
mu_stream_seek (mp->stream, - delta, MU_SEEK_CUR, NULL);
}
pt->rw_active = SCM_PORT_NEITHER;
}
static scm_t_off
mu_port_seek (SCM port, scm_t_off offset, int whence)
{
struct mu_port *mp = MU_PORT (port);
scm_port *pt = SCM_PTAB_ENTRY (port);
int mwhence;
mu_off_t pos;
int status;
if (pt->rw_active == SCM_PORT_WRITE)
{
mu_port_flush (port);
}
else if (pt->rw_active == SCM_PORT_READ)
{
scm_end_input (port);
}
switch (whence)
{
case SEEK_SET:
mwhence = MU_SEEK_SET;
break;
case SEEK_CUR:
mwhence = MU_SEEK_CUR;
break;
case SEEK_END:
mwhence = MU_SEEK_END;
}
status = mu_stream_seek (mp->stream, offset, mwhence, &pos);
if (status)
pos = -1;
return (scm_t_off) pos;
}
static void
mu_port_truncate (SCM port, mu_off_t length)
{
struct mu_port *mp = MU_PORT (port);
int status;
status = mu_stream_truncate (mp->stream, length);
if (status)
mu_scm_error ("mu_stream_truncate", status,
"Error truncating stream", SCM_BOOL_F);
}
static int
mu_port_print (SCM exp, SCM port, scm_print_state *pstate)
{
struct mu_port *mp = MU_PORT (exp);
mu_off_t size = 0;
scm_puts ("#<", port);
scm_print_port_mode (exp, port);
scm_puts ("mu-port", port);
if (mu_stream_size (mp->stream, &size) == 0)
{
char *buf;
if (mu_asprintf (&buf, " %5lu", (unsigned long) size) == 0)
{
scm_puts (buf, port);
scm_puts (" chars", port);
free (buf);
}
}
scm_putc ('>', port);
return 1;
}
void
mu_scm_port_init ()
{
scm_tc16_smuport = scm_make_port_type ("mu-port",
mu_port_fill_input, mu_port_write);
scm_set_port_mark (scm_tc16_smuport, mu_port_mark);
scm_set_port_free (scm_tc16_smuport, mu_port_free);
scm_set_port_print (scm_tc16_smuport, mu_port_print);
scm_set_port_flush (scm_tc16_smuport, mu_port_flush);
scm_set_port_end_input (scm_tc16_smuport, mu_port_end_input);
scm_set_port_close (scm_tc16_smuport, mu_port_close);
scm_set_port_seek (scm_tc16_smuport, mu_port_seek);
scm_set_port_truncate (scm_tc16_smuport, mu_port_truncate);
/* scm_set_port_input_waiting (scm_tc16_smuport, mu_port_input_waiting);*/
}
|