gstreamer/gst/rtsp-server/rtsp-client.c

981 lines
25 KiB
C
Raw Normal View History

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"
#include "rtsp-sdp.h"
2008-10-09 12:29:12 +00:00
#undef DEBUG
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);
gobject_class->finalize = gst_rtsp_client_finalize;
2008-10-09 12:29:12 +00:00
}
static void
gst_rtsp_client_init (GstRTSPClient * client)
{
}
/* A client is finalized when the connection is broken */
static void
gst_rtsp_client_finalize (GObject * obj)
{
GstRTSPClient *client = GST_RTSP_CLIENT (obj);
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);
G_OBJECT_CLASS (gst_rtsp_client_parent_class)->finalize (obj);
}
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;
}
static void
send_response (GstRTSPClient *client, GstRTSPMessage *response)
{
#ifdef DEBUG
gst_rtsp_message_dump (response);
#endif
gst_rtsp_connection_send (client->connection, response, NULL);
2009-01-30 16:06:26 +00:00
gst_rtsp_message_unset (response);
}
2008-10-09 12:29:12 +00:00
static void
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);
send_response (client, &response);
}
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
}
/* 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. */
static GstRTSPMedia *
find_media (GstRTSPClient *client, GstRTSPUrl *uri, GstRTSPMessage *request)
{
GstRTSPMediaFactory *factory;
GstRTSPMedia *media;
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;
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;
/* 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);
client->media = g_object_ref (media);
}
else {
/* we have seen this uri before, used cached media */
media = g_object_ref (client->media);
g_message ("reusing cached media %p", media);
}
return media;
/* ERRORS */
no_mapping:
{
send_generic_response (client, GST_RTSP_STS_NOT_FOUND, request);
return NULL;
}
no_factory:
{
send_generic_response (client, GST_RTSP_STS_NOT_FOUND, request);
return NULL;
}
no_media:
{
send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, request);
g_object_unref (factory);
return NULL;
}
no_prepare:
{
send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, request);
g_object_unref (media);
g_object_unref (factory);
return NULL;
}
}
/* Get the session or NULL when there was no session */
static GstRTSPSession *
ensure_session (GstRTSPClient *client, GstRTSPMessage *request)
2008-10-09 12:29:12 +00:00
{
GstRTSPResult res;
GstRTSPSession *session;
gchar *sessid;
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
/* we had a session in the request, find it again */
if (!(session = gst_rtsp_session_pool_find (client->session_pool, sessid)))
2008-10-09 12:29:12 +00:00
goto session_not_found;
}
else
goto service_unavailable;
return session;
/* ERRORS */
no_pool:
{
send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, request);
return NULL;
}
session_not_found:
{
send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, request);
return NULL;
}
service_unavailable:
{
send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, request);
return NULL;
}
}
static gboolean
handle_teardown_request (GstRTSPClient *client, GstRTSPUrl *uri, GstRTSPMessage *request)
{
GstRTSPSessionMedia *media;
GstRTSPSession *session;
GstRTSPMessage response = { 0 };
GstRTSPStatusCode code;
if (!(session = ensure_session (client, request)))
goto no_session;
2008-10-09 12:29:12 +00:00
/* get a handle to the configuration of the media in the session */
media = gst_rtsp_session_get_media (session, uri);
if (!media)
goto not_found;
2008-10-09 12:29:12 +00:00
gst_rtsp_session_media_stop (media);
gst_rtsp_session_pool_remove (client->session_pool, session);
2008-10-09 12:29:12 +00:00
g_object_unref (session);
/* remove the session id from the request, which will also remove it from the
* response */
gst_rtsp_message_remove_header (request, GST_RTSP_HDR_SESSION, -1);
/* construct the response now */
code = GST_RTSP_STS_OK;
gst_rtsp_message_init_response (&response, code, gst_rtsp_status_as_text (code), request);
send_response (client, &response);
2008-10-09 12:29:12 +00:00
return FALSE;
/* ERRORS */
no_session:
2008-10-09 12:29:12 +00:00
{
/* error was sent already */
2008-10-09 12:29:12 +00:00
return FALSE;
}
not_found:
{
send_generic_response (client, GST_RTSP_STS_NOT_FOUND, request);
return FALSE;
}
2008-10-09 12:29:12 +00:00
}
static gboolean
handle_pause_request (GstRTSPClient *client, GstRTSPUrl *uri, GstRTSPMessage *request)
2008-10-09 12:29:12 +00:00
{
GstRTSPSessionMedia *media;
GstRTSPSession *session;
GstRTSPMessage response = { 0 };
GstRTSPStatusCode code;
if (!(session = ensure_session (client, request)))
goto no_session;
2008-10-09 12:29:12 +00:00
/* get a handle to the configuration of the media in the session */
media = gst_rtsp_session_get_media (session, uri);
if (!media)
goto not_found;
2008-10-09 12:29:12 +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);
send_response (client, &response);
2008-10-09 12:29:12 +00:00
/* the state is now READY */
media->state = GST_RTSP_STATE_READY;
g_object_unref (session);
2008-10-09 12:29:12 +00:00
return FALSE;
/* ERRORS */
no_session:
2008-10-09 12:29:12 +00:00
{
return FALSE;
}
not_found:
{
send_generic_response (client, GST_RTSP_STS_NOT_FOUND, request);
return FALSE;
}
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
handle_play_request (GstRTSPClient *client, GstRTSPUrl *uri, GstRTSPMessage *request)
2008-10-09 12:29:12 +00:00
{
GstRTSPSessionMedia *media;
GstRTSPSession *session;
GstRTSPMessage response = { 0 };
GstRTSPStatusCode code;
GString *rtpinfo;
guint n_streams, i;
guint timestamp, seqnum;
if (!(session = ensure_session (client, request)))
goto no_session;
2008-10-09 12:29:12 +00:00
/* get a handle to the configuration of the media in the session */
media = gst_rtsp_session_get_media (session, uri);
if (!media)
goto not_found;
2008-10-09 12:29:12 +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 ("");
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;
gchar *uristr;
2008-10-09 12:29:12 +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", &timestamp, NULL);
if (i > 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);
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 */
gst_rtsp_message_add_header (&response, GST_RTSP_HDR_RTP_INFO, rtpinfo->str);
g_string_free (rtpinfo, TRUE);
send_response (client, &response);
2008-10-09 12:29:12 +00:00
/* start playing after sending the request */
gst_rtsp_session_media_play (media);
media->state = GST_RTSP_STATE_PLAYING;
2008-10-09 12:29:12 +00:00
g_object_unref (session);
return FALSE;
/* ERRORS */
no_session:
2008-10-09 12:29:12 +00:00
{
/* error was sent */
2008-10-09 12:29:12 +00:00
return FALSE;
}
not_found:
{
send_generic_response (client, GST_RTSP_STS_NOT_FOUND, request);
return FALSE;
}
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
handle_setup_request (GstRTSPClient *client, GstRTSPUrl *uri, GstRTSPMessage *request)
2008-10-09 12:29:12 +00:00
{
GstRTSPResult res;
gchar *sessid;
gchar *transport;
gchar **transports;
gboolean have_transport;
GstRTSPTransport *ct, *st;
GstRTSPSession *session;
gint i;
GstRTSPLowerTrans supported;
GstRTSPMessage response = { 0 };
GstRTSPStatusCode code;
GstRTSPSessionStream *stream;
gchar *trans_str, *pos;
guint streamid;
GstRTSPSessionMedia *media;
gboolean need_session;
/* the uri contains the stream number we added in the SDP config, which is
* always /stream=%d so we need to strip that off
* parse the stream we need to configure, look for the stream in the abspath
* 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)
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 */
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;
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;
if (client->session_pool == NULL)
goto no_pool;
/* we have a valid transport now, set the destination of the client. */
g_free (ct->destination);
ct->destination = g_strdup (inet_ntoa (client->address.sin_addr));
2008-10-09 12:29:12 +00:00
/* a setup request creates a session for a client, check if the client already
* sent a session id to us */
res = gst_rtsp_message_get_header (request, GST_RTSP_HDR_SESSION, &sessid, 0);
if (res == GST_RTSP_OK) {
/* we had a session in the request, find it again */
if (!(session = gst_rtsp_session_pool_find (client->session_pool, sessid)))
2008-10-09 12:29:12 +00:00
goto session_not_found;
need_session = FALSE;
}
else {
/* create a session if this fails we probably reached our session limit or
* something. */
if (!(session = gst_rtsp_session_pool_create (client->session_pool)))
2008-10-09 12:29:12 +00:00
goto service_unavailable;
need_session = TRUE;
}
if (need_session) {
GstRTSPMedia *m;
/* get a handle to the configuration of the media in the session */
if ((m = find_media (client, uri, request))) {
/* manage the media in our session now */
media = gst_rtsp_session_manage_media (session, uri, m);
}
}
2008-10-09 12:29:12 +00:00
/* get a handle to the configuration of the media in the session */
if (!(media = gst_rtsp_session_get_media (session, uri)))
goto not_found;
2008-10-09 12:29:12 +00:00
/* get a handle to the stream in the media */
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 */
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);
if (need_session)
gst_rtsp_message_add_header (&response, GST_RTSP_HDR_SESSION, session->sessionid);
2008-10-09 12:29:12 +00:00
gst_rtsp_message_add_header (&response, GST_RTSP_HDR_TRANSPORT, trans_str);
g_free (trans_str);
send_response (client, &response);
2008-10-09 12:29:12 +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:
{
send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, request);
2008-10-09 12:29:12 +00:00
return FALSE;
}
not_found:
{
send_generic_response (client, GST_RTSP_STS_NOT_FOUND, request);
return FALSE;
}
no_stream:
{
send_generic_response (client, GST_RTSP_STS_NOT_FOUND, request);
return FALSE;
}
2008-10-09 12:29:12 +00:00
session_not_found:
{
send_generic_response (client, GST_RTSP_STS_SESSION_NOT_FOUND, request);
2008-10-09 12:29:12 +00:00
return FALSE;
}
no_transport:
{
send_generic_response (client, GST_RTSP_STS_UNSUPPORTED_TRANSPORT, request);
return FALSE;
}
2008-10-09 12:29:12 +00:00
unsupported_transports:
{
send_generic_response (client, GST_RTSP_STS_UNSUPPORTED_TRANSPORT, request);
gst_rtsp_transport_free (ct);
2008-10-09 12:29:12 +00:00
return FALSE;
}
no_pool:
{
send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, request);
return FALSE;
}
2008-10-09 12:29:12 +00:00
service_unavailable:
{
send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, request);
2008-10-09 12:29:12 +00:00
return FALSE;
}
}
/* for the describe we must generate an SDP */
2008-10-09 12:29:12 +00:00
static gboolean
handle_describe_request (GstRTSPClient *client, GstRTSPUrl *uri, GstRTSPMessage *request)
2008-10-09 12:29:12 +00:00
{
GstRTSPMessage response = { 0 };
GstRTSPResult res;
2008-10-09 12:29:12 +00:00
GstSDPMessage *sdp;
guint i;
gchar *str;
GstRTSPMedia *media;
2008-10-09 12:29:12 +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
/* find the media object for the uri */
if (!(media = find_media (client, uri, request)))
goto no_media;
/* 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
gst_rtsp_message_init_response (&response, GST_RTSP_STS_OK,
gst_rtsp_status_as_text (GST_RTSP_STS_OK), request);
gst_rtsp_message_add_header (&response, GST_RTSP_HDR_CONTENT_TYPE, "application/sdp");
/* content base for some clients that might screw up creating the setup uri */
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 */
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);
send_response (client, &response);
2008-10-09 12:29:12 +00:00
return TRUE;
/* ERRORS */
no_media:
{
/* error reply is already sent */
return FALSE;
}
no_sdp:
{
send_generic_response (client, GST_RTSP_STS_SERVICE_UNAVAILABLE, request);
g_object_unref (media);
return FALSE;
}
2008-10-09 12:29:12 +00:00
}
static void
handle_options_request (GstRTSPClient *client, GstRTSPUrl *uri, GstRTSPMessage *request)
2008-10-09 12:29:12 +00:00
{
GstRTSPMessage response = { 0 };
GstRTSPMethod options;
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;
str = gst_rtsp_options_as_text (options);
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);
gst_rtsp_message_add_header (&response, GST_RTSP_HDR_PUBLIC, str);
g_free (str);
2008-10-09 12:29:12 +00:00
send_response (client, &response);
}
2008-10-09 12:29:12 +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
}
/* this function runs in a client specific thread and handles all rtsp messages
* with the client */
static gpointer
handle_client (GstRTSPClient *client)
{
GstRTSPMessage request = { 0 };
GstRTSPResult res;
GstRTSPMethod method;
const gchar *uristr;
GstRTSPUrl *uri;
2008-10-09 12:29:12 +00:00
GstRTSPVersion version;
while (TRUE) {
/* start by waiting for a message from the client */
res = gst_rtsp_connection_receive (client->connection, &request, NULL);
if (res < 0)
goto receive_failed;
#ifdef DEBUG
gst_rtsp_message_dump (&request);
#endif
gst_rtsp_message_parse_request (&request, &method, &uristr, &version);
2008-10-09 12:29:12 +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);
2008-10-09 12:29:12 +00:00
continue;
}
/* 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);
continue;
}
/* sanitize the uri */
santize_uri (uri);
2008-10-09 12:29:12 +00:00
/* now see what is asked and dispatch to a dedicated handler */
switch (method) {
case GST_RTSP_OPTIONS:
handle_options_request (client, uri, &request);
2008-10-09 12:29:12 +00:00
break;
case GST_RTSP_DESCRIBE:
handle_describe_request (client, uri, &request);
2008-10-09 12:29:12 +00:00
break;
case GST_RTSP_SETUP:
handle_setup_request (client, uri, &request);
2008-10-09 12:29:12 +00:00
break;
case GST_RTSP_PLAY:
handle_play_request (client, uri, &request);
2008-10-09 12:29:12 +00:00
break;
case GST_RTSP_PAUSE:
handle_pause_request (client, uri, &request);
2008-10-09 12:29:12 +00:00
break;
case GST_RTSP_TEARDOWN:
handle_teardown_request (client, uri, &request);
2008-10-09 12:29:12 +00:00
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);
2008-10-09 12:29:12 +00:00
break;
case GST_RTSP_INVALID:
default:
send_generic_response (client, GST_RTSP_STS_BAD_REQUEST, &request);
2008-10-09 12:29:12 +00:00
break;
}
gst_rtsp_url_free (uri);
2008-10-09 12:29:12 +00:00
}
g_object_unref (client);
return NULL;
/* ERRORS */
receive_failed:
{
2009-01-30 16:06:26 +00:00
gchar *str;
str = gst_rtsp_strresult (res);
g_message ("receive failed %d (%s), disconnect client %p", res,
2009-01-30 16:06:26 +00:00
str, client);
g_free (str);
gst_rtsp_message_unset (&request);
2008-10-09 12:29:12 +00:00
gst_rtsp_connection_close (client->connection);
g_object_unref (client);
return NULL;
}
}
/* called when we need to accept a new request from a client */
static gboolean
client_accept (GstRTSPClient *client, GIOChannel *channel)
2008-10-09 12:29:12 +00:00
{
/* a new client connected. */
int server_sock_fd, fd;
2008-10-09 12:29:12 +00:00
unsigned int address_len;
GstRTSPConnection *conn;
server_sock_fd = g_io_channel_unix_get_fd (channel);
2008-10-09 12:29:12 +00:00
address_len = sizeof (client->address);
memset (&client->address, 0, address_len);
fd = accept (server_sock_fd, (struct sockaddr *) &client->address,
2008-10-09 12:29:12 +00:00
&address_len);
if (fd == -1)
2008-10-09 12:29:12 +00:00
goto accept_failed;
/* now create the connection object */
gst_rtsp_connection_create (NULL, &conn);
conn->fd.fd = fd;
2008-10-09 12:29:12 +00:00
/* FIXME some hackery, we need to have a connection method to accept server
* connections */
gst_poll_add_fd (conn->fdset, &conn->fd);
g_message ("added new client %p ip %s with fd %d", client,
inet_ntoa (client->address.sin_addr), conn->fd.fd);
client->connection = conn;
2008-10-09 12:29:12 +00:00
return TRUE;
/* ERRORS */
accept_failed:
{
g_error ("Could not accept client on server socket %d: %s (%d)",
server_sock_fd, g_strerror (errno), errno);
return FALSE;
}
}
/**
* 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
* 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;
old = client->session_pool;
if (old != pool) {
if (pool)
g_object_ref (pool);
client->session_pool = pool;
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;
if ((result = client->session_pool))
2008-10-09 12:29:12 +00:00
g_object_ref (result);
return result;
}
/**
* gst_rtsp_client_set_media_mapping:
* @client: a #GstRTSPClient
* @mapping: a #GstRTSPMediaMapping
*
* 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.
*/
void
gst_rtsp_client_set_media_mapping (GstRTSPClient *client, GstRTSPMediaMapping *mapping)
{
GstRTSPMediaMapping *old;
old = client->media_mapping;
if (old != mapping) {
if (mapping)
g_object_ref (mapping);
client->media_mapping = mapping;
if (old)
g_object_unref (old);
}
}
/**
* gst_rtsp_client_get_media_mapping:
* @client: a #GstRTSPClient
*
* Get the #GstRTSPMediaMapping object that @client uses to manage its sessions.
*
* Returns: a #GstRTSPMediaMapping, unref after usage.
*/
GstRTSPMediaMapping *
gst_rtsp_client_get_media_mapping (GstRTSPClient *client)
{
GstRTSPMediaMapping *result;
if ((result = client->media_mapping))
g_object_ref (result);
return result;
}
2008-10-09 12:29:12 +00:00
/**
* gst_rtsp_client_attach:
* @client: a #GstRTSPClient
* @channel: a #GIOChannel
2008-10-09 12:29:12 +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
gst_rtsp_client_accept (GstRTSPClient *client, GIOChannel *channel)
2008-10-09 12:29:12 +00:00
{
GError *error = NULL;
if (!client_accept (client, channel))
2008-10-09 12:29:12 +00:00
goto accept_failed;
/* client accepted, spawn a thread for the client, we don't need to join the
* thread */
2008-10-09 12:29:12 +00:00
g_object_ref (client);
client->thread = g_thread_create ((GThreadFunc)handle_client, client, FALSE, &error);
if (client->thread == NULL)
goto no_thread;
2008-10-09 12:29:12 +00:00
return TRUE;
/* ERRORS */
accept_failed:
{
return FALSE;
}
no_thread:
{
if (error) {
g_warning ("could not create thread for client %p: %s", client, error->message);
g_error_free (error);
}
g_object_unref (client);
return FALSE;
}
2008-10-09 12:29:12 +00:00
}