[gobject] set all properties before constructed()
[glib.git] / gio / gsocketinputstream.c
blob89e8a84ba89b6be7476c3a110f2a7f033f2987c3
1 /* GIO - GLib Input, Output and Streaming Library
3 * Copyright © 2008 Christian Kellner, Samuel Cormier-Iijima
4 * © 2009 codethink
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General
17 * Public License along with this library; if not, write to the
18 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
19 * Boston, MA 02111-1307, USA.
21 * Authors: Christian Kellner <gicmo@gnome.org>
22 * Samuel Cormier-Iijima <sciyoshi@gmail.com>
23 * Ryan Lortie <desrt@desrt.ca>
26 #include "config.h"
27 #include "gsocketinputstream.h"
28 #include "glibintl.h"
30 #include "gsimpleasyncresult.h"
31 #include "gcancellable.h"
32 #include "gpollableinputstream.h"
33 #include "gioerror.h"
34 #include "gfiledescriptorbased.h"
36 static void g_socket_input_stream_pollable_iface_init (GPollableInputStreamInterface *iface);
37 #ifdef G_OS_UNIX
38 static void g_socket_input_stream_file_descriptor_based_iface_init (GFileDescriptorBasedIface *iface);
39 #endif
41 #define g_socket_input_stream_get_type _g_socket_input_stream_get_type
43 #ifdef G_OS_UNIX
44 G_DEFINE_TYPE_WITH_CODE (GSocketInputStream, g_socket_input_stream, G_TYPE_INPUT_STREAM,
45 G_IMPLEMENT_INTERFACE (G_TYPE_POLLABLE_INPUT_STREAM, g_socket_input_stream_pollable_iface_init)
46 G_IMPLEMENT_INTERFACE (G_TYPE_FILE_DESCRIPTOR_BASED, g_socket_input_stream_file_descriptor_based_iface_init)
48 #else
49 G_DEFINE_TYPE_WITH_CODE (GSocketInputStream, g_socket_input_stream, G_TYPE_INPUT_STREAM,
50 G_IMPLEMENT_INTERFACE (G_TYPE_POLLABLE_INPUT_STREAM, g_socket_input_stream_pollable_iface_init)
52 #endif
54 enum
56 PROP_0,
57 PROP_SOCKET
60 struct _GSocketInputStreamPrivate
62 GSocket *socket;
64 /* pending operation metadata */
65 GSimpleAsyncResult *result;
66 GCancellable *cancellable;
67 gpointer buffer;
68 gsize count;
71 static void
72 g_socket_input_stream_get_property (GObject *object,
73 guint prop_id,
74 GValue *value,
75 GParamSpec *pspec)
77 GSocketInputStream *stream = G_SOCKET_INPUT_STREAM (object);
79 switch (prop_id)
81 case PROP_SOCKET:
82 g_value_set_object (value, stream->priv->socket);
83 break;
85 default:
86 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
90 static void
91 g_socket_input_stream_set_property (GObject *object,
92 guint prop_id,
93 const GValue *value,
94 GParamSpec *pspec)
96 GSocketInputStream *stream = G_SOCKET_INPUT_STREAM (object);
98 switch (prop_id)
100 case PROP_SOCKET:
101 stream->priv->socket = g_value_dup_object (value);
102 break;
104 default:
105 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
109 static void
110 g_socket_input_stream_finalize (GObject *object)
112 GSocketInputStream *stream = G_SOCKET_INPUT_STREAM (object);
114 if (stream->priv->socket)
115 g_object_unref (stream->priv->socket);
117 if (G_OBJECT_CLASS (g_socket_input_stream_parent_class)->finalize)
118 (*G_OBJECT_CLASS (g_socket_input_stream_parent_class)->finalize) (object);
121 static gssize
122 g_socket_input_stream_read (GInputStream *stream,
123 void *buffer,
124 gsize count,
125 GCancellable *cancellable,
126 GError **error)
128 GSocketInputStream *input_stream = G_SOCKET_INPUT_STREAM (stream);
130 return g_socket_receive_with_blocking (input_stream->priv->socket,
131 buffer, count, TRUE,
132 cancellable, error);
135 static gboolean
136 g_socket_input_stream_pollable_is_readable (GPollableInputStream *pollable)
138 GSocketInputStream *input_stream = G_SOCKET_INPUT_STREAM (pollable);
140 return g_socket_condition_check (input_stream->priv->socket, G_IO_IN);
143 static GSource *
144 g_socket_input_stream_pollable_create_source (GPollableInputStream *pollable,
145 GCancellable *cancellable)
147 GSocketInputStream *input_stream = G_SOCKET_INPUT_STREAM (pollable);
148 GSource *socket_source, *pollable_source;
150 pollable_source = g_pollable_source_new (G_OBJECT (input_stream));
151 socket_source = g_socket_create_source (input_stream->priv->socket,
152 G_IO_IN, cancellable);
153 g_source_set_dummy_callback (socket_source);
154 g_source_add_child_source (pollable_source, socket_source);
155 g_source_unref (socket_source);
157 return pollable_source;
160 static gssize
161 g_socket_input_stream_pollable_read_nonblocking (GPollableInputStream *pollable,
162 void *buffer,
163 gsize size,
164 GError **error)
166 GSocketInputStream *input_stream = G_SOCKET_INPUT_STREAM (pollable);
168 return g_socket_receive_with_blocking (input_stream->priv->socket,
169 buffer, size, FALSE,
170 NULL, error);
173 #ifdef G_OS_UNIX
174 static int
175 g_socket_input_stream_get_fd (GFileDescriptorBased *fd_based)
177 GSocketInputStream *input_stream = G_SOCKET_INPUT_STREAM (fd_based);
179 return g_socket_get_fd (input_stream->priv->socket);
181 #endif
183 static void
184 g_socket_input_stream_class_init (GSocketInputStreamClass *klass)
186 GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
187 GInputStreamClass *ginputstream_class = G_INPUT_STREAM_CLASS (klass);
189 g_type_class_add_private (klass, sizeof (GSocketInputStreamPrivate));
191 gobject_class->finalize = g_socket_input_stream_finalize;
192 gobject_class->get_property = g_socket_input_stream_get_property;
193 gobject_class->set_property = g_socket_input_stream_set_property;
195 ginputstream_class->read_fn = g_socket_input_stream_read;
197 g_object_class_install_property (gobject_class, PROP_SOCKET,
198 g_param_spec_object ("socket",
199 P_("socket"),
200 P_("The socket that this stream wraps"),
201 G_TYPE_SOCKET, G_PARAM_CONSTRUCT_ONLY |
202 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
205 #ifdef G_OS_UNIX
206 static void
207 g_socket_input_stream_file_descriptor_based_iface_init (GFileDescriptorBasedIface *iface)
209 iface->get_fd = g_socket_input_stream_get_fd;
211 #endif
213 static void
214 g_socket_input_stream_pollable_iface_init (GPollableInputStreamInterface *iface)
216 iface->is_readable = g_socket_input_stream_pollable_is_readable;
217 iface->create_source = g_socket_input_stream_pollable_create_source;
218 iface->read_nonblocking = g_socket_input_stream_pollable_read_nonblocking;
221 static void
222 g_socket_input_stream_init (GSocketInputStream *stream)
224 stream->priv = G_TYPE_INSTANCE_GET_PRIVATE (stream, G_TYPE_SOCKET_INPUT_STREAM, GSocketInputStreamPrivate);
227 GSocketInputStream *
228 _g_socket_input_stream_new (GSocket *socket)
230 return G_SOCKET_INPUT_STREAM (g_object_new (G_TYPE_SOCKET_INPUT_STREAM, "socket", socket, NULL));