-
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
[Win32] Spin event loop in Edge instead of only processing OS messages #1773
base: master
Are you sure you want to change the base?
Conversation
Test Results 492 files - 2 492 suites - 2 7m 15s ⏱️ - 3m 41s Results for commit 7a44e53. ± Comparison against base commit 1b2ea28. This pull request removes 227 and adds 1 tests. Note that renamed tests count towards both.
This pull request skips 1 test.
♻️ This comment has been updated with latest results. |
565580b
to
53cf9fc
Compare
050d7e4
to
35ebdbc
Compare
48543ec
to
b5e531f
Compare
WebView initialization may fail in some cases, for which the Microsoft documentation proposes to retry initialization. The Edge implementation already covers that case, but accidentally cancels the initialization of the Edge instance even though a retry of initializing the contained WebView is triggered. This change properly separates actual initialization abortions and retries and corrects the retry functionality.
…ipse-platform#1771 Before recent improvements of the Edge implementation, it was possible that a browser instance was disposed during WebView initialization, which made the initialization fail exceptionally. This has been worked around by not processing all kinds of asynchronously scheduled events (like a disposal) while waiting for WebView initialization but only those being processes by the OS event queue. This was still necessary to process the OS callbacks for WebView initialization and other operations. In some cases, this may lead to an Edge browser instance blocking the UI thread, as some asynchronously scheduled tasks need to be processed but are not. In addition, enhancements of the Edge implementation made the initialization happen asynchronously anyway, such that the browser instantiation itself cannot throw an error anymore, but the asynchronously happening initialization is now capable of processing asynchronous browser disposals. This change simplifies the event processing inside Edge to not only process the next OS message but to just ordinarily spin the event loop. This reduces the risk of operations executed on an Edge browser to block execution. eclipse-platform#1771
b5e531f
to
7a44e53
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.
Looks good. Great to see that removing the old workarounds is possible now.
Thank you, @sratz! I wanted to ping you on this anyway, so great that you already took a look! As you have probably seen, I have also incorporated the regression test you provided in #1771 in a separate commit with you as an author. I hope that's fine for you. One additional information on this change for which feedback would be good: it introduces a slight change in behavior. Edge now processes all kinds of events scheduled by OS or on the display during initialization and other operations requiring event queue processing. One change in behavior due to this can be seen in the test change. As simplified version is this:
Before this change, that code initialized a browser and |
Sure, was going to suggest to include that test, anyways :)
Yes, I have thought about the constructor behavior as well. I was wondering if we can at least make that one somehow synchronous. I think currently it always succeeds and all initialization errors go to nirvana. I guess this is acceptable for now. |
@HeikoKlare I think this is actually a bit dangerous as it can have some side effects (as you already noticed) and code must not assume that a control gets disposed in any way while being in the event thread, e.g. your example w ill not only dispose the browser but all controls and might trigger even more code to run. Just assume the example you given but not dispose anything but open a new blocking dialog, then construction of the browser control will suddenly open the dialog even though that from program flow it is not to be expected in any way. So I wonder what are these
that are needed at init time of the browser? Can the possibly run once in the firs paint event or similar? Or do they need to run in the UI thread anyways? |
Actually it's not only about the constructor, but also about I agree with @laeubi that processing the whole event loop (and not only OS events) might be dangerous here. I will take a further look at the WebKit implementation, as there are similiar implementations in the |
Converted this back to draft, as we agreed that the fix is questionable. Thus, #1771 remains an issue for now and potentially needs a different kind of fix. |
Before recent improvements of the Edge implementation, it was possible that a browser instance was disposed during WebView initialization, which made the initialization fail exceptionally. This has been worked around by not processing all kinds of asynchronously scheduled events (like a disposal) while waiting for WebView initialization but only those being processes by the OS event queue. This was still necessary to process the OS callbacks for WebView initialization and other operations.
In some cases, this may lead to an Edge browser instance blocking the UI thread, as some asynchronously scheduled tasks need to be processed but are not. In addition, enhancements of the Edge implementation made the initialization happen synchronously anyway, such that the browser instantiation itself cannot throw an error anymore, but the asynchronously happening initialization is now capable of processing asynchronous browser disposals.
This change simplifies the event processing inside Edge to not only process the next OS message but to just ordinarily spin the event loop. This reduces the risk of operations executed on an Edge browser to block execution.