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

feat: add plugin hooks for WebViewClient.onRenderProcessGone #1574

Merged
merged 2 commits into from Apr 24, 2023

Conversation

peitschie
Copy link
Contributor

Platforms affected

Android

Motivation and Context

This change allows more advanced handling of the webview render process termination. This can be useful for capturing additional information, or even conceivably allow the crash to be prevented should a plugin choose to.

Description

Expose the WebViewClient.onRenderProcessGone method down to plugins, and allow a plugin to interrupt the crash should it choose so.

Testing

I created the hello world cordova application and added a javascript call to load chrome://crash (recommended by Android docs as the best way to trigger a renderer crash).

Checklist

  • I've run the tests to see all new and existing tests pass
  • I added automated test coverage as appropriate for this change
  • Commit is prefixed with (platform) if this change only applies to one platform (e.g. (android))
  • If this Pull Request resolves an issue, I linked to the issue in the text above (and used the correct keyword to close issues using keywords)
  • I've updated the documentation if necessary

@codecov-commenter
Copy link

codecov-commenter commented Mar 21, 2023

Codecov Report

Merging #1574 (9f320f4) into master (7efe90f) will increase coverage by 0.78%.
The diff coverage is n/a.

@@            Coverage Diff             @@
##           master    #1574      +/-   ##
==========================================
+ Coverage   71.82%   72.61%   +0.78%     
==========================================
  Files          23       23              
  Lines        1796     1800       +4     
==========================================
+ Hits         1290     1307      +17     
+ Misses        506      493      -13     

see 2 files with indirect coverage changes

📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more

@lgh06
Copy link

lgh06 commented Apr 4, 2023

Nice work. I face webview hang , found no solution. I will try your cordova-android and write a plugin

@breautek
Copy link
Contributor

breautek commented Apr 8, 2023

or even conceivably allow the crash to be prevented should a plugin choose to.

Given that the Android Docs states

The given WebView can't be used, and should be removed from the view hierarchy, all references to it should be cleaned up, e.g any references in the Activity or other classes saved using View.findViewById(int) and similar calls, etc.

I think it's unsafe to attempt to "prevent" a crash or continue using the webview. I think at minimum the webview needs to be recreated. I do agree that it is definitely useful for debugging or crashlytics however.

The RenderProcessGoneDetail API was added in API 26. cordova-android@12 supports as far back as API 24, but we will compile with API 33. Because this is a delegate function, I believe this is fine, it just won't be invoked by the underlying system on API 24 or 25, I presume. Was this tested on API 24 devices/emulators?

Copy link
Contributor

@breautek breautek left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tested both on API 24 and API 33 emulators, both of which I believe works as expected.

On API 24, the hook is simply not invoked and the process will simply crash.

On API 33, the hook is invoked before the crash, allowing the system to gracefully handle the crash and to potential recover from it.

@peitschie
Copy link
Contributor Author

I think it's unsafe to attempt to "prevent" a crash or continue using the webview. I think at minimum the webview needs to be recreated. I do agree that it is definitely useful for debugging or crashlytics however.

Yep! Agree that more work would be needed if some kind of crash recovery was needed... returning true here would not be a good thing to do 😅

I've tweaked this a bit, so should be good for another review when you have time @breautek

@breautek
Copy link
Contributor

Alright, had to do some tweaks in cordova-android to test it, but at the core I think this is good.

I implemented the on hook in CoreAndroid and was able to do something like:

@Override
    public boolean onRenderProcessGone(final WebView view, RenderProcessGoneDetail detail) {
        if (webView.getEngine().getView() == view) {
            // Is the crash view the cordova webview?
            LOG.e(TAG, "CORDOVA WEBVIEW CRASHED!");
            return true;
        }
        return false;
    }

Naturally returning true prevents the app from crashing and actually yields the webview still visible, but in an unsafe manner. Returning false will crash the application, assuming nothing else actually handles the webview. To be clear, I'm not suggesting to implement something like this into this PR, I'm just using the PR to demonstrate what is possible.

There may be some plugins that want to listen to every crash (e.g., a crash report integration plugin of some sort),

I do agree with this sentiment. I see that PluginManager will still call through all plugins hooks even if a plugin has already return true, so I think that covers that.

@breautek breautek added this to the 12.0.0 milestone Apr 21, 2023
@breautek breautek requested a review from erisu April 21, 2023 15:21
Co-authored-by: Norman Breau <norman@nbsolutions.ca>
@peitschie
Copy link
Contributor Author

Thanks for the review and merge @breautek 🍻

Agree with the wording change there. We definitely want plugins to leave the return value alone unless they really know what they're doing!

Copy link
Member

@erisu erisu left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@breautek breautek merged commit cb48147 into apache:master Apr 24, 2023
9 checks passed
@breautek
Copy link
Contributor

Awesome work, thanks @peitschie

This feature will be available in the upcoming cordova-android@12 release.

@peitschie peitschie deleted the render-process-gone branch April 24, 2023 02:41
breautek added a commit to breautek/cordova-android that referenced this pull request Oct 21, 2023
…1574)

* feat: add plugin hooks for WebViewClient.onRenderProcessGone

* Update framework/src/org/apache/cordova/CordovaPlugin.java

Co-authored-by: Norman Breau <norman@nbsolutions.ca>

---------

Co-authored-by: Norman Breau <norman@nbsolutions.ca>
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.

None yet

5 participants