/* * wocky-test-stream.h - Header for WockyTestStream * Copyright (C) 2009 Collabora Ltd. * @author Sjoerd Simons * * 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 2.1 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, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #ifndef __WOCKY_TEST_STREAM_H__ #define __WOCKY_TEST_STREAM_H__ #include #include G_BEGIN_DECLS typedef struct _WockyTestStream WockyTestStream; typedef struct _WockyTestStreamClass WockyTestStreamClass; typedef struct _WockyTestStreamPrivate WockyTestStreamPrivate; struct _WockyTestStreamClass { GObjectClass parent_class; }; struct _WockyTestStream { GObject parent; GIOStream *stream0; GIOStream *stream1; GInputStream *stream0_input; GOutputStream *stream0_output; GInputStream *stream1_input; GOutputStream *stream1_output; WockyTestStreamPrivate *priv; }; GType wocky_test_stream_get_type (void); /* TYPE MACROS */ #define WOCKY_TYPE_TEST_STREAM \ (wocky_test_stream_get_type ()) #define WOCKY_TEST_STREAM(obj) \ (G_TYPE_CHECK_INSTANCE_CAST((obj), WOCKY_TYPE_TEST_STREAM, WockyTestStream)) #define WOCKY_TEST_STREAM_CLASS(klass) \ (G_TYPE_CHECK_CLASS_CAST((klass), WOCKY_TYPE_TEST_STREAM, WockyTestStreamClass)) #define WOCKY_IS_TEST_STREAM(obj) \ (G_TYPE_CHECK_INSTANCE_TYPE((obj), WOCKY_TYPE_TEST_STREAM)) #define WOCKY_IS_TEST_STREAM_CLASS(klass) \ (G_TYPE_CHECK_CLASS_TYPE((klass), WOCKY_TYPE_TEST_STREAM)) #define WOCKY_TEST_STREAM_GET_CLASS(obj) \ (G_TYPE_INSTANCE_GET_CLASS ((obj), WOCKY_TYPE_TEST_STREAM, WockyTestStreamClass)) void wocky_test_input_stream_set_read_error (GInputStream *stream); void wocky_test_output_stream_set_write_error (GOutputStream *stream); void wocky_test_stream_cork (GInputStream *stream, gboolean cork); typedef enum { /* one read can have data from two writes, but never has all the data * from one specific write */ WOCK_TEST_STREAM_READ_COMBINE_SLICE = 0, /* one read reads as much as is available */ WOCK_TEST_STREAM_READ_COMBINE, /* one read reads only data from one write */ WOCK_TEST_STREAM_READ_EXACT, } WockyTestSTreamReadMode; void wocky_test_stream_set_mode (GInputStream *stream, WockyTestSTreamReadMode mode); G_END_DECLS #endif /* #ifndef __WOCKY_TEST_STREAM_H__*/