2 * Copyright (C) 2008 Wim Taymans <wim.taymans at gmail.com>
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
17 * Boston, MA 02110-1301, USA.
21 * @short_description: A client connection state
22 * @see_also: #GstRTSPServer, #GstRTSPThreadPool
24 * The client object handles the connection with a client for as long as a TCP
27 * A #GstRTSPClient is created by #GstRTSPServer when a new connection is
28 * accepted and it inherits the #GstRTSPMountPoints, #GstRTSPSessionPool,
29 * #GstRTSPAuth and #GstRTSPThreadPool from the server.
31 * The client connection should be configured with the #GstRTSPConnection using
32 * gst_rtsp_client_set_connection() before it can be attached to a #GMainContext
33 * using gst_rtsp_client_attach(). From then on the client will handle requests
36 * Use gst_rtsp_client_session_filter() to iterate or modify all the
37 * #GstRTSPSession objects managed by the client object.
39 * Last reviewed on 2013-07-11 (1.0.0)
45 #include "rtsp-client.h"
47 #include "rtsp-params.h"
49 #define GST_RTSP_CLIENT_GET_PRIVATE(obj) \
50 (G_TYPE_INSTANCE_GET_PRIVATE ((obj), GST_TYPE_RTSP_CLIENT, GstRTSPClientPrivate))
53 * send_lock, lock, tunnels_lock
56 struct _GstRTSPClientPrivate
58 GMutex lock; /* protects everything else */
60 GstRTSPConnection *connection;
66 GstRTSPClientSendFunc send_func; /* protected by send_lock */
67 gpointer send_data; /* protected by send_lock */
68 GDestroyNotify send_notify; /* protected by send_lock */
70 GstRTSPSessionPool *session_pool;
71 GstRTSPMountPoints *mount_points;
73 GstRTSPThreadPool *thread_pool;
75 /* used to cache the media in the last requested DESCRIBE so that
76 * we can pick it up in the next SETUP immediately */
84 static GMutex tunnels_lock;
85 static GHashTable *tunnels; /* protected by tunnels_lock */
87 #define DEFAULT_SESSION_POOL NULL
88 #define DEFAULT_MOUNT_POINTS NULL
102 SIGNAL_OPTIONS_REQUEST,
103 SIGNAL_DESCRIBE_REQUEST,
104 SIGNAL_SETUP_REQUEST,
106 SIGNAL_PAUSE_REQUEST,
107 SIGNAL_TEARDOWN_REQUEST,
108 SIGNAL_SET_PARAMETER_REQUEST,
109 SIGNAL_GET_PARAMETER_REQUEST,
110 SIGNAL_HANDLE_RESPONSE,
114 GST_DEBUG_CATEGORY_STATIC (rtsp_client_debug);
115 #define GST_CAT_DEFAULT rtsp_client_debug
117 static guint gst_rtsp_client_signals[SIGNAL_LAST] = { 0 };
119 static void gst_rtsp_client_get_property (GObject * object, guint propid,
120 GValue * value, GParamSpec * pspec);
121 static void gst_rtsp_client_set_property (GObject * object, guint propid,
122 const GValue * value, GParamSpec * pspec);
123 static void gst_rtsp_client_finalize (GObject * obj);
125 static GstSDPMessage *create_sdp (GstRTSPClient * client, GstRTSPMedia * media);
126 static void client_session_finalized (GstRTSPClient * client,
127 GstRTSPSession * session);
128 static void unlink_session_transports (GstRTSPClient * client,
129 GstRTSPSession * session, GstRTSPSessionMedia * sessmedia);
130 static gboolean default_configure_client_transport (GstRTSPClient * client,
131 GstRTSPContext * ctx, GstRTSPTransport * ct);
132 static GstRTSPResult default_params_set (GstRTSPClient * client,
133 GstRTSPContext * ctx);
134 static GstRTSPResult default_params_get (GstRTSPClient * client,
135 GstRTSPContext * ctx);
136 static gchar * default_make_path_from_uri (GstRTSPClient *client,
137 const GstRTSPUrl *uri);
139 G_DEFINE_TYPE (GstRTSPClient, gst_rtsp_client, G_TYPE_OBJECT);
142 gst_rtsp_client_class_init (GstRTSPClientClass * klass)
144 GObjectClass *gobject_class;
146 g_type_class_add_private (klass, sizeof (GstRTSPClientPrivate));
148 gobject_class = G_OBJECT_CLASS (klass);
150 gobject_class->get_property = gst_rtsp_client_get_property;
151 gobject_class->set_property = gst_rtsp_client_set_property;
152 gobject_class->finalize = gst_rtsp_client_finalize;
154 klass->create_sdp = create_sdp;
155 klass->configure_client_transport = default_configure_client_transport;
156 klass->params_set = default_params_set;
157 klass->params_get = default_params_get;
158 klass->make_path_from_uri = default_make_path_from_uri;
160 g_object_class_install_property (gobject_class, PROP_SESSION_POOL,
161 g_param_spec_object ("session-pool", "Session Pool",
162 "The session pool to use for client session",
163 GST_TYPE_RTSP_SESSION_POOL,
164 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
166 g_object_class_install_property (gobject_class, PROP_MOUNT_POINTS,
167 g_param_spec_object ("mount-points", "Mount Points",
168 "The mount points to use for client session",
169 GST_TYPE_RTSP_MOUNT_POINTS,
170 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
172 gst_rtsp_client_signals[SIGNAL_CLOSED] =
173 g_signal_new ("closed", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
174 G_STRUCT_OFFSET (GstRTSPClientClass, closed), NULL, NULL,
175 g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0, G_TYPE_NONE);
177 gst_rtsp_client_signals[SIGNAL_NEW_SESSION] =
178 g_signal_new ("new-session", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
179 G_STRUCT_OFFSET (GstRTSPClientClass, new_session), NULL, NULL,
180 g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1, GST_TYPE_RTSP_SESSION);
182 gst_rtsp_client_signals[SIGNAL_OPTIONS_REQUEST] =
183 g_signal_new ("options-request", G_TYPE_FROM_CLASS (klass),
184 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, options_request),
185 NULL, NULL, g_cclosure_marshal_VOID__POINTER, G_TYPE_NONE, 1,
188 gst_rtsp_client_signals[SIGNAL_DESCRIBE_REQUEST] =
189 g_signal_new ("describe-request", G_TYPE_FROM_CLASS (klass),
190 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, describe_request),
191 NULL, NULL, g_cclosure_marshal_VOID__POINTER, G_TYPE_NONE, 1,
194 gst_rtsp_client_signals[SIGNAL_SETUP_REQUEST] =
195 g_signal_new ("setup-request", G_TYPE_FROM_CLASS (klass),
196 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, setup_request),
197 NULL, NULL, g_cclosure_marshal_VOID__POINTER, G_TYPE_NONE, 1,
200 gst_rtsp_client_signals[SIGNAL_PLAY_REQUEST] =
201 g_signal_new ("play-request", G_TYPE_FROM_CLASS (klass),
202 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, play_request),
203 NULL, NULL, g_cclosure_marshal_VOID__POINTER, G_TYPE_NONE, 1,
206 gst_rtsp_client_signals[SIGNAL_PAUSE_REQUEST] =
207 g_signal_new ("pause-request", G_TYPE_FROM_CLASS (klass),
208 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, pause_request),
209 NULL, NULL, g_cclosure_marshal_VOID__POINTER, G_TYPE_NONE, 1,
212 gst_rtsp_client_signals[SIGNAL_TEARDOWN_REQUEST] =
213 g_signal_new ("teardown-request", G_TYPE_FROM_CLASS (klass),
214 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, teardown_request),
215 NULL, NULL, g_cclosure_marshal_VOID__POINTER, G_TYPE_NONE, 1,
218 gst_rtsp_client_signals[SIGNAL_SET_PARAMETER_REQUEST] =
219 g_signal_new ("set-parameter-request", G_TYPE_FROM_CLASS (klass),
220 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass,
221 set_parameter_request), NULL, NULL, g_cclosure_marshal_VOID__POINTER,
222 G_TYPE_NONE, 1, G_TYPE_POINTER);
224 gst_rtsp_client_signals[SIGNAL_GET_PARAMETER_REQUEST] =
225 g_signal_new ("get-parameter-request", G_TYPE_FROM_CLASS (klass),
226 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass,
227 get_parameter_request), NULL, NULL, g_cclosure_marshal_VOID__POINTER,
228 G_TYPE_NONE, 1, G_TYPE_POINTER);
230 gst_rtsp_client_signals[SIGNAL_HANDLE_RESPONSE] =
231 g_signal_new ("handle-response", G_TYPE_FROM_CLASS (klass),
232 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass,
233 handle_response), NULL, NULL, g_cclosure_marshal_VOID__POINTER,
234 G_TYPE_NONE, 1, G_TYPE_POINTER);
237 g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_object_unref);
238 g_mutex_init (&tunnels_lock);
240 GST_DEBUG_CATEGORY_INIT (rtsp_client_debug, "rtspclient", 0, "GstRTSPClient");
244 gst_rtsp_client_init (GstRTSPClient * client)
246 GstRTSPClientPrivate *priv = GST_RTSP_CLIENT_GET_PRIVATE (client);
250 g_mutex_init (&priv->lock);
251 g_mutex_init (&priv->send_lock);
255 static GstRTSPFilterResult
256 filter_session (GstRTSPSession * sess, GstRTSPSessionMedia * sessmedia,
259 GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
261 gst_rtsp_session_media_set_state (sessmedia, GST_STATE_NULL);
262 unlink_session_transports (client, sess, sessmedia);
264 /* unmanage the media in the session */
265 return GST_RTSP_FILTER_REMOVE;
269 client_unlink_session (GstRTSPClient * client, GstRTSPSession * session)
271 /* unlink all media managed in this session */
272 gst_rtsp_session_filter (session, filter_session, client);
276 client_watch_session (GstRTSPClient * client, GstRTSPSession * session)
278 GstRTSPClientPrivate *priv = client->priv;
281 for (walk = priv->sessions; walk; walk = g_list_next (walk)) {
282 GstRTSPSession *msession = (GstRTSPSession *) walk->data;
284 /* we already know about this session */
285 if (msession == session)
289 GST_INFO ("watching session %p", session);
291 g_object_weak_ref (G_OBJECT (session), (GWeakNotify) client_session_finalized,
293 priv->sessions = g_list_prepend (priv->sessions, session);
297 client_unwatch_session (GstRTSPClient * client, GstRTSPSession * session)
299 GstRTSPClientPrivate *priv = client->priv;
301 GST_INFO ("unwatching session %p", session);
303 g_object_weak_unref (G_OBJECT (session),
304 (GWeakNotify) client_session_finalized, client);
305 priv->sessions = g_list_remove (priv->sessions, session);
309 client_cleanup_session (GstRTSPClient * client, GstRTSPSession * session)
311 g_object_weak_unref (G_OBJECT (session),
312 (GWeakNotify) client_session_finalized, client);
313 client_unlink_session (client, session);
317 client_cleanup_sessions (GstRTSPClient * client)
319 GstRTSPClientPrivate *priv = client->priv;
322 /* remove weak-ref from sessions */
323 for (sessions = priv->sessions; sessions; sessions = g_list_next (sessions)) {
324 client_cleanup_session (client, (GstRTSPSession *) sessions->data);
326 g_list_free (priv->sessions);
327 priv->sessions = NULL;
330 /* A client is finalized when the connection is broken */
332 gst_rtsp_client_finalize (GObject * obj)
334 GstRTSPClient *client = GST_RTSP_CLIENT (obj);
335 GstRTSPClientPrivate *priv = client->priv;
337 GST_INFO ("finalize client %p", client);
339 gst_rtsp_client_set_send_func (client, NULL, NULL, NULL);
342 g_source_destroy ((GSource *) priv->watch);
344 client_cleanup_sessions (client);
346 if (priv->connection)
347 gst_rtsp_connection_free (priv->connection);
348 if (priv->session_pool)
349 g_object_unref (priv->session_pool);
350 if (priv->mount_points)
351 g_object_unref (priv->mount_points);
353 g_object_unref (priv->auth);
354 if (priv->thread_pool)
355 g_object_unref (priv->thread_pool);
360 gst_rtsp_media_unprepare (priv->media);
361 g_object_unref (priv->media);
364 g_free (priv->server_ip);
365 g_mutex_clear (&priv->lock);
366 g_mutex_clear (&priv->send_lock);
368 G_OBJECT_CLASS (gst_rtsp_client_parent_class)->finalize (obj);
372 gst_rtsp_client_get_property (GObject * object, guint propid,
373 GValue * value, GParamSpec * pspec)
375 GstRTSPClient *client = GST_RTSP_CLIENT (object);
378 case PROP_SESSION_POOL:
379 g_value_take_object (value, gst_rtsp_client_get_session_pool (client));
381 case PROP_MOUNT_POINTS:
382 g_value_take_object (value, gst_rtsp_client_get_mount_points (client));
385 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, propid, pspec);
390 gst_rtsp_client_set_property (GObject * object, guint propid,
391 const GValue * value, GParamSpec * pspec)
393 GstRTSPClient *client = GST_RTSP_CLIENT (object);
396 case PROP_SESSION_POOL:
397 gst_rtsp_client_set_session_pool (client, g_value_get_object (value));
399 case PROP_MOUNT_POINTS:
400 gst_rtsp_client_set_mount_points (client, g_value_get_object (value));
403 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, propid, pspec);
408 * gst_rtsp_client_new:
410 * Create a new #GstRTSPClient instance.
412 * Returns: a new #GstRTSPClient
415 gst_rtsp_client_new (void)
417 GstRTSPClient *result;
419 result = g_object_new (GST_TYPE_RTSP_CLIENT, NULL);
425 send_message (GstRTSPClient * client, GstRTSPSession * session,
426 GstRTSPMessage * message, gboolean close)
428 GstRTSPClientPrivate *priv = client->priv;
430 gst_rtsp_message_add_header (message, GST_RTSP_HDR_SERVER,
431 "GStreamer RTSP server");
433 /* remove any previous header */
434 gst_rtsp_message_remove_header (message, GST_RTSP_HDR_SESSION, -1);
436 /* add the new session header for new session ids */
438 gst_rtsp_message_take_header (message, GST_RTSP_HDR_SESSION,
439 gst_rtsp_session_get_header (session));
442 if (gst_debug_category_get_threshold (rtsp_client_debug) >= GST_LEVEL_LOG) {
443 gst_rtsp_message_dump (message);
447 gst_rtsp_message_add_header (message, GST_RTSP_HDR_CONNECTION, "close");
449 g_mutex_lock (&priv->send_lock);
451 priv->send_func (client, message, close, priv->send_data);
452 g_mutex_unlock (&priv->send_lock);
454 gst_rtsp_message_unset (message);
458 send_generic_response (GstRTSPClient * client, GstRTSPStatusCode code,
459 GstRTSPContext * ctx)
461 gst_rtsp_message_init_response (ctx->response, code,
462 gst_rtsp_status_as_text (code), ctx->request);
464 send_message (client, NULL, ctx->response, FALSE);
468 paths_are_equal (const gchar * path1, const gchar * path2, gint len2)
470 if (path1 == NULL || path2 == NULL)
473 if (strlen (path1) != len2)
476 if (strncmp (path1, path2, len2))
482 /* this function is called to initially find the media for the DESCRIBE request
483 * but is cached for when the same client (without breaking the connection) is
484 * doing a setup for the exact same url. */
485 static GstRTSPMedia *
486 find_media (GstRTSPClient * client, GstRTSPContext * ctx, gchar * path,
489 GstRTSPClientPrivate *priv = client->priv;
490 GstRTSPMediaFactory *factory;
494 /* find the longest matching factory for the uri first */
495 if (!(factory = gst_rtsp_mount_points_match (priv->mount_points,
499 ctx->factory = factory;
501 if (!gst_rtsp_auth_check (GST_RTSP_AUTH_CHECK_MEDIA_FACTORY_ACCESS))
502 goto no_factory_access;
504 if (!gst_rtsp_auth_check (GST_RTSP_AUTH_CHECK_MEDIA_FACTORY_CONSTRUCT))
510 path_len = strlen (path);
512 if (!paths_are_equal (priv->path, path, path_len)) {
513 GstRTSPThread *thread;
515 /* remove any previously cached values before we try to construct a new
521 gst_rtsp_media_unprepare (priv->media);
522 g_object_unref (priv->media);
526 /* prepare the media and add it to the pipeline */
527 if (!(media = gst_rtsp_media_factory_construct (factory, ctx->uri)))
532 thread = gst_rtsp_thread_pool_get_thread (priv->thread_pool,
533 GST_RTSP_THREAD_TYPE_MEDIA, ctx);
537 /* prepare the media */
538 if (!(gst_rtsp_media_prepare (media, thread)))
541 /* now keep track of the uri and the media */
542 priv->path = g_strndup (path, path_len);
545 /* we have seen this path before, used cached media */
548 GST_INFO ("reusing cached media %p for path %s", media, priv->path);
551 g_object_unref (factory);
555 g_object_ref (media);
562 GST_ERROR ("client %p: no factory for path %s", client, path);
563 send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
568 GST_ERROR ("client %p: not authorized to see factory path %s", client,
570 /* error reply is already sent */
575 GST_ERROR ("client %p: not authorized for factory path %s", client, path);
576 /* error reply is already sent */
581 GST_ERROR ("client %p: can't create media", client);
582 send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
583 g_object_unref (factory);
589 GST_ERROR ("client %p: can't create thread", client);
590 send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, ctx);
591 g_object_unref (media);
593 g_object_unref (factory);
599 GST_ERROR ("client %p: can't prepare media", client);
600 send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, ctx);
601 g_object_unref (media);
603 g_object_unref (factory);
610 do_send_data (GstBuffer * buffer, guint8 channel, GstRTSPClient * client)
612 GstRTSPClientPrivate *priv = client->priv;
613 GstRTSPMessage message = { 0 };
618 gst_rtsp_message_init_data (&message, channel);
620 /* FIXME, need some sort of iovec RTSPMessage here */
621 if (!gst_buffer_map (buffer, &map_info, GST_MAP_READ))
624 gst_rtsp_message_take_body (&message, map_info.data, map_info.size);
626 g_mutex_lock (&priv->send_lock);
628 priv->send_func (client, &message, FALSE, priv->send_data);
629 g_mutex_unlock (&priv->send_lock);
631 gst_rtsp_message_steal_body (&message, &data, &usize);
632 gst_buffer_unmap (buffer, &map_info);
634 gst_rtsp_message_unset (&message);
640 link_transport (GstRTSPClient * client, GstRTSPSession * session,
641 GstRTSPStreamTransport * trans)
643 GstRTSPClientPrivate *priv = client->priv;
645 GST_DEBUG ("client %p: linking transport %p", client, trans);
647 gst_rtsp_stream_transport_set_callbacks (trans,
648 (GstRTSPSendFunc) do_send_data,
649 (GstRTSPSendFunc) do_send_data, client, NULL);
651 priv->transports = g_list_prepend (priv->transports, trans);
653 /* make sure our session can't expire */
654 gst_rtsp_session_prevent_expire (session);
658 unlink_transport (GstRTSPClient * client, GstRTSPSession * session,
659 GstRTSPStreamTransport * trans)
661 GstRTSPClientPrivate *priv = client->priv;
663 GST_DEBUG ("client %p: unlinking transport %p", client, trans);
665 gst_rtsp_stream_transport_set_callbacks (trans, NULL, NULL, NULL, NULL);
667 priv->transports = g_list_remove (priv->transports, trans);
669 /* our session can now expire */
670 gst_rtsp_session_allow_expire (session);
674 unlink_session_transports (GstRTSPClient * client, GstRTSPSession * session,
675 GstRTSPSessionMedia * sessmedia)
680 gst_rtsp_media_n_streams (gst_rtsp_session_media_get_media (sessmedia));
681 for (i = 0; i < n_streams; i++) {
682 GstRTSPStreamTransport *trans;
683 const GstRTSPTransport *tr;
685 /* get the transport, if there is no transport configured, skip this stream */
686 trans = gst_rtsp_session_media_get_transport (sessmedia, i);
690 tr = gst_rtsp_stream_transport_get_transport (trans);
692 if (tr->lower_transport == GST_RTSP_LOWER_TRANS_TCP) {
693 /* for TCP, unlink the stream from the TCP connection of the client */
694 unlink_transport (client, session, trans);
700 close_connection (GstRTSPClient * client)
702 GstRTSPClientPrivate *priv = client->priv;
703 const gchar *tunnelid;
705 GST_DEBUG ("client %p: closing connection", client);
707 if ((tunnelid = gst_rtsp_connection_get_tunnelid (priv->connection))) {
708 g_mutex_lock (&tunnels_lock);
709 /* remove from tunnelids */
710 g_hash_table_remove (tunnels, tunnelid);
711 g_mutex_unlock (&tunnels_lock);
714 gst_rtsp_connection_close (priv->connection);
718 default_make_path_from_uri (GstRTSPClient * client, const GstRTSPUrl * uri)
723 path = g_strconcat (uri->abspath, "?", uri->query, NULL);
725 path = g_strdup (uri->abspath);
731 handle_teardown_request (GstRTSPClient * client, GstRTSPContext * ctx)
733 GstRTSPClientPrivate *priv = client->priv;
734 GstRTSPClientClass *klass;
735 GstRTSPSession *session;
736 GstRTSPSessionMedia *sessmedia;
737 GstRTSPStatusCode code;
744 session = ctx->session;
749 klass = GST_RTSP_CLIENT_GET_CLASS (client);
750 path = klass->make_path_from_uri (client, ctx->uri);
752 /* get a handle to the configuration of the media in the session */
753 sessmedia = gst_rtsp_session_get_media (session, path, &matched);
757 /* only aggregate control for now.. */
758 if (path[matched] != '\0')
763 ctx->sessmedia = sessmedia;
765 /* we emit the signal before closing the connection */
766 g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_TEARDOWN_REQUEST],
769 /* unlink the all TCP callbacks */
770 unlink_session_transports (client, session, sessmedia);
772 /* remove the session from the watched sessions */
773 client_unwatch_session (client, session);
775 gst_rtsp_session_media_set_state (sessmedia, GST_STATE_NULL);
777 /* unmanage the media in the session, returns false if all media session
779 if (!gst_rtsp_session_release_media (session, sessmedia)) {
780 /* remove the session */
781 gst_rtsp_session_pool_remove (priv->session_pool, session);
783 /* construct the response now */
784 code = GST_RTSP_STS_OK;
785 gst_rtsp_message_init_response (ctx->response, code,
786 gst_rtsp_status_as_text (code), ctx->request);
788 send_message (client, session, ctx->response, TRUE);
795 GST_ERROR ("client %p: no session", client);
796 send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, ctx);
801 GST_ERROR ("client %p: no uri supplied", client);
802 send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
807 GST_ERROR ("client %p: no media for uri", client);
808 send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
814 GST_ERROR ("client %p: no aggregate path %s", client, path);
815 send_generic_response (client,
816 GST_RTSP_STS_ONLY_AGGREGATE_OPERATION_ALLOWED, ctx);
823 default_params_set (GstRTSPClient * client, GstRTSPContext * ctx)
827 res = gst_rtsp_params_set (client, ctx);
833 default_params_get (GstRTSPClient * client, GstRTSPContext * ctx)
837 res = gst_rtsp_params_get (client, ctx);
843 handle_get_param_request (GstRTSPClient * client, GstRTSPContext * ctx)
849 res = gst_rtsp_message_get_body (ctx->request, &data, &size);
850 if (res != GST_RTSP_OK)
854 /* no body, keep-alive request */
855 send_generic_response (client, GST_RTSP_STS_OK, ctx);
857 /* there is a body, handle the params */
858 res = GST_RTSP_CLIENT_GET_CLASS (client)->params_get (client, ctx);
859 if (res != GST_RTSP_OK)
862 send_message (client, ctx->session, ctx->response, FALSE);
865 g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_GET_PARAMETER_REQUEST],
873 GST_ERROR ("client %p: bad request", client);
874 send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
880 handle_set_param_request (GstRTSPClient * client, GstRTSPContext * ctx)
886 res = gst_rtsp_message_get_body (ctx->request, &data, &size);
887 if (res != GST_RTSP_OK)
891 /* no body, keep-alive request */
892 send_generic_response (client, GST_RTSP_STS_OK, ctx);
894 /* there is a body, handle the params */
895 res = GST_RTSP_CLIENT_GET_CLASS (client)->params_set (client, ctx);
896 if (res != GST_RTSP_OK)
899 send_message (client, ctx->session, ctx->response, FALSE);
902 g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_SET_PARAMETER_REQUEST],
910 GST_ERROR ("client %p: bad request", client);
911 send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
917 handle_pause_request (GstRTSPClient * client, GstRTSPContext * ctx)
919 GstRTSPSession *session;
920 GstRTSPClientClass *klass;
921 GstRTSPSessionMedia *sessmedia;
922 GstRTSPStatusCode code;
923 GstRTSPState rtspstate;
927 if (!(session = ctx->session))
933 klass = GST_RTSP_CLIENT_GET_CLASS (client);
934 path = klass->make_path_from_uri (client, ctx->uri);
936 /* get a handle to the configuration of the media in the session */
937 sessmedia = gst_rtsp_session_get_media (session, path, &matched);
941 if (path[matched] != '\0')
946 ctx->sessmedia = sessmedia;
948 rtspstate = gst_rtsp_session_media_get_rtsp_state (sessmedia);
949 /* the session state must be playing or recording */
950 if (rtspstate != GST_RTSP_STATE_PLAYING &&
951 rtspstate != GST_RTSP_STATE_RECORDING)
954 /* unlink the all TCP callbacks */
955 unlink_session_transports (client, session, sessmedia);
957 /* then pause sending */
958 gst_rtsp_session_media_set_state (sessmedia, GST_STATE_PAUSED);
960 /* construct the response now */
961 code = GST_RTSP_STS_OK;
962 gst_rtsp_message_init_response (ctx->response, code,
963 gst_rtsp_status_as_text (code), ctx->request);
965 send_message (client, session, ctx->response, FALSE);
967 /* the state is now READY */
968 gst_rtsp_session_media_set_rtsp_state (sessmedia, GST_RTSP_STATE_READY);
970 g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_PAUSE_REQUEST], 0, ctx);
977 GST_ERROR ("client %p: no seesion", client);
978 send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, ctx);
983 GST_ERROR ("client %p: no uri supplied", client);
984 send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
989 GST_ERROR ("client %p: no media for uri", client);
990 send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
996 GST_ERROR ("client %p: no aggregate path %s", client, path);
997 send_generic_response (client,
998 GST_RTSP_STS_ONLY_AGGREGATE_OPERATION_ALLOWED, ctx);
1004 GST_ERROR ("client %p: not PLAYING or RECORDING", client);
1005 send_generic_response (client, GST_RTSP_STS_METHOD_NOT_VALID_IN_THIS_STATE,
1011 /* convert @url and @path to a URL used as a content base for the factory
1012 * located at @path */
1014 make_base_url (GstRTSPClient * client, GstRTSPUrl * url, gchar * path)
1017 gchar *result, *trail;
1019 /* check for trailing '/' and append one */
1020 trail = (path[strlen (path) - 1] != '/' ? "/" : "");
1025 tmp.abspath = g_strdup_printf ("%s%s", path, trail);
1027 result = gst_rtsp_url_get_request_uri (&tmp);
1028 g_free (tmp.abspath);
1034 handle_play_request (GstRTSPClient * client, GstRTSPContext * ctx)
1036 GstRTSPSession *session;
1037 GstRTSPClientClass *klass;
1038 GstRTSPSessionMedia *sessmedia;
1039 GstRTSPMedia *media;
1040 GstRTSPStatusCode code;
1043 guint n_streams, i, infocount;
1044 gchar *str, *base_url;
1045 GstRTSPTimeRange *range;
1047 GstRTSPState rtspstate;
1048 GstRTSPRangeUnit unit = GST_RTSP_RANGE_NPT;
1052 if (!(session = ctx->session))
1055 if (!(uri = ctx->uri))
1058 klass = GST_RTSP_CLIENT_GET_CLASS (client);
1059 path = klass->make_path_from_uri (client, uri);
1061 /* get a handle to the configuration of the media in the session */
1062 sessmedia = gst_rtsp_session_get_media (session, path, &matched);
1066 if (path[matched] != '\0')
1069 ctx->sessmedia = sessmedia;
1070 ctx->media = media = gst_rtsp_session_media_get_media (sessmedia);
1072 /* the session state must be playing or ready */
1073 rtspstate = gst_rtsp_session_media_get_rtsp_state (sessmedia);
1074 if (rtspstate != GST_RTSP_STATE_PLAYING && rtspstate != GST_RTSP_STATE_READY)
1077 /* parse the range header if we have one */
1078 res = gst_rtsp_message_get_header (ctx->request, GST_RTSP_HDR_RANGE, &str, 0);
1079 if (res == GST_RTSP_OK) {
1080 if (gst_rtsp_range_parse (str, &range) == GST_RTSP_OK) {
1081 /* we have a range, seek to the position */
1083 gst_rtsp_media_seek (media, range);
1084 gst_rtsp_range_free (range);
1088 /* grab RTPInfo from the payloaders now */
1089 rtpinfo = g_string_new ("");
1091 base_url = make_base_url (client, uri, path);
1093 n_streams = gst_rtsp_media_n_streams (media);
1094 for (i = 0, infocount = 0; i < n_streams; i++) {
1095 GstRTSPStreamTransport *trans;
1096 GstRTSPStream *stream;
1097 const GstRTSPTransport *tr;
1100 /* get the transport, if there is no transport configured, skip this stream */
1101 trans = gst_rtsp_session_media_get_transport (sessmedia, i);
1102 if (trans == NULL) {
1103 GST_INFO ("stream %d is not configured", i);
1106 tr = gst_rtsp_stream_transport_get_transport (trans);
1108 if (tr->lower_transport == GST_RTSP_LOWER_TRANS_TCP) {
1109 /* for TCP, link the stream to the TCP connection of the client */
1110 link_transport (client, session, trans);
1113 stream = gst_rtsp_stream_transport_get_stream (trans);
1114 if (gst_rtsp_stream_get_rtpinfo (stream, &rtptime, &seq)) {
1118 g_string_append (rtpinfo, ", ");
1120 control = gst_rtsp_stream_get_control (stream);
1121 g_string_append_printf (rtpinfo, "url=%s%s;seq=%u;rtptime=%u",
1122 base_url, control, seq, rtptime);
1127 GST_WARNING ("RTP-Info cannot be determined for stream %d", i);
1133 /* construct the response now */
1134 code = GST_RTSP_STS_OK;
1135 gst_rtsp_message_init_response (ctx->response, code,
1136 gst_rtsp_status_as_text (code), ctx->request);
1138 /* add the RTP-Info header */
1139 if (infocount > 0) {
1140 str = g_string_free (rtpinfo, FALSE);
1141 gst_rtsp_message_take_header (ctx->response, GST_RTSP_HDR_RTP_INFO, str);
1143 g_string_free (rtpinfo, TRUE);
1147 str = gst_rtsp_media_get_range_string (media, TRUE, unit);
1149 gst_rtsp_message_take_header (ctx->response, GST_RTSP_HDR_RANGE, str);
1151 send_message (client, session, ctx->response, FALSE);
1153 /* start playing after sending the request */
1154 gst_rtsp_session_media_set_state (sessmedia, GST_STATE_PLAYING);
1156 gst_rtsp_session_media_set_rtsp_state (sessmedia, GST_RTSP_STATE_PLAYING);
1158 g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_PLAY_REQUEST], 0, ctx);
1165 GST_ERROR ("client %p: no session", client);
1166 send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, ctx);
1171 GST_ERROR ("client %p: no uri supplied", client);
1172 send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
1177 GST_ERROR ("client %p: media not found", client);
1178 send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
1183 GST_ERROR ("client %p: no aggregate path %s", client, path);
1184 send_generic_response (client,
1185 GST_RTSP_STS_ONLY_AGGREGATE_OPERATION_ALLOWED, ctx);
1191 GST_ERROR ("client %p: not PLAYING or READY", client);
1192 send_generic_response (client, GST_RTSP_STS_METHOD_NOT_VALID_IN_THIS_STATE,
1200 do_keepalive (GstRTSPSession * session)
1202 GST_INFO ("keep session %p alive", session);
1203 gst_rtsp_session_touch (session);
1206 /* parse @transport and return a valid transport in @tr. only transports
1207 * from @supported are returned. Returns FALSE if no valid transport
1210 parse_transport (const char *transport, GstRTSPLowerTrans supported,
1211 GstRTSPTransport * tr)
1218 gst_rtsp_transport_init (tr);
1220 GST_DEBUG ("parsing transports %s", transport);
1222 transports = g_strsplit (transport, ",", 0);
1224 /* loop through the transports, try to parse */
1225 for (i = 0; transports[i]; i++) {
1226 res = gst_rtsp_transport_parse (transports[i], tr);
1227 if (res != GST_RTSP_OK) {
1228 /* no valid transport, search some more */
1229 GST_WARNING ("could not parse transport %s", transports[i]);
1233 /* we have a transport, see if it's RTP/AVP */
1234 if (tr->trans != GST_RTSP_TRANS_RTP || tr->profile != GST_RTSP_PROFILE_AVP) {
1235 GST_WARNING ("invalid transport %s", transports[i]);
1239 if (!(tr->lower_transport & supported)) {
1240 GST_WARNING ("unsupported transport %s", transports[i]);
1244 /* we have a valid transport */
1245 GST_INFO ("found valid transport %s", transports[i]);
1250 gst_rtsp_transport_init (tr);
1252 g_strfreev (transports);
1258 handle_blocksize (GstRTSPMedia * media, GstRTSPStream * stream,
1259 GstRTSPMessage * request)
1261 gchar *blocksize_str;
1262 gboolean ret = TRUE;
1264 if (gst_rtsp_message_get_header (request, GST_RTSP_HDR_BLOCKSIZE,
1265 &blocksize_str, 0) == GST_RTSP_OK) {
1269 blocksize = g_ascii_strtoull (blocksize_str, &end, 10);
1270 if (end == blocksize_str) {
1271 GST_ERROR ("failed to parse blocksize");
1274 /* we don't want to change the mtu when this media
1275 * can be shared because it impacts other clients */
1276 if (gst_rtsp_media_is_shared (media))
1279 if (blocksize > G_MAXUINT)
1280 blocksize = G_MAXUINT;
1281 gst_rtsp_stream_set_mtu (stream, blocksize);
1288 default_configure_client_transport (GstRTSPClient * client,
1289 GstRTSPContext * ctx, GstRTSPTransport * ct)
1291 GstRTSPClientPrivate *priv = client->priv;
1293 /* we have a valid transport now, set the destination of the client. */
1294 if (ct->lower_transport == GST_RTSP_LOWER_TRANS_UDP_MCAST) {
1295 gboolean use_client_settings;
1297 use_client_settings =
1298 gst_rtsp_auth_check (GST_RTSP_AUTH_CHECK_TRANSPORT_CLIENT_SETTINGS);
1300 if (ct->destination && use_client_settings) {
1301 GstRTSPAddress *addr;
1303 addr = gst_rtsp_stream_reserve_address (ctx->stream, ct->destination,
1304 ct->port.min, ct->port.max - ct->port.min + 1, ct->ttl);
1309 gst_rtsp_address_free (addr);
1311 GstRTSPAddress *addr;
1312 GSocketFamily family;
1314 family = priv->is_ipv6 ? G_SOCKET_FAMILY_IPV6 : G_SOCKET_FAMILY_IPV4;
1316 addr = gst_rtsp_stream_get_multicast_address (ctx->stream, family);
1320 g_free (ct->destination);
1321 ct->destination = g_strdup (addr->address);
1322 ct->port.min = addr->port;
1323 ct->port.max = addr->port + addr->n_ports - 1;
1324 ct->ttl = addr->ttl;
1326 gst_rtsp_address_free (addr);
1331 url = gst_rtsp_connection_get_url (priv->connection);
1332 g_free (ct->destination);
1333 ct->destination = g_strdup (url->host);
1335 if (ct->lower_transport & GST_RTSP_LOWER_TRANS_TCP) {
1336 /* check if the client selected channels for TCP */
1337 if (ct->interleaved.min == -1 || ct->interleaved.max == -1) {
1338 gst_rtsp_session_media_alloc_channels (ctx->sessmedia,
1348 GST_ERROR_OBJECT (client, "failed to acquire address for stream");
1353 static GstRTSPTransport *
1354 make_server_transport (GstRTSPClient * client, GstRTSPContext * ctx,
1355 GstRTSPTransport * ct)
1357 GstRTSPTransport *st;
1359 GSocketFamily family;
1361 /* prepare the server transport */
1362 gst_rtsp_transport_new (&st);
1364 st->trans = ct->trans;
1365 st->profile = ct->profile;
1366 st->lower_transport = ct->lower_transport;
1368 addr = g_inet_address_new_from_string (ct->destination);
1371 GST_ERROR ("failed to get inet addr from client destination");
1372 family = G_SOCKET_FAMILY_IPV4;
1374 family = g_inet_address_get_family (addr);
1375 g_object_unref (addr);
1379 switch (st->lower_transport) {
1380 case GST_RTSP_LOWER_TRANS_UDP:
1381 st->client_port = ct->client_port;
1382 gst_rtsp_stream_get_server_port (ctx->stream, &st->server_port, family);
1384 case GST_RTSP_LOWER_TRANS_UDP_MCAST:
1385 st->port = ct->port;
1386 st->destination = g_strdup (ct->destination);
1389 case GST_RTSP_LOWER_TRANS_TCP:
1390 st->interleaved = ct->interleaved;
1395 gst_rtsp_stream_get_ssrc (ctx->stream, &st->ssrc);
1401 handle_setup_request (GstRTSPClient * client, GstRTSPContext * ctx)
1403 GstRTSPClientPrivate *priv = client->priv;
1407 GstRTSPTransport *ct, *st;
1408 GstRTSPLowerTrans supported;
1409 GstRTSPStatusCode code;
1410 GstRTSPSession *session;
1411 GstRTSPStreamTransport *trans;
1413 GstRTSPSessionMedia *sessmedia;
1414 GstRTSPMedia *media;
1415 GstRTSPStream *stream;
1416 GstRTSPState rtspstate;
1417 GstRTSPClientClass *klass;
1418 gchar *path, *control;
1425 klass = GST_RTSP_CLIENT_GET_CLASS (client);
1426 path = klass->make_path_from_uri (client, uri);
1428 /* parse the transport */
1430 gst_rtsp_message_get_header (ctx->request, GST_RTSP_HDR_TRANSPORT,
1432 if (res != GST_RTSP_OK)
1435 /* we create the session after parsing stuff so that we don't make
1436 * a session for malformed requests */
1437 if (priv->session_pool == NULL)
1440 session = ctx->session;
1443 g_object_ref (session);
1444 /* get a handle to the configuration of the media in the session, this can
1445 * return NULL if this is a new url to manage in this session. */
1446 sessmedia = gst_rtsp_session_get_media (session, path, &matched);
1448 /* we need a new media configuration in this session */
1452 /* we have no session media, find one and manage it */
1453 if (sessmedia == NULL) {
1454 /* get a handle to the configuration of the media in the session */
1455 media = find_media (client, ctx, path, &matched);
1457 if ((media = gst_rtsp_session_media_get_media (sessmedia)))
1458 g_object_ref (media);
1460 goto media_not_found;
1462 /* no media, not found then */
1464 goto media_not_found_no_reply;
1466 if (path[matched] == '\0')
1467 goto control_not_found;
1469 /* path is what matched. We can modify the parsed uri in place */
1470 path[matched] = '\0';
1471 /* control is remainder */
1472 control = &path[matched + 1];
1474 /* find the stream now using the control part */
1475 stream = gst_rtsp_media_find_stream (media, control);
1477 goto stream_not_found;
1479 /* now we have a uri identifying a valid media and stream */
1480 ctx->stream = stream;
1483 if (session == NULL) {
1484 /* create a session if this fails we probably reached our session limit or
1486 if (!(session = gst_rtsp_session_pool_create (priv->session_pool)))
1487 goto service_unavailable;
1489 /* make sure this client is closed when the session is closed */
1490 client_watch_session (client, session);
1492 /* signal new session */
1493 g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_NEW_SESSION], 0,
1496 ctx->session = session;
1499 if (sessmedia == NULL) {
1500 /* manage the media in our session now, if not done already */
1501 sessmedia = gst_rtsp_session_manage_media (session, path, media);
1502 /* if we stil have no media, error */
1503 if (sessmedia == NULL)
1504 goto sessmedia_unavailable;
1506 g_object_unref (media);
1509 ctx->sessmedia = sessmedia;
1511 /* set blocksize on this stream */
1512 if (!handle_blocksize (media, stream, ctx->request))
1513 goto invalid_blocksize;
1515 gst_rtsp_transport_new (&ct);
1517 /* our supported transports */
1518 supported = gst_rtsp_stream_get_protocols (stream);
1520 /* parse and find a usable supported transport */
1521 if (!parse_transport (transport, supported, ct))
1522 goto unsupported_transports;
1524 /* update the client transport */
1525 if (!klass->configure_client_transport (client, ctx, ct))
1526 goto unsupported_client_transport;
1528 /* set in the session media transport */
1529 trans = gst_rtsp_session_media_set_transport (sessmedia, stream, ct);
1531 /* configure keepalive for this transport */
1532 gst_rtsp_stream_transport_set_keepalive (trans,
1533 (GstRTSPKeepAliveFunc) do_keepalive, session, NULL);
1535 /* create and serialize the server transport */
1536 st = make_server_transport (client, ctx, ct);
1537 trans_str = gst_rtsp_transport_as_text (st);
1538 gst_rtsp_transport_free (st);
1540 /* construct the response now */
1541 code = GST_RTSP_STS_OK;
1542 gst_rtsp_message_init_response (ctx->response, code,
1543 gst_rtsp_status_as_text (code), ctx->request);
1545 gst_rtsp_message_add_header (ctx->response, GST_RTSP_HDR_TRANSPORT,
1549 send_message (client, session, ctx->response, FALSE);
1551 /* update the state */
1552 rtspstate = gst_rtsp_session_media_get_rtsp_state (sessmedia);
1553 switch (rtspstate) {
1554 case GST_RTSP_STATE_PLAYING:
1555 case GST_RTSP_STATE_RECORDING:
1556 case GST_RTSP_STATE_READY:
1557 /* no state change */
1560 gst_rtsp_session_media_set_rtsp_state (sessmedia, GST_RTSP_STATE_READY);
1563 g_object_unref (session);
1566 g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_SETUP_REQUEST], 0, ctx);
1573 GST_ERROR ("client %p: no uri", client);
1574 send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
1579 GST_ERROR ("client %p: no transport", client);
1580 send_generic_response (client, GST_RTSP_STS_UNSUPPORTED_TRANSPORT, ctx);
1586 GST_ERROR ("client %p: no session pool configured", client);
1587 send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, ctx);
1591 media_not_found_no_reply:
1593 GST_ERROR ("client %p: media '%s' not found", client, path);
1595 /* error reply is already sent */
1600 GST_ERROR ("client %p: media '%s' not found", client, path);
1601 send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
1607 GST_ERROR ("client %p: no control in path '%s'", client, path);
1608 send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
1609 g_object_unref (media);
1615 GST_ERROR ("client %p: stream '%s' not found", client, control);
1616 send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
1617 g_object_unref (media);
1621 service_unavailable:
1623 GST_ERROR ("client %p: can't create session", client);
1624 send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, ctx);
1625 g_object_unref (media);
1629 sessmedia_unavailable:
1631 GST_ERROR ("client %p: can't create session media", client);
1632 send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, ctx);
1633 g_object_unref (media);
1634 g_object_unref (session);
1640 GST_ERROR ("client %p: invalid blocksize", client);
1641 send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
1642 g_object_unref (session);
1646 unsupported_transports:
1648 GST_ERROR ("client %p: unsupported transports", client);
1649 send_generic_response (client, GST_RTSP_STS_UNSUPPORTED_TRANSPORT, ctx);
1650 gst_rtsp_transport_free (ct);
1651 g_object_unref (session);
1655 unsupported_client_transport:
1657 GST_ERROR ("client %p: unsupported client transport", client);
1658 send_generic_response (client, GST_RTSP_STS_UNSUPPORTED_TRANSPORT, ctx);
1659 gst_rtsp_transport_free (ct);
1660 g_object_unref (session);
1666 static GstSDPMessage *
1667 create_sdp (GstRTSPClient * client, GstRTSPMedia * media)
1669 GstRTSPClientPrivate *priv = client->priv;
1674 gst_sdp_message_new (&sdp);
1676 /* some standard things first */
1677 gst_sdp_message_set_version (sdp, "0");
1684 gst_sdp_message_set_origin (sdp, "-", "1188340656180883", "1", "IN", proto,
1687 gst_sdp_message_set_session_name (sdp, "Session streamed with GStreamer");
1688 gst_sdp_message_set_information (sdp, "rtsp-server");
1689 gst_sdp_message_add_time (sdp, "0", "0", NULL);
1690 gst_sdp_message_add_attribute (sdp, "tool", "GStreamer");
1691 gst_sdp_message_add_attribute (sdp, "type", "broadcast");
1692 gst_sdp_message_add_attribute (sdp, "control", "*");
1694 info.is_ipv6 = priv->is_ipv6;
1695 info.server_ip = priv->server_ip;
1697 /* create an SDP for the media object */
1698 if (!gst_rtsp_sdp_from_media (sdp, &info, media))
1706 GST_ERROR ("client %p: could not create SDP", client);
1707 gst_sdp_message_free (sdp);
1712 /* for the describe we must generate an SDP */
1714 handle_describe_request (GstRTSPClient * client, GstRTSPContext * ctx)
1716 GstRTSPClientPrivate *priv = client->priv;
1721 GstRTSPMedia *media;
1722 GstRTSPClientClass *klass;
1724 klass = GST_RTSP_CLIENT_GET_CLASS (client);
1729 /* check what kind of format is accepted, we don't really do anything with it
1730 * and always return SDP for now. */
1735 gst_rtsp_message_get_header (ctx->request, GST_RTSP_HDR_ACCEPT,
1737 if (res == GST_RTSP_ENOTIMPL)
1740 if (g_ascii_strcasecmp (accept, "application/sdp") == 0)
1744 if (!priv->mount_points)
1745 goto no_mount_points;
1747 if (!(path = gst_rtsp_mount_points_make_path (priv->mount_points, ctx->uri)))
1750 /* find the media object for the uri */
1751 if (!(media = find_media (client, ctx, path, NULL)))
1754 /* create an SDP for the media object on this client */
1755 if (!(sdp = klass->create_sdp (client, media)))
1758 g_object_unref (media);
1760 gst_rtsp_message_init_response (ctx->response, GST_RTSP_STS_OK,
1761 gst_rtsp_status_as_text (GST_RTSP_STS_OK), ctx->request);
1763 gst_rtsp_message_add_header (ctx->response, GST_RTSP_HDR_CONTENT_TYPE,
1766 /* content base for some clients that might screw up creating the setup uri */
1767 str = make_base_url (client, ctx->uri, path);
1770 GST_INFO ("adding content-base: %s", str);
1771 gst_rtsp_message_take_header (ctx->response, GST_RTSP_HDR_CONTENT_BASE, str);
1773 /* add SDP to the response body */
1774 str = gst_sdp_message_as_text (sdp);
1775 gst_rtsp_message_take_body (ctx->response, (guint8 *) str, strlen (str));
1776 gst_sdp_message_free (sdp);
1778 send_message (client, ctx->session, ctx->response, FALSE);
1780 g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_DESCRIBE_REQUEST],
1788 GST_ERROR ("client %p: no uri", client);
1789 send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
1794 GST_ERROR ("client %p: no mount points configured", client);
1795 send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
1800 GST_ERROR ("client %p: can't find path for url", client);
1801 send_generic_response (client, GST_RTSP_STS_NOT_FOUND, ctx);
1806 GST_ERROR ("client %p: no media", client);
1808 /* error reply is already sent */
1813 GST_ERROR ("client %p: can't create SDP", client);
1814 send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, ctx);
1816 g_object_unref (media);
1822 handle_options_request (GstRTSPClient * client, GstRTSPContext * ctx)
1824 GstRTSPMethod options;
1827 options = GST_RTSP_DESCRIBE |
1832 GST_RTSP_GET_PARAMETER | GST_RTSP_SET_PARAMETER | GST_RTSP_TEARDOWN;
1834 str = gst_rtsp_options_as_text (options);
1836 gst_rtsp_message_init_response (ctx->response, GST_RTSP_STS_OK,
1837 gst_rtsp_status_as_text (GST_RTSP_STS_OK), ctx->request);
1839 gst_rtsp_message_add_header (ctx->response, GST_RTSP_HDR_PUBLIC, str);
1842 send_message (client, ctx->session, ctx->response, FALSE);
1844 g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_OPTIONS_REQUEST],
1850 /* remove duplicate and trailing '/' */
1852 sanitize_uri (GstRTSPUrl * uri)
1856 gboolean have_slash, prev_slash;
1858 s = d = uri->abspath;
1859 len = strlen (uri->abspath);
1863 for (i = 0; i < len; i++) {
1864 have_slash = s[i] == '/';
1866 if (!have_slash || !prev_slash)
1868 prev_slash = have_slash;
1870 len = d - uri->abspath;
1871 /* don't remove the first slash if that's the only thing left */
1872 if (len > 1 && *(d - 1) == '/')
1878 client_session_finalized (GstRTSPClient * client, GstRTSPSession * session)
1880 GstRTSPClientPrivate *priv = client->priv;
1882 GST_INFO ("client %p: session %p finished", client, session);
1884 /* unlink all media managed in this session */
1885 client_unlink_session (client, session);
1887 /* remove the session */
1888 if (!(priv->sessions = g_list_remove (priv->sessions, session))) {
1889 GST_INFO ("client %p: all sessions finalized, close the connection",
1891 close_connection (client);
1896 handle_request (GstRTSPClient * client, GstRTSPMessage * request)
1898 GstRTSPClientPrivate *priv = client->priv;
1899 GstRTSPMethod method;
1900 const gchar *uristr;
1901 GstRTSPUrl *uri = NULL;
1902 GstRTSPVersion version;
1904 GstRTSPSession *session = NULL;
1905 GstRTSPContext sctx = { NULL }, *ctx;
1906 GstRTSPMessage response = { 0 };
1909 if (!(ctx = gst_rtsp_context_get_current ())) {
1911 ctx->auth = priv->auth;
1912 gst_rtsp_context_push_current (ctx);
1915 ctx->conn = priv->connection;
1916 ctx->client = client;
1917 ctx->request = request;
1918 ctx->response = &response;
1920 if (gst_debug_category_get_threshold (rtsp_client_debug) >= GST_LEVEL_LOG) {
1921 gst_rtsp_message_dump (request);
1924 GST_INFO ("client %p: received a request", client);
1926 gst_rtsp_message_parse_request (request, &method, &uristr, &version);
1928 /* we can only handle 1.0 requests */
1929 if (version != GST_RTSP_VERSION_1_0)
1932 ctx->method = method;
1934 /* we always try to parse the url first */
1935 if (strcmp (uristr, "*") == 0) {
1936 /* special case where we have * as uri, keep uri = NULL */
1937 } else if (gst_rtsp_url_parse (uristr, &uri) != GST_RTSP_OK)
1940 /* get the session if there is any */
1941 res = gst_rtsp_message_get_header (request, GST_RTSP_HDR_SESSION, &sessid, 0);
1942 if (res == GST_RTSP_OK) {
1943 if (priv->session_pool == NULL)
1946 /* we had a session in the request, find it again */
1947 if (!(session = gst_rtsp_session_pool_find (priv->session_pool, sessid)))
1948 goto session_not_found;
1950 /* we add the session to the client list of watched sessions. When a session
1951 * disappears because it times out, we will be notified. If all sessions are
1952 * gone, we will close the connection */
1953 client_watch_session (client, session);
1956 /* sanitize the uri */
1960 ctx->session = session;
1962 if (!gst_rtsp_auth_check (GST_RTSP_AUTH_CHECK_URL))
1963 goto not_authorized;
1965 /* now see what is asked and dispatch to a dedicated handler */
1967 case GST_RTSP_OPTIONS:
1968 handle_options_request (client, ctx);
1970 case GST_RTSP_DESCRIBE:
1971 handle_describe_request (client, ctx);
1973 case GST_RTSP_SETUP:
1974 handle_setup_request (client, ctx);
1977 handle_play_request (client, ctx);
1979 case GST_RTSP_PAUSE:
1980 handle_pause_request (client, ctx);
1982 case GST_RTSP_TEARDOWN:
1983 handle_teardown_request (client, ctx);
1985 case GST_RTSP_SET_PARAMETER:
1986 handle_set_param_request (client, ctx);
1988 case GST_RTSP_GET_PARAMETER:
1989 handle_get_param_request (client, ctx);
1991 case GST_RTSP_ANNOUNCE:
1992 case GST_RTSP_RECORD:
1993 case GST_RTSP_REDIRECT:
1994 goto not_implemented;
1995 case GST_RTSP_INVALID:
2002 gst_rtsp_context_pop_current (ctx);
2004 g_object_unref (session);
2006 gst_rtsp_url_free (uri);
2012 GST_ERROR ("client %p: version %d not supported", client, version);
2013 send_generic_response (client, GST_RTSP_STS_RTSP_VERSION_NOT_SUPPORTED,
2019 GST_ERROR ("client %p: bad request", client);
2020 send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, ctx);
2025 GST_ERROR ("client %p: no pool configured", client);
2026 send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, ctx);
2031 GST_ERROR ("client %p: session not found", client);
2032 send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, ctx);
2037 GST_ERROR ("client %p: not allowed", client);
2038 /* error reply is already sent */
2043 GST_ERROR ("client %p: method %d not implemented", client, method);
2044 send_generic_response (client, GST_RTSP_STS_NOT_IMPLEMENTED, ctx);
2051 handle_response (GstRTSPClient * client, GstRTSPMessage * response)
2053 GstRTSPClientPrivate *priv = client->priv;
2055 GstRTSPSession *session = NULL;
2056 GstRTSPContext sctx = { NULL }, *ctx;
2059 if (!(ctx = gst_rtsp_context_get_current ())) {
2061 ctx->auth = priv->auth;
2062 gst_rtsp_context_push_current (ctx);
2065 ctx->conn = priv->connection;
2066 ctx->client = client;
2067 ctx->request = NULL;
2069 ctx->method = GST_RTSP_INVALID;
2070 ctx->response = response;
2072 if (gst_debug_category_get_threshold (rtsp_client_debug) >= GST_LEVEL_LOG) {
2073 gst_rtsp_message_dump (response);
2076 GST_INFO ("client %p: received a response", client);
2078 /* get the session if there is any */
2080 gst_rtsp_message_get_header (response, GST_RTSP_HDR_SESSION, &sessid, 0);
2081 if (res == GST_RTSP_OK) {
2082 if (priv->session_pool == NULL)
2085 /* we had a session in the request, find it again */
2086 if (!(session = gst_rtsp_session_pool_find (priv->session_pool, sessid)))
2087 goto session_not_found;
2089 /* we add the session to the client list of watched sessions. When a session
2090 * disappears because it times out, we will be notified. If all sessions are
2091 * gone, we will close the connection */
2092 client_watch_session (client, session);
2095 ctx->session = session;
2097 g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_HANDLE_RESPONSE],
2102 gst_rtsp_context_pop_current (ctx);
2104 g_object_unref (session);
2109 GST_ERROR ("client %p: no pool configured", client);
2114 GST_ERROR ("client %p: session not found", client);
2120 handle_data (GstRTSPClient * client, GstRTSPMessage * message)
2122 GstRTSPClientPrivate *priv = client->priv;
2131 /* find the stream for this message */
2132 res = gst_rtsp_message_parse_data (message, &channel);
2133 if (res != GST_RTSP_OK)
2136 gst_rtsp_message_steal_body (message, &data, &size);
2138 buffer = gst_buffer_new_wrapped (data, size);
2141 for (walk = priv->transports; walk; walk = g_list_next (walk)) {
2142 GstRTSPStreamTransport *trans;
2143 GstRTSPStream *stream;
2144 const GstRTSPTransport *tr;
2148 tr = gst_rtsp_stream_transport_get_transport (trans);
2149 stream = gst_rtsp_stream_transport_get_stream (trans);
2151 /* check for TCP transport */
2152 if (tr->lower_transport == GST_RTSP_LOWER_TRANS_TCP) {
2153 /* dispatch to the stream based on the channel number */
2154 if (tr->interleaved.min == channel) {
2155 gst_rtsp_stream_recv_rtp (stream, buffer);
2158 } else if (tr->interleaved.max == channel) {
2159 gst_rtsp_stream_recv_rtcp (stream, buffer);
2166 gst_buffer_unref (buffer);
2170 * gst_rtsp_client_set_session_pool:
2171 * @client: a #GstRTSPClient
2172 * @pool: a #GstRTSPSessionPool
2174 * Set @pool as the sessionpool for @client which it will use to find
2175 * or allocate sessions. the sessionpool is usually inherited from the server
2176 * that created the client but can be overridden later.
2179 gst_rtsp_client_set_session_pool (GstRTSPClient * client,
2180 GstRTSPSessionPool * pool)
2182 GstRTSPSessionPool *old;
2183 GstRTSPClientPrivate *priv;
2185 g_return_if_fail (GST_IS_RTSP_CLIENT (client));
2187 priv = client->priv;
2190 g_object_ref (pool);
2192 g_mutex_lock (&priv->lock);
2193 old = priv->session_pool;
2194 priv->session_pool = pool;
2195 g_mutex_unlock (&priv->lock);
2198 g_object_unref (old);
2202 * gst_rtsp_client_get_session_pool:
2203 * @client: a #GstRTSPClient
2205 * Get the #GstRTSPSessionPool object that @client uses to manage its sessions.
2207 * Returns: (transfer full): a #GstRTSPSessionPool, unref after usage.
2209 GstRTSPSessionPool *
2210 gst_rtsp_client_get_session_pool (GstRTSPClient * client)
2212 GstRTSPClientPrivate *priv;
2213 GstRTSPSessionPool *result;
2215 g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), NULL);
2217 priv = client->priv;
2219 g_mutex_lock (&priv->lock);
2220 if ((result = priv->session_pool))
2221 g_object_ref (result);
2222 g_mutex_unlock (&priv->lock);
2228 * gst_rtsp_client_set_mount_points:
2229 * @client: a #GstRTSPClient
2230 * @mounts: a #GstRTSPMountPoints
2232 * Set @mounts as the mount points for @client which it will use to map urls
2233 * to media streams. These mount points are usually inherited from the server that
2234 * created the client but can be overriden later.
2237 gst_rtsp_client_set_mount_points (GstRTSPClient * client,
2238 GstRTSPMountPoints * mounts)
2240 GstRTSPClientPrivate *priv;
2241 GstRTSPMountPoints *old;
2243 g_return_if_fail (GST_IS_RTSP_CLIENT (client));
2245 priv = client->priv;
2248 g_object_ref (mounts);
2250 g_mutex_lock (&priv->lock);
2251 old = priv->mount_points;
2252 priv->mount_points = mounts;
2253 g_mutex_unlock (&priv->lock);
2256 g_object_unref (old);
2260 * gst_rtsp_client_get_mount_points:
2261 * @client: a #GstRTSPClient
2263 * Get the #GstRTSPMountPoints object that @client uses to manage its sessions.
2265 * Returns: (transfer full): a #GstRTSPMountPoints, unref after usage.
2267 GstRTSPMountPoints *
2268 gst_rtsp_client_get_mount_points (GstRTSPClient * client)
2270 GstRTSPClientPrivate *priv;
2271 GstRTSPMountPoints *result;
2273 g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), NULL);
2275 priv = client->priv;
2277 g_mutex_lock (&priv->lock);
2278 if ((result = priv->mount_points))
2279 g_object_ref (result);
2280 g_mutex_unlock (&priv->lock);
2286 * gst_rtsp_client_set_auth:
2287 * @client: a #GstRTSPClient
2288 * @auth: a #GstRTSPAuth
2290 * configure @auth to be used as the authentication manager of @client.
2293 gst_rtsp_client_set_auth (GstRTSPClient * client, GstRTSPAuth * auth)
2295 GstRTSPClientPrivate *priv;
2298 g_return_if_fail (GST_IS_RTSP_CLIENT (client));
2300 priv = client->priv;
2303 g_object_ref (auth);
2305 g_mutex_lock (&priv->lock);
2308 g_mutex_unlock (&priv->lock);
2311 g_object_unref (old);
2316 * gst_rtsp_client_get_auth:
2317 * @client: a #GstRTSPClient
2319 * Get the #GstRTSPAuth used as the authentication manager of @client.
2321 * Returns: (transfer full): the #GstRTSPAuth of @client. g_object_unref() after
2325 gst_rtsp_client_get_auth (GstRTSPClient * client)
2327 GstRTSPClientPrivate *priv;
2328 GstRTSPAuth *result;
2330 g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), NULL);
2332 priv = client->priv;
2334 g_mutex_lock (&priv->lock);
2335 if ((result = priv->auth))
2336 g_object_ref (result);
2337 g_mutex_unlock (&priv->lock);
2343 * gst_rtsp_client_set_thread_pool:
2344 * @client: a #GstRTSPClient
2345 * @pool: a #GstRTSPThreadPool
2347 * configure @pool to be used as the thread pool of @client.
2350 gst_rtsp_client_set_thread_pool (GstRTSPClient * client,
2351 GstRTSPThreadPool * pool)
2353 GstRTSPClientPrivate *priv;
2354 GstRTSPThreadPool *old;
2356 g_return_if_fail (GST_IS_RTSP_CLIENT (client));
2358 priv = client->priv;
2361 g_object_ref (pool);
2363 g_mutex_lock (&priv->lock);
2364 old = priv->thread_pool;
2365 priv->thread_pool = pool;
2366 g_mutex_unlock (&priv->lock);
2369 g_object_unref (old);
2373 * gst_rtsp_client_get_thread_pool:
2374 * @client: a #GstRTSPClient
2376 * Get the #GstRTSPThreadPool used as the thread pool of @client.
2378 * Returns: (transfer full): the #GstRTSPThreadPool of @client. g_object_unref() after
2382 gst_rtsp_client_get_thread_pool (GstRTSPClient * client)
2384 GstRTSPClientPrivate *priv;
2385 GstRTSPThreadPool *result;
2387 g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), NULL);
2389 priv = client->priv;
2391 g_mutex_lock (&priv->lock);
2392 if ((result = priv->thread_pool))
2393 g_object_ref (result);
2394 g_mutex_unlock (&priv->lock);
2400 * gst_rtsp_client_set_connection:
2401 * @client: a #GstRTSPClient
2402 * @conn: (transfer full): a #GstRTSPConnection
2404 * Set the #GstRTSPConnection of @client. This function takes ownership of
2407 * Returns: %TRUE on success.
2410 gst_rtsp_client_set_connection (GstRTSPClient * client,
2411 GstRTSPConnection * conn)
2413 GstRTSPClientPrivate *priv;
2414 GSocket *read_socket;
2415 GSocketAddress *address;
2417 GError *error = NULL;
2419 g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), FALSE);
2420 g_return_val_if_fail (conn != NULL, FALSE);
2422 priv = client->priv;
2424 read_socket = gst_rtsp_connection_get_read_socket (conn);
2426 if (!(address = g_socket_get_local_address (read_socket, &error)))
2429 g_free (priv->server_ip);
2430 /* keep the original ip that the client connected to */
2431 if (G_IS_INET_SOCKET_ADDRESS (address)) {
2432 GInetAddress *iaddr;
2434 iaddr = g_inet_socket_address_get_address (G_INET_SOCKET_ADDRESS (address));
2436 /* socket might be ipv6 but adress still ipv4 */
2437 priv->is_ipv6 = g_inet_address_get_family (iaddr) == G_SOCKET_FAMILY_IPV6;
2438 priv->server_ip = g_inet_address_to_string (iaddr);
2439 g_object_unref (address);
2441 priv->is_ipv6 = g_socket_get_family (read_socket) == G_SOCKET_FAMILY_IPV6;
2442 priv->server_ip = g_strdup ("unknown");
2445 GST_INFO ("client %p connected to server ip %s, ipv6 = %d", client,
2446 priv->server_ip, priv->is_ipv6);
2448 url = gst_rtsp_connection_get_url (conn);
2449 GST_INFO ("added new client %p ip %s:%d", client, url->host, url->port);
2451 priv->connection = conn;
2458 GST_ERROR ("could not get local address %s", error->message);
2459 g_error_free (error);
2465 * gst_rtsp_client_get_connection:
2466 * @client: a #GstRTSPClient
2468 * Get the #GstRTSPConnection of @client.
2470 * Returns: (transfer none): the #GstRTSPConnection of @client.
2471 * The connection object returned remains valid until the client is freed.
2474 gst_rtsp_client_get_connection (GstRTSPClient * client)
2476 g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), NULL);
2478 return client->priv->connection;
2482 * gst_rtsp_client_set_send_func:
2483 * @client: a #GstRTSPClient
2484 * @func: a #GstRTSPClientSendFunc
2485 * @user_data: user data passed to @func
2486 * @notify: called when @user_data is no longer in use
2488 * Set @func as the callback that will be called when a new message needs to be
2489 * sent to the client. @user_data is passed to @func and @notify is called when
2490 * @user_data is no longer in use.
2492 * By default, the client will send the messages on the #GstRTSPConnection that
2493 * was configured with gst_rtsp_client_attach() was called.
2496 gst_rtsp_client_set_send_func (GstRTSPClient * client,
2497 GstRTSPClientSendFunc func, gpointer user_data, GDestroyNotify notify)
2499 GstRTSPClientPrivate *priv;
2500 GDestroyNotify old_notify;
2503 g_return_if_fail (GST_IS_RTSP_CLIENT (client));
2505 priv = client->priv;
2507 g_mutex_lock (&priv->send_lock);
2508 priv->send_func = func;
2509 old_notify = priv->send_notify;
2510 old_data = priv->send_data;
2511 priv->send_notify = notify;
2512 priv->send_data = user_data;
2513 g_mutex_unlock (&priv->send_lock);
2516 old_notify (old_data);
2520 * gst_rtsp_client_handle_message:
2521 * @client: a #GstRTSPClient
2522 * @message: an #GstRTSPMessage
2524 * Let the client handle @message.
2526 * Returns: a #GstRTSPResult.
2529 gst_rtsp_client_handle_message (GstRTSPClient * client,
2530 GstRTSPMessage * message)
2532 g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), GST_RTSP_EINVAL);
2533 g_return_val_if_fail (message != NULL, GST_RTSP_EINVAL);
2535 switch (message->type) {
2536 case GST_RTSP_MESSAGE_REQUEST:
2537 handle_request (client, message);
2539 case GST_RTSP_MESSAGE_RESPONSE:
2540 handle_response (client, message);
2542 case GST_RTSP_MESSAGE_DATA:
2543 handle_data (client, message);
2552 * gst_rtsp_client_send_message:
2553 * @client: a #GstRTSPClient
2554 * @session: a #GstRTSPSession to send the message to or %NULL
2555 * @message: The #GstRTSPMessage to send
2557 * Send a message message to the remote end. @message must be a
2558 * #GST_RTSP_MESSAGE_REQUEST or a #GST_RTSP_MESSAGE_RESPONSE.
2561 gst_rtsp_client_send_message (GstRTSPClient * client, GstRTSPSession * session,
2562 GstRTSPMessage * message)
2564 g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), GST_RTSP_EINVAL);
2565 g_return_val_if_fail (message != NULL, GST_RTSP_EINVAL);
2566 g_return_val_if_fail (message->type == GST_RTSP_MESSAGE_REQUEST ||
2567 message->type == GST_RTSP_MESSAGE_RESPONSE, GST_RTSP_EINVAL);
2569 send_message (client, session, message, FALSE);
2574 static GstRTSPResult
2575 do_send_message (GstRTSPClient * client, GstRTSPMessage * message,
2576 gboolean close, gpointer user_data)
2578 GstRTSPClientPrivate *priv = client->priv;
2580 /* send the response and store the seq number so we can wait until it's
2581 * written to the client to close the connection */
2582 return gst_rtsp_watch_send_message (priv->watch, message, close ?
2583 &priv->close_seq : NULL);
2586 static GstRTSPResult
2587 message_received (GstRTSPWatch * watch, GstRTSPMessage * message,
2590 return gst_rtsp_client_handle_message (GST_RTSP_CLIENT (user_data), message);
2593 static GstRTSPResult
2594 message_sent (GstRTSPWatch * watch, guint cseq, gpointer user_data)
2596 GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
2597 GstRTSPClientPrivate *priv = client->priv;
2599 if (priv->close_seq && priv->close_seq == cseq) {
2600 priv->close_seq = 0;
2601 close_connection (client);
2607 static GstRTSPResult
2608 closed (GstRTSPWatch * watch, gpointer user_data)
2610 GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
2611 GstRTSPClientPrivate *priv = client->priv;
2612 const gchar *tunnelid;
2614 GST_INFO ("client %p: connection closed", client);
2616 if ((tunnelid = gst_rtsp_connection_get_tunnelid (priv->connection))) {
2617 g_mutex_lock (&tunnels_lock);
2618 /* remove from tunnelids */
2619 g_hash_table_remove (tunnels, tunnelid);
2620 g_mutex_unlock (&tunnels_lock);
2623 gst_rtsp_client_set_send_func (client, NULL, NULL, NULL);
2628 static GstRTSPResult
2629 error (GstRTSPWatch * watch, GstRTSPResult result, gpointer user_data)
2631 GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
2634 str = gst_rtsp_strresult (result);
2635 GST_INFO ("client %p: received an error %s", client, str);
2641 static GstRTSPResult
2642 error_full (GstRTSPWatch * watch, GstRTSPResult result,
2643 GstRTSPMessage * message, guint id, gpointer user_data)
2645 GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
2648 str = gst_rtsp_strresult (result);
2650 ("client %p: error when handling message %p with id %d: %s",
2651 client, message, id, str);
2658 remember_tunnel (GstRTSPClient * client)
2660 GstRTSPClientPrivate *priv = client->priv;
2661 const gchar *tunnelid;
2663 /* store client in the pending tunnels */
2664 tunnelid = gst_rtsp_connection_get_tunnelid (priv->connection);
2665 if (tunnelid == NULL)
2668 GST_INFO ("client %p: inserting tunnel session %s", client, tunnelid);
2670 /* we can't have two clients connecting with the same tunnelid */
2671 g_mutex_lock (&tunnels_lock);
2672 if (g_hash_table_lookup (tunnels, tunnelid))
2673 goto tunnel_existed;
2675 g_hash_table_insert (tunnels, g_strdup (tunnelid), g_object_ref (client));
2676 g_mutex_unlock (&tunnels_lock);
2683 GST_ERROR ("client %p: no tunnelid provided", client);
2688 g_mutex_unlock (&tunnels_lock);
2689 GST_ERROR ("client %p: tunnel session %s already existed", client,
2695 static GstRTSPStatusCode
2696 tunnel_start (GstRTSPWatch * watch, gpointer user_data)
2698 GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
2699 GstRTSPClientPrivate *priv = client->priv;
2701 GST_INFO ("client %p: tunnel start (connection %p)", client,
2704 if (!remember_tunnel (client))
2707 return GST_RTSP_STS_OK;
2712 GST_ERROR ("client %p: error starting tunnel", client);
2713 return GST_RTSP_STS_SERVICE_UNAVAILABLE;
2717 static GstRTSPResult
2718 tunnel_lost (GstRTSPWatch * watch, gpointer user_data)
2720 GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
2721 GstRTSPClientPrivate *priv = client->priv;
2723 GST_WARNING ("client %p: tunnel lost (connection %p)", client,
2726 /* ignore error, it'll only be a problem when the client does a POST again */
2727 remember_tunnel (client);
2732 static GstRTSPResult
2733 tunnel_complete (GstRTSPWatch * watch, gpointer user_data)
2735 const gchar *tunnelid;
2736 GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
2737 GstRTSPClientPrivate *priv = client->priv;
2738 GstRTSPClient *oclient;
2739 GstRTSPClientPrivate *opriv;
2741 GST_INFO ("client %p: tunnel complete", client);
2743 /* find previous tunnel */
2744 tunnelid = gst_rtsp_connection_get_tunnelid (priv->connection);
2745 if (tunnelid == NULL)
2748 g_mutex_lock (&tunnels_lock);
2749 if (!(oclient = g_hash_table_lookup (tunnels, tunnelid)))
2752 /* remove the old client from the table. ref before because removing it will
2753 * remove the ref to it. */
2754 g_object_ref (oclient);
2755 g_hash_table_remove (tunnels, tunnelid);
2757 opriv = oclient->priv;
2759 if (opriv->watch == NULL)
2761 g_mutex_unlock (&tunnels_lock);
2763 GST_INFO ("client %p: found tunnel %p (old %p, new %p)", client, oclient,
2764 opriv->connection, priv->connection);
2766 /* merge the tunnels into the first client */
2767 gst_rtsp_connection_do_tunnel (opriv->connection, priv->connection);
2768 gst_rtsp_watch_reset (opriv->watch);
2769 g_object_unref (oclient);
2776 GST_ERROR ("client %p: no tunnelid provided", client);
2777 return GST_RTSP_ERROR;
2781 g_mutex_unlock (&tunnels_lock);
2782 GST_ERROR ("client %p: tunnel session %s not found", client, tunnelid);
2783 return GST_RTSP_ERROR;
2787 g_mutex_unlock (&tunnels_lock);
2788 GST_ERROR ("client %p: tunnel session %s was closed", client, tunnelid);
2789 g_object_unref (oclient);
2790 return GST_RTSP_ERROR;
2794 static GstRTSPWatchFuncs watch_funcs = {
2806 client_watch_notify (GstRTSPClient * client)
2808 GstRTSPClientPrivate *priv = client->priv;
2810 GST_INFO ("client %p: watch destroyed", client);
2812 g_signal_emit (client, gst_rtsp_client_signals[SIGNAL_CLOSED], 0, NULL);
2813 g_object_unref (client);
2817 * gst_rtsp_client_attach:
2818 * @client: a #GstRTSPClient
2819 * @context: (allow-none): a #GMainContext
2821 * Attaches @client to @context. When the mainloop for @context is run, the
2822 * client will be dispatched. When @context is NULL, the default context will be
2825 * This function should be called when the client properties and urls are fully
2826 * configured and the client is ready to start.
2828 * Returns: the ID (greater than 0) for the source within the GMainContext.
2831 gst_rtsp_client_attach (GstRTSPClient * client, GMainContext * context)
2833 GstRTSPClientPrivate *priv;
2836 g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), 0);
2837 priv = client->priv;
2838 g_return_val_if_fail (priv->connection != NULL, 0);
2839 g_return_val_if_fail (priv->watch == NULL, 0);
2841 /* create watch for the connection and attach */
2842 priv->watch = gst_rtsp_watch_new (priv->connection, &watch_funcs,
2843 g_object_ref (client), (GDestroyNotify) client_watch_notify);
2844 gst_rtsp_client_set_send_func (client, do_send_message, priv->watch,
2845 (GDestroyNotify) gst_rtsp_watch_unref);
2847 /* FIXME make this configurable. We don't want to do this yet because it will
2848 * be superceeded by a cache object later */
2849 gst_rtsp_watch_set_send_backlog (priv->watch, 0, 100);
2851 GST_INFO ("attaching to context %p", context);
2852 res = gst_rtsp_watch_attach (priv->watch, context);
2858 * gst_rtsp_client_session_filter:
2859 * @client: a #GstRTSPClient
2860 * @func: (scope call): a callback
2861 * @user_data: user data passed to @func
2863 * Call @func for each session managed by @client. The result value of @func
2864 * determines what happens to the session. @func will be called with @client
2865 * locked so no further actions on @client can be performed from @func.
2867 * If @func returns #GST_RTSP_FILTER_REMOVE, the session will be removed from
2870 * If @func returns #GST_RTSP_FILTER_KEEP, the session will remain in @client.
2872 * If @func returns #GST_RTSP_FILTER_REF, the session will remain in @client but
2873 * will also be added with an additional ref to the result #GList of this
2876 * Returns: (element-type GstRTSPSession) (transfer full): a #GList with all
2877 * sessions for which @func returned #GST_RTSP_FILTER_REF. After usage, each
2878 * element in the #GList should be unreffed before the list is freed.
2881 gst_rtsp_client_session_filter (GstRTSPClient * client,
2882 GstRTSPClientSessionFilterFunc func, gpointer user_data)
2884 GstRTSPClientPrivate *priv;
2885 GList *result, *walk, *next;
2887 g_return_val_if_fail (GST_IS_RTSP_CLIENT (client), NULL);
2888 g_return_val_if_fail (func != NULL, NULL);
2890 priv = client->priv;
2894 g_mutex_lock (&priv->lock);
2895 for (walk = priv->sessions; walk; walk = next) {
2896 GstRTSPSession *sess = walk->data;
2898 next = g_list_next (walk);
2900 switch (func (client, sess, user_data)) {
2901 case GST_RTSP_FILTER_REMOVE:
2902 /* stop watching the session and pretent it went away */
2903 client_cleanup_session (client, sess);
2905 case GST_RTSP_FILTER_REF:
2906 result = g_list_prepend (result, g_object_ref (sess));
2908 case GST_RTSP_FILTER_KEEP:
2913 g_mutex_unlock (&priv->lock);