Use g_simple_async_result_{new_,}take_error
[platform/upstream/glib.git] / gio / gsocketoutputstream.c
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 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, write to the
18  * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
19  * Boston, MA 02111-1307, USA.
20  *
21  * Authors: Christian Kellner <gicmo@gnome.org>
22  *          Samuel Cormier-Iijima <sciyoshi@gmail.com>
23  *          Ryan Lortie <desrt@desrt.ca>
24  */
25
26 #include "config.h"
27 #include "goutputstream.h"
28 #include "gsocketoutputstream.h"
29 #include "gsocket.h"
30
31 #include <gio/gsimpleasyncresult.h>
32 #include <gio/gcancellable.h>
33 #include <gio/gioerror.h>
34 #include "glibintl.h"
35
36
37 #define g_socket_output_stream_get_type _g_socket_output_stream_get_type
38 G_DEFINE_TYPE (GSocketOutputStream, g_socket_output_stream, G_TYPE_OUTPUT_STREAM);
39
40 enum
41 {
42   PROP_0,
43   PROP_SOCKET
44 };
45
46 struct _GSocketOutputStreamPrivate
47 {
48   GSocket *socket;
49
50   /* pending operation metadata */
51   GSimpleAsyncResult *result;
52   GCancellable *cancellable;
53   gconstpointer buffer;
54   gsize count;
55 };
56
57 static void
58 g_socket_output_stream_get_property (GObject    *object,
59                                      guint       prop_id,
60                                      GValue     *value,
61                                      GParamSpec *pspec)
62 {
63   GSocketOutputStream *stream = G_SOCKET_OUTPUT_STREAM (object);
64
65   switch (prop_id)
66     {
67       case PROP_SOCKET:
68         g_value_set_object (value, stream->priv->socket);
69         break;
70
71       default:
72         G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
73     }
74 }
75
76 static void
77 g_socket_output_stream_set_property (GObject      *object,
78                                      guint         prop_id,
79                                      const GValue *value,
80                                      GParamSpec   *pspec)
81 {
82   GSocketOutputStream *stream = G_SOCKET_OUTPUT_STREAM (object);
83
84   switch (prop_id)
85     {
86       case PROP_SOCKET:
87         stream->priv->socket = g_value_dup_object (value);
88         break;
89
90       default:
91         G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
92     }
93 }
94
95 static void
96 g_socket_output_stream_finalize (GObject *object)
97 {
98   GSocketOutputStream *stream = G_SOCKET_OUTPUT_STREAM (object);
99
100   if (stream->priv->socket)
101     g_object_unref (stream->priv->socket);
102
103   if (G_OBJECT_CLASS (g_socket_output_stream_parent_class)->finalize)
104     (*G_OBJECT_CLASS (g_socket_output_stream_parent_class)->finalize) (object);
105 }
106
107 static gssize
108 g_socket_output_stream_write (GOutputStream  *stream,
109                               const void     *buffer,
110                               gsize           count,
111                               GCancellable   *cancellable,
112                               GError        **error)
113 {
114   GSocketOutputStream *onput_stream = G_SOCKET_OUTPUT_STREAM (stream);
115
116   return g_socket_send_with_blocking (onput_stream->priv->socket,
117                                       buffer, count, TRUE,
118                                       cancellable, error);
119 }
120
121 static gboolean
122 g_socket_output_stream_write_ready (GSocket *socket,
123                                     GIOCondition condition,
124                                     GSocketOutputStream *stream)
125 {
126   GSimpleAsyncResult *simple;
127   GError *error = NULL;
128   gssize result;
129
130   result = g_socket_send_with_blocking (stream->priv->socket,
131                                         stream->priv->buffer,
132                                         stream->priv->count,
133                                         FALSE,
134                                         stream->priv->cancellable,
135                                         &error);
136
137   if (g_error_matches (error, G_IO_ERROR, G_IO_ERROR_WOULD_BLOCK))
138     return TRUE;
139
140   simple = stream->priv->result;
141   stream->priv->result = NULL;
142
143   if (result >= 0)
144     g_simple_async_result_set_op_res_gssize (simple, result);
145
146   if (error)
147     g_simple_async_result_take_error (simple, error);
148
149   if (stream->priv->cancellable)
150     g_object_unref (stream->priv->cancellable);
151
152   g_simple_async_result_complete (simple);
153   g_object_unref (simple);
154
155   return FALSE;
156 }
157
158 static void
159 g_socket_output_stream_write_async (GOutputStream        *stream,
160                                     const void           *buffer,
161                                     gsize                 count,
162                                     gint                  io_priority,
163                                     GCancellable         *cancellable,
164                                     GAsyncReadyCallback   callback,
165                                     gpointer              user_data)
166 {
167   GSocketOutputStream *output_stream = G_SOCKET_OUTPUT_STREAM (stream);
168   GSource *source;
169
170   g_assert (output_stream->priv->result == NULL);
171
172   output_stream->priv->result =
173     g_simple_async_result_new (G_OBJECT (stream), callback, user_data,
174                                g_socket_output_stream_write_async);
175   if (cancellable)
176     g_object_ref (cancellable);
177   output_stream->priv->cancellable = cancellable;
178   output_stream->priv->buffer = buffer;
179   output_stream->priv->count = count;
180
181   source = g_socket_create_source (output_stream->priv->socket,
182                                    G_IO_OUT | G_IO_HUP | G_IO_ERR,
183                                    cancellable);
184   g_source_set_callback (source,
185                          (GSourceFunc) g_socket_output_stream_write_ready,
186                          g_object_ref (output_stream), g_object_unref);
187   g_source_attach (source, g_main_context_get_thread_default ());
188   g_source_unref (source);
189 }
190
191 static gssize
192 g_socket_output_stream_write_finish (GOutputStream  *stream,
193                                      GAsyncResult   *result,
194                                      GError        **error)
195 {
196   GSimpleAsyncResult *simple;
197   gssize count;
198
199   g_return_val_if_fail (G_IS_SOCKET_OUTPUT_STREAM (stream), -1);
200
201   simple = G_SIMPLE_ASYNC_RESULT (result);
202
203   g_warn_if_fail (g_simple_async_result_get_source_tag (simple) == g_socket_output_stream_write_async);
204
205   count = g_simple_async_result_get_op_res_gssize (simple);
206
207   return count;
208 }
209
210 static void
211 g_socket_output_stream_class_init (GSocketOutputStreamClass *klass)
212 {
213   GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
214   GOutputStreamClass *goutputstream_class = G_OUTPUT_STREAM_CLASS (klass);
215
216   g_type_class_add_private (klass, sizeof (GSocketOutputStreamPrivate));
217
218   gobject_class->finalize = g_socket_output_stream_finalize;
219   gobject_class->get_property = g_socket_output_stream_get_property;
220   gobject_class->set_property = g_socket_output_stream_set_property;
221
222   goutputstream_class->write_fn = g_socket_output_stream_write;
223   goutputstream_class->write_async = g_socket_output_stream_write_async;
224   goutputstream_class->write_finish = g_socket_output_stream_write_finish;
225
226   g_object_class_install_property (gobject_class, PROP_SOCKET,
227                                    g_param_spec_object ("socket",
228                                                         P_("socket"),
229                                                         P_("The socket that this stream wraps"),
230                                                         G_TYPE_SOCKET, G_PARAM_CONSTRUCT_ONLY |
231                                                         G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
232 }
233
234 static void
235 g_socket_output_stream_init (GSocketOutputStream *stream)
236 {
237   stream->priv = G_TYPE_INSTANCE_GET_PRIVATE (stream, G_TYPE_SOCKET_OUTPUT_STREAM, GSocketOutputStreamPrivate);
238 }
239
240 GSocketOutputStream *
241 _g_socket_output_stream_new (GSocket *socket)
242 {
243   return G_SOCKET_OUTPUT_STREAM (g_object_new (G_TYPE_SOCKET_OUTPUT_STREAM, "socket", socket, NULL));
244 }