1 /* GIO - GLib Input, Output and Streaming Library
2 *
3 * Copyright © 2008 Christian Kellner, Samuel Cormier-Iijima
4 * © 2009 codethink
5 *
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.1 of the License, or (at your option) any later version.
10 *
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.
15 *
16 * You should have received a copy of the GNU Lesser General
17 * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
18 *
19 * Authors: Christian Kellner <gicmo@gnome.org>
20 * Samuel Cormier-Iijima <sciyoshi@gmail.com>
21 * Ryan Lortie <desrt@desrt.ca>
22 */
23
24 #include "config.h"
25 #include "goutputstream.h"
26 #include "gsocketoutputstream.h"
27 #include "gsocket.h"
28 #include "glibintl.h"
29
30 #include "gcancellable.h"
31 #include "gpollableinputstream.h"
32 #include "gpollableoutputstream.h"
33 #include "gioerror.h"
34 #include "glibintl.h"
35 #include "gfiledescriptorbased.h"
36 #include "gioprivate.h"
37
38 struct _GSocketOutputStreamPrivate
39 {
40 GSocket *socket;
41
42 /* pending operation metadata */
43 gconstpointer buffer;
44 gsize count;
45 };
46
47 static void g_socket_output_stream_pollable_iface_init (GPollableOutputStreamInterface *iface);
48 #ifdef G_OS_UNIX
49 static void g_socket_output_stream_file_descriptor_based_iface_init (GFileDescriptorBasedIface *iface);
50 #endif
51
52 #define g_socket_output_stream_get_type _g_socket_output_stream_get_type
53
54 #ifdef G_OS_UNIX
55 G_DEFINE_TYPE_WITH_CODE (GSocketOutputStream, g_socket_output_stream, G_TYPE_OUTPUT_STREAM,
56 G_ADD_PRIVATE (GSocketOutputStream)
57 G_IMPLEMENT_INTERFACE (G_TYPE_POLLABLE_OUTPUT_STREAM, g_socket_output_stream_pollable_iface_init)
58 G_IMPLEMENT_INTERFACE (G_TYPE_FILE_DESCRIPTOR_BASED, g_socket_output_stream_file_descriptor_based_iface_init)
59 )
60 #else
61 G_DEFINE_TYPE_WITH_CODE (GSocketOutputStream, g_socket_output_stream, G_TYPE_OUTPUT_STREAM,
62 G_ADD_PRIVATE (GSocketOutputStream)
63 G_IMPLEMENT_INTERFACE (G_TYPE_POLLABLE_OUTPUT_STREAM, g_socket_output_stream_pollable_iface_init)
64 )
65 #endif
66
67 enum
68 {
69 PROP_0,
70 PROP_SOCKET
71 };
72
73 static void
g_socket_output_stream_get_property(GObject * object,guint prop_id,GValue * value,GParamSpec * pspec)74 g_socket_output_stream_get_property (GObject *object,
75 guint prop_id,
76 GValue *value,
77 GParamSpec *pspec)
78 {
79 GSocketOutputStream *stream = G_SOCKET_OUTPUT_STREAM (object);
80
81 switch (prop_id)
82 {
83 case PROP_SOCKET:
84 g_value_set_object (value, stream->priv->socket);
85 break;
86
87 default:
88 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
89 }
90 }
91
92 static void
g_socket_output_stream_set_property(GObject * object,guint prop_id,const GValue * value,GParamSpec * pspec)93 g_socket_output_stream_set_property (GObject *object,
94 guint prop_id,
95 const GValue *value,
96 GParamSpec *pspec)
97 {
98 GSocketOutputStream *stream = G_SOCKET_OUTPUT_STREAM (object);
99
100 switch (prop_id)
101 {
102 case PROP_SOCKET:
103 stream->priv->socket = g_value_dup_object (value);
104 break;
105
106 default:
107 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
108 }
109 }
110
111 static void
g_socket_output_stream_finalize(GObject * object)112 g_socket_output_stream_finalize (GObject *object)
113 {
114 GSocketOutputStream *stream = G_SOCKET_OUTPUT_STREAM (object);
115
116 if (stream->priv->socket)
117 g_object_unref (stream->priv->socket);
118
119 G_OBJECT_CLASS (g_socket_output_stream_parent_class)->finalize (object);
120 }
121
122 static gssize
g_socket_output_stream_write(GOutputStream * stream,const void * buffer,gsize count,GCancellable * cancellable,GError ** error)123 g_socket_output_stream_write (GOutputStream *stream,
124 const void *buffer,
125 gsize count,
126 GCancellable *cancellable,
127 GError **error)
128 {
129 GSocketOutputStream *output_stream = G_SOCKET_OUTPUT_STREAM (stream);
130
131 return g_socket_send_with_blocking (output_stream->priv->socket,
132 buffer, count, TRUE,
133 cancellable, error);
134 }
135
136 static gboolean
g_socket_output_stream_writev(GOutputStream * stream,const GOutputVector * vectors,gsize n_vectors,gsize * bytes_written,GCancellable * cancellable,GError ** error)137 g_socket_output_stream_writev (GOutputStream *stream,
138 const GOutputVector *vectors,
139 gsize n_vectors,
140 gsize *bytes_written,
141 GCancellable *cancellable,
142 GError **error)
143 {
144 GSocketOutputStream *output_stream = G_SOCKET_OUTPUT_STREAM (stream);
145 GPollableReturn res;
146
147 /* Clamp the number of vectors if more given than we can write in one go.
148 * The caller has to handle short writes anyway.
149 */
150 if (n_vectors > G_IOV_MAX)
151 n_vectors = G_IOV_MAX;
152
153 res = g_socket_send_message_with_timeout (output_stream->priv->socket, NULL,
154 vectors, n_vectors,
155 NULL, 0, G_SOCKET_MSG_NONE,
156 -1, bytes_written,
157 cancellable, error);
158
159 /* we have a non-zero timeout so this can't happen */
160 g_assert (res != G_POLLABLE_RETURN_WOULD_BLOCK);
161
162 return res == G_POLLABLE_RETURN_OK;
163 }
164
165 static gboolean
g_socket_output_stream_pollable_is_writable(GPollableOutputStream * pollable)166 g_socket_output_stream_pollable_is_writable (GPollableOutputStream *pollable)
167 {
168 GSocketOutputStream *output_stream = G_SOCKET_OUTPUT_STREAM (pollable);
169
170 return g_socket_condition_check (output_stream->priv->socket, G_IO_OUT);
171 }
172
173 static gssize
g_socket_output_stream_pollable_write_nonblocking(GPollableOutputStream * pollable,const void * buffer,gsize size,GError ** error)174 g_socket_output_stream_pollable_write_nonblocking (GPollableOutputStream *pollable,
175 const void *buffer,
176 gsize size,
177 GError **error)
178 {
179 GSocketOutputStream *output_stream = G_SOCKET_OUTPUT_STREAM (pollable);
180
181 return g_socket_send_with_blocking (output_stream->priv->socket,
182 buffer, size, FALSE,
183 NULL, error);
184 }
185
186 static GPollableReturn
g_socket_output_stream_pollable_writev_nonblocking(GPollableOutputStream * pollable,const GOutputVector * vectors,gsize n_vectors,gsize * bytes_written,GError ** error)187 g_socket_output_stream_pollable_writev_nonblocking (GPollableOutputStream *pollable,
188 const GOutputVector *vectors,
189 gsize n_vectors,
190 gsize *bytes_written,
191 GError **error)
192 {
193 GSocketOutputStream *output_stream = G_SOCKET_OUTPUT_STREAM (pollable);
194
195 /* Clamp the number of vectors if more given than we can write in one go.
196 * The caller has to handle short writes anyway.
197 */
198 if (n_vectors > G_IOV_MAX)
199 n_vectors = G_IOV_MAX;
200
201 return g_socket_send_message_with_timeout (output_stream->priv->socket,
202 NULL, vectors, n_vectors,
203 NULL, 0, G_SOCKET_MSG_NONE, 0,
204 bytes_written, NULL, error);
205 }
206
207 static GSource *
g_socket_output_stream_pollable_create_source(GPollableOutputStream * pollable,GCancellable * cancellable)208 g_socket_output_stream_pollable_create_source (GPollableOutputStream *pollable,
209 GCancellable *cancellable)
210 {
211 GSocketOutputStream *output_stream = G_SOCKET_OUTPUT_STREAM (pollable);
212 GSource *socket_source, *pollable_source;
213
214 pollable_source = g_pollable_source_new (G_OBJECT (output_stream));
215 socket_source = g_socket_create_source (output_stream->priv->socket,
216 G_IO_OUT, cancellable);
217 g_source_set_dummy_callback (socket_source);
218 g_source_add_child_source (pollable_source, socket_source);
219 g_source_unref (socket_source);
220
221 return pollable_source;
222 }
223
224 #ifdef G_OS_UNIX
225 static int
g_socket_output_stream_get_fd(GFileDescriptorBased * fd_based)226 g_socket_output_stream_get_fd (GFileDescriptorBased *fd_based)
227 {
228 GSocketOutputStream *output_stream = G_SOCKET_OUTPUT_STREAM (fd_based);
229
230 return g_socket_get_fd (output_stream->priv->socket);
231 }
232 #endif
233
234 static void
g_socket_output_stream_class_init(GSocketOutputStreamClass * klass)235 g_socket_output_stream_class_init (GSocketOutputStreamClass *klass)
236 {
237 GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
238 GOutputStreamClass *goutputstream_class = G_OUTPUT_STREAM_CLASS (klass);
239
240 gobject_class->finalize = g_socket_output_stream_finalize;
241 gobject_class->get_property = g_socket_output_stream_get_property;
242 gobject_class->set_property = g_socket_output_stream_set_property;
243
244 goutputstream_class->write_fn = g_socket_output_stream_write;
245 goutputstream_class->writev_fn = g_socket_output_stream_writev;
246
247 g_object_class_install_property (gobject_class, PROP_SOCKET,
248 g_param_spec_object ("socket",
249 P_("socket"),
250 P_("The socket that this stream wraps"),
251 G_TYPE_SOCKET, G_PARAM_CONSTRUCT_ONLY |
252 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
253 }
254
255 #ifdef G_OS_UNIX
256 static void
g_socket_output_stream_file_descriptor_based_iface_init(GFileDescriptorBasedIface * iface)257 g_socket_output_stream_file_descriptor_based_iface_init (GFileDescriptorBasedIface *iface)
258 {
259 iface->get_fd = g_socket_output_stream_get_fd;
260 }
261 #endif
262
263 static void
g_socket_output_stream_pollable_iface_init(GPollableOutputStreamInterface * iface)264 g_socket_output_stream_pollable_iface_init (GPollableOutputStreamInterface *iface)
265 {
266 iface->is_writable = g_socket_output_stream_pollable_is_writable;
267 iface->create_source = g_socket_output_stream_pollable_create_source;
268 iface->write_nonblocking = g_socket_output_stream_pollable_write_nonblocking;
269 iface->writev_nonblocking = g_socket_output_stream_pollable_writev_nonblocking;
270 }
271
272 static void
g_socket_output_stream_init(GSocketOutputStream * stream)273 g_socket_output_stream_init (GSocketOutputStream *stream)
274 {
275 stream->priv = g_socket_output_stream_get_instance_private (stream);
276 }
277
278 GSocketOutputStream *
_g_socket_output_stream_new(GSocket * socket)279 _g_socket_output_stream_new (GSocket *socket)
280 {
281 return g_object_new (G_TYPE_SOCKET_OUTPUT_STREAM, "socket", socket, NULL);
282 }
283