2 * Copyright (C) 2008 Wim Taymans <wim.taymans at gmail.com>
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.
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.
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.
20 #include "rtsp-session-pool.h"
24 #define DEFAULT_MAX_SESSIONS 0
33 static void gst_rtsp_session_pool_get_property (GObject *object, guint propid,
34 GValue *value, GParamSpec *pspec);
35 static void gst_rtsp_session_pool_set_property (GObject *object, guint propid,
36 const GValue *value, GParamSpec *pspec);
37 static void gst_rtsp_session_pool_finalize (GObject * object);
39 static gchar * create_session_id (GstRTSPSessionPool *pool);
41 G_DEFINE_TYPE (GstRTSPSessionPool, gst_rtsp_session_pool, G_TYPE_OBJECT);
44 gst_rtsp_session_pool_class_init (GstRTSPSessionPoolClass * klass)
46 GObjectClass *gobject_class;
48 gobject_class = G_OBJECT_CLASS (klass);
50 gobject_class->get_property = gst_rtsp_session_pool_get_property;
51 gobject_class->set_property = gst_rtsp_session_pool_set_property;
52 gobject_class->finalize = gst_rtsp_session_pool_finalize;
54 g_object_class_install_property (gobject_class, PROP_MAX_SESSIONS,
55 g_param_spec_uint ("max-sessions", "Max Sessions",
56 "the maximum amount of sessions (0 = unlimited)",
57 0, G_MAXUINT, DEFAULT_MAX_SESSIONS,
58 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
60 klass->create_session_id = create_session_id;
64 gst_rtsp_session_pool_init (GstRTSPSessionPool * pool)
66 pool->lock = g_mutex_new ();
67 pool->sessions = g_hash_table_new_full (g_str_hash, g_str_equal,
68 NULL, g_object_unref);
69 pool->max_sessions = DEFAULT_MAX_SESSIONS;
73 gst_rtsp_session_pool_finalize (GObject * object)
75 GstRTSPSessionPool * pool = GST_RTSP_SESSION_POOL (object);
77 g_mutex_free (pool->lock);
78 g_hash_table_unref (pool->sessions);
80 G_OBJECT_CLASS (gst_rtsp_session_pool_parent_class)->finalize (object);
84 gst_rtsp_session_pool_get_property (GObject *object, guint propid,
85 GValue *value, GParamSpec *pspec)
87 GstRTSPSessionPool *pool = GST_RTSP_SESSION_POOL (object);
90 case PROP_MAX_SESSIONS:
91 g_mutex_lock (pool->lock);
92 g_value_set_uint (value, pool->max_sessions);
93 g_mutex_unlock (pool->lock);
96 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, propid, pspec);
102 gst_rtsp_session_pool_set_property (GObject *object, guint propid,
103 const GValue *value, GParamSpec *pspec)
105 GstRTSPSessionPool *pool = GST_RTSP_SESSION_POOL (object);
108 case PROP_MAX_SESSIONS:
109 g_mutex_lock (pool->lock);
110 pool->max_sessions = g_value_get_uint (value);
111 g_mutex_unlock (pool->lock);
114 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, propid, pspec);
120 * gst_rtsp_session_pool_new:
122 * Create a new #GstRTSPSessionPool instance.
124 * Returns: A new #GstRTSPSessionPool. g_object_unref() after usage.
127 gst_rtsp_session_pool_new (void)
129 GstRTSPSessionPool *result;
131 result = g_object_new (GST_TYPE_RTSP_SESSION_POOL, NULL);
137 * gst_rtsp_session_pool_set_max_sessions:
138 * @pool: a #GstRTSPSessionPool
139 * @max: the maximum number of sessions
141 * Configure the maximum allowed number of sessions in @pool to @max.
142 * A value of 0 means an unlimited amount of sessions.
145 gst_rtsp_session_pool_set_max_sessions (GstRTSPSessionPool *pool, guint max)
147 g_return_if_fail (GST_IS_RTSP_SESSION_POOL (pool));
149 g_mutex_lock (pool->lock);
150 pool->max_sessions = max;
151 g_mutex_unlock (pool->lock);
155 * gst_rtsp_session_pool_get_max_sessions:
156 * @pool: a #GstRTSPSessionPool
158 * Get the maximum allowed number of sessions in @pool. 0 means an unlimited
159 * amount of sessions.
161 * Returns: the maximum allowed number of sessions.
164 gst_rtsp_session_pool_get_max_sessions (GstRTSPSessionPool *pool)
168 g_return_val_if_fail (GST_IS_RTSP_SESSION_POOL (pool), 0);
170 g_mutex_lock (pool->lock);
171 result = pool->max_sessions;
172 g_mutex_unlock (pool->lock);
178 * gst_rtsp_session_pool_get_n_sessions:
179 * @pool: a #GstRTSPSessionPool
181 * Get the amount of active sessions in @pool.
183 * Returns: the amount of active sessions in @pool.
186 gst_rtsp_session_pool_get_n_sessions (GstRTSPSessionPool *pool)
190 g_return_val_if_fail (GST_IS_RTSP_SESSION_POOL (pool), 0);
192 g_mutex_lock (pool->lock);
193 result = g_hash_table_size (pool->sessions);
194 g_mutex_unlock (pool->lock);
200 * gst_rtsp_session_pool_find:
201 * @pool: the pool to search
202 * @sessionid: the session id
204 * Find the session with @sessionid in @pool. The access time of the session
205 * will be updated with gst_rtsp_session_touch().
207 * Returns: the #GstRTSPSession with @sessionid or %NULL when the session did
208 * not exist. g_object_unref() after usage.
211 gst_rtsp_session_pool_find (GstRTSPSessionPool *pool, const gchar *sessionid)
213 GstRTSPSession *result;
215 g_return_val_if_fail (GST_IS_RTSP_SESSION_POOL (pool), NULL);
216 g_return_val_if_fail (sessionid != NULL, NULL);
218 g_mutex_lock (pool->lock);
219 result = g_hash_table_lookup (pool->sessions, sessionid);
221 g_object_ref (result);
222 g_mutex_unlock (pool->lock);
225 gst_rtsp_session_touch (result);
231 create_session_id (GstRTSPSessionPool *pool)
236 for (i = 0; i < 16; i++) {
237 id[i] = g_random_int_range ('a', 'z');
240 return g_strndup (id, 16);
244 * gst_rtsp_session_pool_create:
245 * @pool: a #GstRTSPSessionPool
247 * Create a new #GstRTSPSession object in @pool.
249 * Returns: a new #GstRTSPSession.
252 gst_rtsp_session_pool_create (GstRTSPSessionPool *pool)
254 GstRTSPSession *result = NULL;
255 GstRTSPSessionPoolClass *klass;
259 g_return_val_if_fail (GST_IS_RTSP_SESSION_POOL (pool), NULL);
261 klass = GST_RTSP_SESSION_POOL_GET_CLASS (pool);
265 /* start by creating a new random session id, we assume that this is random
266 * enough to not cause a collision, which we will check later */
267 if (klass->create_session_id)
268 id = klass->create_session_id (pool);
275 g_mutex_lock (pool->lock);
276 /* check session limit */
277 if (pool->max_sessions > 0) {
278 if (g_hash_table_size (pool->sessions) >= pool->max_sessions)
279 goto too_many_sessions;
281 /* check if the sessionid existed */
282 result = g_hash_table_lookup (pool->sessions, id);
284 /* found, retry with a different session id */
291 /* not found, create session and insert it in the pool */
292 result = gst_rtsp_session_new (id);
293 /* take additional ref for the pool */
294 g_object_ref (result);
295 g_hash_table_insert (pool->sessions, result->sessionid, result);
297 g_mutex_unlock (pool->lock);
300 } while (result == NULL);
307 g_warning ("no create_session_id vmethod in GstRTSPSessionPool %p", pool);
312 g_warning ("can't create session id with GstRTSPSessionPool %p", pool);
317 g_warning ("can't find unique sessionid for GstRTSPSessionPool %p", pool);
318 g_mutex_unlock (pool->lock);
324 g_warning ("session pool reached max sessions of %d", pool->max_sessions);
325 g_mutex_unlock (pool->lock);
332 * gst_rtsp_session_pool_remove:
333 * @pool: a #GstRTSPSessionPool
334 * @sess: a #GstRTSPSession
336 * Remove @sess from @pool, releasing the ref that the pool has on @sess.
338 * Returns: %TRUE if the session was found and removed.
341 gst_rtsp_session_pool_remove (GstRTSPSessionPool *pool, GstRTSPSession *sess)
345 g_return_val_if_fail (GST_IS_RTSP_SESSION_POOL (pool), FALSE);
346 g_return_val_if_fail (GST_IS_RTSP_SESSION (sess), FALSE);
348 g_mutex_lock (pool->lock);
349 found = g_hash_table_remove (pool->sessions, sess->sessionid);
350 g_mutex_unlock (pool->lock);
356 cleanup_func (gchar *sessionid, GstRTSPSession *sess, GstRTSPSessionPool *pool)
358 return gst_rtsp_session_is_expired (sess);
362 * gst_rtsp_session_pool_cleanup:
363 * @pool: a #GstRTSPSessionPool
365 * Inspect all the sessions in @pool and remove the sessions that are inactive
366 * for more than their timeout.
368 * Returns: the amount of sessions that got removed.
371 gst_rtsp_session_pool_cleanup (GstRTSPSessionPool *pool)
375 g_return_val_if_fail (GST_IS_RTSP_SESSION_POOL (pool), 0);
377 g_mutex_lock (pool->lock);
378 result = g_hash_table_foreach_remove (pool->sessions, (GHRFunc) cleanup_func, pool);
379 g_mutex_unlock (pool->lock);