| Server IP : 182.53.201.61 / Your IP : 216.73.217.175 Web Server : Apache/2.2.15 (Fedora) System : Linux km10.dyndns.org 2.6.31.5-127.fc12.i686.PAE #1 SMP Sat Nov 7 21:25:57 EST 2009 i686 User : apache ( 48) PHP Version : 5.3.3 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/include/evolution-data-server-2.28/camel/ |
Upload File : |
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8; fill-column: 160 -*- */
/* camel-stream.h : class for an abstract stream */
/*
* Author:
* Bertrand Guiheneuf <bertrand@helixcode.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
*/
#ifndef CAMEL_STREAM_H
#define CAMEL_STREAM_H 1
#include <stdarg.h>
#include <unistd.h>
#include <camel/camel-object.h>
#define CAMEL_STREAM_TYPE (camel_stream_get_type ())
#define CAMEL_STREAM(obj) (CAMEL_CHECK_CAST((obj), CAMEL_STREAM_TYPE, CamelStream))
#define CAMEL_STREAM_CLASS(k) (CAMEL_CHECK_CLASS_CAST ((k), CAMEL_STREAM_TYPE, CamelStreamClass))
#define CAMEL_IS_STREAM(o) (CAMEL_CHECK_TYPE((o), CAMEL_STREAM_TYPE))
G_BEGIN_DECLS
struct _CamelStream
{
CamelObject parent_object;
gboolean eos;
};
typedef struct {
CamelObjectClass parent_class;
/* Virtual methods */
gssize (*read) (CamelStream *stream, gchar *buffer, gsize n);
gssize (*write) (CamelStream *stream, const gchar *buffer, gsize n);
gint (*close) (CamelStream *stream);
gint (*flush) (CamelStream *stream);
gboolean (*eos) (CamelStream *stream);
gint (*reset) (CamelStream *stream);
} CamelStreamClass;
/* Standard Camel function */
CamelType camel_stream_get_type (void);
/* public methods */
gssize camel_stream_read (CamelStream *stream, gchar *buffer, gsize n);
gssize camel_stream_write (CamelStream *stream, const gchar *buffer, gsize n);
gint camel_stream_flush (CamelStream *stream);
gint camel_stream_close (CamelStream *stream);
gboolean camel_stream_eos (CamelStream *stream);
gint camel_stream_reset (CamelStream *stream);
/* utility macros and funcs */
gssize camel_stream_write_string (CamelStream *stream, const gchar *string);
gssize camel_stream_printf (CamelStream *stream, const gchar *fmt, ... ) G_GNUC_PRINTF (2, 3);
gssize camel_stream_vprintf (CamelStream *stream, const gchar *fmt, va_list ap);
/* Write a whole stream to another stream, until eof or error on
* either stream.
*/
gssize camel_stream_write_to_stream (CamelStream *stream, CamelStream *output_stream);
G_END_DECLS
#endif /* CAMEL_STREAM_H */