Skip to content
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

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

amartya4256
Copy link
Contributor

@amartya4256 amartya4256 commented Apr 1, 2025

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

Copy link
Contributor

github-actions bot commented Apr 1, 2025

Test Results

   539 files  ±0     539 suites  ±0   35m 35s ⏱️ + 3m 39s
 4 330 tests ±0   4 320 ✅ ±0   9 💤 ±0  1 ❌ ±0 
16 579 runs  ±0  16 481 ✅ +4  97 💤  - 4  1 ❌ ±0 

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.

@amartya4256 amartya4256 force-pushed the amartya4256/edge_callback_listener_execution_async branch from afa88d8 to c6af804 Compare April 1, 2025 14:40
@amartya4256 amartya4256 linked an issue Apr 2, 2025 that may be closed by this pull request
@amartya4256 amartya4256 force-pushed the amartya4256/edge_callback_listener_execution_async branch from c6af804 to 6cd6756 Compare April 2, 2025 16:51
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
@fedejeanne fedejeanne force-pushed the amartya4256/edge_callback_listener_execution_async branch from 6cd6756 to e67bde7 Compare April 3, 2025 11:36
Copy link
Contributor

@fedejeanne fedejeanne left a 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?

  1. It changes the strategy about how to execute callbacks by introducing the method executeAsynchronously(...)
  2. 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.

Comment on lines +1374 to +1377
for (VisibilityWindowListener showListener : other.visibilityWindowListeners) {
showListener.show(showEvent);
if (other.browser.isDisposed()) return;
}
Copy link
Contributor

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Edge: freezes in evalute()
2 participants