1 /* GIO - GLib Input, Output and Streaming Library
3 * Copyright © 2008, 2009 Codethink Limited
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU Lesser General Public License as published
7 * by the Free Software Foundation; either version 2 of the licence or (at
8 * your option) any later version.
10 * See the included COPYING file for more information.
14 * SECTION:gtcpconnection
15 * @title: GTcpConnection
16 * @short_description: A TCP GSocketConnection
17 * @see_also: #GSocketConnection.
19 * This is the subclass of #GSocketConnection that is created
26 #include "gtcpconnection.h"
27 #include "gasyncresult.h"
28 #include "gsimpleasyncresult.h"
29 #include "giostream.h"
33 G_DEFINE_TYPE_WITH_CODE (GTcpConnection, g_tcp_connection,
34 G_TYPE_SOCKET_CONNECTION,
35 g_socket_connection_factory_register_type (g_define_type_id,
38 G_SOCKET_PROTOCOL_DEFAULT);
39 g_socket_connection_factory_register_type (g_define_type_id,
42 G_SOCKET_PROTOCOL_DEFAULT);
43 g_socket_connection_factory_register_type (g_define_type_id,
46 G_SOCKET_PROTOCOL_TCP);
47 g_socket_connection_factory_register_type (g_define_type_id,
50 G_SOCKET_PROTOCOL_TCP);
53 static gboolean g_tcp_connection_close (GIOStream *stream,
54 GCancellable *cancellable,
56 static void g_tcp_connection_close_async (GIOStream *stream,
58 GCancellable *cancellable,
59 GAsyncReadyCallback callback,
62 struct _GTcpConnectionPrivate
64 guint graceful_disconnect : 1;
71 PROP_GRACEFUL_DISCONNECT
75 g_tcp_connection_init (GTcpConnection *connection)
77 connection->priv = G_TYPE_INSTANCE_GET_PRIVATE (connection,
78 G_TYPE_TCP_CONNECTION,
79 GTcpConnectionPrivate);
80 connection->priv->graceful_disconnect = FALSE;
84 g_tcp_connection_get_property (GObject *object,
89 GTcpConnection *connection = G_TCP_CONNECTION (object);
93 case PROP_GRACEFUL_DISCONNECT:
94 g_value_set_boolean (value, connection->priv->graceful_disconnect);
98 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
103 g_tcp_connection_set_property (GObject *object,
108 GTcpConnection *connection = G_TCP_CONNECTION (object);
112 case PROP_GRACEFUL_DISCONNECT:
113 g_tcp_connection_set_graceful_disconnect (connection,
114 g_value_get_boolean (value));
118 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
123 g_tcp_connection_class_init (GTcpConnectionClass *class)
125 GObjectClass *gobject_class = G_OBJECT_CLASS (class);
126 GIOStreamClass *stream_class = G_IO_STREAM_CLASS (class);
128 g_type_class_add_private (class, sizeof (GTcpConnectionPrivate));
130 gobject_class->set_property = g_tcp_connection_set_property;
131 gobject_class->get_property = g_tcp_connection_get_property;
133 stream_class->close_fn = g_tcp_connection_close;
134 stream_class->close_async = g_tcp_connection_close_async;
136 g_object_class_install_property (gobject_class, PROP_GRACEFUL_DISCONNECT,
137 g_param_spec_boolean ("graceful-disconnect",
138 P_("Graceful Disconnect"),
139 P_("Whether or not close does a graceful disconnect"),
141 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
146 g_tcp_connection_close (GIOStream *stream,
147 GCancellable *cancellable,
150 GTcpConnection *connection = G_TCP_CONNECTION (stream);
157 socket = g_socket_connection_get_socket (G_SOCKET_CONNECTION (stream));
160 if (connection->priv->graceful_disconnect &&
161 !g_cancellable_is_cancelled (cancellable) /* Cancelled -> close fast */)
163 if (!g_socket_shutdown (socket, FALSE, TRUE, error))
165 error = NULL; /* Ignore further errors */
173 ret = g_socket_receive (socket, buffer, sizeof (buffer),
174 cancellable, &my_error);
177 if (g_error_matches (my_error, G_IO_ERROR, G_IO_ERROR_WOULD_BLOCK))
178 g_error_free (my_error);
182 g_propagate_error (error, my_error);
193 return G_IO_STREAM_CLASS (g_tcp_connection_parent_class)
194 ->close_fn (stream, cancellable, error) && !had_error;
198 GSimpleAsyncResult *res;
199 GCancellable *cancellable;
203 close_async_data_free (CloseAsyncData *data)
205 g_object_unref (data->res);
206 if (data->cancellable)
207 g_object_unref (data->cancellable);
212 async_close_finish (CloseAsyncData *data,
213 GError *error /* consumed */,
214 gboolean in_mainloop)
216 GIOStreamClass *parent = G_IO_STREAM_CLASS (g_tcp_connection_parent_class);
220 stream = G_IO_STREAM (g_async_result_get_source_object (G_ASYNC_RESULT (data->res)));
222 /* Doesn't block, ignore error */
225 parent->close_fn (stream, data->cancellable, NULL);
226 g_simple_async_result_take_error (data->res, error);
231 parent->close_fn (stream, data->cancellable, &my_error);
233 g_simple_async_result_take_error (data->res, my_error);
237 g_simple_async_result_complete (data->res);
239 g_simple_async_result_complete_in_idle (data->res);
243 close_read_ready (GSocket *socket,
244 GIOCondition condition,
245 CloseAsyncData *data)
247 GError *error = NULL;
251 ret = g_socket_receive (socket, buffer, sizeof (buffer),
252 data->cancellable, &error);
255 if (g_error_matches (error, G_IO_ERROR, G_IO_ERROR_WOULD_BLOCK))
256 g_error_free (error);
259 async_close_finish (data, error, TRUE);
266 async_close_finish (data, NULL, TRUE);
275 g_tcp_connection_close_async (GIOStream *stream,
277 GCancellable *cancellable,
278 GAsyncReadyCallback callback,
281 GTcpConnection *connection = G_TCP_CONNECTION (stream);
282 CloseAsyncData *data;
287 if (connection->priv->graceful_disconnect &&
288 !g_cancellable_is_cancelled (cancellable) /* Cancelled -> close fast */)
290 data = g_new (CloseAsyncData, 1);
292 g_simple_async_result_new (G_OBJECT (stream), callback, user_data,
293 g_tcp_connection_close_async);
295 data->cancellable = g_object_ref (cancellable);
297 data->cancellable = NULL;
299 socket = g_socket_connection_get_socket (G_SOCKET_CONNECTION (stream));
302 if (!g_socket_shutdown (socket, FALSE, TRUE, &error))
304 async_close_finish (data, error, FALSE);
305 close_async_data_free (data);
309 source = g_socket_create_source (socket, G_IO_IN, cancellable);
310 g_source_set_callback (source,
311 (GSourceFunc) close_read_ready,
312 data, (GDestroyNotify)close_async_data_free);
313 g_source_attach (source, g_main_context_get_thread_default ());
314 g_source_unref (source);
319 G_IO_STREAM_CLASS (g_tcp_connection_parent_class)
320 ->close_async (stream, io_priority, cancellable, callback, user_data);
324 * g_tcp_connection_set_graceful_disconnect:
325 * @connection: a #GTcpConnection
326 * @graceful_disconnect: Whether to do graceful disconnects or not
328 * This enabled graceful disconnects on close. A graceful disconnect
329 * means that we signal the receiving end that the connection is terminated
330 * and wait for it to close the connection before closing the connection.
332 * A graceful disconnect means that we can be sure that we successfully sent
333 * all the outstanding data to the other end, or get an error reported.
334 * However, it also means we have to wait for all the data to reach the
335 * other side and for it to acknowledge this by closing the socket, which may
336 * take a while. For this reason it is disabled by default.
341 g_tcp_connection_set_graceful_disconnect (GTcpConnection *connection,
342 gboolean graceful_disconnect)
344 graceful_disconnect = !!graceful_disconnect;
345 if (graceful_disconnect != connection->priv->graceful_disconnect)
347 connection->priv->graceful_disconnect = graceful_disconnect;
348 g_object_notify (G_OBJECT (connection), "graceful-disconnect");
353 * g_tcp_connection_get_graceful_disconnect:
354 * @connection: a #GTcpConnection
356 * Checks if graceful disconnects are used. See
357 * g_tcp_connection_set_graceful_disconnect().
359 * Returns: %TRUE if graceful disconnect is used on close, %FALSE otherwise
364 g_tcp_connection_get_graceful_disconnect (GTcpConnection *connection)
366 return connection->priv->graceful_disconnect;