-
Notifications
You must be signed in to change notification settings - Fork 160
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Edge callback listener execution async #1973
base: master
Are you sure you want to change the base?
Edge callback listener execution async #1973
Conversation
Test Results 539 files ±0 539 suites ±0 35m 35s ⏱️ + 3m 39s For more details on these failures, see this check. Results for commit e67bde7. ± Comparison against base commit 3670670. ♻️ This comment has been updated with latest results. |
afa88d8
to
c6af804
Compare
c6af804
to
6cd6756
Compare
This commit cotributes to executing the registered listeners of Edge browser on Browser callbacks in a asynchronous fashion making sure no WebView related task is executed while a WebView callback is already executing making sure there's no deadlock. contributes to eclipse-platform#1771 and eclipse-platform#1919
6cd6756
to
e67bde7
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this PR does 2 things, right?
- It changes the strategy about how to execute callbacks by introducing the method
executeAsynchronously(...)
- It executes some new blocks of code asynchronously by using the new method
Would it be possible to split it in 2 different PRs? That way it would be possible to see for example which part of these changes (1. or 2.) fixes the tests and which part makes it easier to work with the code.
for (VisibilityWindowListener showListener : other.visibilityWindowListeners) { | ||
showListener.show(showEvent); | ||
if (other.browser.isDisposed()) return; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The indentation is wrong here
By construct, WebView serializes all the tasks. Amidst a callback from Webview like DocumentTitleChanged, NavigationCompleted, AcceleratorKeyPressed, etc, if an EventListener is called which then calls for a method like execute or evaluate which are supposed to execute synchronously, they wait for the already executing webview task (the callback) to finish and the callback can't finish as it is waiting for the webview task to execute. Hence, this leads to a deadlock - leading to a UI freeze and then an Operation Timeout.
This PR cotributes to executing the registered listeners of Edge browser on Browser callbacks in a asynchronous fashion making sure no WebView related task is executed while a WebView callback is already executing making sure there's no deadlock.
Since the listener is called on a cllabck from webview, there is no harm to execute it asynchronously on the display thread as well as it imitates an asynchronous behaviour already. The callback is marked handled by executing ICoreWebView2*EventArgs::put_handled in all the callbacks. Hence we can call the listeners asynchronously and call ICoreWebView2*EventArgs::put_handled to mark to finish the execution of the callback.
contributes to
#1771 and
#1919