Revert "rtsp-session-pool: Make sure session IDs are properly URI-escaped"
[platform/upstream/gstreamer.git] / gst / rtsp-server / rtsp-session-pool.c
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., 51 Franklin St, Fifth Floor,
17  * Boston, MA 02110-1301, USA.
18  */
19 /**
20  * SECTION:rtsp-session-pool
21  * @short_description: An object for managing sessions
22  * @see_also: #GstRTSPSession
23  *
24  * The #GstRTSPSessionPool object manages a list of #GstRTSPSession objects.
25  *
26  * The maximum number of sessions can be configured with
27  * gst_rtsp_session_pool_set_max_sessions(). The current number of sessions can
28  * be retrieved with gst_rtsp_session_pool_get_n_sessions().
29  *
30  * Use gst_rtsp_session_pool_create() to create a new #GstRTSPSession object.
31  * The session object can be found again with its id and
32  * gst_rtsp_session_pool_find().
33  *
34  * All sessions can be iterated with gst_rtsp_session_pool_filter().
35  *
36  * Run gst_rtsp_session_pool_cleanup() periodically to remove timed out sessions
37  * or use gst_rtsp_session_pool_create_watch() to be notified when session
38  * cleanup should be performed.
39  *
40  * Last reviewed on 2013-07-11 (1.0.0)
41  */
42
43 #include "rtsp-session-pool.h"
44
45 #define GST_RTSP_SESSION_POOL_GET_PRIVATE(obj)  \
46          (G_TYPE_INSTANCE_GET_PRIVATE ((obj), GST_TYPE_RTSP_SESSION_POOL, GstRTSPSessionPoolPrivate))
47
48 struct _GstRTSPSessionPoolPrivate
49 {
50   GMutex lock;                  /* protects everything in this struct */
51   guint max_sessions;
52   GHashTable *sessions;
53   guint sessions_cookie;
54 };
55
56 #define DEFAULT_MAX_SESSIONS 0
57
58 enum
59 {
60   PROP_0,
61   PROP_MAX_SESSIONS,
62   PROP_LAST
63 };
64
65 static const gchar session_id_charset[] =
66     { 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o',
67   'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'A', 'B', 'C', 'D',
68   'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S',
69   'T', 'U', 'V', 'W', 'X', 'Y', 'Z', '0', '1', '2', '3', '4', '5', '6', '7',
70   '8', '9', '$', '-', '_', '.', '+'
71 };
72
73 enum
74 {
75   SIGNAL_SESSION_REMOVED,
76   SIGNAL_LAST
77 };
78
79 static guint gst_rtsp_session_pool_signals[SIGNAL_LAST] = { 0 };
80
81 GST_DEBUG_CATEGORY_STATIC (rtsp_session_debug);
82 #define GST_CAT_DEFAULT rtsp_session_debug
83
84 static void gst_rtsp_session_pool_get_property (GObject * object, guint propid,
85     GValue * value, GParamSpec * pspec);
86 static void gst_rtsp_session_pool_set_property (GObject * object, guint propid,
87     const GValue * value, GParamSpec * pspec);
88 static void gst_rtsp_session_pool_finalize (GObject * object);
89
90 static gchar *create_session_id (GstRTSPSessionPool * pool);
91 static GstRTSPSession *create_session (GstRTSPSessionPool * pool,
92     const gchar * id);
93
94 G_DEFINE_TYPE (GstRTSPSessionPool, gst_rtsp_session_pool, G_TYPE_OBJECT);
95
96 static void
97 gst_rtsp_session_pool_class_init (GstRTSPSessionPoolClass * klass)
98 {
99   GObjectClass *gobject_class;
100
101   g_type_class_add_private (klass, sizeof (GstRTSPSessionPoolPrivate));
102
103   gobject_class = G_OBJECT_CLASS (klass);
104
105   gobject_class->get_property = gst_rtsp_session_pool_get_property;
106   gobject_class->set_property = gst_rtsp_session_pool_set_property;
107   gobject_class->finalize = gst_rtsp_session_pool_finalize;
108
109   g_object_class_install_property (gobject_class, PROP_MAX_SESSIONS,
110       g_param_spec_uint ("max-sessions", "Max Sessions",
111           "the maximum amount of sessions (0 = unlimited)",
112           0, G_MAXUINT, DEFAULT_MAX_SESSIONS,
113           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
114
115   gst_rtsp_session_pool_signals[SIGNAL_SESSION_REMOVED] =
116       g_signal_new ("session-removed", G_TYPE_FROM_CLASS (klass),
117       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPSessionPoolClass,
118           session_removed), NULL, NULL, g_cclosure_marshal_generic, G_TYPE_NONE,
119       1, GST_TYPE_RTSP_SESSION);
120
121   klass->create_session_id = create_session_id;
122   klass->create_session = create_session;
123
124   GST_DEBUG_CATEGORY_INIT (rtsp_session_debug, "rtspsessionpool", 0,
125       "GstRTSPSessionPool");
126 }
127
128 static void
129 gst_rtsp_session_pool_init (GstRTSPSessionPool * pool)
130 {
131   GstRTSPSessionPoolPrivate *priv = GST_RTSP_SESSION_POOL_GET_PRIVATE (pool);
132
133   pool->priv = priv;
134
135   g_mutex_init (&priv->lock);
136   priv->sessions = g_hash_table_new_full (g_str_hash, g_str_equal,
137       NULL, g_object_unref);
138   priv->max_sessions = DEFAULT_MAX_SESSIONS;
139 }
140
141 static GstRTSPFilterResult
142 remove_sessions_func (GstRTSPSessionPool * pool, GstRTSPSession * session,
143     gpointer user_data)
144 {
145   return GST_RTSP_FILTER_REMOVE;
146 }
147
148 static void
149 gst_rtsp_session_pool_finalize (GObject * object)
150 {
151   GstRTSPSessionPool *pool = GST_RTSP_SESSION_POOL (object);
152   GstRTSPSessionPoolPrivate *priv = pool->priv;
153
154   gst_rtsp_session_pool_filter (pool, remove_sessions_func, NULL);
155   g_hash_table_unref (priv->sessions);
156   g_mutex_clear (&priv->lock);
157
158   G_OBJECT_CLASS (gst_rtsp_session_pool_parent_class)->finalize (object);
159 }
160
161 static void
162 gst_rtsp_session_pool_get_property (GObject * object, guint propid,
163     GValue * value, GParamSpec * pspec)
164 {
165   GstRTSPSessionPool *pool = GST_RTSP_SESSION_POOL (object);
166
167   switch (propid) {
168     case PROP_MAX_SESSIONS:
169       g_value_set_uint (value, gst_rtsp_session_pool_get_max_sessions (pool));
170       break;
171     default:
172       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, propid, pspec);
173       break;
174   }
175 }
176
177 static void
178 gst_rtsp_session_pool_set_property (GObject * object, guint propid,
179     const GValue * value, GParamSpec * pspec)
180 {
181   GstRTSPSessionPool *pool = GST_RTSP_SESSION_POOL (object);
182
183   switch (propid) {
184     case PROP_MAX_SESSIONS:
185       gst_rtsp_session_pool_set_max_sessions (pool, g_value_get_uint (value));
186       break;
187     default:
188       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, propid, pspec);
189       break;
190   }
191 }
192
193 /**
194  * gst_rtsp_session_pool_new:
195  *
196  * Create a new #GstRTSPSessionPool instance.
197  *
198  * Returns: (transfer full): A new #GstRTSPSessionPool. g_object_unref() after
199  * usage.
200  */
201 GstRTSPSessionPool *
202 gst_rtsp_session_pool_new (void)
203 {
204   GstRTSPSessionPool *result;
205
206   result = g_object_new (GST_TYPE_RTSP_SESSION_POOL, NULL);
207
208   return result;
209 }
210
211 /**
212  * gst_rtsp_session_pool_set_max_sessions:
213  * @pool: a #GstRTSPSessionPool
214  * @max: the maximum number of sessions
215  *
216  * Configure the maximum allowed number of sessions in @pool to @max.
217  * A value of 0 means an unlimited amount of sessions.
218  */
219 void
220 gst_rtsp_session_pool_set_max_sessions (GstRTSPSessionPool * pool, guint max)
221 {
222   GstRTSPSessionPoolPrivate *priv;
223
224   g_return_if_fail (GST_IS_RTSP_SESSION_POOL (pool));
225
226   priv = pool->priv;
227
228   g_mutex_lock (&priv->lock);
229   priv->max_sessions = max;
230   g_mutex_unlock (&priv->lock);
231 }
232
233 /**
234  * gst_rtsp_session_pool_get_max_sessions:
235  * @pool: a #GstRTSPSessionPool
236  *
237  * Get the maximum allowed number of sessions in @pool. 0 means an unlimited
238  * amount of sessions.
239  *
240  * Returns: the maximum allowed number of sessions.
241  */
242 guint
243 gst_rtsp_session_pool_get_max_sessions (GstRTSPSessionPool * pool)
244 {
245   GstRTSPSessionPoolPrivate *priv;
246   guint result;
247
248   g_return_val_if_fail (GST_IS_RTSP_SESSION_POOL (pool), 0);
249
250   priv = pool->priv;
251
252   g_mutex_lock (&priv->lock);
253   result = priv->max_sessions;
254   g_mutex_unlock (&priv->lock);
255
256   return result;
257 }
258
259 /**
260  * gst_rtsp_session_pool_get_n_sessions:
261  * @pool: a #GstRTSPSessionPool
262  *
263  * Get the amount of active sessions in @pool.
264  *
265  * Returns: the amount of active sessions in @pool.
266  */
267 guint
268 gst_rtsp_session_pool_get_n_sessions (GstRTSPSessionPool * pool)
269 {
270   GstRTSPSessionPoolPrivate *priv;
271   guint result;
272
273   g_return_val_if_fail (GST_IS_RTSP_SESSION_POOL (pool), 0);
274
275   priv = pool->priv;
276
277   g_mutex_lock (&priv->lock);
278   result = g_hash_table_size (priv->sessions);
279   g_mutex_unlock (&priv->lock);
280
281   return result;
282 }
283
284 /**
285  * gst_rtsp_session_pool_find:
286  * @pool: the pool to search
287  * @sessionid: the session id
288  *
289  * Find the session with @sessionid in @pool. The access time of the session
290  * will be updated with gst_rtsp_session_touch().
291  *
292  * Returns: (transfer full) (nullable): the #GstRTSPSession with @sessionid
293  * or %NULL when the session did not exist. g_object_unref() after usage.
294  */
295 GstRTSPSession *
296 gst_rtsp_session_pool_find (GstRTSPSessionPool * pool, const gchar * sessionid)
297 {
298   GstRTSPSessionPoolPrivate *priv;
299   GstRTSPSession *result;
300
301   g_return_val_if_fail (GST_IS_RTSP_SESSION_POOL (pool), NULL);
302   g_return_val_if_fail (sessionid != NULL, NULL);
303
304   priv = pool->priv;
305
306   g_mutex_lock (&priv->lock);
307   result = g_hash_table_lookup (priv->sessions, sessionid);
308   if (result) {
309     g_object_ref (result);
310     gst_rtsp_session_touch (result);
311   }
312   g_mutex_unlock (&priv->lock);
313
314   return result;
315 }
316
317 static gchar *
318 create_session_id (GstRTSPSessionPool * pool)
319 {
320   gchar id[16];
321   gint i;
322
323   for (i = 0; i < 16; i++) {
324     id[i] =
325         session_id_charset[g_random_int_range (0,
326             G_N_ELEMENTS (session_id_charset))];
327   }
328
329   return g_strndup (id, 16);
330 }
331
332 static GstRTSPSession *
333 create_session (GstRTSPSessionPool * pool, const gchar * id)
334 {
335   return gst_rtsp_session_new (id);
336 }
337
338 /**
339  * gst_rtsp_session_pool_create:
340  * @pool: a #GstRTSPSessionPool
341  *
342  * Create a new #GstRTSPSession object in @pool.
343  *
344  * Returns: (transfer full): a new #GstRTSPSession.
345  */
346 GstRTSPSession *
347 gst_rtsp_session_pool_create (GstRTSPSessionPool * pool)
348 {
349   GstRTSPSessionPoolPrivate *priv;
350   GstRTSPSession *result = NULL;
351   GstRTSPSessionPoolClass *klass;
352   gchar *id = NULL;
353   guint retry;
354
355   g_return_val_if_fail (GST_IS_RTSP_SESSION_POOL (pool), NULL);
356
357   priv = pool->priv;
358
359   klass = GST_RTSP_SESSION_POOL_GET_CLASS (pool);
360
361   retry = 0;
362   do {
363     /* start by creating a new random session id, we assume that this is random
364      * enough to not cause a collision, which we will check later  */
365     if (klass->create_session_id)
366       id = klass->create_session_id (pool);
367     else
368       goto no_function;
369
370     if (id == NULL)
371       goto no_session;
372
373     g_mutex_lock (&priv->lock);
374     /* check session limit */
375     if (priv->max_sessions > 0) {
376       if (g_hash_table_size (priv->sessions) >= priv->max_sessions)
377         goto too_many_sessions;
378     }
379     /* check if the sessionid existed */
380     result = g_hash_table_lookup (priv->sessions, id);
381     if (result) {
382       /* found, retry with a different session id */
383       result = NULL;
384       retry++;
385       if (retry > 100)
386         goto collision;
387     } else {
388       /* not found, create session and insert it in the pool */
389       if (klass->create_session)
390         result = create_session (pool, id);
391       if (result == NULL)
392         goto too_many_sessions;
393       /* take additional ref for the pool */
394       g_object_ref (result);
395       g_hash_table_insert (priv->sessions,
396           (gchar *) gst_rtsp_session_get_sessionid (result), result);
397       priv->sessions_cookie++;
398     }
399     g_mutex_unlock (&priv->lock);
400
401     g_free (id);
402   } while (result == NULL);
403
404   return result;
405
406   /* ERRORS */
407 no_function:
408   {
409     GST_WARNING ("no create_session_id vmethod in GstRTSPSessionPool %p", pool);
410     return NULL;
411   }
412 no_session:
413   {
414     GST_WARNING ("can't create session id with GstRTSPSessionPool %p", pool);
415     return NULL;
416   }
417 collision:
418   {
419     GST_WARNING ("can't find unique sessionid for GstRTSPSessionPool %p", pool);
420     g_mutex_unlock (&priv->lock);
421     g_free (id);
422     return NULL;
423   }
424 too_many_sessions:
425   {
426     GST_WARNING ("session pool reached max sessions of %d", priv->max_sessions);
427     g_mutex_unlock (&priv->lock);
428     g_free (id);
429     return NULL;
430   }
431 }
432
433 /**
434  * gst_rtsp_session_pool_remove:
435  * @pool: a #GstRTSPSessionPool
436  * @sess: (transfer none): a #GstRTSPSession
437  *
438  * Remove @sess from @pool, releasing the ref that the pool has on @sess.
439  *
440  * Returns: %TRUE if the session was found and removed.
441  */
442 gboolean
443 gst_rtsp_session_pool_remove (GstRTSPSessionPool * pool, GstRTSPSession * sess)
444 {
445   GstRTSPSessionPoolPrivate *priv;
446   gboolean found;
447
448   g_return_val_if_fail (GST_IS_RTSP_SESSION_POOL (pool), FALSE);
449   g_return_val_if_fail (GST_IS_RTSP_SESSION (sess), FALSE);
450
451   priv = pool->priv;
452
453   g_mutex_lock (&priv->lock);
454   g_object_ref (sess);
455   found =
456       g_hash_table_remove (priv->sessions,
457       gst_rtsp_session_get_sessionid (sess));
458   if (found)
459     priv->sessions_cookie++;
460   g_mutex_unlock (&priv->lock);
461
462   if (found)
463     g_signal_emit (pool, gst_rtsp_session_pool_signals[SIGNAL_SESSION_REMOVED],
464         0, sess);
465
466   g_object_unref (sess);
467
468   return found;
469 }
470
471 typedef struct
472 {
473   GTimeVal now;
474   GstRTSPSessionPool *pool;
475   GList *removed;
476 } CleanupData;
477
478 static gboolean
479 cleanup_func (gchar * sessionid, GstRTSPSession * sess, CleanupData * data)
480 {
481   gboolean expired;
482
483   expired = gst_rtsp_session_is_expired (sess, &data->now);
484   if (expired) {
485     GST_DEBUG ("session expired");
486     data->removed = g_list_prepend (data->removed, g_object_ref (sess));
487   }
488   return expired;
489 }
490
491 /**
492  * gst_rtsp_session_pool_cleanup:
493  * @pool: a #GstRTSPSessionPool
494  *
495  * Inspect all the sessions in @pool and remove the sessions that are inactive
496  * for more than their timeout.
497  *
498  * Returns: the amount of sessions that got removed.
499  */
500 guint
501 gst_rtsp_session_pool_cleanup (GstRTSPSessionPool * pool)
502 {
503   GstRTSPSessionPoolPrivate *priv;
504   guint result;
505   CleanupData data;
506   GList *walk;
507
508   g_return_val_if_fail (GST_IS_RTSP_SESSION_POOL (pool), 0);
509
510   priv = pool->priv;
511
512   g_get_current_time (&data.now);
513   data.pool = pool;
514   data.removed = NULL;
515
516   g_mutex_lock (&priv->lock);
517   result =
518       g_hash_table_foreach_remove (priv->sessions, (GHRFunc) cleanup_func,
519       &data);
520   if (result > 0)
521     priv->sessions_cookie++;
522   g_mutex_unlock (&priv->lock);
523
524   for (walk = data.removed; walk; walk = walk->next) {
525     GstRTSPSession *sess = walk->data;
526
527     g_signal_emit (pool,
528         gst_rtsp_session_pool_signals[SIGNAL_SESSION_REMOVED], 0, sess);
529
530     g_object_unref (sess);
531   }
532   g_list_free (data.removed);
533
534   return result;
535 }
536
537 /**
538  * gst_rtsp_session_pool_filter:
539  * @pool: a #GstRTSPSessionPool
540  * @func: (scope call) (allow-none): a callback
541  * @user_data: (closure): user data passed to @func
542  *
543  * Call @func for each session in @pool. The result value of @func determines
544  * what happens to the session. @func will be called with the session pool
545  * locked so no further actions on @pool can be performed from @func.
546  *
547  * If @func returns #GST_RTSP_FILTER_REMOVE, the session will be set to the
548  * expired state with gst_rtsp_session_set_expired() and removed from
549  * @pool.
550  *
551  * If @func returns #GST_RTSP_FILTER_KEEP, the session will remain in @pool.
552  *
553  * If @func returns #GST_RTSP_FILTER_REF, the session will remain in @pool but
554  * will also be added with an additional ref to the result GList of this
555  * function..
556  *
557  * When @func is %NULL, #GST_RTSP_FILTER_REF will be assumed for all sessions.
558  *
559  * Returns: (element-type GstRTSPSession) (transfer full): a GList with all
560  * sessions for which @func returned #GST_RTSP_FILTER_REF. After usage, each
561  * element in the GList should be unreffed before the list is freed.
562  */
563 GList *
564 gst_rtsp_session_pool_filter (GstRTSPSessionPool * pool,
565     GstRTSPSessionPoolFilterFunc func, gpointer user_data)
566 {
567   GstRTSPSessionPoolPrivate *priv;
568   GHashTableIter iter;
569   gpointer key, value;
570   GList *result;
571   GHashTable *visited;
572   guint cookie;
573
574   g_return_val_if_fail (GST_IS_RTSP_SESSION_POOL (pool), NULL);
575
576   priv = pool->priv;
577
578   result = NULL;
579   if (func)
580     visited = g_hash_table_new_full (NULL, NULL, g_object_unref, NULL);
581
582   g_mutex_lock (&priv->lock);
583 restart:
584   g_hash_table_iter_init (&iter, priv->sessions);
585   cookie = priv->sessions_cookie;
586   while (g_hash_table_iter_next (&iter, &key, &value)) {
587     GstRTSPSession *session = value;
588     GstRTSPFilterResult res;
589     gboolean changed;
590
591     if (func) {
592       /* only visit each session once */
593       if (g_hash_table_contains (visited, session))
594         continue;
595
596       g_hash_table_add (visited, g_object_ref (session));
597       g_mutex_unlock (&priv->lock);
598
599       res = func (pool, session, user_data);
600
601       g_mutex_lock (&priv->lock);
602     } else
603       res = GST_RTSP_FILTER_REF;
604
605     changed = (cookie != priv->sessions_cookie);
606
607     switch (res) {
608       case GST_RTSP_FILTER_REMOVE:
609       {
610         gboolean removed = TRUE;
611
612         if (changed)
613           /* something changed, check if we still have the session */
614           removed = g_hash_table_remove (priv->sessions, key);
615         else
616           g_hash_table_iter_remove (&iter);
617
618         if (removed) {
619           /* if we managed to remove the session, update the cookie and
620            * signal */
621           cookie = ++priv->sessions_cookie;
622           g_mutex_unlock (&priv->lock);
623
624           g_signal_emit (pool,
625               gst_rtsp_session_pool_signals[SIGNAL_SESSION_REMOVED], 0,
626               session);
627
628           g_mutex_lock (&priv->lock);
629           /* cookie could have changed again, make sure we restart */
630           changed |= (cookie != priv->sessions_cookie);
631         }
632         break;
633       }
634       case GST_RTSP_FILTER_REF:
635         /* keep ref */
636         result = g_list_prepend (result, g_object_ref (session));
637         break;
638       case GST_RTSP_FILTER_KEEP:
639       default:
640         break;
641     }
642     if (changed)
643       goto restart;
644   }
645   g_mutex_unlock (&priv->lock);
646
647   if (func)
648     g_hash_table_unref (visited);
649
650   return result;
651 }
652
653 typedef struct
654 {
655   GSource source;
656   GstRTSPSessionPool *pool;
657   gint timeout;
658 } GstPoolSource;
659
660 static void
661 collect_timeout (gchar * sessionid, GstRTSPSession * sess, GstPoolSource * psrc)
662 {
663   gint timeout;
664   GTimeVal now;
665
666   g_get_current_time (&now);
667
668   timeout = gst_rtsp_session_next_timeout (sess, &now);
669   GST_INFO ("%p: next timeout: %d", sess, timeout);
670   if (psrc->timeout == -1 || timeout < psrc->timeout)
671     psrc->timeout = timeout;
672 }
673
674 static gboolean
675 gst_pool_source_prepare (GSource * source, gint * timeout)
676 {
677   GstRTSPSessionPoolPrivate *priv;
678   GstPoolSource *psrc;
679   gboolean result;
680
681   psrc = (GstPoolSource *) source;
682   psrc->timeout = -1;
683   priv = psrc->pool->priv;
684
685   g_mutex_lock (&priv->lock);
686   g_hash_table_foreach (priv->sessions, (GHFunc) collect_timeout, psrc);
687   g_mutex_unlock (&priv->lock);
688
689   if (timeout)
690     *timeout = psrc->timeout;
691
692   result = psrc->timeout == 0;
693
694   GST_INFO ("prepare %d, %d", psrc->timeout, result);
695
696   return result;
697 }
698
699 static gboolean
700 gst_pool_source_check (GSource * source)
701 {
702   GST_INFO ("check");
703
704   return gst_pool_source_prepare (source, NULL);
705 }
706
707 static gboolean
708 gst_pool_source_dispatch (GSource * source, GSourceFunc callback,
709     gpointer user_data)
710 {
711   gboolean res;
712   GstPoolSource *psrc = (GstPoolSource *) source;
713   GstRTSPSessionPoolFunc func = (GstRTSPSessionPoolFunc) callback;
714
715   GST_INFO ("dispatch");
716
717   if (func)
718     res = func (psrc->pool, user_data);
719   else
720     res = FALSE;
721
722   return res;
723 }
724
725 static void
726 gst_pool_source_finalize (GSource * source)
727 {
728   GstPoolSource *psrc = (GstPoolSource *) source;
729
730   GST_INFO ("finalize %p", psrc);
731
732   g_object_unref (psrc->pool);
733   psrc->pool = NULL;
734 }
735
736 static GSourceFuncs gst_pool_source_funcs = {
737   gst_pool_source_prepare,
738   gst_pool_source_check,
739   gst_pool_source_dispatch,
740   gst_pool_source_finalize
741 };
742
743 /**
744  * gst_rtsp_session_pool_create_watch:
745  * @pool: a #GstRTSPSessionPool
746  *
747  * Create a #GSource that will be dispatched when the session should be cleaned
748  * up.
749  *
750  * Returns: (transfer full): a #GSource
751  */
752 GSource *
753 gst_rtsp_session_pool_create_watch (GstRTSPSessionPool * pool)
754 {
755   GstPoolSource *source;
756
757   g_return_val_if_fail (GST_IS_RTSP_SESSION_POOL (pool), NULL);
758
759   source = (GstPoolSource *) g_source_new (&gst_pool_source_funcs,
760       sizeof (GstPoolSource));
761   source->pool = g_object_ref (pool);
762
763   return (GSource *) source;
764 }