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 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* Authors: Jeffrey Stedfast <fejj@ximian.com>
*
* Copyright 2001-2004 Ximian, Inc. (www.ximian.com)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
*
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "gmime-stream-file.h"
static void g_mime_stream_file_class_init (GMimeStreamFileClass *klass);
static void g_mime_stream_file_init (GMimeStreamFile *stream, GMimeStreamFileClass *klass);
static void g_mime_stream_file_finalize (GObject *object);
static ssize_t stream_read (GMimeStream *stream, char *buf, size_t len);
static ssize_t stream_write (GMimeStream *stream, char *buf, size_t len);
static int stream_flush (GMimeStream *stream);
static int stream_close (GMimeStream *stream);
static gboolean stream_eos (GMimeStream *stream);
static int stream_reset (GMimeStream *stream);
static off_t stream_seek (GMimeStream *stream, off_t offset, GMimeSeekWhence whence);
static off_t stream_tell (GMimeStream *stream);
static ssize_t stream_length (GMimeStream *stream);
static GMimeStream *stream_substream (GMimeStream *stream, off_t start, off_t end);
static GMimeStreamClass *parent_class = NULL;
GType
g_mime_stream_file_get_type (void)
{
static GType type = 0;
if (!type) {
static const GTypeInfo info = {
sizeof (GMimeStreamFileClass),
NULL, /* base_class_init */
NULL, /* base_class_finalize */
(GClassInitFunc) g_mime_stream_file_class_init,
NULL, /* class_finalize */
NULL, /* class_data */
sizeof (GMimeStreamFile),
16, /* n_preallocs */
(GInstanceInitFunc) g_mime_stream_file_init,
};
type = g_type_register_static (GMIME_TYPE_STREAM, "GMimeStreamFile", &info, 0);
}
return type;
}
static void
g_mime_stream_file_class_init (GMimeStreamFileClass *klass)
{
GMimeStreamClass *stream_class = GMIME_STREAM_CLASS (klass);
GObjectClass *object_class = G_OBJECT_CLASS (klass);
parent_class = g_type_class_ref (GMIME_TYPE_STREAM);
object_class->finalize = g_mime_stream_file_finalize;
stream_class->read = stream_read;
stream_class->write = stream_write;
stream_class->flush = stream_flush;
stream_class->close = stream_close;
stream_class->eos = stream_eos;
stream_class->reset = stream_reset;
stream_class->seek = stream_seek;
stream_class->tell = stream_tell;
stream_class->length = stream_length;
stream_class->substream = stream_substream;
}
static void
g_mime_stream_file_init (GMimeStreamFile *stream, GMimeStreamFileClass *klass)
{
stream->owner = TRUE;
stream->fp = NULL;
}
static void
g_mime_stream_file_finalize (GObject *object)
{
GMimeStreamFile *stream = (GMimeStreamFile *) object;
if (stream->owner && stream->fp)
fclose (stream->fp);
G_OBJECT_CLASS (parent_class)->finalize (object);
}
static ssize_t
stream_read (GMimeStream *stream, char *buf, size_t len)
{
GMimeStreamFile *fstream = (GMimeStreamFile *) stream;
ssize_t nread;
if (stream->bound_end != -1 && stream->position >= stream->bound_end)
return -1;
if (stream->bound_end != -1)
len = MIN (stream->bound_end - stream->position, (off_t) len);
/* make sure we are at the right position */
fseek (fstream->fp, stream->position, SEEK_SET);
nread = fread (buf, 1, len, fstream->fp);
if (nread > 0)
stream->position += nread;
return nread;
}
static ssize_t
stream_write (GMimeStream *stream, char *buf, size_t len)
{
GMimeStreamFile *fstream = (GMimeStreamFile *) stream;
ssize_t nwritten;
if (stream->bound_end != -1 && stream->position >= stream->bound_end)
return -1;
if (stream->bound_end != -1)
len = MIN (stream->bound_end - stream->position, (off_t) len);
/* make sure we are at the right position */
fseek (fstream->fp, stream->position, SEEK_SET);
nwritten = fwrite (buf, 1, len, fstream->fp);
if (nwritten > 0)
stream->position += nwritten;
return nwritten;
}
static int
stream_flush (GMimeStream *stream)
{
GMimeStreamFile *fstream = (GMimeStreamFile *) stream;
g_return_val_if_fail (fstream->fp != NULL, -1);
return fflush (fstream->fp);
}
static int
stream_close (GMimeStream *stream)
{
GMimeStreamFile *fstream = (GMimeStreamFile *) stream;
int ret;
g_return_val_if_fail (fstream->fp != NULL, -1);
ret = fclose (fstream->fp);
if (ret != -1)
fstream->fp = NULL;
return ret;
}
static gboolean
stream_eos (GMimeStream *stream)
{
GMimeStreamFile *fstream = (GMimeStreamFile *) stream;
g_return_val_if_fail (fstream->fp != NULL, TRUE);
if (stream->bound_end == -1)
return feof (fstream->fp) ? TRUE : FALSE;
else
return stream->position >= stream->bound_end;
}
static int
stream_reset (GMimeStream *stream)
{
GMimeStreamFile *fstream = (GMimeStreamFile *) stream;
int ret;
g_return_val_if_fail (fstream->fp != NULL, -1);
if (stream->position == stream->bound_start)
return 0;
ret = fseek (fstream->fp, stream->bound_start, SEEK_SET);
if (ret != -1)
stream->position = stream->bound_start;
return ret;
}
static off_t
stream_seek (GMimeStream *stream, off_t offset, GMimeSeekWhence whence)
{
GMimeStreamFile *fstream = (GMimeStreamFile *) stream;
off_t real = stream->position;
int ret;
g_return_val_if_fail (fstream->fp != NULL, -1);
switch (whence) {
case GMIME_STREAM_SEEK_SET:
real = offset;
break;
case GMIME_STREAM_SEEK_CUR:
real = stream->position + offset;
break;
case GMIME_STREAM_SEEK_END:
if (stream->bound_end == -1) {
fseek (fstream->fp, offset, SEEK_END);
real = ftell (fstream->fp);
if (real != -1) {
if (real < stream->bound_start)
real = stream->bound_start;
stream->position = real;
}
return real;
}
real = stream->bound_end + offset;
break;
}
if (stream->bound_end != -1)
real = MIN (real, stream->bound_end);
real = MAX (real, stream->bound_start);
ret = fseek (fstream->fp, real, SEEK_SET);
if (ret == -1)
return -1;
stream->position = real;
return real;
}
static off_t
stream_tell (GMimeStream *stream)
{
return stream->position;
}
static ssize_t
stream_length (GMimeStream *stream)
{
GMimeStreamFile *fstream = (GMimeStreamFile *) stream;
off_t bound_end;
if (stream->bound_start != -1 && stream->bound_end != -1)
return stream->bound_end - stream->bound_start;
fseek (fstream->fp, 0, SEEK_END);
bound_end = ftell (fstream->fp);
fseek (fstream->fp, stream->position, SEEK_SET);
if (bound_end < stream->bound_start)
return -1;
return bound_end - stream->bound_start;
}
static GMimeStream *
stream_substream (GMimeStream *stream, off_t start, off_t end)
{
GMimeStreamFile *fstream;
fstream = g_object_new (GMIME_TYPE_STREAM_FILE, NULL, NULL);
fstream->owner = FALSE;
fstream->fp = GMIME_STREAM_FILE (stream)->fp;
g_mime_stream_construct (GMIME_STREAM (fstream), start, end);
return GMIME_STREAM (fstream);
}
/**
* g_mime_stream_file_new:
* @fp: file pointer
*
* Creates a new GMimeStreamFile object around @fp.
*
* Returns a stream using @fp.
**/
GMimeStream *
g_mime_stream_file_new (FILE *fp)
{
GMimeStreamFile *fstream;
fstream = g_object_new (GMIME_TYPE_STREAM_FILE, NULL, NULL);
fstream->owner = TRUE;
fstream->fp = fp;
g_mime_stream_construct (GMIME_STREAM (fstream), ftell (fp), -1);
return GMIME_STREAM (fstream);
}
/**
* g_mime_stream_file_new_with_bounds:
* @fp: file pointer
* @start: start boundary
* @end: end boundary
*
* Creates a new GMimeStreamFile object around @fp with bounds @start
* and @end.
*
* Returns a stream using @fp with bounds @start and @end.
**/
GMimeStream *
g_mime_stream_file_new_with_bounds (FILE *fp, off_t start, off_t end)
{
GMimeStreamFile *fstream;
fstream = g_object_new (GMIME_TYPE_STREAM_FILE, NULL, NULL);
fstream->owner = TRUE;
fstream->fp = fp;
g_mime_stream_construct (GMIME_STREAM (fstream), start, end);
return GMIME_STREAM (fstream);
}
|