summaryrefslogtreecommitdiff
path: root/agent/inputstream.c
diff options
context:
space:
mode:
authorPhilip Withnall <philip.withnall@collabora.co.uk>2014-08-08 13:35:17 +0100
committerOlivier Crête <olivier.crete@collabora.com>2014-08-21 14:33:11 -0400
commit859fcb9ef3b43baf49f3d6cb7f757847d068bbb3 (patch)
treebadb34b9e80eed496385c48adf90cf0f07175114 /agent/inputstream.c
parent4bc5a9c728b47a65d82192f36be7755541f653a1 (diff)
downloadlibnice-859fcb9ef3b43baf49f3d6cb7f757847d068bbb3.tar.gz
agent: Close pseudo-TCP streams when closing G[IO|Input|Output]Streams
This means that users of the Nice[Input|Output|IO]Stream API can easily close TCP connections without having to hack around with libnice internals.
Diffstat (limited to 'agent/inputstream.c')
-rw-r--r--agent/inputstream.c42
1 files changed, 40 insertions, 2 deletions
diff --git a/agent/inputstream.c b/agent/inputstream.c
index 9695951..e14fb6e 100644
--- a/agent/inputstream.c
+++ b/agent/inputstream.c
@@ -50,8 +50,8 @@
* component triple, and will be closed as soon as that stream is removed from
* the agent (e.g. if nice_agent_remove_stream() is called from another thread).
* If g_input_stream_close() is called on a #NiceInputStream, the input stream
- * will be marked as closed, but the underlying #NiceAgent stream will not be
- * removed. Use nice_agent_remove_stream() to do that.
+ * and underlying #NiceAgent stream will be closed, but the underlying stream
+ * will not be removed. Use nice_agent_remove_stream() to do that.
*
* Since: 0.1.5
*/
@@ -96,6 +96,8 @@ static void nice_input_stream_set_property (GObject *object, guint prop_id,
const GValue *value, GParamSpec *pspec);
static gssize nice_input_stream_read (GInputStream *stream, void *buffer,
gsize count, GCancellable *cancellable, GError **error);
+static gboolean nice_input_stream_close (GInputStream *stream,
+ GCancellable *cancellable, GError **error);
static gboolean nice_input_stream_is_readable (GPollableInputStream *stream);
static gssize nice_input_stream_read_nonblocking (GPollableInputStream *stream,
void *buffer, gsize count, GError **error);
@@ -115,6 +117,7 @@ nice_input_stream_class_init (NiceInputStreamClass *klass)
gobject_class->dispose = nice_input_stream_dispose;
stream_class->read_fn = nice_input_stream_read;
+ stream_class->close_fn = nice_input_stream_close;
/***
* NiceInputStream:agent:
@@ -174,6 +177,11 @@ nice_input_stream_dispose (GObject *object)
NiceInputStream *self = NICE_INPUT_STREAM (object);
NiceAgent *agent;
+ /* Ensure the stream is closed first, otherwise the agent can’t be found in
+ * the close handler called by the parent implementation. */
+ if (!g_input_stream_is_closed (G_INPUT_STREAM (object)))
+ g_input_stream_close (G_INPUT_STREAM (object), NULL, NULL);
+
agent = g_weak_ref_get (&self->priv->agent_ref);
if (agent != NULL) {
g_signal_handlers_disconnect_by_func (agent, streams_removed_cb, self);
@@ -322,6 +330,36 @@ nice_input_stream_read (GInputStream *stream, void *buffer, gsize count,
}
static gboolean
+nice_input_stream_close (GInputStream *stream, GCancellable *cancellable,
+ GError **error)
+{
+ NiceInputStreamPrivate *priv = NICE_INPUT_STREAM (stream)->priv;
+ Component *component = NULL;
+ Stream *_stream = NULL;
+ NiceAgent *agent; /* owned */
+
+ /* Has the agent disappeared? */
+ agent = g_weak_ref_get (&priv->agent_ref);
+ if (agent == NULL)
+ return TRUE;
+
+ agent_lock ();
+
+ /* Shut down the read side of the pseudo-TCP stream, if it still exists. */
+ if (agent_find_component (agent, priv->stream_id, priv->component_id,
+ &_stream, &component) &&
+ component->tcp != NULL) {
+ pseudo_tcp_socket_shutdown (component->tcp, PSEUDO_TCP_SHUTDOWN_RD);
+ }
+
+ agent_unlock ();
+
+ g_object_unref (agent);
+
+ return TRUE;
+}
+
+static gboolean
nice_input_stream_is_readable (GPollableInputStream *stream)
{
NiceInputStreamPrivate *priv = NICE_INPUT_STREAM (stream)->priv;