srt: set cancellation in locked section
authorMark Nauwelaerts <mnauw@users.sourceforge.net>
Wed, 1 May 2019 17:22:17 +0000 (19:22 +0200)
committerMark Nauwelaerts <mnauw@users.sourceforge.net>
Sat, 11 May 2019 22:38:46 +0000 (22:38 +0000)
... to avoid race with wait which uses it with 'flushing' flag state semantics.

ext/srt/gstsrtobject.c
ext/srt/gstsrtobject.h
ext/srt/gstsrtsink.c
ext/srt/gstsrtsrc.c

index 86595eee10f743522e3eacac5d57f76aafbda8a3..164ca89b35669d8f9efadf0785f8c9447ef76841 100644 (file)
@@ -1212,24 +1212,23 @@ out:
 }
 
 void
-gst_srt_object_wakeup (GstSRTObject * srtobject)
+gst_srt_object_wakeup (GstSRTObject * srtobject, GCancellable * cancellable)
 {
-  GstSRTConnectionMode connection_mode = GST_SRT_CONNECTION_MODE_NONE;
-
   GST_DEBUG_OBJECT (srtobject->element, "waking up SRT");
 
   /* Removing all socket descriptors from the monitoring list
    * wakes up SRT's threads. We only have one to remove. */
   srt_epoll_remove_usock (srtobject->poll_id, srtobject->sock);
 
-  gst_structure_get_enum (srtobject->parameters, "mode",
-      GST_TYPE_SRT_CONNECTION_MODE, (gint *) & connection_mode);
-
-  if (connection_mode == GST_SRT_CONNECTION_MODE_LISTENER) {
-    GST_OBJECT_LOCK (srtobject->element);
-    g_cond_signal (&srtobject->sock_cond);
-    GST_OBJECT_UNLOCK (srtobject->element);
-  }
+  /* connection is only waited for in listener mode,
+   * but there is no harm in raising signal in any case */
+  GST_OBJECT_LOCK (srtobject->element);
+  /* however, a race might be harmful ...
+   * the cancellation is used as 'flushing' flag here,
+   * so make sure it is so detected by the intended part at proper time */
+  g_cancellable_cancel (cancellable);
+  g_cond_signal (&srtobject->sock_cond);
+  GST_OBJECT_UNLOCK (srtobject->element);
 }
 
 static gboolean
index c91c439eaa66ec3310aaad30e4916a9c545e7e8a..86bc413c4df7d1e9b26cc288d6e156021ed8b881 100644 (file)
@@ -118,7 +118,8 @@ gssize          gst_srt_object_write    (GstSRTObject * srtobject,
                                          GCancellable *cancellable,
                                          GError **err);
 
-void            gst_srt_object_wakeup   (GstSRTObject * srtobject);
+void            gst_srt_object_wakeup   (GstSRTObject * srtobject,
+                                         GCancellable *cancellable);
 
 GstStructure   *gst_srt_object_get_stats        (GstSRTObject * srtobject);
 
index bd8159d26832023a3dfb3866c18494d75a0317ef..4af2bb1a3b9178a7e147f1517bd3bd16580a511d 100644 (file)
@@ -223,8 +223,7 @@ gst_srt_sink_unlock (GstBaseSink * bsink)
 {
   GstSRTSink *self = GST_SRT_SINK (bsink);
 
-  g_cancellable_cancel (self->cancellable);
-  gst_srt_object_wakeup (self->srtobject);
+  gst_srt_object_wakeup (self->srtobject, self->cancellable);
 
   return TRUE;
 }
index 73392b4c21f109a547e5de0118361745f0808e7d..f929e3f013e76dff4dcd856d973e2dbf3af097c9 100644 (file)
@@ -218,8 +218,7 @@ gst_srt_src_unlock (GstBaseSrc * bsrc)
 {
   GstSRTSrc *self = GST_SRT_SRC (bsrc);
 
-  g_cancellable_cancel (self->cancellable);
-  gst_srt_object_wakeup (self->srtobject);
+  gst_srt_object_wakeup (self->srtobject, self->cancellable);
 
   return TRUE;
 }