windows.media.speech: Partially implement IAsyncOperation.
Signed-off-by: Bernhard Kölbl <besentv@gmail.com> Signed-off-by: Rémi Bernon <rbernon@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
9d67ca493a
commit
caf138f590
|
@ -23,6 +23,9 @@
|
|||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(speech);
|
||||
|
||||
#define Closed 4
|
||||
#define HANDLER_NOT_SET ((void *)~(ULONG_PTR)0)
|
||||
|
||||
/*
|
||||
*
|
||||
* IAsyncOperation<IInspectable*>
|
||||
|
@ -35,6 +38,11 @@ struct async_operation
|
|||
IAsyncInfo IAsyncInfo_iface;
|
||||
const GUID *iid;
|
||||
LONG ref;
|
||||
|
||||
IAsyncOperationCompletedHandler_IInspectable *handler;
|
||||
|
||||
AsyncStatus status;
|
||||
HRESULT hr;
|
||||
};
|
||||
|
||||
static inline struct async_operation *impl_from_IAsyncOperation_IInspectable(IAsyncOperation_IInspectable *iface)
|
||||
|
@ -84,7 +92,14 @@ static ULONG WINAPI async_operation_Release( IAsyncOperation_IInspectable *iface
|
|||
TRACE("iface %p, ref %lu.\n", iface, ref);
|
||||
|
||||
if (!ref)
|
||||
{
|
||||
IAsyncInfo_Close(&impl->IAsyncInfo_iface);
|
||||
|
||||
if (impl->handler && impl->handler != HANDLER_NOT_SET)
|
||||
IAsyncOperationCompletedHandler_IInspectable_Release(impl->handler);
|
||||
|
||||
free(impl);
|
||||
}
|
||||
|
||||
return ref;
|
||||
}
|
||||
|
@ -110,21 +125,72 @@ static HRESULT WINAPI async_operation_GetTrustLevel( IAsyncOperation_IInspectabl
|
|||
static HRESULT WINAPI async_operation_put_Completed( IAsyncOperation_IInspectable *iface,
|
||||
IAsyncOperationCompletedHandler_IInspectable *handler )
|
||||
{
|
||||
FIXME("iface %p, handler %p stub!\n", iface, handler);
|
||||
return E_NOTIMPL;
|
||||
struct async_operation *impl = impl_from_IAsyncOperation_IInspectable(iface);
|
||||
HRESULT hr = S_OK;
|
||||
|
||||
TRACE("iface %p, handler %p.\n", iface, handler);
|
||||
|
||||
if (impl->status == Closed)
|
||||
hr = E_ILLEGAL_METHOD_CALL;
|
||||
else if (impl->handler != HANDLER_NOT_SET)
|
||||
hr = E_ILLEGAL_DELEGATE_ASSIGNMENT;
|
||||
/*
|
||||
impl->handler can only be set once with async_operation_put_Completed,
|
||||
so by default we set a non HANDLER_NOT_SET value, in this case handler.
|
||||
*/
|
||||
else if ((impl->handler = handler))
|
||||
{
|
||||
IAsyncOperationCompletedHandler_IInspectable_AddRef(impl->handler);
|
||||
|
||||
if (impl->status > Started)
|
||||
{
|
||||
IAsyncOperation_IInspectable *operation = &impl->IAsyncOperation_IInspectable_iface;
|
||||
AsyncStatus status = impl->status;
|
||||
impl->handler = NULL; /* Prevent concurrent invoke. */
|
||||
|
||||
IAsyncOperationCompletedHandler_IInspectable_Invoke(handler, operation, status);
|
||||
IAsyncOperationCompletedHandler_IInspectable_Release(handler);
|
||||
|
||||
return S_OK;
|
||||
}
|
||||
}
|
||||
|
||||
return hr;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI async_operation_get_Completed( IAsyncOperation_IInspectable *iface,
|
||||
IAsyncOperationCompletedHandler_IInspectable **handler )
|
||||
{
|
||||
FIXME("iface %p, handler %p stub!\n", iface, handler);
|
||||
return E_NOTIMPL;
|
||||
struct async_operation *impl = impl_from_IAsyncOperation_IInspectable(iface);
|
||||
HRESULT hr;
|
||||
|
||||
FIXME("iface %p, handler %p semi stub!\n", iface, handler);
|
||||
|
||||
if (impl->status == Closed)
|
||||
hr = E_ILLEGAL_METHOD_CALL;
|
||||
else
|
||||
hr = S_OK;
|
||||
|
||||
*handler = (impl->handler != HANDLER_NOT_SET) ? impl->handler : NULL;
|
||||
return hr;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI async_operation_GetResults( IAsyncOperation_IInspectable *iface, IInspectable **results )
|
||||
{
|
||||
FIXME("iface %p, results %p stub!\n", iface, results);
|
||||
return E_NOTIMPL;
|
||||
/* NOTE: Despite the name, this function only returns one result! */
|
||||
struct async_operation *impl = impl_from_IAsyncOperation_IInspectable(iface);
|
||||
HRESULT hr;
|
||||
|
||||
TRACE("iface %p, results %p.\n", iface, results);
|
||||
|
||||
if (impl->status == Closed)
|
||||
hr = E_ILLEGAL_METHOD_CALL;
|
||||
else if (impl->status > Started)
|
||||
hr = S_OK;
|
||||
else
|
||||
hr = E_UNEXPECTED;
|
||||
|
||||
return hr;
|
||||
}
|
||||
|
||||
static const struct IAsyncOperation_IInspectableVtbl async_operation_vtbl =
|
||||
|
@ -159,26 +225,56 @@ static HRESULT WINAPI async_operation_info_get_Id( IAsyncInfo *iface, UINT32 *id
|
|||
|
||||
static HRESULT WINAPI async_operation_info_get_Status( IAsyncInfo *iface, AsyncStatus *status )
|
||||
{
|
||||
FIXME("iface %p, status %p stub!\n", iface, status);
|
||||
return E_NOTIMPL;
|
||||
struct async_operation *impl = impl_from_IAsyncInfo(iface);
|
||||
HRESULT hr;
|
||||
|
||||
TRACE("iface %p, status %p.\n", iface, status);
|
||||
|
||||
if (impl->status == Closed)
|
||||
hr = E_ILLEGAL_METHOD_CALL;
|
||||
else
|
||||
hr = S_OK;
|
||||
|
||||
*status = impl->status;
|
||||
return hr;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI async_operation_info_get_ErrorCode( IAsyncInfo *iface, HRESULT *error_code )
|
||||
{
|
||||
FIXME("iface %p, error_code %p stub!\n", iface, error_code);
|
||||
return E_NOTIMPL;
|
||||
struct async_operation *impl = impl_from_IAsyncInfo(iface);
|
||||
TRACE("iface %p, error_code %p.\n", iface, error_code);
|
||||
|
||||
*error_code = impl->hr;
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI async_operation_info_Cancel( IAsyncInfo *iface )
|
||||
{
|
||||
FIXME("iface %p stub!\n", iface);
|
||||
return E_NOTIMPL;
|
||||
struct async_operation *impl = impl_from_IAsyncInfo(iface);
|
||||
HRESULT hr;
|
||||
|
||||
TRACE("iface %p.\n", iface);
|
||||
hr = S_OK;
|
||||
|
||||
if (impl->status == Closed)
|
||||
hr = E_ILLEGAL_METHOD_CALL;
|
||||
else if (impl->status == Started)
|
||||
impl->status = Canceled;
|
||||
|
||||
return hr;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI async_operation_info_Close( IAsyncInfo *iface )
|
||||
{
|
||||
FIXME("iface %p stub!\n", iface);
|
||||
return E_NOTIMPL;
|
||||
struct async_operation *impl = impl_from_IAsyncInfo(iface);
|
||||
|
||||
TRACE("iface %p.\n", iface);
|
||||
|
||||
if (impl->status == Started)
|
||||
return E_ILLEGAL_STATE_CHANGE;
|
||||
|
||||
impl->status = Closed;
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
static const struct IAsyncInfoVtbl async_operation_info_vtbl =
|
||||
|
@ -202,11 +298,14 @@ static const struct IAsyncInfoVtbl async_operation_info_vtbl =
|
|||
HRESULT async_operation_create( const GUID *iid, IAsyncOperation_IInspectable **out )
|
||||
{
|
||||
struct async_operation *impl;
|
||||
HRESULT hr;
|
||||
|
||||
*out = NULL;
|
||||
|
||||
if (!(impl = calloc(1, sizeof(*impl))))
|
||||
{
|
||||
*out = NULL;
|
||||
return E_OUTOFMEMORY;
|
||||
hr = E_OUTOFMEMORY;
|
||||
goto error;
|
||||
}
|
||||
|
||||
impl->IAsyncOperation_IInspectable_iface.lpVtbl = &async_operation_vtbl;
|
||||
|
@ -214,7 +313,14 @@ HRESULT async_operation_create( const GUID *iid, IAsyncOperation_IInspectable **
|
|||
impl->iid = iid;
|
||||
impl->ref = 1;
|
||||
|
||||
impl->handler = HANDLER_NOT_SET;
|
||||
impl->status = Completed;
|
||||
|
||||
*out = &impl->IAsyncOperation_IInspectable_iface;
|
||||
TRACE("created %p\n", *out);
|
||||
return S_OK;
|
||||
|
||||
error:
|
||||
free(impl);
|
||||
return hr;
|
||||
}
|
||||
|
|
|
@ -981,44 +981,49 @@ static void test_SpeechRecognizer(void)
|
|||
|
||||
handler = (void*)0xdeadbeef;
|
||||
hr = IAsyncOperation_SpeechRecognitionCompilationResult_get_Completed(operation, &handler);
|
||||
todo_wine ok(hr == S_OK, "Got unexpected hr %#lx.\n", hr);
|
||||
todo_wine ok(handler == NULL, "Handler had value %p.\n", handler);
|
||||
ok(hr == S_OK, "Got unexpected hr %#lx.\n", hr);
|
||||
ok(handler == NULL, "Handler had value %p.\n", handler);
|
||||
|
||||
if (FAILED(hr)) goto skip_operation;
|
||||
|
||||
compilation_result = (void*)0xdeadbeef;
|
||||
hr = IAsyncOperation_SpeechRecognitionCompilationResult_GetResults(operation, &compilation_result);
|
||||
todo_wine ok(hr == E_ILLEGAL_METHOD_CALL, "Got unexpected hr %#lx.\n", hr);
|
||||
todo_wine ok(compilation_result == (void*)0xdeadbeef, "Compilation result had value %p.\n", compilation_result);
|
||||
ok(compilation_result == (void*)0xdeadbeef, "Compilation result had value %p.\n", compilation_result);
|
||||
|
||||
hr = IAsyncOperation_SpeechRecognitionCompilationResult_put_Completed(operation, &compilation_handler.IAsyncHandler_Compilation_iface);
|
||||
todo_wine ok(hr == S_OK, "Got unexpected hr %#lx.\n", hr);
|
||||
ok(hr == S_OK, "Got unexpected hr %#lx.\n", hr);
|
||||
|
||||
todo_wine ok(!WaitForSingleObject(compilation_handler.event_finished, 1000), "Wait for event_finished failed.\n");
|
||||
ok(!WaitForSingleObject(compilation_handler.event_finished, 1000), "Wait for event_finished failed.\n");
|
||||
CloseHandle(compilation_handler.event_finished);
|
||||
|
||||
hr = IAsyncOperation_SpeechRecognitionCompilationResult_put_Completed(operation, NULL);
|
||||
todo_wine ok(hr == E_ILLEGAL_DELEGATE_ASSIGNMENT, "Got unexpected hr %#lx.\n", hr);
|
||||
ok(hr == E_ILLEGAL_DELEGATE_ASSIGNMENT, "Got unexpected hr %#lx.\n", hr);
|
||||
|
||||
hr = IAsyncOperation_SpeechRecognitionCompilationResult_get_Completed(operation, &handler);
|
||||
todo_wine ok(hr == S_OK, "Got unexpected hr %#lx.\n", hr);
|
||||
ok(hr == S_OK, "Got unexpected hr %#lx.\n", hr);
|
||||
|
||||
compilation_result = (void*)0xdeadbeef;
|
||||
hr = IAsyncOperation_SpeechRecognitionCompilationResult_GetResults(operation, &compilation_result);
|
||||
todo_wine ok(hr == S_OK, "Got unexpected hr %#lx.\n", hr);
|
||||
todo_wine check_interface(compilation_result, &IID_IAgileObject, TRUE);
|
||||
ok(hr == S_OK, "Got unexpected hr %#lx.\n", hr);
|
||||
|
||||
hr = ISpeechRecognitionCompilationResult_get_Status(compilation_result, &result_status);
|
||||
todo_wine ok(hr == S_OK, "ISpeechRecognitionCompilationResult_get_Status failed, hr %#lx.\n", hr);
|
||||
todo_wine ok(result_status == SpeechRecognitionResultStatus_Success, "Got unexpected status %#x.\n", result_status);
|
||||
if (compilation_result != (void*)0xdeadbeef)
|
||||
{
|
||||
todo_wine check_interface(compilation_result, &IID_IAgileObject, TRUE);
|
||||
|
||||
ref = ISpeechRecognitionCompilationResult_Release(compilation_result);
|
||||
todo_wine ok(!ref , "Got unexpected ref %lu.\n", ref);
|
||||
hr = ISpeechRecognitionCompilationResult_get_Status(compilation_result, &result_status);
|
||||
todo_wine ok(hr == S_OK, "ISpeechRecognitionCompilationResult_get_Status failed, hr %#lx.\n", hr);
|
||||
todo_wine ok(result_status == SpeechRecognitionResultStatus_Success, "Got unexpected status %#x.\n", result_status);
|
||||
|
||||
ref = ISpeechRecognitionCompilationResult_Release(compilation_result);
|
||||
todo_wine ok(!ref , "Got unexpected ref %lu.\n", ref);
|
||||
}
|
||||
|
||||
hr = IAsyncOperation_SpeechRecognitionCompilationResult_GetResults(operation, &compilation_result);
|
||||
todo_wine ok(hr == E_UNEXPECTED, "Got unexpected hr %#lx.\n", hr);
|
||||
|
||||
hr = IAsyncOperation_SpeechRecognitionCompilationResult_QueryInterface(operation, &IID_IAsyncInfo, (void **)&info);
|
||||
todo_wine ok(hr == S_OK, "Got unexpected hr %#lx.\n", hr);
|
||||
ok(hr == S_OK, "Got unexpected hr %#lx.\n", hr);
|
||||
|
||||
id = 0xdeadbeef;
|
||||
hr = IAsyncInfo_get_Id(info, &id);
|
||||
|
@ -1027,36 +1032,36 @@ static void test_SpeechRecognizer(void)
|
|||
|
||||
async_status = 0xdeadbeef;
|
||||
hr = IAsyncInfo_get_Status(info, &async_status);
|
||||
todo_wine ok(hr == S_OK, "IAsyncInfo_get_Status failed, hr %#lx.\n", hr);
|
||||
todo_wine ok(async_status == Completed, "Status was %#x.\n", async_status);
|
||||
ok(hr == S_OK, "IAsyncInfo_get_Status failed, hr %#lx.\n", hr);
|
||||
ok(async_status == Completed, "Status was %#x.\n", async_status);
|
||||
|
||||
hr = IAsyncInfo_Cancel(info);
|
||||
todo_wine ok(hr == S_OK, "IAsyncInfo_Cancel failed, hr %#lx.\n", hr);
|
||||
ok(hr == S_OK, "IAsyncInfo_Cancel failed, hr %#lx.\n", hr);
|
||||
|
||||
async_status = 0xdeadbeef;
|
||||
hr = IAsyncInfo_get_Status(info, &async_status);
|
||||
todo_wine ok(hr == S_OK, "IAsyncInfo_get_Status failed, hr %#lx.\n", hr);
|
||||
todo_wine ok(async_status == Completed, "Status was %#x.\n", async_status);
|
||||
ok(hr == S_OK, "IAsyncInfo_get_Status failed, hr %#lx.\n", hr);
|
||||
ok(async_status == Completed, "Status was %#x.\n", async_status);
|
||||
|
||||
hr = IAsyncInfo_Close(info);
|
||||
todo_wine ok(hr == S_OK, "IAsyncInfo_Close failed, hr %#lx.\n", hr);
|
||||
ok(hr == S_OK, "IAsyncInfo_Close failed, hr %#lx.\n", hr);
|
||||
hr = IAsyncInfo_Close(info);
|
||||
todo_wine ok(hr == S_OK, "IAsyncInfo_Close failed, hr %#lx.\n", hr);
|
||||
ok(hr == S_OK, "IAsyncInfo_Close failed, hr %#lx.\n", hr);
|
||||
|
||||
async_status = 0xdeadbeef;
|
||||
hr = IAsyncInfo_get_Status(info, &async_status);
|
||||
todo_wine ok(hr == E_ILLEGAL_METHOD_CALL, "IAsyncInfo_get_Status failed, hr %#lx.\n", hr);
|
||||
todo_wine ok(async_status == AsyncStatus_Closed, "Status was %#x.\n", async_status);
|
||||
ok(hr == E_ILLEGAL_METHOD_CALL, "IAsyncInfo_get_Status failed, hr %#lx.\n", hr);
|
||||
ok(async_status == AsyncStatus_Closed, "Status was %#x.\n", async_status);
|
||||
|
||||
ref = IAsyncInfo_Release(info);
|
||||
todo_wine ok(ref == 1, "Got unexpected ref %lu.\n", ref);
|
||||
ok(ref == 1, "Got unexpected ref %lu.\n", ref);
|
||||
|
||||
hr = IAsyncOperation_SpeechRecognitionCompilationResult_put_Completed(operation, NULL);
|
||||
todo_wine ok(hr == E_ILLEGAL_METHOD_CALL, "Got unexpected hr %#lx.\n", hr);
|
||||
ok(hr == E_ILLEGAL_METHOD_CALL, "Got unexpected hr %#lx.\n", hr);
|
||||
|
||||
handler = (void*)0xdeadbeef;
|
||||
hr = IAsyncOperation_SpeechRecognitionCompilationResult_get_Completed(operation, &handler);
|
||||
todo_wine ok(hr == E_ILLEGAL_METHOD_CALL, "Got unexpected hr %#lx.\n", hr);
|
||||
ok(hr == E_ILLEGAL_METHOD_CALL, "Got unexpected hr %#lx.\n", hr);
|
||||
|
||||
IAsyncOperation_SpeechRecognitionCompilationResult_Release(operation);
|
||||
|
||||
|
@ -1068,82 +1073,82 @@ static void test_SpeechRecognizer(void)
|
|||
ok(compilation_handler.event_finished != NULL, "Finished event wasn't created.\n");
|
||||
|
||||
hr = ISpeechRecognizer_CompileConstraintsAsync(recognizer, &operation);
|
||||
todo_wine ok(hr == S_OK, "ISpeechRecognizer_CompileConstraintsAsync failed, hr %#lx.\n", hr);
|
||||
todo_wine check_interface(operation, &IID_IAgileObject, TRUE);
|
||||
ok(hr == S_OK, "ISpeechRecognizer_CompileConstraintsAsync failed, hr %#lx.\n", hr);
|
||||
check_interface(operation, &IID_IAgileObject, TRUE);
|
||||
|
||||
hr = IAsyncOperation_SpeechRecognitionCompilationResult_QueryInterface(operation, &IID_IAsyncInfo, (void **)&info);
|
||||
todo_wine ok(hr == S_OK, "Got unexpected hr %#lx.\n", hr);
|
||||
ok(hr == S_OK, "Got unexpected hr %#lx.\n", hr);
|
||||
|
||||
async_status = 0xdeadbeef;
|
||||
hr = IAsyncInfo_get_Status(info, &async_status);
|
||||
todo_wine ok(hr == S_OK, "IAsyncInfo_get_Status failed, hr %#lx.\n", hr);
|
||||
todo_wine ok(async_status != AsyncStatus_Closed, "Status was %#x.\n", async_status);
|
||||
ok(hr == S_OK, "IAsyncInfo_get_Status failed, hr %#lx.\n", hr);
|
||||
ok(async_status != AsyncStatus_Closed, "Status was %#x.\n", async_status);
|
||||
|
||||
hr = IAsyncOperation_SpeechRecognitionCompilationResult_put_Completed(operation, &compilation_handler.IAsyncHandler_Compilation_iface);
|
||||
todo_wine ok(hr == S_OK, "Got unexpected hr %#lx.\n", hr);
|
||||
ok(hr == S_OK, "Got unexpected hr %#lx.\n", hr);
|
||||
|
||||
todo_wine ok(!WaitForSingleObject(compilation_handler.event_finished, 1000), "Wait for event_finished failed.\n");
|
||||
ok(!WaitForSingleObject(compilation_handler.event_finished, 1000), "Wait for event_finished failed.\n");
|
||||
CloseHandle(compilation_handler.event_finished);
|
||||
|
||||
async_status = 0xdeadbeef;
|
||||
hr = IAsyncInfo_get_Status(info, &async_status);
|
||||
todo_wine ok(hr == S_OK, "IAsyncInfo_get_Status failed, hr %#lx.\n", hr);
|
||||
todo_wine ok(async_status == Completed, "Status was %#x.\n", async_status);
|
||||
ok(hr == S_OK, "IAsyncInfo_get_Status failed, hr %#lx.\n", hr);
|
||||
ok(async_status == Completed, "Status was %#x.\n", async_status);
|
||||
|
||||
ref = IAsyncInfo_Release(info);
|
||||
todo_wine ok(ref == 1, "Got unexpected ref %lu.\n", ref);
|
||||
ok(ref == 1, "Got unexpected ref %lu.\n", ref);
|
||||
ref = IAsyncOperation_SpeechRecognitionCompilationResult_Release(operation);
|
||||
todo_wine ok(!ref, "Got unexpected ref %lu.\n", ref);
|
||||
ok(!ref, "Got unexpected ref %lu.\n", ref);
|
||||
|
||||
ref = ISpeechRecognizer_Release(recognizer);
|
||||
todo_wine ok(ref == 1, "Got unexpected ref %lu.\n", ref);
|
||||
ok(ref == 1, "Got unexpected ref %lu.\n", ref);
|
||||
|
||||
ref = IInspectable_Release(inspectable);
|
||||
todo_wine ok(!ref, "Got unexpected ref %lu.\n", ref);
|
||||
ok(!ref, "Got unexpected ref %lu.\n", ref);
|
||||
|
||||
/* Test if AsyncInfo_Close waits for the handler to finish. */
|
||||
hr = RoActivateInstance(hstr, &inspectable);
|
||||
todo_wine ok(hr == S_OK, "Got unexpected hr %#lx.\n", hr);
|
||||
ok(hr == S_OK, "Got unexpected hr %#lx.\n", hr);
|
||||
|
||||
hr = IInspectable_QueryInterface(inspectable, &IID_ISpeechRecognizer, (void **)&recognizer);
|
||||
todo_wine ok(hr == S_OK, "Got unexpected hr %#lx.\n", hr);
|
||||
ok(hr == S_OK, "Got unexpected hr %#lx.\n", hr);
|
||||
|
||||
compilation_handler_create_static(&compilation_handler);
|
||||
compilation_handler.event_block = CreateEventW(NULL, FALSE, FALSE, NULL);
|
||||
compilation_handler.event_finished = CreateEventW(NULL, FALSE, FALSE, NULL);
|
||||
compilation_handler.thread_id = GetCurrentThreadId();
|
||||
|
||||
todo_wine ok(compilation_handler.event_finished != NULL, "Finished event wasn't created.\n");
|
||||
ok(compilation_handler.event_finished != NULL, "Finished event wasn't created.\n");
|
||||
|
||||
hr = ISpeechRecognizer_CompileConstraintsAsync(recognizer, &operation);
|
||||
todo_wine ok(hr == S_OK, "ISpeechRecognizer_CompileConstraintsAsync failed, hr %#lx.\n", hr);
|
||||
ok(hr == S_OK, "ISpeechRecognizer_CompileConstraintsAsync failed, hr %#lx.\n", hr);
|
||||
|
||||
block_param.handler = &compilation_handler.IAsyncHandler_Compilation_iface;
|
||||
block_param.operation = operation;
|
||||
blocked_thread = CreateThread(NULL, 0, async_operation_block_thread, &block_param, 0, NULL);
|
||||
|
||||
todo_wine ok(!WaitForSingleObject(compilation_handler.event_finished, 5000), "Wait for event_finished failed.\n");
|
||||
ok(!WaitForSingleObject(compilation_handler.event_finished, 5000), "Wait for event_finished failed.\n");
|
||||
|
||||
todo_wine ok(WaitForSingleObject(blocked_thread, 100) == WAIT_TIMEOUT, "Wait for block_thread didn't time out.\n");
|
||||
ok(WaitForSingleObject(blocked_thread, 100) == WAIT_TIMEOUT, "Wait for block_thread didn't time out.\n");
|
||||
|
||||
todo_wine ok(compilation_handler.ref == 3, "Got unexpected ref %lu.\n", compilation_handler.ref);
|
||||
todo_wine check_refcount(operation, 3);
|
||||
|
||||
hr = IAsyncOperation_SpeechRecognitionCompilationResult_QueryInterface(operation, &IID_IAsyncInfo, (void **)&info);
|
||||
todo_wine ok(hr == S_OK, "Got unexpected hr %#lx.\n", hr);
|
||||
ok(hr == S_OK, "Got unexpected hr %#lx.\n", hr);
|
||||
|
||||
hr = IAsyncInfo_Close(info); /* If IAsyncInfo_Close would wait for the handler to finish, the test would get stuck here. */
|
||||
todo_wine ok(hr == S_OK, "Got unexpected hr %#lx.\n", hr);
|
||||
ok(hr == S_OK, "Got unexpected hr %#lx.\n", hr);
|
||||
|
||||
SetEvent(compilation_handler.event_block);
|
||||
todo_wine ok(!WaitForSingleObject(blocked_thread, 1000), "Wait for block_thread failed.\n");
|
||||
ok(!WaitForSingleObject(blocked_thread, 1000), "Wait for block_thread failed.\n");
|
||||
|
||||
CloseHandle(blocked_thread);
|
||||
CloseHandle(compilation_handler.event_block);
|
||||
CloseHandle(compilation_handler.event_finished);
|
||||
|
||||
ref = IAsyncInfo_Release(info);
|
||||
todo_wine ok(ref == 1, "Got unexpected ref %lu.\n", ref);
|
||||
ok(ref == 1, "Got unexpected ref %lu.\n", ref);
|
||||
|
||||
skip_operation:
|
||||
ref = IAsyncOperation_SpeechRecognitionCompilationResult_Release(operation);
|
||||
|
|
Loading…
Reference in New Issue