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
|
|
|
|
|
|
|
#undef DEBUG
|
|
|
|
|
2009-02-10 15:24:13 +00:00
|
|
|
#define DEFAULT_TIMEOUT 60
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
|
|
|
PROP_TIMEOUT,
|
|
|
|
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);
|
|
|
|
|
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_uint ("timeout", "Timeout", "The client timeout",
|
|
|
|
0, G_MAXUINT, DEFAULT_TIMEOUT, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
|
|
|
|
|
|
|
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));
|
2008-10-09 12:29:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_rtsp_client_init (GstRTSPClient * client)
|
|
|
|
{
|
2009-02-10 15:24:13 +00:00
|
|
|
client->timeout = DEFAULT_TIMEOUT;
|
2008-10-09 12:29:12 +00:00
|
|
|
}
|
|
|
|
|
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-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_TIMEOUT:
|
|
|
|
g_value_set_uint (value, gst_rtsp_client_get_timeout (client));
|
|
|
|
break;
|
|
|
|
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_TIMEOUT:
|
|
|
|
gst_rtsp_client_set_timeout (client, g_value_get_uint (value));
|
|
|
|
break;
|
|
|
|
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-10 15:24:13 +00:00
|
|
|
GTimeVal timeout;
|
|
|
|
|
2009-02-04 16:00:42 +00:00
|
|
|
gst_rtsp_message_add_header (response, GST_RTSP_HDR_SERVER, "GStreamer RTSP server");
|
|
|
|
|
2009-01-29 12:31:27 +00:00
|
|
|
#ifdef DEBUG
|
2009-01-29 17:51:02 +00:00
|
|
|
gst_rtsp_message_dump (response);
|
2009-01-29 12:31:27 +00:00
|
|
|
#endif
|
|
|
|
|
2009-02-10 15:24:13 +00:00
|
|
|
timeout.tv_sec = client->timeout;
|
|
|
|
timeout.tv_usec = 0;
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* remove the session id from the response */
|
|
|
|
gst_rtsp_message_remove_header (response, GST_RTSP_HDR_SESSION, -1);
|
|
|
|
}
|
|
|
|
|
2009-02-18 17:57:31 +00:00
|
|
|
#if 0
|
2009-02-10 15:24:13 +00:00
|
|
|
gst_rtsp_connection_send (client->connection, response, &timeout);
|
2009-02-18 17:57:31 +00:00
|
|
|
#endif
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
gst_rtsp_session_media_stop (media);
|
|
|
|
|
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;
|
|
|
|
|
2008-10-09 12:29:12 +00:00
|
|
|
gst_rtsp_session_media_pause (media);
|
|
|
|
|
|
|
|
/* 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;
|
|
|
|
guint n_streams, i;
|
|
|
|
guint timestamp, seqnum;
|
2009-02-04 16:00:42 +00:00
|
|
|
gchar *str;
|
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;
|
|
|
|
|
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);
|
2008-10-09 12:29:12 +00:00
|
|
|
for (i = 0; i < n_streams; i++) {
|
|
|
|
GstRTSPMediaStream *stream;
|
2009-01-22 16:58:19 +00:00
|
|
|
gchar *uristr;
|
2008-10-09 12:29:12 +00:00
|
|
|
|
2009-01-22 16:58:19 +00:00
|
|
|
stream = gst_rtsp_media_get_stream (media->media, i);
|
2008-10-09 12:29:12 +00:00
|
|
|
|
|
|
|
g_object_get (G_OBJECT (stream->payloader), "seqnum", &seqnum, NULL);
|
|
|
|
g_object_get (G_OBJECT (stream->payloader), "timestamp", ×tamp, NULL);
|
|
|
|
|
|
|
|
if (i > 0)
|
|
|
|
g_string_append (rtpinfo, ", ");
|
2009-01-22 16:58:19 +00:00
|
|
|
|
|
|
|
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);
|
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 */
|
|
|
|
gst_rtsp_session_media_play (media);
|
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-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 |
|
|
|
|
GST_RTSP_LOWER_TRANS_UDP_MCAST | GST_RTSP_LOWER_TRANS_TCP;
|
|
|
|
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-02-18 17:57:31 +00:00
|
|
|
ct->destination = g_strdup (client->connection->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
|
|
|
|
|
|
|
/* setup the server transport from the client transport */
|
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-02-13 11:57:45 +00:00
|
|
|
send_response (client, NULL, &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 |
|
|
|
|
// GST_RTSP_PAUSE |
|
|
|
|
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-02-13 11:57:45 +00:00
|
|
|
send_response (client, NULL, &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-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-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-02-18 17:57:31 +00:00
|
|
|
client->timeout = gst_rtsp_session_get_timeout (session);
|
|
|
|
}
|
|
|
|
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-02-10 15:24:13 +00:00
|
|
|
/**
|
|
|
|
* gst_rtsp_client_set_timeout:
|
|
|
|
* @client: a #GstRTSPClient
|
|
|
|
* @timeout: a timeout in seconds
|
|
|
|
*
|
|
|
|
* Set the connection timeout to @timeout seconds for @client.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_rtsp_client_set_timeout (GstRTSPClient *client, guint timeout)
|
|
|
|
{
|
|
|
|
client->timeout = timeout;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_rtsp_client_get_timeout:
|
|
|
|
* @client: a #GstRTSPClient
|
|
|
|
*
|
|
|
|
* Get the connection timeout @client.
|
|
|
|
*
|
|
|
|
* Returns: the connection timeout for @client in seconds.
|
|
|
|
*/
|
|
|
|
guint
|
|
|
|
gst_rtsp_client_get_timeout (GstRTSPClient *client)
|
|
|
|
{
|
|
|
|
return client->timeout;
|
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
g_message ("client %p: received a message", client);
|
|
|
|
|
|
|
|
handle_request (client, message);
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
g_message ("client %p: connection closed", client);
|
|
|
|
|
|
|
|
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-02-19 14:53:50 +00:00
|
|
|
static GstRTSPWatchFuncs watch_funcs = {
|
2009-02-18 17:57:31 +00:00
|
|
|
message_received,
|
|
|
|
message_sent,
|
|
|
|
closed,
|
|
|
|
error
|
|
|
|
};
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
/* 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-02-18 17:57:31 +00:00
|
|
|
g_message ("added new client %p ip %s:%d with fd %d", client,
|
|
|
|
conn->url->host, conn->url->port, conn->fd.fd);
|
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-02-19 14:53:50 +00:00
|
|
|
gst_rtsp_watch_attach (client->watch, context);
|
|
|
|
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
|
|
|
}
|