RESOLVED FIXED 150890
[GStreamer] Use MainThreadNotifier to send notifications to main thread in WebKitWebSourceGStreamer
https://bugs.webkit.org/show_bug.cgi?id=150890
Summary [GStreamer] Use MainThreadNotifier to send notifications to main thread in We...
Carlos Garcia Campos
Reported 2015-11-04 03:40:36 PST
Instead of the GThreadSafeMainLoopSources.
Attachments
Patch (14.20 KB, patch)
2015-11-04 03:42 PST, Carlos Garcia Campos
no flags
Updated patch (13.53 KB, patch)
2015-11-06 06:05 PST, Carlos Garcia Campos
zan: review+
Carlos Garcia Campos
Comment 1 2015-11-04 03:42:52 PST
WebKit Commit Bot
Comment 2 2015-11-04 03:45:27 PST
Attachment 264788 [details] did not pass style-queue: ERROR: Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp:178: Place brace on its own line for function definitions. [whitespace/braces] [4] ERROR: Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp:189: More than one command on the same line [whitespace/newline] [4] ERROR: Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp:197: Place brace on its own line for function definitions. [whitespace/braces] [4] ERROR: Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp:208: More than one command on the same line [whitespace/newline] [4] ERROR: Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp:233: More than one command on the same line [whitespace/newline] [4] ERROR: Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp:655: More than one command on the same line [whitespace/newline] [4] ERROR: Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp:667: More than one command on the same line [whitespace/newline] [4] Total errors found: 7 in 2 files If any of these errors are false positives, please file a bug against check-webkit-style.
Zan Dobersek
Comment 3 2015-11-06 05:17:16 PST
Comment on attachment 264788 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=264788&action=review All the uses of MainThreadNotifier<>::notify() need updating, otherwise looks fine. > Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp:177 > + // NeedData I usually write these in the same C-style they're declared in: need_data, enough_data, seek_data. > Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp:194 > + { > + WTF::GMutexLocker<GMutex> locker(*GST_OBJECT_GET_LOCK(src)); > + if (!priv->paused) > + return; > + > + if (!isMainThread()) { > + GRefPtr<WebKitWebSrc> protector(src); > + priv->notifier.notify(MainThreadSourceNotification::NeedData, [protector] { webKitWebSrcNeedData(protector.get()); }); > + return; > + } > + } > + > + webKitWebSrcNeedData(src); Can webKitWebSrcNeedData(), webKitWebSrcEnoughData() and webKitWebSrcSeek() all be rewritten and used with the expectation that the GST_OBJECT_GET_LOCK() is already locked? That way the lock can be held throughout the lambda scope, and there's no need for the isMainThread() check at this level. > Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp:656 > + if (isMainThread()) > + webKitWebSrcStart(src); > + else { > + GRefPtr<WebKitWebSrc> protector(src); > + priv->notifier.notify(MainThreadSourceNotification::Start, [protector] { webKitWebSrcStart(protector.get()); }); > + } Similarly, webKitWebSrcStart() and webKitWebSrcStop() could just work with the assumption (or an actual run-time assertion) that the GstObject lock is locked. > Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp:833 > +static void webKitWebSrcSeek(WebKitWebSrc* src) If all the above is possible, don't forget to set up the lock here.
Carlos Garcia Campos
Comment 4 2015-11-06 06:05:55 PST
Created attachment 264937 [details] Updated patch
Carlos Garcia Campos
Comment 5 2015-11-06 06:07:26 PST
(In reply to comment #3) > Comment on attachment 264788 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=264788&action=review > > All the uses of MainThreadNotifier<>::notify() need updating, otherwise > looks fine. > > > Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp:177 > > + // NeedData > > I usually write these in the same C-style they're declared in: need_data, > enough_data, seek_data. > > > Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp:194 > > + { > > + WTF::GMutexLocker<GMutex> locker(*GST_OBJECT_GET_LOCK(src)); > > + if (!priv->paused) > > + return; > > + > > + if (!isMainThread()) { > > + GRefPtr<WebKitWebSrc> protector(src); > > + priv->notifier.notify(MainThreadSourceNotification::NeedData, [protector] { webKitWebSrcNeedData(protector.get()); }); > > + return; > > + } > > + } > > + > > + webKitWebSrcNeedData(src); > > Can webKitWebSrcNeedData(), webKitWebSrcEnoughData() and webKitWebSrcSeek() > all be rewritten and used with the expectation that the > GST_OBJECT_GET_LOCK() is already locked? That way the lock can be held > throughout the lambda scope, and there's no need for the isMainThread() > check at this level. I thought it was possible but it's not that easy. We don't want to keep the lock until the notification happens in the main thread, so we need to take lock again before calling the callback in the lambda. The notifier is thread say, so we can just release the lock before calling notify() > > Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp:656 > > + if (isMainThread()) > > + webKitWebSrcStart(src); > > + else { > > + GRefPtr<WebKitWebSrc> protector(src); > > + priv->notifier.notify(MainThreadSourceNotification::Start, [protector] { webKitWebSrcStart(protector.get()); }); > > + } > > Similarly, webKitWebSrcStart() and webKitWebSrcStop() could just work with > the assumption (or an actual run-time assertion) that the GstObject lock is > locked. > > > Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp:833 > > +static void webKitWebSrcSeek(WebKitWebSrc* src) > > If all the above is possible, don't forget to set up the lock here.
WebKit Commit Bot
Comment 6 2015-11-06 06:08:35 PST
Attachment 264937 [details] did not pass style-queue: ERROR: Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp:178: Place brace on its own line for function definitions. [whitespace/braces] [4] ERROR: Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp:189: More than one command on the same line [whitespace/newline] [4] ERROR: Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp:192: Place brace on its own line for function definitions. [whitespace/braces] [4] ERROR: Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp:203: More than one command on the same line [whitespace/newline] [4] ERROR: Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp:223: More than one command on the same line [whitespace/newline] [4] ERROR: Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp:637: More than one command on the same line [whitespace/newline] [4] ERROR: Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp:645: More than one command on the same line [whitespace/newline] [4] Total errors found: 7 in 2 files If any of these errors are false positives, please file a bug against check-webkit-style.
Zan Dobersek
Comment 7 2015-11-06 06:24:39 PST
Comment on attachment 264937 [details] Updated patch View in context: https://bugs.webkit.org/attachment.cgi?id=264937&action=review r=me. > Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp:418 > + bool wasSeeking = priv->isSeeking; Consider combining this with the priv->isSeeking override below into std::exchange().
Carlos Garcia Campos
Comment 8 2015-11-06 06:52:49 PST
Note You need to log in before you can comment on or make changes to this bug.