Initial import
[platform/upstream/gst-rtsp-server.git] / src / rtsp-session-pool.h
1 /* GStreamer
2  * Copyright (C) 2008 Wim Taymans <wim.taymans at gmail.com>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #include <gst/gst.h>
21
22 #ifndef __GST_RTSP_SESSION_POOL_H__
23 #define __GST_RTSP_SESSION_POOL_H__
24
25 #include "rtsp-session.h"
26
27 G_BEGIN_DECLS
28
29 #define GST_TYPE_RTSP_SESSION_POOL              (gst_rtsp_session_pool_get_type ())
30 #define GST_IS_RTSP_SESSION_POOL(obj)           (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_RTSP_SESSION_POOL))
31 #define GST_IS_RTSP_SESSION_POOL_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_RTSP_SESSION_POOL))
32 #define GST_RTSP_SESSION_POOL_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_RTSP_SESSION_POOL, GstRTSPSessionPoolClass))
33 #define GST_RTSP_SESSION_POOL(obj)              (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_RTSP_SESSION_POOL, GstRTSPSessionPool))
34 #define GST_RTSP_SESSION_POOL_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_RTSP_SESSION_POOL, GstRTSPSessionPoolClass))
35 #define GST_RTSP_SESSION_POOL_CAST(obj)         ((GstRTSPSessionPool*)(obj))
36 #define GST_RTSP_SESSION_POOL_CLASS_CAST(klass) ((GstRTSPSessionPoolClass*)(klass))
37
38 typedef struct _GstRTSPSessionPool GstRTSPSessionPool;
39 typedef struct _GstRTSPSessionPoolClass GstRTSPSessionPoolClass;
40
41 /**
42  * GstRTSPSessionPool:
43  *
44  * An object that keeps track of the active sessions.
45  */
46 struct _GstRTSPSessionPool {
47   GObject       parent;
48
49   GMutex       *lock;
50   GHashTable   *sessions;
51 };
52
53 struct _GstRTSPSessionPoolClass {
54   GObjectClass  parent_class;
55 };
56
57 GType                 gst_rtsp_session_pool_get_type          (void);
58
59 GstRTSPSessionPool *  gst_rtsp_session_pool_new               (void);
60
61 GstRTSPSession *      gst_rtsp_session_pool_find              (GstRTSPSessionPool *pool,
62                                                                const gchar *sessionid);
63 GstRTSPSession *      gst_rtsp_session_pool_create            (GstRTSPSessionPool *pool);
64 void                  gst_rtsp_session_pool_remove            (GstRTSPSessionPool *pool,
65                                                                GstRTSPSession *sess);
66
67 G_END_DECLS
68
69 #endif /* __GST_RTSP_SESSION_POOL_H__ */