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 <gst/gst.h>
|
|
|
|
#include <gst/rtsp/gstrtspconnection.h>
|
|
|
|
|
|
|
|
#ifndef __GST_RTSP_CLIENT_H__
|
|
|
|
#define __GST_RTSP_CLIENT_H__
|
|
|
|
|
2011-01-12 09:42:52 +00:00
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
typedef struct _GstRTSPClient GstRTSPClient;
|
|
|
|
typedef struct _GstRTSPClientClass GstRTSPClientClass;
|
2011-01-12 12:16:08 +00:00
|
|
|
typedef struct _GstRTSPClientState GstRTSPClientState;
|
2011-01-12 09:42:52 +00:00
|
|
|
|
|
|
|
#include "rtsp-server.h"
|
2008-10-09 12:29:12 +00:00
|
|
|
#include "rtsp-media.h"
|
2009-01-22 14:33:29 +00:00
|
|
|
#include "rtsp-media-mapping.h"
|
2008-10-09 12:29:12 +00:00
|
|
|
#include "rtsp-session-pool.h"
|
2011-01-12 09:42:52 +00:00
|
|
|
#include "rtsp-auth.h"
|
2008-10-09 12:29:12 +00:00
|
|
|
|
|
|
|
#define GST_TYPE_RTSP_CLIENT (gst_rtsp_client_get_type ())
|
|
|
|
#define GST_IS_RTSP_CLIENT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_RTSP_CLIENT))
|
|
|
|
#define GST_IS_RTSP_CLIENT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_RTSP_CLIENT))
|
|
|
|
#define GST_RTSP_CLIENT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_RTSP_CLIENT, GstRTSPClientClass))
|
|
|
|
#define GST_RTSP_CLIENT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_RTSP_CLIENT, GstRTSPClient))
|
|
|
|
#define GST_RTSP_CLIENT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_RTSP_CLIENT, GstRTSPClientClass))
|
|
|
|
#define GST_RTSP_CLIENT_CAST(obj) ((GstRTSPClient*)(obj))
|
|
|
|
#define GST_RTSP_CLIENT_CLASS_CAST(klass) ((GstRTSPClientClass*)(klass))
|
|
|
|
|
2011-01-12 12:16:08 +00:00
|
|
|
/**
|
|
|
|
* GstRTSPClientState:
|
|
|
|
* @request: the complete request
|
|
|
|
* @uri: the complete url parsed from @request
|
|
|
|
* @method: the parsed method of @uri
|
|
|
|
* @session: the session, can be NULL
|
|
|
|
* @sessmedia: the session media for the url can be NULL
|
|
|
|
* @factory: the media factory for the url, can be NULL.
|
|
|
|
* @media: the session media for the url can be NULL
|
|
|
|
* @response: the response
|
|
|
|
*
|
|
|
|
* Information passed around containing the client state of a request.
|
|
|
|
*/
|
|
|
|
struct _GstRTSPClientState{
|
|
|
|
GstRTSPMessage *request;
|
|
|
|
GstRTSPUrl *uri;
|
|
|
|
GstRTSPMethod method;
|
|
|
|
GstRTSPSession *session;
|
|
|
|
GstRTSPSessionMedia *sessmedia;
|
|
|
|
GstRTSPMediaFactory *factory;
|
|
|
|
GstRTSPMedia *media;
|
|
|
|
GstRTSPMessage *response;
|
|
|
|
};
|
2011-01-11 23:17:54 +00:00
|
|
|
|
2009-01-20 12:57:47 +00:00
|
|
|
/**
|
|
|
|
* GstRTSPClient:
|
|
|
|
*
|
|
|
|
* @connection: the connection object handling the client request.
|
2009-03-11 15:45:12 +00:00
|
|
|
* @watch: watch for the connection
|
|
|
|
* @watchid: id of the watch
|
2010-03-16 17:37:18 +00:00
|
|
|
* @ip: ip address used by the client to connect to us
|
2009-03-11 15:45:12 +00:00
|
|
|
* @session_pool: handle to the session pool used by the client.
|
|
|
|
* @media_mapping: handle to the media mapping used by the client.
|
|
|
|
* @uri: cached uri
|
|
|
|
* @media: cached media
|
|
|
|
* @streams: a list of streams using @connection.
|
2009-03-11 18:38:06 +00:00
|
|
|
* @sessions: a list of sessions managed by @connection.
|
2009-01-20 12:57:47 +00:00
|
|
|
*
|
|
|
|
* The client structure.
|
|
|
|
*/
|
2008-10-09 12:29:12 +00:00
|
|
|
struct _GstRTSPClient {
|
|
|
|
GObject parent;
|
|
|
|
|
|
|
|
GstRTSPConnection *connection;
|
2009-02-19 14:53:50 +00:00
|
|
|
GstRTSPWatch *watch;
|
2009-03-04 11:44:01 +00:00
|
|
|
guint watchid;
|
2010-03-16 17:37:18 +00:00
|
|
|
gchar *server_ip;
|
|
|
|
gboolean is_ipv6;
|
2008-10-09 12:29:12 +00:00
|
|
|
|
2011-01-12 09:42:52 +00:00
|
|
|
GstRTSPServer *server;
|
2009-01-29 12:31:27 +00:00
|
|
|
GstRTSPSessionPool *session_pool;
|
|
|
|
GstRTSPMediaMapping *media_mapping;
|
2011-01-11 23:17:54 +00:00
|
|
|
GstRTSPAuth *auth;
|
2009-01-29 17:51:02 +00:00
|
|
|
|
|
|
|
GstRTSPUrl *uri;
|
|
|
|
GstRTSPMedia *media;
|
2009-03-11 15:45:12 +00:00
|
|
|
|
|
|
|
GList *streams;
|
2009-03-11 18:38:06 +00:00
|
|
|
GList *sessions;
|
2008-10-09 12:29:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GstRTSPClientClass {
|
|
|
|
GObjectClass parent_class;
|
2011-01-12 14:35:51 +00:00
|
|
|
|
|
|
|
/* signals */
|
|
|
|
void (*closed) (GstRTSPClient *client);
|
2008-10-09 12:29:12 +00:00
|
|
|
};
|
|
|
|
|
2009-01-20 18:46:21 +00:00
|
|
|
GType gst_rtsp_client_get_type (void);
|
|
|
|
|
|
|
|
GstRTSPClient * gst_rtsp_client_new (void);
|
2008-10-09 12:29:12 +00:00
|
|
|
|
2011-01-12 09:42:52 +00:00
|
|
|
void gst_rtsp_client_set_server (GstRTSPClient * client, GstRTSPServer * server);
|
|
|
|
GstRTSPServer * gst_rtsp_client_get_server (GstRTSPClient * client);
|
|
|
|
|
2010-12-28 17:31:26 +00:00
|
|
|
void gst_rtsp_client_set_session_pool (GstRTSPClient *client,
|
2009-01-20 18:46:21 +00:00
|
|
|
GstRTSPSessionPool *pool);
|
|
|
|
GstRTSPSessionPool * gst_rtsp_client_get_session_pool (GstRTSPClient *client);
|
2008-10-09 12:29:12 +00:00
|
|
|
|
2010-12-28 17:31:26 +00:00
|
|
|
void gst_rtsp_client_set_media_mapping (GstRTSPClient *client,
|
2009-01-22 14:33:29 +00:00
|
|
|
GstRTSPMediaMapping *mapping);
|
|
|
|
GstRTSPMediaMapping * gst_rtsp_client_get_media_mapping (GstRTSPClient *client);
|
2008-10-09 12:29:12 +00:00
|
|
|
|
2011-01-11 23:17:54 +00:00
|
|
|
void gst_rtsp_client_set_auth (GstRTSPClient *client, GstRTSPAuth *auth);
|
|
|
|
GstRTSPAuth * gst_rtsp_client_get_auth (GstRTSPClient *client);
|
|
|
|
|
|
|
|
|
2010-12-28 17:31:26 +00:00
|
|
|
gboolean gst_rtsp_client_accept (GstRTSPClient *client,
|
2009-01-20 18:46:21 +00:00
|
|
|
GIOChannel *channel);
|
2008-10-09 12:29:12 +00:00
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GST_RTSP_CLIENT_H__ */
|