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 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8; fill-column: 160 -*- */
/* camel-stream-buffer.c : Buffer any other other stream
*
* Authors: Michael Zucchi <notzed@ximian.com>
*
* Copyright (C) 1999-2008 Novell, Inc. (www.novell.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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
* USA
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <errno.h>
#include <fcntl.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/types.h>
#include "camel-stream-buffer.h"
#define CAMEL_STREAM_BUFFER_GET_PRIVATE(obj) \
(G_TYPE_INSTANCE_GET_PRIVATE \
((obj), CAMEL_TYPE_STREAM_BUFFER, CamelStreamBufferPrivate))
struct _CamelStreamBufferPrivate {
CamelStream *stream;
guchar *buf, *ptr, *end;
gint size;
guchar *linebuf; /* for reading lines at a time */
gint linesize;
CamelStreamBufferMode mode;
guint flags;
};
G_DEFINE_TYPE (CamelStreamBuffer, camel_stream_buffer, CAMEL_TYPE_STREAM)
enum {
BUF_USER = 1 << 0 /* user-supplied buffer, do not free */
};
#define BUF_SIZE 1024
/* only returns the number passed in, or -1 on an error */
static gssize
stream_write_all (CamelStream *stream,
const gchar *buffer,
gsize n,
GCancellable *cancellable,
GError **error)
{
gsize left = n, w;
while (left > 0) {
w = camel_stream_write (
stream, buffer, left, cancellable, error);
if (w == -1)
return -1;
left -= w;
buffer += w;
}
return n;
}
static void
set_vbuf (CamelStreamBuffer *stream,
gchar *buf,
CamelStreamBufferMode mode,
gint size)
{
CamelStreamBufferPrivate *priv;
priv = CAMEL_STREAM_BUFFER_GET_PRIVATE (stream);
if (priv->buf && !(priv->flags & BUF_USER))
g_free (priv->buf);
if (buf) {
priv->buf = (guchar *) buf;
priv->flags |= BUF_USER;
} else {
priv->buf = g_malloc (size);
priv->flags &= ~BUF_USER;
}
priv->ptr = priv->buf;
priv->end = priv->buf;
priv->size = size;
priv->mode = mode;
}
static void
stream_buffer_dispose (GObject *object)
{
CamelStreamBufferPrivate *priv;
priv = CAMEL_STREAM_BUFFER_GET_PRIVATE (object);
if (priv->stream != NULL) {
g_object_unref (priv->stream);
priv->stream = NULL;
}
/* Chain up to parent's dispose() method. */
G_OBJECT_CLASS (camel_stream_buffer_parent_class)->dispose (object);
}
static void
stream_buffer_finalize (GObject *object)
{
CamelStreamBufferPrivate *priv;
priv = CAMEL_STREAM_BUFFER_GET_PRIVATE (object);
if (!(priv->flags & BUF_USER))
g_free (priv->buf);
g_free (priv->linebuf);
/* Chain up to parent's finalize() method. */
G_OBJECT_CLASS (camel_stream_buffer_parent_class)->finalize (object);
}
static gssize
stream_buffer_read (CamelStream *stream,
gchar *buffer,
gsize n,
GCancellable *cancellable,
GError **error)
{
CamelStreamBufferPrivate *priv;
gssize bytes_read = 1;
gssize bytes_left;
gchar *bptr = buffer;
GError *local_error = NULL;
priv = CAMEL_STREAM_BUFFER_GET_PRIVATE (stream);
g_return_val_if_fail (
(priv->mode & CAMEL_STREAM_BUFFER_MODE) ==
CAMEL_STREAM_BUFFER_READ, 0);
while (n && bytes_read > 0) {
bytes_left = priv->end - priv->ptr;
if (bytes_left < n) {
if (bytes_left > 0) {
memcpy (bptr, priv->ptr, bytes_left);
n -= bytes_left;
bptr += bytes_left;
priv->ptr += bytes_left;
}
/* if we are reading a lot, then read directly to the destination buffer */
if (n >= priv->size / 3) {
bytes_read = camel_stream_read (
priv->stream, bptr, n,
cancellable, &local_error);
if (bytes_read > 0) {
n -= bytes_read;
bptr += bytes_read;
}
} else {
bytes_read = camel_stream_read (
priv->stream, (gchar *) priv->buf,
priv->size, cancellable, &local_error);
if (bytes_read > 0) {
gsize bytes_used = bytes_read > n ? n : bytes_read;
priv->ptr = priv->buf;
priv->end = priv->buf + bytes_read;
memcpy (bptr, priv->ptr, bytes_used);
priv->ptr += bytes_used;
bptr += bytes_used;
n -= bytes_used;
}
}
} else {
memcpy (bptr, priv->ptr, n);
priv->ptr += n;
bptr += n;
n = 0;
}
}
/* If camel_stream_read() failed but we managed to read some data
* before the failure, discard the error and return the number of
* bytes read. If we didn't read any data, propagate the error. */
if (local_error != NULL) {
if (bptr > buffer)
g_clear_error (&local_error);
else {
g_propagate_error (error, local_error);
return -1;
}
}
return (gssize)(bptr - buffer);
}
static gssize
stream_buffer_write (CamelStream *stream,
const gchar *buffer,
gsize n,
GCancellable *cancellable,
GError **error)
{
CamelStreamBufferPrivate *priv;
gssize total = n;
gssize left, todo;
priv = CAMEL_STREAM_BUFFER_GET_PRIVATE (stream);
g_return_val_if_fail (
(priv->mode & CAMEL_STREAM_BUFFER_MODE) ==
CAMEL_STREAM_BUFFER_WRITE, 0);
/* first, copy as much as we can */
left = priv->size - (priv->ptr - priv->buf);
todo = MIN (left, n);
memcpy (priv->ptr, buffer, todo);
n -= todo;
buffer += todo;
priv->ptr += todo;
/* if we've filled the buffer, write it out, reset buffer */
if (left == todo) {
if (stream_write_all (
priv->stream, (gchar *) priv->buf,
priv->size, cancellable, error) == -1)
return -1;
priv->ptr = priv->buf;
}
/* if we still have more, write directly, or copy to buffer */
if (n > 0) {
if (n >= priv->size / 3) {
if (stream_write_all (
priv->stream, buffer, n,
cancellable, error) == -1)
return -1;
} else {
memcpy (priv->ptr, buffer, n);
priv->ptr += n;
}
}
return total;
}
static gint
stream_buffer_flush (CamelStream *stream,
GCancellable *cancellable,
GError **error)
{
CamelStreamBufferPrivate *priv;
priv = CAMEL_STREAM_BUFFER_GET_PRIVATE (stream);
if ((priv->mode & CAMEL_STREAM_BUFFER_MODE) == CAMEL_STREAM_BUFFER_WRITE) {
gsize len = priv->ptr - priv->buf;
if (camel_stream_write (
priv->stream, (gchar *) priv->buf,
len, cancellable, error) == -1)
return -1;
priv->ptr = priv->buf;
} else {
/* nothing to do for read mode 'flush' */
}
return camel_stream_flush (priv->stream, cancellable, error);
}
static gint
stream_buffer_close (CamelStream *stream,
GCancellable *cancellable,
GError **error)
{
CamelStreamBufferPrivate *priv;
priv = CAMEL_STREAM_BUFFER_GET_PRIVATE (stream);
if (stream_buffer_flush (stream, cancellable, error) == -1)
return -1;
return camel_stream_close (priv->stream, cancellable, error);
}
static gboolean
stream_buffer_eos (CamelStream *stream)
{
CamelStreamBufferPrivate *priv;
priv = CAMEL_STREAM_BUFFER_GET_PRIVATE (stream);
return camel_stream_eos (priv->stream) && priv->ptr == priv->end;
}
static void
stream_buffer_init_vbuf (CamelStreamBuffer *stream,
CamelStream *other_stream,
CamelStreamBufferMode mode,
gchar *buf,
guint32 size)
{
CamelStreamBufferPrivate *priv;
priv = CAMEL_STREAM_BUFFER_GET_PRIVATE (stream);
set_vbuf (stream, buf, mode, size);
if (priv->stream != NULL)
g_object_unref (priv->stream);
priv->stream = g_object_ref (other_stream);
}
static void
stream_buffer_init_method (CamelStreamBuffer *stream,
CamelStream *other_stream,
CamelStreamBufferMode mode)
{
stream_buffer_init_vbuf (stream, other_stream, mode, NULL, BUF_SIZE);
}
static void
camel_stream_buffer_class_init (CamelStreamBufferClass *class)
{
GObjectClass *object_class;
CamelStreamClass *stream_class;
g_type_class_add_private (class, sizeof (CamelStreamBufferPrivate));
object_class = G_OBJECT_CLASS (class);
object_class->dispose = stream_buffer_dispose;
object_class->finalize = stream_buffer_finalize;
stream_class = CAMEL_STREAM_CLASS (class);
stream_class->read = stream_buffer_read;
stream_class->write = stream_buffer_write;
stream_class->flush = stream_buffer_flush;
stream_class->close = stream_buffer_close;
stream_class->eos = stream_buffer_eos;
class->init = stream_buffer_init_method;
class->init_vbuf = stream_buffer_init_vbuf;
}
static void
camel_stream_buffer_init (CamelStreamBuffer *stream)
{
stream->priv = CAMEL_STREAM_BUFFER_GET_PRIVATE (stream);
stream->priv->flags = 0;
stream->priv->size = BUF_SIZE;
stream->priv->buf = g_malloc (BUF_SIZE);
stream->priv->ptr = stream->priv->buf;
stream->priv->end = stream->priv->buf;
stream->priv->mode =
CAMEL_STREAM_BUFFER_READ |
CAMEL_STREAM_BUFFER_BUFFER;
stream->priv->stream = NULL;
stream->priv->linesize = 80;
stream->priv->linebuf = g_malloc (stream->priv->linesize);
}
/**
* camel_stream_buffer_new:
* @stream: a #CamelStream object to buffer
* @mode: Operational mode of buffered stream.
*
* Create a new buffered stream of another stream. A default
* buffer size (1024 bytes), automatically managed will be used
* for buffering.
*
* See camel_stream_buffer_new_with_vbuf() for details on the
* @mode parameter.
*
* Returns: a newly created buffered stream.
**/
CamelStream *
camel_stream_buffer_new (CamelStream *stream,
CamelStreamBufferMode mode)
{
CamelStreamBuffer *sbf;
CamelStreamBufferClass *class;
g_return_val_if_fail (CAMEL_IS_STREAM (stream), NULL);
sbf = g_object_new (CAMEL_TYPE_STREAM_BUFFER, NULL);
class = CAMEL_STREAM_BUFFER_GET_CLASS (sbf);
g_return_val_if_fail (class->init != NULL, NULL);
class->init (sbf, stream, mode);
return CAMEL_STREAM (sbf);
}
/**
* camel_stream_buffer_new_with_vbuf:
* @stream: An existing stream to buffer.
* @mode: Mode to buffer in.
* @buf: Memory to use for buffering.
* @size: Size of buffer to use.
*
* Create a new stream which buffers another stream, @stream.
*
* The following values are available for @mode:
*
* #CAMEL_STREAM_BUFFER_BUFFER, Buffer the input/output in blocks.
* #CAMEL_STREAM_BUFFER_NEWLINE, Buffer on newlines (for output).
* #CAMEL_STREAM_BUFFER_NONE, Perform no buffering.
*
* Note that currently this is ignored and #CAMEL_STREAM_BUFFER_BUFFER
* is always used.
*
* In addition, one of the following mode options should be or'd
* together with the buffering mode:
*
* #CAMEL_STREAM_BUFFER_WRITE, Buffer in write mode.
* #CAMEL_STREAM_BUFFER_READ, Buffer in read mode.
*
* Buffering can only be done in one direction for any
* buffer instance.
*
* If @buf is non-NULL, then use the memory pointed to
* (for upto @size bytes) as the buffer for all buffering
* operations. It is upto the application to free this buffer.
* If @buf is NULL, then allocate and manage @size bytes
* for all buffering.
*
* Returns: A new stream with buffering applied.
**/
CamelStream *
camel_stream_buffer_new_with_vbuf (CamelStream *stream,
CamelStreamBufferMode mode,
gchar *buf,
guint32 size)
{
CamelStreamBuffer *sbf;
CamelStreamBufferClass *class;
g_return_val_if_fail (CAMEL_IS_STREAM (stream), NULL);
g_return_val_if_fail (buf != NULL, NULL);
sbf = g_object_new (CAMEL_TYPE_STREAM_BUFFER, NULL);
class = CAMEL_STREAM_BUFFER_GET_CLASS (sbf);
g_return_val_if_fail (class->init_vbuf != NULL, NULL);
class->init_vbuf (sbf, stream, mode, buf, size);
return CAMEL_STREAM (sbf);
}
/**
* camel_stream_buffer_gets:
* @sbf: a #CamelStreamBuffer object
* @buf: Memory to write the string to.
* @max: Maxmimum number of characters to store.
* @cancellable: optional #GCancellable object, or %NULL
* @error: return location for a #GError, or %NULL
*
* Read a line of characters up to the next newline character or
* @max-1 characters.
*
* If the newline character is encountered, then it will be
* included in the buffer @buf. The buffer will be %NULL terminated.
*
* Returns: the number of characters read, or %0 for end of file,
* and %-1 on error.
**/
gint
camel_stream_buffer_gets (CamelStreamBuffer *sbf,
gchar *buf,
guint max,
GCancellable *cancellable,
GError **error)
{
register gchar *outptr, *inptr, *inend, c, *outend;
gint bytes_read;
outptr = buf;
inptr = (gchar *) sbf->priv->ptr;
inend = (gchar *) sbf->priv->end;
outend = buf + max-1; /* room for NUL */
do {
while (inptr < inend && outptr < outend) {
c = *inptr++;
*outptr++ = c;
if (c == '\n') {
*outptr = 0;
sbf->priv->ptr = (guchar *) inptr;
return outptr - buf;
}
}
if (outptr == outend)
break;
bytes_read = camel_stream_read (
sbf->priv->stream, (gchar *) sbf->priv->buf,
sbf->priv->size, cancellable, error);
if (bytes_read == -1) {
if (buf == outptr)
return -1;
else
bytes_read = 0;
}
sbf->priv->ptr = sbf->priv->buf;
sbf->priv->end = sbf->priv->buf + bytes_read;
inptr = (gchar *) sbf->priv->ptr;
inend = (gchar *) sbf->priv->end;
} while (bytes_read > 0);
sbf->priv->ptr = (guchar *) inptr;
*outptr = 0;
return (gint)(outptr - buf);
}
/**
* camel_stream_buffer_read_line:
* @sbf: a #CamelStreamBuffer object
* @cancellable: optional #GCancellable object, or %NULL
* @error: return location for a @GError, or %NULL
*
* This function reads a complete newline-terminated line from the stream
* and returns it in allocated memory. The trailing newline (and carriage
* return if any) are not included in the returned string.
*
* Returns: the line read, which the caller must free when done with,
* or %NULL on eof. If an error occurs, @error will be set.
**/
gchar *
camel_stream_buffer_read_line (CamelStreamBuffer *sbf,
GCancellable *cancellable,
GError **error)
{
guchar *p;
gint nread;
p = sbf->priv->linebuf;
while (1) {
nread = camel_stream_buffer_gets (
sbf, (gchar *) p, sbf->priv->linesize -
(p - sbf->priv->linebuf), cancellable, error);
if (nread <=0) {
if (p > sbf->priv->linebuf)
break;
return NULL;
}
p += nread;
if (p[-1] == '\n')
break;
nread = p - sbf->priv->linebuf;
sbf->priv->linesize *= 2;
sbf->priv->linebuf = g_realloc (
sbf->priv->linebuf, sbf->priv->linesize);
p = sbf->priv->linebuf + nread;
}
p--;
if (p > sbf->priv->linebuf && p[-1] == '\r')
p--;
p[0] = 0;
return g_strdup ((gchar *) sbf->priv->linebuf);
}
|