mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 22:36:33 +00:00
pluginloader-win32: Check pipe state in child process
Retry if server is not ready for the connection Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3863>
This commit is contained in:
parent
0df7cd852c
commit
464a8be3a4
1 changed files with 18 additions and 4 deletions
|
@ -1153,10 +1153,24 @@ _gst_plugin_loader_client_run (const gchar * pipe_name)
|
|||
FILE_FLAG_OVERLAPPED, NULL);
|
||||
loader.last_err = GetLastError ();
|
||||
if (loader.pipe == INVALID_HANDLE_VALUE) {
|
||||
err = g_win32_error_message (loader.last_err);
|
||||
GST_ERROR ("CreateFileA failed with 0x%x (%s)",
|
||||
loader.last_err, GST_STR_NULL (err));
|
||||
goto out;
|
||||
/* Server should be pending (waiting for connection) state already,
|
||||
* but do retry if it's not the case */
|
||||
if (loader.last_err == ERROR_PIPE_BUSY) {
|
||||
if (WaitNamedPipeA (pipe_name, 5000)) {
|
||||
loader.pipe = CreateFileA (pipe_name,
|
||||
GENERIC_READ | GENERIC_WRITE, 0, NULL, OPEN_EXISTING,
|
||||
FILE_FLAG_OVERLAPPED, NULL);
|
||||
}
|
||||
|
||||
loader.last_err = GetLastError ();
|
||||
}
|
||||
|
||||
if (loader.pipe == INVALID_HANDLE_VALUE) {
|
||||
err = g_win32_error_message (loader.last_err);
|
||||
GST_ERROR ("CreateFileA failed with 0x%x (%s)",
|
||||
loader.last_err, GST_STR_NULL (err));
|
||||
goto out;
|
||||
}
|
||||
}
|
||||
|
||||
/* We use message mode */
|
||||
|
|
Loading…
Reference in a new issue