winhttp: Execute WinHttpQueryDataAvailable() synchronously if the data is available.

Signed-off-by: Paul Gofman <pgofman@codeweavers.com>
Signed-off-by: Hans Leidekker <hans@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Paul Gofman 2021-08-25 12:57:53 +03:00 committed by Alexandre Julliard
parent bc5305e599
commit 1c659954df
2 changed files with 17 additions and 3 deletions

View File

@ -2873,6 +2873,7 @@ BOOL WINAPI WinHttpQueryDataAvailable( HINTERNET hrequest, LPDWORD available )
{
DWORD ret;
struct request *request;
BOOL async;
TRACE("%p, %p\n", hrequest, available);
@ -2888,7 +2889,8 @@ BOOL WINAPI WinHttpQueryDataAvailable( HINTERNET hrequest, LPDWORD available )
return FALSE;
}
if (request->connect->hdr.flags & WINHTTP_FLAG_ASYNC)
if ((async = request->connect->hdr.flags & WINHTTP_FLAG_ASYNC) && !end_of_read_data( request )
&& !query_data_ready( request ))
{
struct query_data *q;
@ -2902,12 +2904,13 @@ BOOL WINAPI WinHttpQueryDataAvailable( HINTERNET hrequest, LPDWORD available )
release_object( &request->hdr );
free( q );
}
else ret = ERROR_IO_PENDING;
}
else ret = query_data_available( request, available, FALSE );
else ret = query_data_available( request, available, async );
release_object( &request->hdr );
SetLastError( ret );
return !ret;
return !ret || ret == ERROR_IO_PENDING;
}
static void CALLBACK task_read_data( TP_CALLBACK_INSTANCE *instance, void *ctx, TP_WORK *work )

View File

@ -71,6 +71,8 @@ struct info
unsigned int index;
HANDLE wait;
unsigned int line;
DWORD last_thread_id;
DWORD last_status;
};
struct test_request
@ -85,6 +87,9 @@ static void CALLBACK check_notification( HINTERNET handle, DWORD_PTR context, DW
BOOL status_ok, function_ok;
struct info *info = (struct info *)context;
info->last_status = status;
info->last_thread_id = GetCurrentThreadId();
if (status == WINHTTP_CALLBACK_STATUS_HANDLE_CREATED)
{
DWORD size = sizeof(struct info *);
@ -177,6 +182,8 @@ static void setup_test( struct info *info, enum api function, unsigned int line
ok_(__FILE__,line)(info->test[info->index].function == function,
"unexpected function %u, expected %u. probably some notifications were missing\n",
info->test[info->index].function, function);
info->last_thread_id = 0xdeadbeef;
info->last_status = 0xdeadbeef;
}
static void end_test( struct info *info, unsigned int line )
@ -597,6 +604,10 @@ static void test_async( void )
ok(err == ERROR_SUCCESS || err == ERROR_IO_PENDING || broken(err == 0xdeadbeef) /* < win7 */, "got %u\n", err);
WaitForSingleObject( info.wait, INFINITE );
ok(info.last_status == WINHTTP_CALLBACK_STATUS_DATA_AVAILABLE, "got status %#x.\n", status);
ok((err == ERROR_SUCCESS && info.last_thread_id == GetCurrentThreadId())
|| (err == ERROR_IO_PENDING && info.last_thread_id != GetCurrentThreadId()),
"Got unexpected thread %#x, err %#x.\n", info.last_thread_id, err);
setup_test( &info, winhttp_read_data, __LINE__ );
ret = WinHttpReadData( req, buffer, sizeof(buffer), NULL );