2008-10-09 12:29:12 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 2008 Wim Taymans <wim.taymans at gmail.com>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library 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
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
|
|
|
|
#include "rtsp-client.h"
|
2009-01-29 12:31:27 +00:00
|
|
|
#include "rtsp-sdp.h"
|
2008-10-09 12:29:12 +00:00
|
|
|
|
2009-03-11 18:38:06 +00:00
|
|
|
#define DEBUG
|
2009-02-10 15:24:13 +00:00
|
|
|
|
2009-03-04 11:44:01 +00:00
|
|
|
static GMutex *tunnels_lock;
|
|
|
|
static GHashTable *tunnels;
|
|
|
|
|
2009-02-10 15:24:13 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
|
|
|
PROP_SESSION_POOL,
|
|
|
|
PROP_MEDIA_MAPPING,
|
|
|
|
PROP_LAST
|
|
|
|
};
|
|
|
|
|
|
|
|
static void gst_rtsp_client_get_property (GObject *object, guint propid,
|
|
|
|
GValue *value, GParamSpec *pspec);
|
|
|
|
static void gst_rtsp_client_set_property (GObject *object, guint propid,
|
|
|
|
const GValue *value, GParamSpec *pspec);
|
2009-01-22 14:33:29 +00:00
|
|
|
static void gst_rtsp_client_finalize (GObject * obj);
|
|
|
|
|
2009-03-11 18:38:06 +00:00
|
|
|
static void client_session_finalized (GstRTSPClient *client, GstRTSPSession *session);
|
|
|
|
|
2008-10-09 12:29:12 +00:00
|
|
|
G_DEFINE_TYPE (GstRTSPClient, gst_rtsp_client, G_TYPE_OBJECT);
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_rtsp_client_class_init (GstRTSPClientClass * klass)
|
|
|
|
{
|
|
|
|
GObjectClass *gobject_class;
|
|
|
|
|
|
|
|
gobject_class = G_OBJECT_CLASS (klass);
|
2009-01-22 14:33:29 +00:00
|
|
|
|
2009-02-10 15:24:13 +00:00
|
|
|
gobject_class->get_property = gst_rtsp_client_get_property;
|
|
|
|
gobject_class->set_property = gst_rtsp_client_set_property;
|
2009-01-22 14:33:29 +00:00
|
|
|
gobject_class->finalize = gst_rtsp_client_finalize;
|
2009-02-10 15:24:13 +00:00
|
|
|
|
|
|
|
g_object_class_install_property (gobject_class, PROP_SESSION_POOL,
|
|
|
|
g_param_spec_object ("session-pool", "Session Pool",
|
|
|
|
"The session pool to use for client session",
|
|
|
|
GST_TYPE_RTSP_SESSION_POOL, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
|
|
|
|
|
|
|
g_object_class_install_property (gobject_class, PROP_MEDIA_MAPPING,
|
|
|
|
g_param_spec_object ("media-mapping", "Media Mapping",
|
|
|
|
"The media mapping to use for client session",
|
|
|
|
GST_TYPE_RTSP_MEDIA_MAPPING, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2009-03-04 11:44:01 +00:00
|
|
|
|
|
|
|
tunnels = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_object_unref);
|
|
|
|
tunnels_lock = g_mutex_new ();
|
2008-10-09 12:29:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_rtsp_client_init (GstRTSPClient * client)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2009-01-29 17:51:02 +00:00
|
|
|
/* A client is finalized when the connection is broken */
|
2009-01-22 14:33:29 +00:00
|
|
|
static void
|
|
|
|
gst_rtsp_client_finalize (GObject * obj)
|
|
|
|
{
|
2009-01-29 17:51:02 +00:00
|
|
|
GstRTSPClient *client = GST_RTSP_CLIENT (obj);
|
|
|
|
|
2009-02-04 16:00:42 +00:00
|
|
|
g_message ("finalize client %p", client);
|
|
|
|
|
2009-03-11 18:38:06 +00:00
|
|
|
g_list_free (client->sessions);
|
|
|
|
|
2009-01-29 17:51:02 +00:00
|
|
|
gst_rtsp_connection_free (client->connection);
|
|
|
|
if (client->session_pool)
|
|
|
|
g_object_unref (client->session_pool);
|
|
|
|
if (client->media_mapping)
|
|
|
|
g_object_unref (client->media_mapping);
|
|
|
|
|
|
|
|
if (client->uri)
|
|
|
|
gst_rtsp_url_free (client->uri);
|
|
|
|
if (client->media)
|
|
|
|
g_object_unref (client->media);
|
|
|
|
|
2009-01-22 14:33:29 +00:00
|
|
|
G_OBJECT_CLASS (gst_rtsp_client_parent_class)->finalize (obj);
|
|
|
|
}
|
|
|
|
|
2009-02-10 15:24:13 +00:00
|
|
|
static void
|
|
|
|
gst_rtsp_client_get_property (GObject *object, guint propid,
|
|
|
|
GValue *value, GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GstRTSPClient *client = GST_RTSP_CLIENT (object);
|
|
|
|
|
|
|
|
switch (propid) {
|
|
|
|
case PROP_SESSION_POOL:
|
|
|
|
g_value_take_object (value, gst_rtsp_client_get_session_pool (client));
|
|
|
|
break;
|
|
|
|
case PROP_MEDIA_MAPPING:
|
|
|
|
g_value_take_object (value, gst_rtsp_client_get_media_mapping (client));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, propid, pspec);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_rtsp_client_set_property (GObject *object, guint propid,
|
|
|
|
const GValue *value, GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GstRTSPClient *client = GST_RTSP_CLIENT (object);
|
|
|
|
|
|
|
|
switch (propid) {
|
|
|
|
case PROP_SESSION_POOL:
|
|
|
|
gst_rtsp_client_set_session_pool (client, g_value_get_object (value));
|
|
|
|
break;
|
|
|
|
case PROP_MEDIA_MAPPING:
|
|
|
|
gst_rtsp_client_set_media_mapping (client, g_value_get_object (value));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, propid, pspec);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-10-09 12:29:12 +00:00
|
|
|
/**
|
|
|
|
* gst_rtsp_client_new:
|
|
|
|
*
|
|
|
|
* Create a new #GstRTSPClient instance.
|
|
|
|
*/
|
|
|
|
GstRTSPClient *
|
|
|
|
gst_rtsp_client_new (void)
|
|
|
|
{
|
|
|
|
GstRTSPClient *result;
|
|
|
|
|
|
|
|
result = g_object_new (GST_TYPE_RTSP_CLIENT, NULL);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2009-01-29 12:31:27 +00:00
|
|
|
static void
|
2009-02-13 11:57:45 +00:00
|
|
|
send_response (GstRTSPClient *client, GstRTSPSession *session, GstRTSPMessage *response)
|
2009-01-29 12:31:27 +00:00
|
|
|
{
|
2009-02-04 16:00:42 +00:00
|
|
|
gst_rtsp_message_add_header (response, GST_RTSP_HDR_SERVER, "GStreamer RTSP server");
|
|
|
|
|
2009-03-11 18:38:06 +00:00
|
|
|
/* remove any previous header */
|
|
|
|
gst_rtsp_message_remove_header (response, GST_RTSP_HDR_SESSION, -1);
|
2009-02-10 15:24:13 +00:00
|
|
|
|
2009-02-13 11:57:45 +00:00
|
|
|
/* add the new session header for new session ids */
|
|
|
|
if (session) {
|
|
|
|
gchar *str;
|
|
|
|
|
|
|
|
if (session->timeout != 60)
|
|
|
|
str = g_strdup_printf ("%s; timeout=%d", session->sessionid, session->timeout);
|
|
|
|
else
|
|
|
|
str = g_strdup (session->sessionid);
|
|
|
|
|
|
|
|
gst_rtsp_message_take_header (response, GST_RTSP_HDR_SESSION, str);
|
|
|
|
}
|
2009-03-11 18:38:06 +00:00
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
gst_rtsp_message_dump (response);
|
|
|
|
#endif
|
2009-02-13 11:57:45 +00:00
|
|
|
|
2009-02-19 14:53:50 +00:00
|
|
|
gst_rtsp_watch_queue_message (client->watch, response);
|
2009-01-30 16:06:26 +00:00
|
|
|
gst_rtsp_message_unset (response);
|
2009-01-29 12:31:27 +00:00
|
|
|
}
|
|
|
|
|
2008-10-09 12:29:12 +00:00
|
|
|
static void
|
2009-01-29 17:51:02 +00:00
|
|
|
send_generic_response (GstRTSPClient *client, GstRTSPStatusCode code,
|
2008-10-09 12:29:12 +00:00
|
|
|
GstRTSPMessage *request)
|
|
|
|
{
|
|
|
|
GstRTSPMessage response = { 0 };
|
|
|
|
|
|
|
|
gst_rtsp_message_init_response (&response, code,
|
|
|
|
gst_rtsp_status_as_text (code), request);
|
|
|
|
|
2009-02-13 11:57:45 +00:00
|
|
|
send_response (client, NULL, &response);
|
2009-01-29 17:51:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
compare_uri (const GstRTSPUrl *uri1, const GstRTSPUrl *uri2)
|
|
|
|
{
|
|
|
|
if (uri1 == NULL || uri2 == NULL)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (strcmp (uri1->abspath, uri2->abspath))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return TRUE;
|
2008-10-09 12:29:12 +00:00
|
|
|
}
|
|
|
|
|
2009-01-29 17:51:02 +00:00
|
|
|
/* this function is called to initially find the media for the DESCRIBE request
|
|
|
|
* but is cached for when the same client (without breaking the connection) is
|
|
|
|
* doing a setup for the exact same url. */
|
2009-01-29 12:31:27 +00:00
|
|
|
static GstRTSPMedia *
|
2009-01-31 18:50:33 +00:00
|
|
|
find_media (GstRTSPClient *client, GstRTSPUrl *uri, GstRTSPMessage *request)
|
2009-01-29 12:31:27 +00:00
|
|
|
{
|
|
|
|
GstRTSPMediaFactory *factory;
|
|
|
|
GstRTSPMedia *media;
|
|
|
|
|
2009-01-29 17:51:02 +00:00
|
|
|
if (!compare_uri (client->uri, uri)) {
|
|
|
|
/* remove any previously cached values before we try to construct a new
|
|
|
|
* media for uri */
|
|
|
|
if (client->uri)
|
|
|
|
gst_rtsp_url_free (client->uri);
|
|
|
|
client->uri = NULL;
|
|
|
|
if (client->media)
|
|
|
|
g_object_unref (client->media);
|
|
|
|
client->media = NULL;
|
2009-01-29 12:31:27 +00:00
|
|
|
|
2009-01-29 17:51:02 +00:00
|
|
|
if (!client->media_mapping)
|
|
|
|
goto no_mapping;
|
|
|
|
|
|
|
|
/* find the factory for the uri first */
|
|
|
|
if (!(factory = gst_rtsp_media_mapping_find_factory (client->media_mapping, uri)))
|
|
|
|
goto no_factory;
|
2009-01-29 12:31:27 +00:00
|
|
|
|
2009-01-29 17:51:02 +00:00
|
|
|
/* prepare the media and add it to the pipeline */
|
|
|
|
if (!(media = gst_rtsp_media_factory_construct (factory, uri)))
|
|
|
|
goto no_media;
|
|
|
|
|
|
|
|
/* prepare the media */
|
|
|
|
if (!(gst_rtsp_media_prepare (media)))
|
|
|
|
goto no_prepare;
|
|
|
|
|
|
|
|
/* now keep track of the uri and the media */
|
|
|
|
client->uri = gst_rtsp_url_copy (uri);
|
2009-02-04 16:00:42 +00:00
|
|
|
client->media = media;
|
2009-01-29 17:51:02 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* we have seen this uri before, used cached media */
|
2009-02-04 16:00:42 +00:00
|
|
|
media = client->media;
|
2009-01-29 17:51:02 +00:00
|
|
|
g_message ("reusing cached media %p", media);
|
|
|
|
}
|
2009-01-29 12:31:27 +00:00
|
|
|
|
2009-02-04 16:00:42 +00:00
|
|
|
if (media)
|
|
|
|
g_object_ref (media);
|
|
|
|
|
2009-01-29 12:31:27 +00:00
|
|
|
return media;
|
|
|
|
|
|
|
|
/* ERRORS */
|
2009-01-29 17:51:02 +00:00
|
|
|
no_mapping:
|
|
|
|
{
|
|
|
|
send_generic_response (client, GST_RTSP_STS_NOT_FOUND, request);
|
|
|
|
return NULL;
|
|
|
|
}
|
2009-01-29 12:31:27 +00:00
|
|
|
no_factory:
|
|
|
|
{
|
2009-01-29 17:51:02 +00:00
|
|
|
send_generic_response (client, GST_RTSP_STS_NOT_FOUND, request);
|
2009-01-29 12:31:27 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
no_media:
|
|
|
|
{
|
2009-01-29 17:51:02 +00:00
|
|
|
send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, request);
|
2009-01-29 12:31:27 +00:00
|
|
|
g_object_unref (factory);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
no_prepare:
|
|
|
|
{
|
2009-01-29 17:51:02 +00:00
|
|
|
send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, request);
|
2009-01-29 12:31:27 +00:00
|
|
|
g_object_unref (media);
|
|
|
|
g_object_unref (factory);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-03-11 15:45:12 +00:00
|
|
|
static gboolean
|
|
|
|
do_send_data (GstBuffer *buffer, guint8 channel, GstRTSPClient *client)
|
|
|
|
{
|
|
|
|
GstRTSPMessage message = { 0 };
|
|
|
|
guint8 *data;
|
|
|
|
guint size;
|
|
|
|
|
|
|
|
gst_rtsp_message_init_data (&message, channel);
|
|
|
|
|
|
|
|
data = GST_BUFFER_DATA (buffer);
|
|
|
|
size = GST_BUFFER_SIZE (buffer);
|
|
|
|
gst_rtsp_message_take_body (&message, data, size);
|
|
|
|
|
|
|
|
gst_rtsp_watch_queue_message (client->watch, &message);
|
|
|
|
|
|
|
|
gst_rtsp_message_steal_body (&message, &data, &size);
|
|
|
|
gst_rtsp_message_unset (&message);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
link_stream (GstRTSPClient *client, GstRTSPSessionStream *stream)
|
|
|
|
{
|
|
|
|
gst_rtsp_session_stream_set_callbacks (stream, (GstRTSPSendFunc) do_send_data,
|
|
|
|
(GstRTSPSendFunc) do_send_data, client, NULL);
|
|
|
|
client->streams = g_list_prepend (client->streams, stream);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
unlink_stream (GstRTSPClient *client, GstRTSPSessionStream *stream)
|
|
|
|
{
|
|
|
|
gst_rtsp_session_stream_set_callbacks (stream, NULL,
|
2009-04-01 00:01:46 +00:00
|
|
|
NULL, NULL, NULL);
|
2009-03-11 15:45:12 +00:00
|
|
|
client->streams = g_list_remove (client->streams, stream);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
unlink_streams (GstRTSPClient *client)
|
|
|
|
{
|
|
|
|
GList *walk;
|
|
|
|
|
|
|
|
for (walk = client->streams; walk; walk = g_list_next (walk)) {
|
|
|
|
GstRTSPSessionStream *stream = (GstRTSPSessionStream *) walk->data;
|
|
|
|
|
|
|
|
gst_rtsp_session_stream_set_callbacks (stream, NULL,
|
|
|
|
NULL, NULL, NULL);
|
|
|
|
}
|
|
|
|
g_list_free (client->streams);
|
|
|
|
client->streams = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
unlink_session_streams (GstRTSPClient *client, GstRTSPSessionMedia *media)
|
|
|
|
{
|
|
|
|
guint n_streams, i;
|
|
|
|
|
|
|
|
n_streams = gst_rtsp_media_n_streams (media->media);
|
|
|
|
for (i = 0; i < n_streams; i++) {
|
|
|
|
GstRTSPSessionStream *sstream;
|
|
|
|
GstRTSPTransport *tr;
|
|
|
|
|
|
|
|
/* get the stream as configured in the session */
|
|
|
|
sstream = gst_rtsp_session_media_get_stream (media, i);
|
|
|
|
/* get the transport, if there is no transport configured, skip this stream */
|
|
|
|
if (!(tr = sstream->trans.transport))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (tr->lower_transport == GST_RTSP_LOWER_TRANS_TCP) {
|
|
|
|
/* for TCP, unlink the stream from the TCP connection of the client */
|
|
|
|
unlink_stream (client, sstream);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-29 12:31:27 +00:00
|
|
|
static gboolean
|
2009-02-13 18:52:05 +00:00
|
|
|
handle_teardown_request (GstRTSPClient *client, GstRTSPUrl *uri, GstRTSPSession *session, GstRTSPMessage *request)
|
2009-01-29 12:31:27 +00:00
|
|
|
{
|
|
|
|
GstRTSPSessionMedia *media;
|
|
|
|
GstRTSPMessage response = { 0 };
|
|
|
|
GstRTSPStatusCode code;
|
|
|
|
|
2009-02-13 18:52:05 +00:00
|
|
|
if (!session)
|
2009-01-29 12:31:27 +00:00
|
|
|
goto no_session;
|
|
|
|
|
2008-10-09 12:29:12 +00:00
|
|
|
/* get a handle to the configuration of the media in the session */
|
2009-01-29 12:31:27 +00:00
|
|
|
media = gst_rtsp_session_get_media (session, uri);
|
2009-01-08 15:28:24 +00:00
|
|
|
if (!media)
|
|
|
|
goto not_found;
|
2008-10-09 12:29:12 +00:00
|
|
|
|
2009-03-11 15:45:12 +00:00
|
|
|
/* unlink the all TCP callbacks */
|
|
|
|
unlink_session_streams (client, media);
|
|
|
|
|
2009-03-11 19:03:06 +00:00
|
|
|
/* remove the session from the watched sessions */
|
|
|
|
g_object_weak_unref (G_OBJECT (session), (GWeakNotify) client_session_finalized, client);
|
|
|
|
client->sessions = g_list_remove (client->sessions, session);
|
|
|
|
|
2009-03-11 15:45:12 +00:00
|
|
|
gst_rtsp_session_media_set_state (media, GST_STATE_NULL);
|
2008-10-09 12:29:12 +00:00
|
|
|
|
2009-02-04 16:00:42 +00:00
|
|
|
/* unmanage the media in the session, returns false if all media session
|
|
|
|
* are torn down. */
|
|
|
|
if (!gst_rtsp_session_release_media (session, media)) {
|
|
|
|
/* remove the session */
|
|
|
|
gst_rtsp_session_pool_remove (client->session_pool, session);
|
|
|
|
}
|
2008-10-09 12:29:12 +00:00
|
|
|
/* construct the response now */
|
|
|
|
code = GST_RTSP_STS_OK;
|
|
|
|
gst_rtsp_message_init_response (&response, code, gst_rtsp_status_as_text (code), request);
|
|
|
|
|
2009-02-13 11:57:45 +00:00
|
|
|
send_response (client, session, &response);
|
|
|
|
|
2008-10-09 12:29:12 +00:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
/* ERRORS */
|
2009-01-29 12:31:27 +00:00
|
|
|
no_session:
|
2008-10-09 12:29:12 +00:00
|
|
|
{
|
2009-02-13 18:52:05 +00:00
|
|
|
send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, request);
|
2008-10-09 12:29:12 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2009-01-08 15:28:24 +00:00
|
|
|
not_found:
|
|
|
|
{
|
2009-01-29 17:51:02 +00:00
|
|
|
send_generic_response (client, GST_RTSP_STS_NOT_FOUND, request);
|
2009-01-08 15:28:24 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2008-10-09 12:29:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2009-02-13 18:52:05 +00:00
|
|
|
handle_pause_request (GstRTSPClient *client, GstRTSPUrl *uri, GstRTSPSession *session, GstRTSPMessage *request)
|
2008-10-09 12:29:12 +00:00
|
|
|
{
|
|
|
|
GstRTSPSessionMedia *media;
|
|
|
|
GstRTSPMessage response = { 0 };
|
|
|
|
GstRTSPStatusCode code;
|
|
|
|
|
2009-02-13 18:52:05 +00:00
|
|
|
if (!session)
|
2009-01-29 12:31:27 +00:00
|
|
|
goto no_session;
|
2008-10-09 12:29:12 +00:00
|
|
|
|
|
|
|
/* get a handle to the configuration of the media in the session */
|
2009-01-29 12:31:27 +00:00
|
|
|
media = gst_rtsp_session_get_media (session, uri);
|
2009-01-08 15:28:24 +00:00
|
|
|
if (!media)
|
|
|
|
goto not_found;
|
2008-10-09 12:29:12 +00:00
|
|
|
|
2009-02-03 18:32:38 +00:00
|
|
|
/* the session state must be playing or recording */
|
|
|
|
if (media->state != GST_RTSP_STATE_PLAYING &&
|
|
|
|
media->state != GST_RTSP_STATE_RECORDING)
|
|
|
|
goto invalid_state;
|
|
|
|
|
2009-03-11 15:45:12 +00:00
|
|
|
/* unlink the all TCP callbacks */
|
|
|
|
unlink_session_streams (client, media);
|
|
|
|
|
|
|
|
/* then pause sending */
|
|
|
|
gst_rtsp_session_media_set_state (media, GST_STATE_PAUSED);
|
2008-10-09 12:29:12 +00:00
|
|
|
|
|
|
|
/* construct the response now */
|
|
|
|
code = GST_RTSP_STS_OK;
|
|
|
|
gst_rtsp_message_init_response (&response, code, gst_rtsp_status_as_text (code), request);
|
|
|
|
|
2009-02-13 11:57:45 +00:00
|
|
|
send_response (client, session, &response);
|
2008-10-09 12:29:12 +00:00
|
|
|
|
2009-02-03 18:32:38 +00:00
|
|
|
/* the state is now READY */
|
|
|
|
media->state = GST_RTSP_STATE_READY;
|
|
|
|
|
2008-10-09 12:29:12 +00:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
/* ERRORS */
|
2009-01-29 12:31:27 +00:00
|
|
|
no_session:
|
2008-10-09 12:29:12 +00:00
|
|
|
{
|
2009-02-13 18:52:05 +00:00
|
|
|
send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, request);
|
2008-10-09 12:29:12 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2009-01-08 15:28:24 +00:00
|
|
|
not_found:
|
|
|
|
{
|
2009-01-29 17:51:02 +00:00
|
|
|
send_generic_response (client, GST_RTSP_STS_NOT_FOUND, request);
|
2009-01-08 15:28:24 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2009-02-03 18:32:38 +00:00
|
|
|
invalid_state:
|
|
|
|
{
|
|
|
|
send_generic_response (client, GST_RTSP_STS_METHOD_NOT_VALID_IN_THIS_STATE, request);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2008-10-09 12:29:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2009-02-13 18:52:05 +00:00
|
|
|
handle_play_request (GstRTSPClient *client, GstRTSPUrl *uri, GstRTSPSession *session, GstRTSPMessage *request)
|
2008-10-09 12:29:12 +00:00
|
|
|
{
|
|
|
|
GstRTSPSessionMedia *media;
|
|
|
|
GstRTSPMessage response = { 0 };
|
|
|
|
GstRTSPStatusCode code;
|
|
|
|
GString *rtpinfo;
|
2009-05-23 14:17:02 +00:00
|
|
|
guint n_streams, i, infocount;
|
2008-10-09 12:29:12 +00:00
|
|
|
guint timestamp, seqnum;
|
2009-02-04 16:00:42 +00:00
|
|
|
gchar *str;
|
2009-03-12 19:32:14 +00:00
|
|
|
GstRTSPTimeRange *range;
|
|
|
|
GstRTSPResult res;
|
2008-10-09 12:29:12 +00:00
|
|
|
|
2009-02-13 18:52:05 +00:00
|
|
|
if (!session)
|
2009-01-29 12:31:27 +00:00
|
|
|
goto no_session;
|
2008-10-09 12:29:12 +00:00
|
|
|
|
|
|
|
/* get a handle to the configuration of the media in the session */
|
2009-01-29 12:31:27 +00:00
|
|
|
media = gst_rtsp_session_get_media (session, uri);
|
2009-01-08 15:28:24 +00:00
|
|
|
if (!media)
|
|
|
|
goto not_found;
|
2008-10-09 12:29:12 +00:00
|
|
|
|
2009-02-03 18:32:38 +00:00
|
|
|
/* the session state must be playing or ready */
|
|
|
|
if (media->state != GST_RTSP_STATE_PLAYING &&
|
|
|
|
media->state != GST_RTSP_STATE_READY)
|
|
|
|
goto invalid_state;
|
|
|
|
|
2009-03-12 19:32:14 +00:00
|
|
|
/* parse the range header if we have one */
|
|
|
|
res = gst_rtsp_message_get_header (request, GST_RTSP_HDR_RANGE, &str, 0);
|
|
|
|
if (res == GST_RTSP_OK) {
|
|
|
|
if (gst_rtsp_range_parse (str, &range) == GST_RTSP_OK) {
|
|
|
|
/* we have a range, seek to the position */
|
|
|
|
gst_rtsp_media_seek (media->media, range);
|
|
|
|
gst_rtsp_range_free (range);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-10-09 12:29:12 +00:00
|
|
|
/* grab RTPInfo from the payloaders now */
|
|
|
|
rtpinfo = g_string_new ("");
|
2009-01-29 12:31:27 +00:00
|
|
|
|
2009-01-22 16:58:19 +00:00
|
|
|
n_streams = gst_rtsp_media_n_streams (media->media);
|
2009-05-23 14:17:02 +00:00
|
|
|
for (i = 0, infocount = 0; i < n_streams; i++) {
|
2009-03-11 15:45:12 +00:00
|
|
|
GstRTSPSessionStream *sstream;
|
2008-10-09 12:29:12 +00:00
|
|
|
GstRTSPMediaStream *stream;
|
2009-03-11 15:45:12 +00:00
|
|
|
GstRTSPTransport *tr;
|
2009-05-23 14:17:02 +00:00
|
|
|
GObjectClass *payobjclass;
|
2009-01-22 16:58:19 +00:00
|
|
|
gchar *uristr;
|
2008-10-09 12:29:12 +00:00
|
|
|
|
2009-03-11 15:45:12 +00:00
|
|
|
/* get the stream as configured in the session */
|
|
|
|
sstream = gst_rtsp_session_media_get_stream (media, i);
|
|
|
|
/* get the transport, if there is no transport configured, skip this stream */
|
|
|
|
if (!(tr = sstream->trans.transport))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (tr->lower_transport == GST_RTSP_LOWER_TRANS_TCP) {
|
|
|
|
/* for TCP, link the stream to the TCP connection of the client */
|
|
|
|
link_stream (client, sstream);
|
|
|
|
}
|
|
|
|
|
|
|
|
stream = sstream->media_stream;
|
2008-10-09 12:29:12 +00:00
|
|
|
|
2009-05-23 14:17:02 +00:00
|
|
|
payobjclass = G_OBJECT_GET_CLASS (stream->payloader);
|
|
|
|
|
|
|
|
if (g_object_class_find_property (payobjclass, "seqnum") &&
|
|
|
|
g_object_class_find_property (payobjclass, "timestamp")) {
|
|
|
|
GObject *payobj;
|
|
|
|
|
|
|
|
payobj = G_OBJECT (stream->payloader);
|
2008-10-09 12:29:12 +00:00
|
|
|
|
2009-05-23 14:17:02 +00:00
|
|
|
/* only add RTP-Info for streams with seqnum and timestamp */
|
|
|
|
g_object_get (payobj, "seqnum", &seqnum, "timestamp", ×tamp, NULL);
|
2009-01-22 16:58:19 +00:00
|
|
|
|
2009-05-23 14:17:02 +00:00
|
|
|
if (infocount > 0)
|
|
|
|
g_string_append (rtpinfo, ", ");
|
|
|
|
|
|
|
|
uristr = gst_rtsp_url_get_request_uri (uri);
|
|
|
|
g_string_append_printf (rtpinfo, "url=%s/stream=%d;seq=%u;rtptime=%u", uristr, i, seqnum, timestamp);
|
|
|
|
g_free (uristr);
|
|
|
|
|
|
|
|
infocount++;
|
|
|
|
}
|
2008-10-09 12:29:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* construct the response now */
|
|
|
|
code = GST_RTSP_STS_OK;
|
|
|
|
gst_rtsp_message_init_response (&response, code, gst_rtsp_status_as_text (code), request);
|
|
|
|
|
|
|
|
/* add the RTP-Info header */
|
2009-02-04 16:00:42 +00:00
|
|
|
str = g_string_free (rtpinfo, FALSE);
|
|
|
|
gst_rtsp_message_take_header (&response, GST_RTSP_HDR_RTP_INFO, str);
|
|
|
|
|
|
|
|
/* add the range */
|
|
|
|
str = gst_rtsp_range_to_string (&media->media->range);
|
|
|
|
gst_rtsp_message_take_header (&response, GST_RTSP_HDR_RANGE, str);
|
2008-10-09 12:29:12 +00:00
|
|
|
|
2009-02-13 11:57:45 +00:00
|
|
|
send_response (client, session, &response);
|
2008-10-09 12:29:12 +00:00
|
|
|
|
|
|
|
/* start playing after sending the request */
|
2009-03-11 15:45:12 +00:00
|
|
|
gst_rtsp_session_media_set_state (media, GST_STATE_PLAYING);
|
2009-02-03 18:32:38 +00:00
|
|
|
|
|
|
|
media->state = GST_RTSP_STATE_PLAYING;
|
2008-10-09 12:29:12 +00:00
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
/* ERRORS */
|
2009-01-29 12:31:27 +00:00
|
|
|
no_session:
|
2008-10-09 12:29:12 +00:00
|
|
|
{
|
2009-02-18 17:57:31 +00:00
|
|
|
send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, request);
|
2008-10-09 12:29:12 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2009-01-08 15:28:24 +00:00
|
|
|
not_found:
|
|
|
|
{
|
2009-01-29 17:51:02 +00:00
|
|
|
send_generic_response (client, GST_RTSP_STS_NOT_FOUND, request);
|
2009-01-08 15:28:24 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2009-02-03 18:32:38 +00:00
|
|
|
invalid_state:
|
|
|
|
{
|
|
|
|
send_generic_response (client, GST_RTSP_STS_METHOD_NOT_VALID_IN_THIS_STATE, request);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2008-10-09 12:29:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2009-02-13 18:52:05 +00:00
|
|
|
handle_setup_request (GstRTSPClient *client, GstRTSPUrl *uri, GstRTSPSession *session, GstRTSPMessage *request)
|
2008-10-09 12:29:12 +00:00
|
|
|
{
|
|
|
|
GstRTSPResult res;
|
|
|
|
gchar *transport;
|
|
|
|
gchar **transports;
|
|
|
|
gboolean have_transport;
|
|
|
|
GstRTSPTransport *ct, *st;
|
|
|
|
gint i;
|
|
|
|
GstRTSPLowerTrans supported;
|
|
|
|
GstRTSPMessage response = { 0 };
|
|
|
|
GstRTSPStatusCode code;
|
|
|
|
GstRTSPSessionStream *stream;
|
|
|
|
gchar *trans_str, *pos;
|
|
|
|
guint streamid;
|
|
|
|
GstRTSPSessionMedia *media;
|
|
|
|
gboolean need_session;
|
2009-03-04 11:44:01 +00:00
|
|
|
GstRTSPUrl *url;
|
2008-10-09 12:29:12 +00:00
|
|
|
|
2009-01-22 14:33:29 +00:00
|
|
|
/* the uri contains the stream number we added in the SDP config, which is
|
2009-01-22 16:58:19 +00:00
|
|
|
* always /stream=%d so we need to strip that off
|
|
|
|
* parse the stream we need to configure, look for the stream in the abspath
|
2009-01-22 14:33:29 +00:00
|
|
|
* first and then in the query. */
|
|
|
|
if (!(pos = strstr (uri->abspath, "/stream="))) {
|
|
|
|
if (!(pos = strstr (uri->query, "/stream=")))
|
|
|
|
goto bad_request;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* we can mofify the parse uri in place */
|
|
|
|
*pos = '\0';
|
|
|
|
|
|
|
|
pos += strlen ("/stream=");
|
|
|
|
if (sscanf (pos, "%u", &streamid) != 1)
|
|
|
|
goto bad_request;
|
|
|
|
|
2008-10-09 12:29:12 +00:00
|
|
|
/* parse the transport */
|
|
|
|
res = gst_rtsp_message_get_header (request, GST_RTSP_HDR_TRANSPORT, &transport, 0);
|
|
|
|
if (res != GST_RTSP_OK)
|
2009-01-29 12:31:27 +00:00
|
|
|
goto no_transport;
|
2008-10-09 12:29:12 +00:00
|
|
|
|
|
|
|
transports = g_strsplit (transport, ",", 0);
|
|
|
|
gst_rtsp_transport_new (&ct);
|
|
|
|
|
|
|
|
/* loop through the transports, try to parse */
|
|
|
|
have_transport = FALSE;
|
|
|
|
for (i = 0; transports[i]; i++) {
|
|
|
|
|
|
|
|
gst_rtsp_transport_init (ct);
|
|
|
|
res = gst_rtsp_transport_parse (transports[i], ct);
|
|
|
|
if (res == GST_RTSP_OK) {
|
|
|
|
have_transport = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
g_strfreev (transports);
|
|
|
|
|
|
|
|
/* we have not found anything usable, error out */
|
2009-01-30 15:24:10 +00:00
|
|
|
if (!have_transport)
|
2008-10-09 12:29:12 +00:00
|
|
|
goto unsupported_transports;
|
|
|
|
|
|
|
|
/* we have a valid transport, check if we can handle it */
|
|
|
|
if (ct->trans != GST_RTSP_TRANS_RTP)
|
|
|
|
goto unsupported_transports;
|
|
|
|
if (ct->profile != GST_RTSP_PROFILE_AVP)
|
|
|
|
goto unsupported_transports;
|
2009-01-30 15:24:10 +00:00
|
|
|
|
2008-10-09 12:29:12 +00:00
|
|
|
supported = GST_RTSP_LOWER_TRANS_UDP |
|
2009-03-06 18:34:14 +00:00
|
|
|
GST_RTSP_LOWER_TRANS_UDP_MCAST |
|
|
|
|
GST_RTSP_LOWER_TRANS_TCP;
|
2008-10-09 12:29:12 +00:00
|
|
|
if (!(ct->lower_transport & supported))
|
|
|
|
goto unsupported_transports;
|
|
|
|
|
2009-01-29 17:51:02 +00:00
|
|
|
if (client->session_pool == NULL)
|
|
|
|
goto no_pool;
|
|
|
|
|
2009-01-30 15:24:10 +00:00
|
|
|
/* we have a valid transport now, set the destination of the client. */
|
|
|
|
g_free (ct->destination);
|
2009-03-04 11:44:01 +00:00
|
|
|
url = gst_rtsp_connection_get_url (client->connection);
|
|
|
|
ct->destination = g_strdup (url->host);
|
2009-01-30 15:24:10 +00:00
|
|
|
|
2009-02-13 18:52:05 +00:00
|
|
|
if (session) {
|
|
|
|
g_object_ref (session);
|
2009-02-04 16:00:42 +00:00
|
|
|
/* get a handle to the configuration of the media in the session, this can
|
|
|
|
* return NULL if this is a new url to manage in this session. */
|
|
|
|
media = gst_rtsp_session_get_media (session, uri);
|
|
|
|
|
2008-10-09 12:29:12 +00:00
|
|
|
need_session = FALSE;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* create a session if this fails we probably reached our session limit or
|
|
|
|
* something. */
|
2009-01-29 12:31:27 +00:00
|
|
|
if (!(session = gst_rtsp_session_pool_create (client->session_pool)))
|
2008-10-09 12:29:12 +00:00
|
|
|
goto service_unavailable;
|
2009-02-04 16:00:42 +00:00
|
|
|
|
|
|
|
/* we need a new media configuration in this session */
|
|
|
|
media = NULL;
|
|
|
|
|
2008-10-09 12:29:12 +00:00
|
|
|
need_session = TRUE;
|
|
|
|
}
|
|
|
|
|
2009-02-04 16:00:42 +00:00
|
|
|
/* we have no media, find one and manage it */
|
|
|
|
if (media == NULL) {
|
2009-01-29 12:31:27 +00:00
|
|
|
GstRTSPMedia *m;
|
|
|
|
|
|
|
|
/* get a handle to the configuration of the media in the session */
|
|
|
|
if ((m = find_media (client, uri, request))) {
|
2009-01-30 15:24:10 +00:00
|
|
|
/* manage the media in our session now */
|
2009-01-29 12:31:27 +00:00
|
|
|
media = gst_rtsp_session_manage_media (session, uri, m);
|
|
|
|
}
|
|
|
|
}
|
2009-02-04 16:00:42 +00:00
|
|
|
|
|
|
|
/* if we stil have no media, error */
|
|
|
|
if (media == NULL)
|
2009-01-08 15:28:24 +00:00
|
|
|
goto not_found;
|
2008-10-09 12:29:12 +00:00
|
|
|
|
|
|
|
/* get a handle to the stream in the media */
|
2009-01-29 12:31:27 +00:00
|
|
|
if (!(stream = gst_rtsp_session_media_get_stream (media, streamid)))
|
|
|
|
goto no_stream;
|
2008-10-09 12:29:12 +00:00
|
|
|
|
2009-01-29 12:31:27 +00:00
|
|
|
st = gst_rtsp_session_stream_set_transport (stream, ct);
|
2008-10-09 12:29:12 +00:00
|
|
|
|
|
|
|
/* serialize the server transport */
|
|
|
|
trans_str = gst_rtsp_transport_as_text (st);
|
2009-01-30 16:06:26 +00:00
|
|
|
gst_rtsp_transport_free (st);
|
2008-10-09 12:29:12 +00:00
|
|
|
|
|
|
|
/* construct the response now */
|
|
|
|
code = GST_RTSP_STS_OK;
|
|
|
|
gst_rtsp_message_init_response (&response, code, gst_rtsp_status_as_text (code), request);
|
|
|
|
|
|
|
|
gst_rtsp_message_add_header (&response, GST_RTSP_HDR_TRANSPORT, trans_str);
|
|
|
|
g_free (trans_str);
|
|
|
|
|
2009-02-13 11:57:45 +00:00
|
|
|
send_response (client, session, &response);
|
2008-10-09 12:29:12 +00:00
|
|
|
|
2009-02-03 18:32:38 +00:00
|
|
|
/* update the state */
|
|
|
|
switch (media->state) {
|
|
|
|
case GST_RTSP_STATE_PLAYING:
|
|
|
|
case GST_RTSP_STATE_RECORDING:
|
|
|
|
case GST_RTSP_STATE_READY:
|
|
|
|
/* no state change */
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
media->state = GST_RTSP_STATE_READY;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
g_object_unref (session);
|
|
|
|
|
2008-10-09 12:29:12 +00:00
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
/* ERRORS */
|
|
|
|
bad_request:
|
|
|
|
{
|
2009-01-29 17:51:02 +00:00
|
|
|
send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, request);
|
2008-10-09 12:29:12 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2009-01-22 14:33:29 +00:00
|
|
|
not_found:
|
|
|
|
{
|
2009-01-29 17:51:02 +00:00
|
|
|
send_generic_response (client, GST_RTSP_STS_NOT_FOUND, request);
|
2009-02-13 18:52:05 +00:00
|
|
|
g_object_unref (session);
|
2009-01-22 14:33:29 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2009-01-29 12:31:27 +00:00
|
|
|
no_stream:
|
|
|
|
{
|
2009-01-29 17:51:02 +00:00
|
|
|
send_generic_response (client, GST_RTSP_STS_NOT_FOUND, request);
|
2009-02-04 16:00:42 +00:00
|
|
|
g_object_unref (media);
|
2009-02-13 18:52:05 +00:00
|
|
|
g_object_unref (session);
|
2008-10-09 12:29:12 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2009-01-29 12:31:27 +00:00
|
|
|
no_transport:
|
|
|
|
{
|
2009-01-29 17:51:02 +00:00
|
|
|
send_generic_response (client, GST_RTSP_STS_UNSUPPORTED_TRANSPORT, request);
|
2009-01-29 12:31:27 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2008-10-09 12:29:12 +00:00
|
|
|
unsupported_transports:
|
|
|
|
{
|
2009-01-29 17:51:02 +00:00
|
|
|
send_generic_response (client, GST_RTSP_STS_UNSUPPORTED_TRANSPORT, request);
|
2009-01-29 12:31:27 +00:00
|
|
|
gst_rtsp_transport_free (ct);
|
2008-10-09 12:29:12 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2009-01-29 17:51:02 +00:00
|
|
|
no_pool:
|
|
|
|
{
|
|
|
|
send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, request);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2008-10-09 12:29:12 +00:00
|
|
|
service_unavailable:
|
|
|
|
{
|
2009-01-29 17:51:02 +00:00
|
|
|
send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, request);
|
2008-10-09 12:29:12 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-22 14:33:29 +00:00
|
|
|
/* for the describe we must generate an SDP */
|
2008-10-09 12:29:12 +00:00
|
|
|
static gboolean
|
2009-02-13 18:52:05 +00:00
|
|
|
handle_describe_request (GstRTSPClient *client, GstRTSPUrl *uri, GstRTSPSession *session, GstRTSPMessage *request)
|
2008-10-09 12:29:12 +00:00
|
|
|
{
|
|
|
|
GstRTSPMessage response = { 0 };
|
2009-01-22 14:33:29 +00:00
|
|
|
GstRTSPResult res;
|
2008-10-09 12:29:12 +00:00
|
|
|
GstSDPMessage *sdp;
|
2009-01-29 12:31:27 +00:00
|
|
|
guint i;
|
|
|
|
gchar *str;
|
2009-01-22 16:58:19 +00:00
|
|
|
GstRTSPMedia *media;
|
2008-10-09 12:29:12 +00:00
|
|
|
|
2009-01-22 16:58:19 +00:00
|
|
|
/* check what kind of format is accepted, we don't really do anything with it
|
|
|
|
* and always return SDP for now. */
|
|
|
|
for (i = 0; i++; ) {
|
|
|
|
gchar *accept;
|
|
|
|
|
|
|
|
res = gst_rtsp_message_get_header (request, GST_RTSP_HDR_ACCEPT, &accept, i);
|
|
|
|
if (res == GST_RTSP_ENOTIMPL)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (g_ascii_strcasecmp (accept, "application/sdp") == 0)
|
|
|
|
break;
|
|
|
|
}
|
2008-10-09 12:29:12 +00:00
|
|
|
|
2009-01-29 12:31:27 +00:00
|
|
|
/* find the media object for the uri */
|
|
|
|
if (!(media = find_media (client, uri, request)))
|
2009-01-22 16:58:19 +00:00
|
|
|
goto no_media;
|
2009-01-22 17:35:17 +00:00
|
|
|
|
2009-01-29 12:31:27 +00:00
|
|
|
/* create an SDP for the media object */
|
|
|
|
if (!(sdp = gst_rtsp_sdp_from_media (media)))
|
|
|
|
goto no_sdp;
|
2008-10-09 12:29:12 +00:00
|
|
|
|
2009-02-04 16:00:42 +00:00
|
|
|
g_object_unref (media);
|
|
|
|
|
2008-10-09 12:29:12 +00:00
|
|
|
gst_rtsp_message_init_response (&response, GST_RTSP_STS_OK,
|
|
|
|
gst_rtsp_status_as_text (GST_RTSP_STS_OK), request);
|
|
|
|
|
2009-01-22 16:58:19 +00:00
|
|
|
gst_rtsp_message_add_header (&response, GST_RTSP_HDR_CONTENT_TYPE, "application/sdp");
|
|
|
|
|
2009-01-29 16:19:21 +00:00
|
|
|
/* content base for some clients that might screw up creating the setup uri */
|
2009-01-29 12:31:27 +00:00
|
|
|
str = g_strdup_printf ("rtsp://%s:%u%s/", uri->host, uri->port, uri->abspath);
|
|
|
|
gst_rtsp_message_add_header (&response, GST_RTSP_HDR_CONTENT_BASE, str);
|
|
|
|
g_free (str);
|
|
|
|
|
2008-10-09 12:29:12 +00:00
|
|
|
/* add SDP to the response body */
|
2009-01-29 12:31:27 +00:00
|
|
|
str = gst_sdp_message_as_text (sdp);
|
|
|
|
gst_rtsp_message_take_body (&response, (guint8 *)str, strlen (str));
|
2008-10-09 12:29:12 +00:00
|
|
|
gst_sdp_message_free (sdp);
|
|
|
|
|
2009-03-11 18:38:06 +00:00
|
|
|
send_response (client, session, &response);
|
2008-10-09 12:29:12 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
/* ERRORS */
|
2009-01-22 16:58:19 +00:00
|
|
|
no_media:
|
2009-01-22 14:33:29 +00:00
|
|
|
{
|
2009-01-29 12:31:27 +00:00
|
|
|
/* error reply is already sent */
|
2009-01-22 14:33:29 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2009-01-29 12:31:27 +00:00
|
|
|
no_sdp:
|
2009-01-22 15:53:16 +00:00
|
|
|
{
|
2009-01-29 17:51:02 +00:00
|
|
|
send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, request);
|
2009-01-29 12:31:27 +00:00
|
|
|
g_object_unref (media);
|
2009-01-22 15:53:16 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2008-10-09 12:29:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2009-02-13 18:52:05 +00:00
|
|
|
handle_options_request (GstRTSPClient *client, GstRTSPUrl *uri, GstRTSPSession *session, GstRTSPMessage *request)
|
2008-10-09 12:29:12 +00:00
|
|
|
{
|
|
|
|
GstRTSPMessage response = { 0 };
|
|
|
|
GstRTSPMethod options;
|
2009-01-29 12:31:27 +00:00
|
|
|
gchar *str;
|
2008-10-09 12:29:12 +00:00
|
|
|
|
|
|
|
options = GST_RTSP_DESCRIBE |
|
|
|
|
GST_RTSP_OPTIONS |
|
2009-03-12 19:31:22 +00:00
|
|
|
GST_RTSP_PAUSE |
|
2008-10-09 12:29:12 +00:00
|
|
|
GST_RTSP_PLAY |
|
|
|
|
GST_RTSP_SETUP |
|
|
|
|
GST_RTSP_TEARDOWN;
|
|
|
|
|
2009-01-29 12:31:27 +00:00
|
|
|
str = gst_rtsp_options_as_text (options);
|
2008-10-09 12:29:12 +00:00
|
|
|
|
2009-01-22 17:35:17 +00:00
|
|
|
gst_rtsp_message_init_response (&response, GST_RTSP_STS_OK,
|
|
|
|
gst_rtsp_status_as_text (GST_RTSP_STS_OK), request);
|
|
|
|
|
2009-01-29 12:31:27 +00:00
|
|
|
gst_rtsp_message_add_header (&response, GST_RTSP_HDR_PUBLIC, str);
|
|
|
|
g_free (str);
|
2008-10-09 12:29:12 +00:00
|
|
|
|
2009-03-11 18:38:06 +00:00
|
|
|
send_response (client, session, &response);
|
2009-01-29 12:31:27 +00:00
|
|
|
}
|
2008-10-09 12:29:12 +00:00
|
|
|
|
2009-01-29 12:31:27 +00:00
|
|
|
/* remove duplicate and trailing '/' */
|
|
|
|
static void
|
|
|
|
santize_uri (GstRTSPUrl *uri)
|
|
|
|
{
|
|
|
|
gint i, len;
|
|
|
|
gchar *s, *d;
|
|
|
|
gboolean have_slash, prev_slash;
|
|
|
|
|
|
|
|
s = d = uri->abspath;
|
|
|
|
len = strlen (uri->abspath);
|
|
|
|
|
|
|
|
prev_slash = FALSE;
|
|
|
|
|
|
|
|
for (i = 0; i < len; i++) {
|
|
|
|
have_slash = s[i] == '/';
|
|
|
|
*d = s[i];
|
|
|
|
if (!have_slash || !prev_slash)
|
|
|
|
d++;
|
|
|
|
prev_slash = have_slash;
|
|
|
|
}
|
|
|
|
len = d - uri->abspath;
|
|
|
|
/* don't remove the first slash if that's the only thing left */
|
|
|
|
if (len > 1 && *(d-1) == '/')
|
|
|
|
d--;
|
|
|
|
*d = '\0';
|
2008-10-09 12:29:12 +00:00
|
|
|
}
|
|
|
|
|
2009-03-11 18:38:06 +00:00
|
|
|
static void
|
|
|
|
client_session_finalized (GstRTSPClient *client, GstRTSPSession *session)
|
|
|
|
{
|
2009-03-11 19:03:06 +00:00
|
|
|
if (!(client->sessions = g_list_remove (client->sessions, session))) {
|
|
|
|
g_message ("all sessions finalized, close the connection");
|
2009-03-11 18:38:06 +00:00
|
|
|
g_source_destroy ((GSource*)client->watch);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
client_watch_session (GstRTSPClient *client, GstRTSPSession *session)
|
|
|
|
{
|
|
|
|
GList *walk;
|
|
|
|
|
|
|
|
for (walk = client->sessions; walk; walk = g_list_next (walk)) {
|
|
|
|
GstRTSPSession *msession = (GstRTSPSession *) walk->data;
|
|
|
|
|
|
|
|
/* we already know about this session */
|
|
|
|
if (msession == session)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_message ("watching session %p", session);
|
|
|
|
|
|
|
|
g_object_weak_ref (G_OBJECT (session), (GWeakNotify) client_session_finalized, client);
|
|
|
|
client->sessions = g_list_prepend (client->sessions, session);
|
|
|
|
}
|
|
|
|
|
2009-02-18 17:57:31 +00:00
|
|
|
static void
|
|
|
|
handle_request (GstRTSPClient *client, GstRTSPMessage *request)
|
2008-10-09 12:29:12 +00:00
|
|
|
{
|
|
|
|
GstRTSPMethod method;
|
2009-01-22 16:58:19 +00:00
|
|
|
const gchar *uristr;
|
|
|
|
GstRTSPUrl *uri;
|
2008-10-09 12:29:12 +00:00
|
|
|
GstRTSPVersion version;
|
2009-02-18 17:57:31 +00:00
|
|
|
GstRTSPResult res;
|
|
|
|
GstRTSPSession *session;
|
|
|
|
gchar *sessid;
|
2008-10-09 12:29:12 +00:00
|
|
|
|
|
|
|
#ifdef DEBUG
|
2009-02-18 17:57:31 +00:00
|
|
|
gst_rtsp_message_dump (request);
|
2008-10-09 12:29:12 +00:00
|
|
|
#endif
|
|
|
|
|
2009-03-11 15:45:12 +00:00
|
|
|
g_message ("client %p: received a request", client);
|
|
|
|
|
2009-02-18 17:57:31 +00:00
|
|
|
gst_rtsp_message_parse_request (request, &method, &uristr, &version);
|
2009-01-22 16:58:19 +00:00
|
|
|
|
2009-02-18 17:57:31 +00:00
|
|
|
if (version != GST_RTSP_VERSION_1_0) {
|
|
|
|
/* we can only handle 1.0 requests */
|
|
|
|
send_generic_response (client, GST_RTSP_STS_RTSP_VERSION_NOT_SUPPORTED, request);
|
|
|
|
return;
|
2008-10-09 12:29:12 +00:00
|
|
|
}
|
|
|
|
|
2009-02-18 17:57:31 +00:00
|
|
|
/* we always try to parse the url first */
|
|
|
|
if ((res = gst_rtsp_url_parse (uristr, &uri)) != GST_RTSP_OK) {
|
|
|
|
send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, request);
|
|
|
|
return;
|
2008-10-09 12:29:12 +00:00
|
|
|
}
|
|
|
|
|
2009-02-18 17:57:31 +00:00
|
|
|
/* sanitize the uri */
|
|
|
|
santize_uri (uri);
|
2008-10-09 12:29:12 +00:00
|
|
|
|
2009-02-18 17:57:31 +00:00
|
|
|
/* get the session if there is any */
|
|
|
|
res = gst_rtsp_message_get_header (request, GST_RTSP_HDR_SESSION, &sessid, 0);
|
|
|
|
if (res == GST_RTSP_OK) {
|
|
|
|
if (client->session_pool == NULL)
|
|
|
|
goto no_pool;
|
2008-10-09 12:29:12 +00:00
|
|
|
|
2009-02-18 17:57:31 +00:00
|
|
|
/* we had a session in the request, find it again */
|
|
|
|
if (!(session = gst_rtsp_session_pool_find (client->session_pool, sessid)))
|
|
|
|
goto session_not_found;
|
2008-10-09 12:29:12 +00:00
|
|
|
|
2009-03-11 19:03:06 +00:00
|
|
|
/* we add the session to the client list of watched sessions. When a session
|
|
|
|
* disappears because it times out, we will be notified. If all sessions are
|
|
|
|
* gone, we will close the connection */
|
2009-03-11 18:38:06 +00:00
|
|
|
client_watch_session (client, session);
|
2009-02-18 17:57:31 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
session = NULL;
|
2009-01-20 12:57:47 +00:00
|
|
|
|
2009-02-18 17:57:31 +00:00
|
|
|
/* now see what is asked and dispatch to a dedicated handler */
|
|
|
|
switch (method) {
|
|
|
|
case GST_RTSP_OPTIONS:
|
|
|
|
handle_options_request (client, uri, session, request);
|
|
|
|
break;
|
|
|
|
case GST_RTSP_DESCRIBE:
|
|
|
|
handle_describe_request (client, uri, session, request);
|
|
|
|
break;
|
|
|
|
case GST_RTSP_SETUP:
|
|
|
|
handle_setup_request (client, uri, session, request);
|
|
|
|
break;
|
|
|
|
case GST_RTSP_PLAY:
|
|
|
|
handle_play_request (client, uri, session, request);
|
|
|
|
break;
|
|
|
|
case GST_RTSP_PAUSE:
|
|
|
|
handle_pause_request (client, uri, session, request);
|
|
|
|
break;
|
|
|
|
case GST_RTSP_TEARDOWN:
|
|
|
|
handle_teardown_request (client, uri, session, request);
|
|
|
|
break;
|
|
|
|
case GST_RTSP_ANNOUNCE:
|
|
|
|
case GST_RTSP_GET_PARAMETER:
|
|
|
|
case GST_RTSP_RECORD:
|
|
|
|
case GST_RTSP_REDIRECT:
|
|
|
|
case GST_RTSP_SET_PARAMETER:
|
|
|
|
send_generic_response (client, GST_RTSP_STS_NOT_IMPLEMENTED, request);
|
|
|
|
break;
|
|
|
|
case GST_RTSP_INVALID:
|
|
|
|
default:
|
|
|
|
send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, request);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (session)
|
|
|
|
g_object_unref (session);
|
2009-01-20 12:57:47 +00:00
|
|
|
|
2009-02-18 17:57:31 +00:00
|
|
|
gst_rtsp_url_free (uri);
|
|
|
|
return;
|
2008-10-09 12:29:12 +00:00
|
|
|
|
|
|
|
/* ERRORS */
|
2009-02-18 17:57:31 +00:00
|
|
|
no_pool:
|
2008-10-09 12:29:12 +00:00
|
|
|
{
|
2009-02-18 17:57:31 +00:00
|
|
|
send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, request);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
session_not_found:
|
|
|
|
{
|
|
|
|
send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, request);
|
|
|
|
return;
|
2008-10-09 12:29:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-03-11 15:45:12 +00:00
|
|
|
static void
|
|
|
|
handle_data (GstRTSPClient *client, GstRTSPMessage *message)
|
|
|
|
{
|
|
|
|
GstRTSPResult res;
|
|
|
|
guint8 channel;
|
|
|
|
GList *walk;
|
|
|
|
guint8 *data;
|
|
|
|
guint size;
|
|
|
|
GstBuffer *buffer;
|
2009-04-14 21:38:58 +00:00
|
|
|
gboolean handled;
|
2009-03-11 15:45:12 +00:00
|
|
|
|
|
|
|
/* find the stream for this message */
|
|
|
|
res = gst_rtsp_message_parse_data (message, &channel);
|
|
|
|
if (res != GST_RTSP_OK)
|
|
|
|
return;
|
|
|
|
|
|
|
|
gst_rtsp_message_steal_body (message, &data, &size);
|
|
|
|
|
|
|
|
buffer = gst_buffer_new ();
|
|
|
|
GST_BUFFER_DATA (buffer) = data;
|
|
|
|
GST_BUFFER_MALLOCDATA (buffer) = data;
|
|
|
|
GST_BUFFER_SIZE (buffer) = size;
|
|
|
|
|
2009-04-14 21:38:58 +00:00
|
|
|
handled = FALSE;
|
2009-03-11 15:45:12 +00:00
|
|
|
for (walk = client->streams; walk; walk = g_list_next (walk)) {
|
|
|
|
GstRTSPSessionStream *stream = (GstRTSPSessionStream *) walk->data;
|
|
|
|
GstRTSPMediaStream *mstream;
|
|
|
|
GstRTSPTransport *tr;
|
|
|
|
|
|
|
|
/* get the transport, if there is no transport configured, skip this stream */
|
|
|
|
if (!(tr = stream->trans.transport))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* we also need a media stream */
|
|
|
|
if (!(mstream = stream->media_stream))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* check for TCP transport */
|
|
|
|
if (tr->lower_transport == GST_RTSP_LOWER_TRANS_TCP) {
|
|
|
|
/* dispatch to the stream based on the channel number */
|
|
|
|
if (tr->interleaved.min == channel) {
|
|
|
|
gst_rtsp_media_stream_rtp (mstream, buffer);
|
2009-04-14 21:38:58 +00:00
|
|
|
handled = TRUE;
|
|
|
|
break;
|
2009-03-11 15:45:12 +00:00
|
|
|
} else if (tr->interleaved.max == channel) {
|
|
|
|
gst_rtsp_media_stream_rtcp (mstream, buffer);
|
2009-04-14 21:38:58 +00:00
|
|
|
handled = TRUE;
|
|
|
|
break;
|
2009-03-11 15:45:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-04-14 21:38:58 +00:00
|
|
|
if (!handled)
|
|
|
|
gst_buffer_unref (buffer);
|
2009-03-11 15:45:12 +00:00
|
|
|
}
|
|
|
|
|
2008-10-09 12:29:12 +00:00
|
|
|
/**
|
|
|
|
* gst_rtsp_client_set_session_pool:
|
|
|
|
* @client: a #GstRTSPClient
|
|
|
|
* @pool: a #GstRTSPSessionPool
|
|
|
|
*
|
|
|
|
* Set @pool as the sessionpool for @client which it will use to find
|
2009-01-22 14:33:29 +00:00
|
|
|
* or allocate sessions. the sessionpool is usually inherited from the server
|
|
|
|
* that created the client but can be overridden later.
|
2008-10-09 12:29:12 +00:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_rtsp_client_set_session_pool (GstRTSPClient *client, GstRTSPSessionPool *pool)
|
|
|
|
{
|
|
|
|
GstRTSPSessionPool *old;
|
|
|
|
|
2009-01-29 12:31:27 +00:00
|
|
|
old = client->session_pool;
|
2009-01-22 14:33:29 +00:00
|
|
|
if (old != pool) {
|
|
|
|
if (pool)
|
|
|
|
g_object_ref (pool);
|
2009-01-29 12:31:27 +00:00
|
|
|
client->session_pool = pool;
|
2009-01-22 14:33:29 +00:00
|
|
|
if (old)
|
|
|
|
g_object_unref (old);
|
|
|
|
}
|
2008-10-09 12:29:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_rtsp_client_get_session_pool:
|
|
|
|
* @client: a #GstRTSPClient
|
|
|
|
*
|
|
|
|
* Get the #GstRTSPSessionPool object that @client uses to manage its sessions.
|
|
|
|
*
|
|
|
|
* Returns: a #GstRTSPSessionPool, unref after usage.
|
|
|
|
*/
|
|
|
|
GstRTSPSessionPool *
|
|
|
|
gst_rtsp_client_get_session_pool (GstRTSPClient *client)
|
|
|
|
{
|
|
|
|
GstRTSPSessionPool *result;
|
|
|
|
|
2009-01-29 12:31:27 +00:00
|
|
|
if ((result = client->session_pool))
|
2008-10-09 12:29:12 +00:00
|
|
|
g_object_ref (result);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2009-01-20 18:46:21 +00:00
|
|
|
/**
|
2009-01-22 14:33:29 +00:00
|
|
|
* gst_rtsp_client_set_media_mapping:
|
2009-01-20 18:46:21 +00:00
|
|
|
* @client: a #GstRTSPClient
|
2009-01-22 14:33:29 +00:00
|
|
|
* @mapping: a #GstRTSPMediaMapping
|
2009-01-20 18:46:21 +00:00
|
|
|
*
|
2009-01-22 14:33:29 +00:00
|
|
|
* Set @mapping as the media mapping for @client which it will use to map urls
|
|
|
|
* to media streams. These mapping is usually inherited from the server that
|
|
|
|
* created the client but can be overriden later.
|
2009-01-20 18:46:21 +00:00
|
|
|
*/
|
|
|
|
void
|
2009-01-22 14:33:29 +00:00
|
|
|
gst_rtsp_client_set_media_mapping (GstRTSPClient *client, GstRTSPMediaMapping *mapping)
|
2009-01-20 18:46:21 +00:00
|
|
|
{
|
2009-01-22 14:33:29 +00:00
|
|
|
GstRTSPMediaMapping *old;
|
2009-01-20 18:46:21 +00:00
|
|
|
|
2009-01-29 12:31:27 +00:00
|
|
|
old = client->media_mapping;
|
2009-01-20 18:46:21 +00:00
|
|
|
|
2009-01-22 14:33:29 +00:00
|
|
|
if (old != mapping) {
|
|
|
|
if (mapping)
|
|
|
|
g_object_ref (mapping);
|
2009-01-29 12:31:27 +00:00
|
|
|
client->media_mapping = mapping;
|
2009-01-20 18:46:21 +00:00
|
|
|
if (old)
|
|
|
|
g_object_unref (old);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-01-22 14:33:29 +00:00
|
|
|
* gst_rtsp_client_get_media_mapping:
|
2009-01-20 18:46:21 +00:00
|
|
|
* @client: a #GstRTSPClient
|
|
|
|
*
|
2009-01-22 14:33:29 +00:00
|
|
|
* Get the #GstRTSPMediaMapping object that @client uses to manage its sessions.
|
2009-01-20 18:46:21 +00:00
|
|
|
*
|
2009-01-22 14:33:29 +00:00
|
|
|
* Returns: a #GstRTSPMediaMapping, unref after usage.
|
2009-01-20 18:46:21 +00:00
|
|
|
*/
|
2009-01-22 14:33:29 +00:00
|
|
|
GstRTSPMediaMapping *
|
|
|
|
gst_rtsp_client_get_media_mapping (GstRTSPClient *client)
|
2009-01-20 18:46:21 +00:00
|
|
|
{
|
2009-01-22 14:33:29 +00:00
|
|
|
GstRTSPMediaMapping *result;
|
2009-01-20 18:46:21 +00:00
|
|
|
|
2009-01-29 12:31:27 +00:00
|
|
|
if ((result = client->media_mapping))
|
2009-01-20 18:46:21 +00:00
|
|
|
g_object_ref (result);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2009-02-18 17:57:31 +00:00
|
|
|
static GstRTSPResult
|
2009-02-19 14:53:50 +00:00
|
|
|
message_received (GstRTSPWatch *watch, GstRTSPMessage *message, gpointer user_data)
|
2009-02-18 17:57:31 +00:00
|
|
|
{
|
|
|
|
GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
|
|
|
|
|
2009-03-04 11:44:01 +00:00
|
|
|
switch (message->type) {
|
|
|
|
case GST_RTSP_MESSAGE_REQUEST:
|
|
|
|
handle_request (client, message);
|
|
|
|
break;
|
|
|
|
case GST_RTSP_MESSAGE_RESPONSE:
|
|
|
|
break;
|
|
|
|
case GST_RTSP_MESSAGE_DATA:
|
2009-03-11 15:45:12 +00:00
|
|
|
handle_data (client, message);
|
2009-03-04 11:44:01 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2009-02-18 17:57:31 +00:00
|
|
|
return GST_RTSP_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstRTSPResult
|
2009-02-19 14:53:50 +00:00
|
|
|
message_sent (GstRTSPWatch *watch, guint cseq, gpointer user_data)
|
2009-02-18 17:57:31 +00:00
|
|
|
{
|
|
|
|
GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
|
|
|
|
|
|
|
|
g_message ("client %p: sent a message with cseq %d", client, cseq);
|
|
|
|
|
|
|
|
return GST_RTSP_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstRTSPResult
|
2009-02-19 14:53:50 +00:00
|
|
|
closed (GstRTSPWatch *watch, gpointer user_data)
|
2009-02-18 17:57:31 +00:00
|
|
|
{
|
|
|
|
GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
|
2009-03-04 11:44:01 +00:00
|
|
|
const gchar *tunnelid;
|
2009-02-18 17:57:31 +00:00
|
|
|
|
|
|
|
g_message ("client %p: connection closed", client);
|
|
|
|
|
2009-03-04 15:33:21 +00:00
|
|
|
if ((tunnelid = gst_rtsp_connection_get_tunnelid (client->connection))) {
|
|
|
|
g_mutex_lock (tunnels_lock);
|
|
|
|
g_hash_table_remove (tunnels, tunnelid);
|
|
|
|
g_mutex_unlock (tunnels_lock);
|
|
|
|
}
|
2009-03-04 11:44:01 +00:00
|
|
|
|
2009-03-11 15:45:12 +00:00
|
|
|
/* remove all streams that are streaming over this client connection */
|
|
|
|
unlink_streams (client);
|
|
|
|
|
2009-02-18 17:57:31 +00:00
|
|
|
return GST_RTSP_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstRTSPResult
|
2009-02-19 14:53:50 +00:00
|
|
|
error (GstRTSPWatch *watch, GstRTSPResult result, gpointer user_data)
|
2009-02-18 17:57:31 +00:00
|
|
|
{
|
|
|
|
GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
|
|
|
|
gchar *str;
|
|
|
|
|
|
|
|
str = gst_rtsp_strresult (result);
|
|
|
|
g_message ("client %p: received an error %s", client, str);
|
|
|
|
g_free (str);
|
|
|
|
|
|
|
|
return GST_RTSP_OK;
|
|
|
|
}
|
|
|
|
|
2009-03-04 11:44:01 +00:00
|
|
|
static GstRTSPStatusCode
|
|
|
|
tunnel_start (GstRTSPWatch *watch, gpointer user_data)
|
|
|
|
{
|
|
|
|
GstRTSPClient *client;
|
|
|
|
const gchar *tunnelid;
|
|
|
|
|
|
|
|
client = GST_RTSP_CLIENT (user_data);
|
|
|
|
|
|
|
|
g_message ("client %p: tunnel start", client);
|
|
|
|
|
|
|
|
/* store client in the pending tunnels */
|
|
|
|
tunnelid = gst_rtsp_connection_get_tunnelid (client->connection);
|
|
|
|
|
|
|
|
g_message ("client %p: inserting %s", client, tunnelid);
|
|
|
|
|
|
|
|
/* we can't have two clients connecting with the same tunnelid */
|
|
|
|
g_mutex_lock (tunnels_lock);
|
|
|
|
if (g_hash_table_lookup (tunnels, tunnelid))
|
|
|
|
goto tunnel_existed;
|
|
|
|
|
|
|
|
g_hash_table_insert (tunnels, g_strdup (tunnelid), g_object_ref (client));
|
|
|
|
g_mutex_unlock (tunnels_lock);
|
|
|
|
|
|
|
|
return GST_RTSP_STS_OK;
|
|
|
|
|
|
|
|
/* ERRORS */
|
|
|
|
tunnel_existed:
|
|
|
|
{
|
|
|
|
g_mutex_unlock (tunnels_lock);
|
|
|
|
g_message ("client %p: tunnel session %s existed", client, tunnelid);
|
|
|
|
return GST_RTSP_STS_SERVICE_UNAVAILABLE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstRTSPResult
|
|
|
|
tunnel_complete (GstRTSPWatch *watch, gpointer user_data)
|
|
|
|
{
|
|
|
|
const gchar *tunnelid;
|
|
|
|
GstRTSPClient *client = GST_RTSP_CLIENT (user_data);
|
|
|
|
GstRTSPClient *oclient;
|
|
|
|
|
|
|
|
g_message ("client %p: tunnel complete", client);
|
|
|
|
|
|
|
|
/* find previous tunnel */
|
|
|
|
tunnelid = gst_rtsp_connection_get_tunnelid (client->connection);
|
|
|
|
|
|
|
|
g_mutex_lock (tunnels_lock);
|
|
|
|
if (!(oclient = g_hash_table_lookup (tunnels, tunnelid)))
|
|
|
|
goto no_tunnel;
|
|
|
|
|
|
|
|
/* remove the old client from the table. ref before because removing it will
|
|
|
|
* remove the ref to it. */
|
|
|
|
g_object_ref (oclient);
|
|
|
|
g_hash_table_remove (tunnels, tunnelid);
|
|
|
|
g_mutex_unlock (tunnels_lock);
|
|
|
|
|
|
|
|
g_message ("client %p: found tunnel %p", client, oclient);
|
|
|
|
|
|
|
|
/* merge the tunnels into the first client */
|
|
|
|
gst_rtsp_connection_do_tunnel (oclient->connection, client->connection);
|
|
|
|
gst_rtsp_watch_reset (oclient->watch);
|
|
|
|
g_object_unref (oclient);
|
|
|
|
|
|
|
|
/* we don't need this watch anymore */
|
|
|
|
g_source_remove (client->watchid);
|
|
|
|
|
|
|
|
return GST_RTSP_OK;
|
|
|
|
|
|
|
|
/* ERRORS */
|
|
|
|
no_tunnel:
|
|
|
|
{
|
|
|
|
g_mutex_unlock (tunnels_lock);
|
|
|
|
g_message ("client %p: tunnel session %s not found", client, tunnelid);
|
|
|
|
return GST_RTSP_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-02-19 14:53:50 +00:00
|
|
|
static GstRTSPWatchFuncs watch_funcs = {
|
2009-02-18 17:57:31 +00:00
|
|
|
message_received,
|
|
|
|
message_sent,
|
|
|
|
closed,
|
2009-03-04 11:44:01 +00:00
|
|
|
error,
|
|
|
|
tunnel_start,
|
|
|
|
tunnel_complete
|
2009-02-18 17:57:31 +00:00
|
|
|
};
|
|
|
|
|
2008-10-09 12:29:12 +00:00
|
|
|
/**
|
|
|
|
* gst_rtsp_client_attach:
|
|
|
|
* @client: a #GstRTSPClient
|
2009-01-19 18:34:29 +00:00
|
|
|
* @channel: a #GIOChannel
|
2008-10-09 12:29:12 +00:00
|
|
|
*
|
2009-01-19 18:34:29 +00:00
|
|
|
* Accept a new connection for @client on the socket in @source.
|
2008-10-09 12:29:12 +00:00
|
|
|
*
|
|
|
|
* This function should be called when the client properties and urls are fully
|
|
|
|
* configured and the client is ready to start.
|
|
|
|
*
|
|
|
|
* Returns: %TRUE if the client could be accepted.
|
|
|
|
*/
|
|
|
|
gboolean
|
2009-01-19 18:34:29 +00:00
|
|
|
gst_rtsp_client_accept (GstRTSPClient *client, GIOChannel *channel)
|
2008-10-09 12:29:12 +00:00
|
|
|
{
|
2009-02-18 17:57:31 +00:00
|
|
|
int sock;
|
|
|
|
GstRTSPConnection *conn;
|
|
|
|
GstRTSPResult res;
|
|
|
|
GSource *source;
|
|
|
|
GMainContext *context;
|
2009-03-04 11:44:01 +00:00
|
|
|
GstRTSPUrl *url;
|
2009-02-18 17:57:31 +00:00
|
|
|
|
|
|
|
/* a new client connected. */
|
|
|
|
sock = g_io_channel_unix_get_fd (channel);
|
|
|
|
|
|
|
|
GST_RTSP_CHECK (gst_rtsp_connection_accept (sock, &conn), accept_failed);
|
2009-01-29 17:51:02 +00:00
|
|
|
|
2009-03-04 11:44:01 +00:00
|
|
|
url = gst_rtsp_connection_get_url (conn);
|
|
|
|
g_message ("added new client %p ip %s:%d", client,
|
|
|
|
url->host, url->port);
|
2008-10-09 12:29:12 +00:00
|
|
|
|
2009-02-18 17:57:31 +00:00
|
|
|
client->connection = conn;
|
|
|
|
|
2009-02-19 14:53:50 +00:00
|
|
|
/* create watch for the connection and attach */
|
|
|
|
client->watch = gst_rtsp_watch_new (client->connection, &watch_funcs,
|
2009-02-18 17:57:31 +00:00
|
|
|
g_object_ref (client), g_object_unref);
|
|
|
|
|
2009-02-19 14:53:50 +00:00
|
|
|
/* find the context to add the watch */
|
2009-02-18 17:57:31 +00:00
|
|
|
if ((source = g_main_current_source ()))
|
|
|
|
context = g_source_get_context (source);
|
|
|
|
else
|
|
|
|
context = NULL;
|
|
|
|
|
|
|
|
g_message ("attaching to context %p", context);
|
|
|
|
|
2009-03-04 11:44:01 +00:00
|
|
|
client->watchid = gst_rtsp_watch_attach (client->watch, context);
|
2009-02-19 14:53:50 +00:00
|
|
|
gst_rtsp_watch_unref (client->watch);
|
2008-10-09 12:29:12 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
/* ERRORS */
|
|
|
|
accept_failed:
|
|
|
|
{
|
2009-02-18 17:57:31 +00:00
|
|
|
gchar *str = gst_rtsp_strresult (res);
|
|
|
|
|
|
|
|
g_error ("Could not accept client on server socket %d: %s",
|
|
|
|
sock, str);
|
|
|
|
g_free (str);
|
2009-01-29 17:51:02 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2008-10-09 12:29:12 +00:00
|
|
|
}
|