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
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/* camel-stream.c : abstract class for a stream */
/*
* Author:
* Bertrand Guiheneuf <bertrand@helixcode.com>
*
* Copyright 1999, 2000 Ximian, Inc. (www.ximian.com)
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of version 2 of the GNU Lesser General Public
* License as published by the Free Software Foundation.
*
* This program 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 program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
* USA
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <string.h>
#include "camel-stream.h"
static CamelObjectClass *parent_class = NULL;
/* Returns the class for a CamelStream */
#define CS_CLASS(so) CAMEL_STREAM_CLASS(CAMEL_OBJECT_GET_CLASS(so))
/* default implementations, do very little */
static ssize_t stream_read (CamelStream *stream, char *buffer, size_t n) { return 0; }
static ssize_t stream_write (CamelStream *stream, const char *buffer, size_t n) { return n; }
static int stream_close (CamelStream *stream) { return 0; }
static int stream_flush (CamelStream *stream) { return 0; }
static gboolean stream_eos (CamelStream *stream) { return stream->eos; }
static int stream_reset (CamelStream *stream) { return 0; }
static void
camel_stream_class_init (CamelStreamClass *camel_stream_class)
{
parent_class = camel_type_get_global_classfuncs( CAMEL_OBJECT_TYPE );
/* virtual method definition */
camel_stream_class->read = stream_read;
camel_stream_class->write = stream_write;
camel_stream_class->close = stream_close;
camel_stream_class->flush = stream_flush;
camel_stream_class->eos = stream_eos;
camel_stream_class->reset = stream_reset;
}
CamelType
camel_stream_get_type (void)
{
static CamelType camel_stream_type = CAMEL_INVALID_TYPE;
if (camel_stream_type == CAMEL_INVALID_TYPE) {
camel_stream_type = camel_type_register( CAMEL_OBJECT_TYPE,
"CamelStream",
sizeof( CamelStream ),
sizeof( CamelStreamClass ),
(CamelObjectClassInitFunc) camel_stream_class_init,
NULL,
NULL,
NULL );
}
return camel_stream_type;
}
/**
* camel_stream_read:
* @stream: a #CamelStream object.
* @buffer: output buffer
* @n: max number of bytes to read.
*
* Attempts to read up to @len bytes from @stream into @buf.
*
* Returns the number of bytes actually read, or %-1 on error and set
* errno.
**/
ssize_t
camel_stream_read (CamelStream *stream, char *buffer, size_t n)
{
g_return_val_if_fail (CAMEL_IS_STREAM (stream), -1);
g_return_val_if_fail (n == 0 || buffer, -1);
return (CS_CLASS (stream)->read) (stream, buffer, n);
}
/**
* camel_stream_write:
* @stream: a #CamelStream object
* @buffer: buffer to write.
* @n: number of bytes to write
*
* Attempts to write up to @n bytes of @buffer into @stream.
*
* Returns the number of bytes written to the stream, or %-1 on error
* along with setting errno.
**/
ssize_t
camel_stream_write (CamelStream *stream, const char *buffer, size_t n)
{
g_return_val_if_fail (CAMEL_IS_STREAM (stream), -1);
g_return_val_if_fail (n == 0 || buffer, -1);
return CS_CLASS (stream)->write (stream, buffer, n);
}
/**
* camel_stream_flush:
* @stream: a #CamelStream object
*
* Flushes any buffered data to the stream's backing store. Only
* meaningful for writable streams.
*
* Returns %0 on success or %-1 on fail along with setting errno.
**/
int
camel_stream_flush (CamelStream *stream)
{
g_return_val_if_fail (CAMEL_IS_STREAM (stream), -1);
return CS_CLASS (stream)->flush (stream);
}
/**
* camel_stream_close:
* @stream: a #CamelStream object
*
* Closes the stream.
*
* Returns %0 on success or %-1 on error.
**/
int
camel_stream_close (CamelStream *stream)
{
g_return_val_if_fail (CAMEL_IS_STREAM (stream), -1);
return CS_CLASS (stream)->close (stream);
}
/**
* camel_stream_eos:
* @stream: a #CamelStream object
*
* Tests if there are bytes left to read on the @stream object.
*
* Returns %TRUE on EOS or %FALSE otherwise.
**/
gboolean
camel_stream_eos (CamelStream *stream)
{
g_return_val_if_fail (CAMEL_IS_STREAM (stream), TRUE);
return CS_CLASS (stream)->eos (stream);
}
/**
* camel_stream_reset:
* @stream: a #CamelStream object
*
* Resets the stream. That is, put it in a state where it can be read
* from the beginning again. Not all streams in Camel are seekable,
* but they must all be resettable.
*
* Returns %0 on success or %-1 on error along with setting errno.
**/
int
camel_stream_reset (CamelStream *stream)
{
g_return_val_if_fail (CAMEL_IS_STREAM (stream), -1);
return CS_CLASS (stream)->reset (stream);
}
/***************** Utility functions ********************/
/**
* camel_stream_write_string:
* @stream: a #CamelStream object
* @string: a string
*
* Writes the string to the stream.
*
* Returns the number of characters written or %-1 on error.
**/
ssize_t
camel_stream_write_string (CamelStream *stream, const char *string)
{
return camel_stream_write (stream, string, strlen (string));
}
/**
* camel_stream_printf:
* @stream: a #CamelStream object
* @fmt: a printf-style format string
*
* Write formatted output to a stream.
*
* Returns the number of characters written or %-1 on error.
**/
ssize_t
camel_stream_printf (CamelStream *stream, const char *fmt, ... )
{
va_list args;
char *string;
ssize_t ret;
g_return_val_if_fail (CAMEL_IS_STREAM (stream), -1);
va_start (args, fmt);
string = g_strdup_vprintf (fmt, args);
va_end (args);
if (!string)
return -1;
ret = camel_stream_write (stream, string, strlen (string));
g_free (string);
return ret;
}
/**
* camel_stream_write_to_stream:
* @stream: source #CamelStream object
* @output_stream: destination #CamelStream object
*
* Write all of a stream (until eos) into another stream, in a
* blocking fashion.
*
* Returns %-1 on error, or the number of bytes succesfully
* copied across streams.
**/
ssize_t
camel_stream_write_to_stream (CamelStream *stream, CamelStream *output_stream)
{
char tmp_buf[4096];
ssize_t total = 0;
ssize_t nb_read;
ssize_t nb_written;
g_return_val_if_fail (CAMEL_IS_STREAM (stream), -1);
g_return_val_if_fail (CAMEL_IS_STREAM (output_stream), -1);
while (!camel_stream_eos (stream)) {
nb_read = camel_stream_read (stream, tmp_buf, sizeof (tmp_buf));
if (nb_read < 0)
return -1;
else if (nb_read > 0) {
nb_written = 0;
while (nb_written < nb_read) {
ssize_t len = camel_stream_write (output_stream, tmp_buf + nb_written,
nb_read - nb_written);
if (len < 0)
return -1;
nb_written += len;
}
total += nb_written;
}
}
return total;
}
|