windows.media.speech: Add SpeechRecognitionListConstraint stub.

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:
Bernhard Kölbl 2022-03-14 11:06:37 +01:00 committed by Alexandre Julliard
parent c0afc986b3
commit ab9fa4c679
2 changed files with 215 additions and 16 deletions

View File

@ -23,6 +23,185 @@
WINE_DEFAULT_DEBUG_CHANNEL(speech); WINE_DEFAULT_DEBUG_CHANNEL(speech);
/*
*
* SpeechRecognitionListConstraint
*
*/
struct list_constraint
{
ISpeechRecognitionListConstraint ISpeechRecognitionListConstraint_iface;
ISpeechRecognitionConstraint ISpeechRecognitionConstraint_iface;
LONG ref;
};
/*
*
* ISpeechRecognitionListConstraint
*
*/
static inline struct list_constraint *impl_from_ISpeechRecognitionListConstraint( ISpeechRecognitionListConstraint *iface )
{
return CONTAINING_RECORD(iface, struct list_constraint, ISpeechRecognitionListConstraint_iface);
}
static HRESULT WINAPI list_constraint_QueryInterface( ISpeechRecognitionListConstraint *iface, REFIID iid, void **out )
{
struct list_constraint *impl = impl_from_ISpeechRecognitionListConstraint(iface);
TRACE("iface %p, iid %s, out %p.\n", iface, debugstr_guid(iid), out);
if (IsEqualGUID(iid, &IID_IUnknown) ||
IsEqualGUID(iid, &IID_IInspectable) ||
IsEqualGUID(iid, &IID_IAgileObject) ||
IsEqualGUID(iid, &IID_ISpeechRecognitionListConstraint))
{
IInspectable_AddRef((*out = &impl->ISpeechRecognitionListConstraint_iface));
return S_OK;
}
if (IsEqualGUID(iid, &IID_ISpeechRecognitionConstraint))
{
IInspectable_AddRef((*out = &impl->ISpeechRecognitionConstraint_iface));
return S_OK;
}
WARN("%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid(iid));
*out = NULL;
return E_NOINTERFACE;
}
static ULONG WINAPI list_constraint_AddRef( ISpeechRecognitionListConstraint *iface )
{
struct list_constraint *impl = impl_from_ISpeechRecognitionListConstraint(iface);
ULONG ref = InterlockedIncrement(&impl->ref);
TRACE("iface %p, ref %lu.\n", iface, ref);
return ref;
}
static ULONG WINAPI list_constraint_Release( ISpeechRecognitionListConstraint *iface )
{
struct list_constraint *impl = impl_from_ISpeechRecognitionListConstraint(iface);
ULONG ref = InterlockedDecrement(&impl->ref);
TRACE("iface %p, ref %lu.\n", iface, ref);
if (!ref)
free(impl);
return ref;
}
static HRESULT WINAPI list_constraint_GetIids( ISpeechRecognitionListConstraint *iface, ULONG *iid_count, IID **iids )
{
FIXME("iface %p, iid_count %p, iids %p stub!\n", iface, iid_count, iids);
return E_NOTIMPL;
}
static HRESULT WINAPI list_constraint_GetRuntimeClassName( ISpeechRecognitionListConstraint *iface, HSTRING *class_name )
{
FIXME("iface %p, class_name %p stub!\n", iface, class_name);
return E_NOTIMPL;
}
static HRESULT WINAPI list_constraint_GetTrustLevel( ISpeechRecognitionListConstraint *iface, TrustLevel *trust_level )
{
FIXME("iface %p, trust_level %p stub!\n", iface, trust_level);
return E_NOTIMPL;
}
static HRESULT WINAPI list_constraint_get_Commands( ISpeechRecognitionListConstraint *iface, IVector_HSTRING **value )
{
FIXME("iface %p, value %p stub!\n", iface, value);
return E_NOTIMPL;
}
static const struct ISpeechRecognitionListConstraintVtbl speech_recognition_list_constraint_vtbl =
{
/* IUnknown methods */
list_constraint_QueryInterface,
list_constraint_AddRef,
list_constraint_Release,
/* IInspectable methods */
list_constraint_GetIids,
list_constraint_GetRuntimeClassName,
list_constraint_GetTrustLevel,
/* ISpeechRecognitionListConstraint methods */
list_constraint_get_Commands
};
/*
*
* ISpeechRecognitionConstraint
*
*/
DEFINE_IINSPECTABLE(constraint, ISpeechRecognitionConstraint, struct list_constraint, ISpeechRecognitionListConstraint_iface)
static HRESULT WINAPI constraint_get_IsEnabled( ISpeechRecognitionConstraint *iface, BOOLEAN *value )
{
FIXME("iface %p, value %p stub!\n", iface, value);
return E_NOTIMPL;
}
static HRESULT WINAPI constraint_put_IsEnabled( ISpeechRecognitionConstraint *iface, BOOLEAN value )
{
FIXME("iface %p, value %u stub!\n", iface, value);
return E_NOTIMPL;
}
static HRESULT WINAPI constraint_get_Tag( ISpeechRecognitionConstraint *iface, HSTRING *value )
{
FIXME("iface %p, value %p stub!\n", iface, value);
return E_NOTIMPL;
}
static HRESULT WINAPI constraint_put_Tag( ISpeechRecognitionConstraint *iface, HSTRING value )
{
FIXME("iface %p, value %p stub!\n", iface, value);
return E_NOTIMPL;
}
static HRESULT WINAPI constraint_get_Type( ISpeechRecognitionConstraint *iface, SpeechRecognitionConstraintType *value )
{
FIXME("iface %p, value %p stub!\n", iface, value);
return E_NOTIMPL;
}
static HRESULT WINAPI constraint_get_Probability( ISpeechRecognitionConstraint *iface, SpeechRecognitionConstraintProbability *value )
{
FIXME("iface %p, value %p stub!\n", iface, value);
return E_NOTIMPL;
}
static HRESULT WINAPI constraint_put_Probability( ISpeechRecognitionConstraint *iface, SpeechRecognitionConstraintProbability value )
{
FIXME("iface %p, value %u stub!\n", iface, value);
return E_NOTIMPL;
}
static const struct ISpeechRecognitionConstraintVtbl speech_recognition_constraint_vtbl =
{
/* IUnknown methods */
constraint_QueryInterface,
constraint_AddRef,
constraint_Release,
/* IInspectable methods */
constraint_GetIids,
constraint_GetRuntimeClassName,
constraint_GetTrustLevel,
/* ISpeechRecognitionConstraint methods */
constraint_get_IsEnabled,
constraint_put_IsEnabled,
constraint_get_Tag,
constraint_put_Tag,
constraint_get_Type,
constraint_get_Probability,
constraint_put_Probability
};
/* /*
* *
* Statics for SpeechRecognitionListConstraint * Statics for SpeechRecognitionListConstraint
@ -140,7 +319,7 @@ static HRESULT WINAPI constraint_factory_Create( ISpeechRecognitionListConstrain
ISpeechRecognitionListConstraint** listconstraint ) ISpeechRecognitionListConstraint** listconstraint )
{ {
TRACE("iface %p, commands %p, listconstraint %p.\n", iface, commands, listconstraint); TRACE("iface %p, commands %p, listconstraint %p.\n", iface, commands, listconstraint);
return E_NOTIMPL; return ISpeechRecognitionListConstraintFactory_CreateWithTag(iface, commands, NULL, listconstraint);
} }
static HRESULT WINAPI constraint_factory_CreateWithTag( ISpeechRecognitionListConstraintFactory *iface, static HRESULT WINAPI constraint_factory_CreateWithTag( ISpeechRecognitionListConstraintFactory *iface,
@ -148,8 +327,27 @@ static HRESULT WINAPI constraint_factory_CreateWithTag( ISpeechRecognitionListCo
HSTRING tag, HSTRING tag,
ISpeechRecognitionListConstraint** listconstraint ) ISpeechRecognitionListConstraint** listconstraint )
{ {
struct list_constraint *impl;
TRACE("iface %p, commands %p, tag %p, listconstraint %p.\n", iface, commands, tag, listconstraint); TRACE("iface %p, commands %p, tag %p, listconstraint %p.\n", iface, commands, tag, listconstraint);
return E_NOTIMPL;
if (!commands)
return E_POINTER;
if (!(impl = calloc(1, sizeof(*impl))))
{
*listconstraint = NULL;
return E_OUTOFMEMORY;
}
impl->ISpeechRecognitionListConstraint_iface.lpVtbl = &speech_recognition_list_constraint_vtbl;
impl->ISpeechRecognitionConstraint_iface.lpVtbl = &speech_recognition_constraint_vtbl;
impl->ref = 1;
TRACE("created SpeechRecognitionListConstraint %p.\n", impl);
*listconstraint = &impl->ISpeechRecognitionListConstraint_iface;
return S_OK;
} }
static const struct ISpeechRecognitionListConstraintFactoryVtbl speech_recognition_list_constraint_factory_vtbl = static const struct ISpeechRecognitionListConstraintFactoryVtbl speech_recognition_list_constraint_factory_vtbl =

View File

@ -729,10 +729,10 @@ static void test_SpeechRecognitionListConstraint(void)
ok(hr == S_OK, "IActivationFactory_QueryInterface IID_ISpeechRecognitionListConstraintFactory failed, hr %#lx.\n", hr); ok(hr == S_OK, "IActivationFactory_QueryInterface IID_ISpeechRecognitionListConstraintFactory failed, hr %#lx.\n", hr);
hr = ISpeechRecognitionListConstraintFactory_Create(listconstraint_factory, NULL, &listconstraint); hr = ISpeechRecognitionListConstraintFactory_Create(listconstraint_factory, NULL, &listconstraint);
todo_wine ok(hr == E_POINTER, "ISpeechRecognitionListConstraintFactory_Create failed, hr %#lx.\n", hr); ok(hr == E_POINTER, "ISpeechRecognitionListConstraintFactory_Create failed, hr %#lx.\n", hr);
hr = ISpeechRecognitionListConstraintFactory_CreateWithTag(listconstraint_factory, NULL, NULL, &listconstraint); hr = ISpeechRecognitionListConstraintFactory_CreateWithTag(listconstraint_factory, NULL, NULL, &listconstraint);
todo_wine ok(hr == E_POINTER, "ISpeechRecognitionListConstraintFactory_Create failed, hr %#lx.\n", hr); ok(hr == E_POINTER, "ISpeechRecognitionListConstraintFactory_Create failed, hr %#lx.\n", hr);
/* The create functions on Win10 1507 x32 break when handling the given iterator. Seems like a Windows bug. Skipping these tests. */ /* The create functions on Win10 1507 x32 break when handling the given iterator. Seems like a Windows bug. Skipping these tests. */
if (broken(is_win10_1507 && (sizeof(void*) == 4))) if (broken(is_win10_1507 && (sizeof(void*) == 4)))
@ -745,30 +745,30 @@ static void test_SpeechRecognitionListConstraint(void)
iterable_hstring_create_static(&iterable_hstring, &iterator_hstring); iterable_hstring_create_static(&iterable_hstring, &iterator_hstring);
hr = ISpeechRecognitionListConstraintFactory_CreateWithTag(listconstraint_factory, &iterable_hstring.IIterable_HSTRING_iface, NULL, &listconstraint); hr = ISpeechRecognitionListConstraintFactory_CreateWithTag(listconstraint_factory, &iterable_hstring.IIterable_HSTRING_iface, NULL, &listconstraint);
todo_wine ok(hr == S_OK, "ISpeechRecognitionListConstraintFactory_Create failed, hr %#lx.\n", hr); ok(hr == S_OK, "ISpeechRecognitionListConstraintFactory_Create failed, hr %#lx.\n", hr);
if (!SUCCEEDED(hr))
goto skip_create;
ref = ISpeechRecognitionListConstraint_Release(listconstraint); ref = ISpeechRecognitionListConstraint_Release(listconstraint);
todo_wine ok(ref == 0, "Got unexpected ref %lu.\n", ref); ok(ref == 0, "Got unexpected ref %lu.\n", ref);
iterator_hstring_create_static(&iterator_hstring, commands, ARRAY_SIZE(commands)); iterator_hstring_create_static(&iterator_hstring, commands, ARRAY_SIZE(commands));
iterable_hstring_create_static(&iterable_hstring, &iterator_hstring); iterable_hstring_create_static(&iterable_hstring, &iterator_hstring);
hr = ISpeechRecognitionListConstraintFactory_CreateWithTag(listconstraint_factory, &iterable_hstring.IIterable_HSTRING_iface, tag, &listconstraint); hr = ISpeechRecognitionListConstraintFactory_CreateWithTag(listconstraint_factory, &iterable_hstring.IIterable_HSTRING_iface, tag, &listconstraint);
todo_wine ok(hr == S_OK, "ISpeechRecognitionListConstraintFactory_CreateWithTag failed, hr %#lx.\n", hr); ok(hr == S_OK, "ISpeechRecognitionListConstraintFactory_CreateWithTag failed, hr %#lx.\n", hr);
todo_wine check_refcount(listconstraint, 1); check_refcount(listconstraint, 1);
todo_wine check_interface(listconstraint, &IID_IInspectable, TRUE); check_interface(listconstraint, &IID_IInspectable, TRUE);
todo_wine check_interface(listconstraint, &IID_IAgileObject, TRUE); check_interface(listconstraint, &IID_IAgileObject, TRUE);
hr = ISpeechRecognitionListConstraint_QueryInterface(listconstraint, &IID_ISpeechRecognitionConstraint, (void **)&constraint); hr = ISpeechRecognitionListConstraint_QueryInterface(listconstraint, &IID_ISpeechRecognitionConstraint, (void **)&constraint);
todo_wine ok(hr == S_OK, "Got unexpected hr %#lx.\n", hr); ok(hr == S_OK, "Got unexpected hr %#lx.\n", hr);
hr = ISpeechRecognitionListConstraint_get_Commands(listconstraint, &hstring_vector); hr = ISpeechRecognitionListConstraint_get_Commands(listconstraint, &hstring_vector);
todo_wine ok(hr == S_OK, "ISpeechRecognitionListConstraint_Commands failed, hr %#lx.\n", hr); todo_wine ok(hr == S_OK, "ISpeechRecognitionListConstraint_Commands failed, hr %#lx.\n", hr);
if (!SUCCEEDED(hr))
goto skip_tests;
hr = IVector_HSTRING_get_Size(hstring_vector, &vector_size); hr = IVector_HSTRING_get_Size(hstring_vector, &vector_size);
todo_wine ok(hr == S_OK, "IVector_HSTRING_get_Size failed, hr %#lx.\n", hr); todo_wine ok(hr == S_OK, "IVector_HSTRING_get_Size failed, hr %#lx.\n", hr);
todo_wine ok(vector_size == ARRAY_SIZE(commands), "Got unexpected vector_size %u.\n", vector_size); todo_wine ok(vector_size == ARRAY_SIZE(commands), "Got unexpected vector_size %u.\n", vector_size);
@ -803,11 +803,12 @@ static void test_SpeechRecognitionListConstraint(void)
todo_wine ok(hr == S_OK, "ISpeechRecognitionConstraint_get_IsEnabled failed, hr %#lx.\n", hr); todo_wine ok(hr == S_OK, "ISpeechRecognitionConstraint_get_IsEnabled failed, hr %#lx.\n", hr);
todo_wine ok(enabled, "ListConstraint didn't get enabled.\n"); todo_wine ok(enabled, "ListConstraint didn't get enabled.\n");
skip_tests:
ref = ISpeechRecognitionConstraint_Release(constraint); ref = ISpeechRecognitionConstraint_Release(constraint);
todo_wine ok(ref == 1, "Got unexpected ref %lu.\n", ref); ok(ref == 1, "Got unexpected ref %lu.\n", ref);
ref = ISpeechRecognitionListConstraint_Release(listconstraint); ref = ISpeechRecognitionListConstraint_Release(listconstraint);
todo_wine ok(ref == 0, "Got unexpected ref %lu.\n", ref); ok(ref == 0, "Got unexpected ref %lu.\n", ref);
skip_create: skip_create:
ref = ISpeechRecognitionListConstraintFactory_Release(listconstraint_factory); ref = ISpeechRecognitionListConstraintFactory_Release(listconstraint_factory);