Import Upstream version 2.72.4
This commit is contained in:
commit
4ef3ff9793
2003 changed files with 1332420 additions and 0 deletions
201
gio/gtcpwrapperconnection.c
Normal file
201
gio/gtcpwrapperconnection.c
Normal file
|
|
@ -0,0 +1,201 @@
|
|||
/* GIO - GLib Input, Output and Streaming Library
|
||||
*
|
||||
* Copyright © 2010 Collabora Ltd.
|
||||
*
|
||||
* 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.1 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
|
||||
* Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* Authors: Nicolas Dufresne <nicolas.dufresne@colllabora.co.uk>
|
||||
*/
|
||||
|
||||
/**
|
||||
* SECTION:gtcpwrapperconnection
|
||||
* @title: GTcpWrapperConnection
|
||||
* @short_description: Wrapper for non-GSocketConnection-based,
|
||||
* GSocket-based GIOStreams
|
||||
* @include: gio/gio.h
|
||||
* @see_also: #GSocketConnection.
|
||||
*
|
||||
* A #GTcpWrapperConnection can be used to wrap a #GIOStream that is
|
||||
* based on a #GSocket, but which is not actually a
|
||||
* #GSocketConnection. This is used by #GSocketClient so that it can
|
||||
* always return a #GSocketConnection, even when the connection it has
|
||||
* actually created is not directly a #GSocketConnection.
|
||||
*
|
||||
* Since: 2.28
|
||||
*/
|
||||
|
||||
/**
|
||||
* GTcpWrapperConnection:
|
||||
*
|
||||
* #GTcpWrapperConnection is an opaque data structure and can only be accessed
|
||||
* using the following functions.
|
||||
**/
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include "gtcpwrapperconnection.h"
|
||||
|
||||
#include "gtcpconnection.h"
|
||||
#include "glibintl.h"
|
||||
|
||||
struct _GTcpWrapperConnectionPrivate
|
||||
{
|
||||
GIOStream *base_io_stream;
|
||||
};
|
||||
|
||||
G_DEFINE_TYPE_WITH_PRIVATE (GTcpWrapperConnection, g_tcp_wrapper_connection, G_TYPE_TCP_CONNECTION)
|
||||
|
||||
enum
|
||||
{
|
||||
PROP_NONE,
|
||||
PROP_BASE_IO_STREAM
|
||||
};
|
||||
|
||||
static GInputStream *
|
||||
g_tcp_wrapper_connection_get_input_stream (GIOStream *io_stream)
|
||||
{
|
||||
GTcpWrapperConnection *connection = G_TCP_WRAPPER_CONNECTION (io_stream);
|
||||
|
||||
return g_io_stream_get_input_stream (connection->priv->base_io_stream);
|
||||
}
|
||||
|
||||
static GOutputStream *
|
||||
g_tcp_wrapper_connection_get_output_stream (GIOStream *io_stream)
|
||||
{
|
||||
GTcpWrapperConnection *connection = G_TCP_WRAPPER_CONNECTION (io_stream);
|
||||
|
||||
return g_io_stream_get_output_stream (connection->priv->base_io_stream);
|
||||
}
|
||||
|
||||
static void
|
||||
g_tcp_wrapper_connection_get_property (GObject *object,
|
||||
guint prop_id,
|
||||
GValue *value,
|
||||
GParamSpec *pspec)
|
||||
{
|
||||
GTcpWrapperConnection *connection = G_TCP_WRAPPER_CONNECTION (object);
|
||||
|
||||
switch (prop_id)
|
||||
{
|
||||
case PROP_BASE_IO_STREAM:
|
||||
g_value_set_object (value, connection->priv->base_io_stream);
|
||||
break;
|
||||
|
||||
default:
|
||||
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
g_tcp_wrapper_connection_set_property (GObject *object,
|
||||
guint prop_id,
|
||||
const GValue *value,
|
||||
GParamSpec *pspec)
|
||||
{
|
||||
GTcpWrapperConnection *connection = G_TCP_WRAPPER_CONNECTION (object);
|
||||
|
||||
switch (prop_id)
|
||||
{
|
||||
case PROP_BASE_IO_STREAM:
|
||||
connection->priv->base_io_stream = g_value_dup_object (value);
|
||||
break;
|
||||
|
||||
default:
|
||||
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
g_tcp_wrapper_connection_finalize (GObject *object)
|
||||
{
|
||||
GTcpWrapperConnection *connection = G_TCP_WRAPPER_CONNECTION (object);
|
||||
|
||||
if (connection->priv->base_io_stream)
|
||||
g_object_unref (connection->priv->base_io_stream);
|
||||
|
||||
G_OBJECT_CLASS (g_tcp_wrapper_connection_parent_class)->finalize (object);
|
||||
}
|
||||
|
||||
static void
|
||||
g_tcp_wrapper_connection_class_init (GTcpWrapperConnectionClass *klass)
|
||||
{
|
||||
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
|
||||
GIOStreamClass *stream_class = G_IO_STREAM_CLASS (klass);
|
||||
|
||||
gobject_class->set_property = g_tcp_wrapper_connection_set_property;
|
||||
gobject_class->get_property = g_tcp_wrapper_connection_get_property;
|
||||
gobject_class->finalize = g_tcp_wrapper_connection_finalize;
|
||||
|
||||
stream_class->get_input_stream = g_tcp_wrapper_connection_get_input_stream;
|
||||
stream_class->get_output_stream = g_tcp_wrapper_connection_get_output_stream;
|
||||
|
||||
g_object_class_install_property (gobject_class,
|
||||
PROP_BASE_IO_STREAM,
|
||||
g_param_spec_object ("base-io-stream",
|
||||
P_("Base IO Stream"),
|
||||
P_("The wrapped GIOStream"),
|
||||
G_TYPE_IO_STREAM,
|
||||
G_PARAM_CONSTRUCT_ONLY |
|
||||
G_PARAM_READWRITE |
|
||||
G_PARAM_STATIC_STRINGS));
|
||||
}
|
||||
|
||||
static void
|
||||
g_tcp_wrapper_connection_init (GTcpWrapperConnection *connection)
|
||||
{
|
||||
connection->priv = g_tcp_wrapper_connection_get_instance_private (connection);
|
||||
}
|
||||
|
||||
/**
|
||||
* g_tcp_wrapper_connection_new:
|
||||
* @base_io_stream: the #GIOStream to wrap
|
||||
* @socket: the #GSocket associated with @base_io_stream
|
||||
*
|
||||
* Wraps @base_io_stream and @socket together as a #GSocketConnection.
|
||||
*
|
||||
* Returns: the new #GSocketConnection.
|
||||
*
|
||||
* Since: 2.28
|
||||
*/
|
||||
GSocketConnection *
|
||||
g_tcp_wrapper_connection_new (GIOStream *base_io_stream,
|
||||
GSocket *socket)
|
||||
{
|
||||
g_return_val_if_fail (G_IS_IO_STREAM (base_io_stream), NULL);
|
||||
g_return_val_if_fail (G_IS_SOCKET (socket), NULL);
|
||||
g_return_val_if_fail (g_socket_get_family (socket) == G_SOCKET_FAMILY_IPV4 ||
|
||||
g_socket_get_family (socket) == G_SOCKET_FAMILY_IPV6, NULL);
|
||||
g_return_val_if_fail (g_socket_get_socket_type (socket) == G_SOCKET_TYPE_STREAM, NULL);
|
||||
|
||||
return g_object_new (G_TYPE_TCP_WRAPPER_CONNECTION,
|
||||
"base-io-stream", base_io_stream,
|
||||
"socket", socket,
|
||||
NULL);
|
||||
}
|
||||
|
||||
/**
|
||||
* g_tcp_wrapper_connection_get_base_io_stream:
|
||||
* @conn: a #GTcpWrapperConnection
|
||||
*
|
||||
* Gets @conn's base #GIOStream
|
||||
*
|
||||
* Returns: (transfer none): @conn's base #GIOStream
|
||||
*/
|
||||
GIOStream *
|
||||
g_tcp_wrapper_connection_get_base_io_stream (GTcpWrapperConnection *conn)
|
||||
{
|
||||
g_return_val_if_fail (G_IS_TCP_WRAPPER_CONNECTION (conn), NULL);
|
||||
|
||||
return conn->priv->base_io_stream;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue