2009-05-15 21:26:24 +02:00
|
|
|
/* GIO - GLib Input, Output and Streaming Library
|
|
|
|
*
|
|
|
|
* Copyright © 2008 Christian Kellner, Samuel Cormier-Iijima
|
|
|
|
* © 2009 codethink
|
|
|
|
*
|
|
|
|
* 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 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
|
2014-01-23 12:58:29 +01:00
|
|
|
* Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
2009-05-15 21:26:24 +02:00
|
|
|
*
|
|
|
|
* Authors: Christian Kellner <gicmo@gnome.org>
|
|
|
|
* Samuel Cormier-Iijima <sciyoshi@gmail.com>
|
|
|
|
* Ryan Lortie <desrt@desrt.ca>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
2009-05-28 06:30:21 +02:00
|
|
|
#include "goutputstream.h"
|
2009-05-15 21:26:24 +02:00
|
|
|
#include "gsocketoutputstream.h"
|
2009-05-28 06:30:21 +02:00
|
|
|
#include "gsocket.h"
|
2011-09-03 15:03:17 +02:00
|
|
|
#include "glibintl.h"
|
2009-05-15 21:26:24 +02:00
|
|
|
|
2010-09-18 19:05:25 +02:00
|
|
|
#include "gcancellable.h"
|
|
|
|
#include "gpollableinputstream.h"
|
|
|
|
#include "gpollableoutputstream.h"
|
|
|
|
#include "gioerror.h"
|
2009-05-15 21:26:24 +02:00
|
|
|
#include "glibintl.h"
|
2011-09-03 15:03:17 +02:00
|
|
|
#include "gfiledescriptorbased.h"
|
2009-05-28 06:30:21 +02:00
|
|
|
|
2013-06-11 01:29:58 +02:00
|
|
|
struct _GSocketOutputStreamPrivate
|
|
|
|
{
|
|
|
|
GSocket *socket;
|
|
|
|
|
|
|
|
/* pending operation metadata */
|
|
|
|
gconstpointer buffer;
|
|
|
|
gsize count;
|
|
|
|
};
|
|
|
|
|
2010-09-18 19:05:25 +02:00
|
|
|
static void g_socket_output_stream_pollable_iface_init (GPollableOutputStreamInterface *iface);
|
2011-09-03 15:03:17 +02:00
|
|
|
#ifdef G_OS_UNIX
|
|
|
|
static void g_socket_output_stream_file_descriptor_based_iface_init (GFileDescriptorBasedIface *iface);
|
|
|
|
#endif
|
2010-09-18 19:05:25 +02:00
|
|
|
|
2009-05-15 21:26:24 +02:00
|
|
|
#define g_socket_output_stream_get_type _g_socket_output_stream_get_type
|
2011-11-22 14:56:54 +01:00
|
|
|
|
|
|
|
#ifdef G_OS_UNIX
|
2010-09-18 19:05:25 +02:00
|
|
|
G_DEFINE_TYPE_WITH_CODE (GSocketOutputStream, g_socket_output_stream, G_TYPE_OUTPUT_STREAM,
|
2013-06-11 01:29:58 +02:00
|
|
|
G_ADD_PRIVATE (GSocketOutputStream)
|
2010-09-18 19:05:25 +02:00
|
|
|
G_IMPLEMENT_INTERFACE (G_TYPE_POLLABLE_OUTPUT_STREAM, g_socket_output_stream_pollable_iface_init)
|
2011-09-03 15:03:17 +02:00
|
|
|
G_IMPLEMENT_INTERFACE (G_TYPE_FILE_DESCRIPTOR_BASED, g_socket_output_stream_file_descriptor_based_iface_init)
|
2011-11-22 14:56:54 +01:00
|
|
|
)
|
|
|
|
#else
|
|
|
|
G_DEFINE_TYPE_WITH_CODE (GSocketOutputStream, g_socket_output_stream, G_TYPE_OUTPUT_STREAM,
|
2013-06-11 01:29:58 +02:00
|
|
|
G_ADD_PRIVATE (GSocketOutputStream)
|
2011-11-22 14:56:54 +01:00
|
|
|
G_IMPLEMENT_INTERFACE (G_TYPE_POLLABLE_OUTPUT_STREAM, g_socket_output_stream_pollable_iface_init)
|
|
|
|
)
|
2011-09-03 15:03:17 +02:00
|
|
|
#endif
|
2009-05-15 21:26:24 +02:00
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
|
|
|
PROP_SOCKET
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
g_socket_output_stream_get_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GSocketOutputStream *stream = G_SOCKET_OUTPUT_STREAM (object);
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
|
|
|
case PROP_SOCKET:
|
|
|
|
g_value_set_object (value, stream->priv->socket);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
g_socket_output_stream_set_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GSocketOutputStream *stream = G_SOCKET_OUTPUT_STREAM (object);
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
|
|
|
case PROP_SOCKET:
|
|
|
|
stream->priv->socket = g_value_dup_object (value);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
g_socket_output_stream_finalize (GObject *object)
|
|
|
|
{
|
|
|
|
GSocketOutputStream *stream = G_SOCKET_OUTPUT_STREAM (object);
|
|
|
|
|
|
|
|
if (stream->priv->socket)
|
|
|
|
g_object_unref (stream->priv->socket);
|
|
|
|
|
2013-06-11 01:29:58 +02:00
|
|
|
G_OBJECT_CLASS (g_socket_output_stream_parent_class)->finalize (object);
|
2009-05-15 21:26:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static gssize
|
|
|
|
g_socket_output_stream_write (GOutputStream *stream,
|
|
|
|
const void *buffer,
|
|
|
|
gsize count,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error)
|
|
|
|
{
|
|
|
|
GSocketOutputStream *onput_stream = G_SOCKET_OUTPUT_STREAM (stream);
|
|
|
|
|
2010-06-24 19:09:14 +02:00
|
|
|
return g_socket_send_with_blocking (onput_stream->priv->socket,
|
|
|
|
buffer, count, TRUE,
|
|
|
|
cancellable, error);
|
2009-05-15 21:26:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2012-02-04 22:46:29 +01:00
|
|
|
g_socket_output_stream_pollable_is_writable (GPollableOutputStream *pollable)
|
2009-05-15 21:26:24 +02:00
|
|
|
{
|
2012-02-04 22:46:29 +01:00
|
|
|
GSocketOutputStream *output_stream = G_SOCKET_OUTPUT_STREAM (pollable);
|
2009-05-15 21:26:24 +02:00
|
|
|
|
2012-02-04 22:46:29 +01:00
|
|
|
return g_socket_condition_check (output_stream->priv->socket, G_IO_OUT);
|
2009-05-15 21:26:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static gssize
|
2012-02-04 22:46:29 +01:00
|
|
|
g_socket_output_stream_pollable_write_nonblocking (GPollableOutputStream *pollable,
|
|
|
|
const void *buffer,
|
|
|
|
gsize size,
|
|
|
|
GError **error)
|
2010-09-18 19:05:25 +02:00
|
|
|
{
|
|
|
|
GSocketOutputStream *output_stream = G_SOCKET_OUTPUT_STREAM (pollable);
|
|
|
|
|
2012-02-04 22:46:29 +01:00
|
|
|
return g_socket_send_with_blocking (output_stream->priv->socket,
|
|
|
|
buffer, size, FALSE,
|
|
|
|
NULL, error);
|
2010-09-18 19:05:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static GSource *
|
|
|
|
g_socket_output_stream_pollable_create_source (GPollableOutputStream *pollable,
|
|
|
|
GCancellable *cancellable)
|
|
|
|
{
|
|
|
|
GSocketOutputStream *output_stream = G_SOCKET_OUTPUT_STREAM (pollable);
|
|
|
|
GSource *socket_source, *pollable_source;
|
|
|
|
|
|
|
|
pollable_source = g_pollable_source_new (G_OBJECT (output_stream));
|
|
|
|
socket_source = g_socket_create_source (output_stream->priv->socket,
|
|
|
|
G_IO_OUT, cancellable);
|
|
|
|
g_source_set_dummy_callback (socket_source);
|
|
|
|
g_source_add_child_source (pollable_source, socket_source);
|
|
|
|
g_source_unref (socket_source);
|
|
|
|
|
|
|
|
return pollable_source;
|
|
|
|
}
|
|
|
|
|
2011-09-03 15:03:17 +02:00
|
|
|
#ifdef G_OS_UNIX
|
|
|
|
static int
|
|
|
|
g_socket_output_stream_get_fd (GFileDescriptorBased *fd_based)
|
|
|
|
{
|
|
|
|
GSocketOutputStream *output_stream = G_SOCKET_OUTPUT_STREAM (fd_based);
|
|
|
|
|
|
|
|
return g_socket_get_fd (output_stream->priv->socket);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-05-15 21:26:24 +02:00
|
|
|
static void
|
|
|
|
g_socket_output_stream_class_init (GSocketOutputStreamClass *klass)
|
|
|
|
{
|
|
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
|
|
|
|
GOutputStreamClass *goutputstream_class = G_OUTPUT_STREAM_CLASS (klass);
|
|
|
|
|
|
|
|
gobject_class->finalize = g_socket_output_stream_finalize;
|
|
|
|
gobject_class->get_property = g_socket_output_stream_get_property;
|
|
|
|
gobject_class->set_property = g_socket_output_stream_set_property;
|
|
|
|
|
|
|
|
goutputstream_class->write_fn = g_socket_output_stream_write;
|
|
|
|
|
|
|
|
g_object_class_install_property (gobject_class, PROP_SOCKET,
|
|
|
|
g_param_spec_object ("socket",
|
|
|
|
P_("socket"),
|
|
|
|
P_("The socket that this stream wraps"),
|
|
|
|
G_TYPE_SOCKET, G_PARAM_CONSTRUCT_ONLY |
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
|
|
|
}
|
|
|
|
|
2011-09-03 15:03:17 +02:00
|
|
|
#ifdef G_OS_UNIX
|
|
|
|
static void
|
|
|
|
g_socket_output_stream_file_descriptor_based_iface_init (GFileDescriptorBasedIface *iface)
|
|
|
|
{
|
|
|
|
iface->get_fd = g_socket_output_stream_get_fd;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-09-18 19:05:25 +02:00
|
|
|
static void
|
|
|
|
g_socket_output_stream_pollable_iface_init (GPollableOutputStreamInterface *iface)
|
|
|
|
{
|
|
|
|
iface->is_writable = g_socket_output_stream_pollable_is_writable;
|
|
|
|
iface->create_source = g_socket_output_stream_pollable_create_source;
|
|
|
|
iface->write_nonblocking = g_socket_output_stream_pollable_write_nonblocking;
|
|
|
|
}
|
|
|
|
|
2009-05-15 21:26:24 +02:00
|
|
|
static void
|
|
|
|
g_socket_output_stream_init (GSocketOutputStream *stream)
|
|
|
|
{
|
2013-06-24 16:43:04 +02:00
|
|
|
stream->priv = g_socket_output_stream_get_instance_private (stream);
|
2009-05-15 21:26:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
GSocketOutputStream *
|
|
|
|
_g_socket_output_stream_new (GSocket *socket)
|
|
|
|
{
|
2013-06-11 01:29:58 +02:00
|
|
|
return g_object_new (G_TYPE_SOCKET_OUTPUT_STREAM, "socket", socket, NULL);
|
2009-05-15 21:26:24 +02:00
|
|
|
}
|