-
Notifications
You must be signed in to change notification settings - Fork 64
API Review: ProcessId for ProcessFailedEventArgs #5401
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
base: main
Are you sure you want to change the base?
Changes from 5 commits
450f0da
d7d65f6
c1804e2
a7fc1a3
99e3a98
0c87deb
61ba25b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,207 @@ | ||||||||||||||||||||||||||||||||
| Process Info When a WebView2 Process Fails | ||||||||||||||||||||||||||||||||
| === | ||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||
| # Background | ||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||
| WebView2 provides applications with the | ||||||||||||||||||||||||||||||||
| [ProcessFailed](https://learn.microsoft.com/microsoft-edge/webview2/reference/win32/icorewebview2?view=webview2-1.0.705.50#add_processfailed) | ||||||||||||||||||||||||||||||||
| event so they can react accordingly when a process failure occurs. However, | ||||||||||||||||||||||||||||||||
| this event does not currently provide the process ID of the failed process. | ||||||||||||||||||||||||||||||||
| This is particularly problematic when running multiple renderers, it becomes | ||||||||||||||||||||||||||||||||
prija-microsoft marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||||||||||||||||||||||||||||||||
| difficult for the application to determine which process to address. | ||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||
| In this document we describe an extended version of the | ||||||||||||||||||||||||||||||||
| [ProcessFailedEventArgs](https://learn.microsoft.com/en-us/microsoft-edge/webview2/reference/win32/icorewebview2processfailedeventargs?view=webview2-1.0.2151.40), | ||||||||||||||||||||||||||||||||
| which includes the process ID and the process kind. This enables the host application to collect | ||||||||||||||||||||||||||||||||
| additional information about the process failure whether a renderer, GPU, or | ||||||||||||||||||||||||||||||||
prija-microsoft marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||||||||||||||||||||||||||||||||
| even the browser process. | ||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||
| The updated API is detailed below. We'd appreciate your feedback. | ||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||
| # Description | ||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||
| The `ICoreWebView2ProcessFailedEventArgs4` interface extends the existing | ||||||||||||||||||||||||||||||||
| `ProcessFailedEventArgs` to include the `ICoreWebView2ProcessInfo` of the failed process. This | ||||||||||||||||||||||||||||||||
prija-microsoft marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||||||||||||||||||||||||||||||||
| enables applications to: | ||||||||||||||||||||||||||||||||
| - Correlate process failures with running process data from the ProcessInfo API | ||||||||||||||||||||||||||||||||
| - Collect process-specific diagnostic information for logging and telemetry | ||||||||||||||||||||||||||||||||
| - Analyze crash dumps for specific processes | ||||||||||||||||||||||||||||||||
| - Better track and respond to failures in multi-renderer scenarios | ||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||
| # Examples | ||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||
| The following code snippets demonstrate how the updated | ||||||||||||||||||||||||||||||||
| `ProcessFailedEventArgs` can be used by the host application: | ||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||
| ## Win32 C++ | ||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||
| ```cpp | ||||||||||||||||||||||||||||||||
| //! [ProcessFailed] | ||||||||||||||||||||||||||||||||
| // Register a handler for the ProcessFailed event. | ||||||||||||||||||||||||||||||||
| // This handler checks the failure kind and tries to: | ||||||||||||||||||||||||||||||||
| // * Recreate the webview for browser failure and render unresponsive. | ||||||||||||||||||||||||||||||||
prija-microsoft marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||||||||||||||||||||||||||||||||
| // * Reload the webview for render failure. | ||||||||||||||||||||||||||||||||
| // * Reload the webview for frame-only render failure impacting app | ||||||||||||||||||||||||||||||||
| // content. | ||||||||||||||||||||||||||||||||
prija-microsoft marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||||||||||||||||||||||||||||||||
| // * Log information about the failure for other failures. | ||||||||||||||||||||||||||||||||
| CHECK_FAILURE(m_webView->add_ProcessFailed( | ||||||||||||||||||||||||||||||||
| Callback<ICoreWebView2ProcessFailedEventHandler>( | ||||||||||||||||||||||||||||||||
| [this](ICoreWebView2* sender, | ||||||||||||||||||||||||||||||||
| ICoreWebView2ProcessFailedEventArgs* argsRaw) | ||||||||||||||||||||||||||||||||
| -> HRESULT { | ||||||||||||||||||||||||||||||||
| wil::com_ptr<ICoreWebView2ProcessFailedEventArgs> args = argsRaw; | ||||||||||||||||||||||||||||||||
| COREWEBVIEW2_PROCESS_FAILED_KIND kind; | ||||||||||||||||||||||||||||||||
| CHECK_FAILURE(args->get_ProcessFailedKind(&kind)); | ||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||
| // Try to get the newer interface with additional failure details | ||||||||||||||||||||||||||||||||
| auto args2 = | ||||||||||||||||||||||||||||||||
| args.try_query<ICoreWebView2ProcessFailedEventArgs2>(); | ||||||||||||||||||||||||||||||||
| if (args2) | ||||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||||
| COREWEBVIEW2_PROCESS_FAILED_REASON reason; | ||||||||||||||||||||||||||||||||
| wil::unique_cotaskmem_string processDescription; | ||||||||||||||||||||||||||||||||
| INT32 exitCode; | ||||||||||||||||||||||||||||||||
| CHECK_FAILURE(args2->get_Reason(&reason)); | ||||||||||||||||||||||||||||||||
| CHECK_FAILURE( | ||||||||||||||||||||||||||||||||
| args2->get_ProcessDescription(&processDescription)); | ||||||||||||||||||||||||||||||||
| CHECK_FAILURE(args2->get_ExitCode(&exitCode)); | ||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||
| // Get the process ID of the failed process | ||||||||||||||||||||||||||||||||
| wil::com_ptr<ICoreWebView2ProcessInfo> processInfo; | ||||||||||||||||||||||||||||||||
| auto argProcessInfo = args.try_query<ICoreWebView2ProcessFailedEventArgs4>(); | ||||||||||||||||||||||||||||||||
| if (argProcessInfo) | ||||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||||
| CHECK_FAILURE(argProcessInfo->get_ProcessInfo(&processInfo)); | ||||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||||
| INT32 processId = 0; | ||||||||||||||||||||||||||||||||
| COREWEBVIEW2_PROCESS_KIND processKind = COREWEBVIEW2_PROCESS_KIND_UNKNOWN; | ||||||||||||||||||||||||||||||||
| if (processInfo) | ||||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||||
| CHECK_FAILURE(processInfo->get_ProcessId(&processId)); | ||||||||||||||||||||||||||||||||
| CHECK_FAILURE(processInfo->get_Kind(&processKind)); | ||||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||
| // Log the failure details including the process ID | ||||||||||||||||||||||||||||||||
| std::wstringstream message; | ||||||||||||||||||||||||||||||||
| message << L"Kind: " << ProcessFailedKindToString(kind) | ||||||||||||||||||||||||||||||||
| << L"\n" | ||||||||||||||||||||||||||||||||
| << L"Reason: " << ProcessFailedReasonToString(reason) | ||||||||||||||||||||||||||||||||
| << L"\n" | ||||||||||||||||||||||||||||||||
| << L"Exit code: " << exitCode << L"\n" | ||||||||||||||||||||||||||||||||
| << L"Process ID: " << processId << L"\n" | ||||||||||||||||||||||||||||||||
| << L"Process Kind: " << ProcessKindToString(processKind) << L"\n" | ||||||||||||||||||||||||||||||||
| << L"Process description: " | ||||||||||||||||||||||||||||||||
| << processDescription.get(); | ||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||
| OutputDebugString(message.str().c_str()); | ||||||||||||||||||||||||||||||||
| // Collect the process ID for telemetry or further | ||||||||||||||||||||||||||||||||
| // analysis | ||||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||||
| return S_OK; | ||||||||||||||||||||||||||||||||
| }) | ||||||||||||||||||||||||||||||||
| .Get(), | ||||||||||||||||||||||||||||||||
| &m_processFailedToken)); | ||||||||||||||||||||||||||||||||
| //! [ProcessFailed] | ||||||||||||||||||||||||||||||||
| ``` | ||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||
| ## .NET C# | ||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||
| ```c# | ||||||||||||||||||||||||||||||||
| void WebView_CoreWebView2InitializationCompleted(object sender, | ||||||||||||||||||||||||||||||||
| CoreWebView2InitializationCompletedEventArgs e) | ||||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||||
| if (e.IsSuccess) | ||||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||||
| webView.CoreWebView2.ProcessFailed += WebView_ProcessFailed; | ||||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||
| void WebView_ProcessFailed(object sender, | ||||||||||||||||||||||||||||||||
| CoreWebView2ProcessFailedEventArgs e) | ||||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||||
| // Collect failure details including the process ID | ||||||||||||||||||||||||||||||||
| StringBuilder messageBuilder = new StringBuilder(); | ||||||||||||||||||||||||||||||||
| messageBuilder.AppendLine($"Process kind: {e.ProcessFailedKind}"); | ||||||||||||||||||||||||||||||||
| messageBuilder.AppendLine($"Reason: {e.Reason}"); | ||||||||||||||||||||||||||||||||
| messageBuilder.AppendLine($"Exit code: {e.ExitCode}"); | ||||||||||||||||||||||||||||||||
| messageBuilder.AppendLine( | ||||||||||||||||||||||||||||||||
| $"Process description: {e.ProcessDescription}"); | ||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||
| // Get the process ID of the failed process | ||||||||||||||||||||||||||||||||
| if (e.ProcessInfo != null) | ||||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||||
| messageBuilder.AppendLine($"Process ID: {e.ProcessInfo.ProcessId}"); | ||||||||||||||||||||||||||||||||
| messageBuilder.AppendLine($"Process Kind: {e.ProcessInfo.Kind}"); | ||||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||||
| else | ||||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||||
| messageBuilder.AppendLine("Process Info: unavailable (process may be gone externally)"); | ||||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||
| // Log the failure or send to telemetry | ||||||||||||||||||||||||||||||||
| System.Diagnostics.Debug.WriteLine(messageBuilder.ToString()); | ||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||
| // You can also correlate with process info collected earlier | ||||||||||||||||||||||||||||||||
| var failedProcessInfo = _processInfoList.FirstOrDefault( | ||||||||||||||||||||||||||||||||
| p => p.ProcessId == e.ProcessInfo.ProcessId); | ||||||||||||||||||||||||||||||||
| if (failedProcessInfo != null) | ||||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||||
| System.Diagnostics.Debug.WriteLine( | ||||||||||||||||||||||||||||||||
| $"Failed process was of kind: {failedProcessInfo.Kind}"); | ||||||||||||||||||||||||||||||||
|
Comment on lines
+144
to
+149
|
||||||||||||||||||||||||||||||||
| var failedProcessInfo = _processInfoList.FirstOrDefault( | |
| p => p.ProcessId == e.ProcessInfo.ProcessId); | |
| if (failedProcessInfo != null) | |
| { | |
| System.Diagnostics.Debug.WriteLine( | |
| $"Failed process was of kind: {failedProcessInfo.Kind}"); | |
| if (e.ProcessInfo != null) | |
| { | |
| var failedProcessInfo = _processInfoList.FirstOrDefault( | |
| p => p.ProcessId == e.ProcessInfo.ProcessId); | |
| if (failedProcessInfo != null) | |
| { | |
| System.Diagnostics.Debug.WriteLine( | |
| $"Failed process was of kind: {failedProcessInfo.Kind}"); | |
| } |
Uh oh!
There was an error while loading. Please reload this page.