windows.media.speech: Add IIterator<HSTRING>.

And implement the IIterable<HSTRING>_First methods.

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-29 19:30:47 +02:00 committed by Alexandre Julliard
parent c6b9d9bc4e
commit a709f24292
1 changed files with 165 additions and 4 deletions

View File

@ -23,6 +23,141 @@
WINE_DEFAULT_DEBUG_CHANNEL(speech);
/*
*
* IIterator<HSTRING>
*
*/
struct iterator_hstring
{
IIterator_HSTRING IIterator_HSTRING_iface;
LONG ref;
IVectorView_HSTRING *view;
UINT32 index;
UINT32 size;
};
static inline struct iterator_hstring *impl_from_IIterator_HSTRING( IIterator_HSTRING *iface )
{
return CONTAINING_RECORD(iface, struct iterator_hstring, IIterator_HSTRING_iface);
}
static HRESULT WINAPI iterator_hstring_QueryInterface( IIterator_HSTRING *iface, REFIID iid, void **out )
{
struct iterator_hstring *impl = impl_from_IIterator_HSTRING(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_IIterator_HSTRING))
{
IInspectable_AddRef((*out = &impl->IIterator_HSTRING_iface));
return S_OK;
}
WARN("%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid(iid));
*out = NULL;
return E_NOINTERFACE;
}
static ULONG WINAPI iterator_hstring_AddRef( IIterator_HSTRING *iface )
{
struct iterator_hstring *impl = impl_from_IIterator_HSTRING(iface);
ULONG ref = InterlockedIncrement(&impl->ref);
TRACE("iface %p increasing refcount to %lu.\n", iface, ref);
return ref;
}
static ULONG WINAPI iterator_hstring_Release( IIterator_HSTRING *iface )
{
struct iterator_hstring *impl = impl_from_IIterator_HSTRING(iface);
ULONG ref = InterlockedDecrement(&impl->ref);
TRACE("iface %p decreasing refcount to %lu.\n", iface, ref);
if (!ref)
{
IVectorView_HSTRING_Release(impl->view);
free(impl);
}
return ref;
}
static HRESULT WINAPI iterator_hstring_GetIids( IIterator_HSTRING *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 iterator_hstring_GetRuntimeClassName( IIterator_HSTRING *iface, HSTRING *class_name )
{
FIXME("iface %p, class_name %p stub!\n", iface, class_name);
return E_NOTIMPL;
}
static HRESULT WINAPI iterator_hstring_GetTrustLevel( IIterator_HSTRING *iface, TrustLevel *trust_level )
{
FIXME("iface %p, trust_level %p stub!\n", iface, trust_level);
return E_NOTIMPL;
}
static HRESULT WINAPI iterator_hstring_get_Current( IIterator_HSTRING *iface, HSTRING *value )
{
struct iterator_hstring *impl = impl_from_IIterator_HSTRING(iface);
TRACE("iface %p, value %p.\n", iface, value);
return IVectorView_HSTRING_GetAt(impl->view, impl->index, value);
}
static HRESULT WINAPI iterator_hstring_get_HasCurrent( IIterator_HSTRING *iface, BOOL *value )
{
struct iterator_hstring *impl = impl_from_IIterator_HSTRING(iface);
TRACE("iface %p, value %p.\n", iface, value);
*value = impl->index < impl->size;
return S_OK;
}
static HRESULT WINAPI iterator_hstring_MoveNext( IIterator_HSTRING *iface, BOOL *value )
{
struct iterator_hstring *impl = impl_from_IIterator_HSTRING(iface);
TRACE("iface %p, value %p.\n", iface, value);
if (impl->index < impl->size) impl->index++;
return IIterator_HSTRING_get_HasCurrent(iface, value);
}
static HRESULT WINAPI iterator_hstring_GetMany( IIterator_HSTRING *iface, UINT32 items_size,
HSTRING *items, UINT *count )
{
struct iterator_hstring *impl = impl_from_IIterator_HSTRING(iface);
TRACE("iface %p, items_size %u, items %p, count %p.\n", iface, items_size, items, count);
return IVectorView_HSTRING_GetMany(impl->view, impl->index, items_size, items, count);
}
static const IIterator_HSTRINGVtbl iterator_hstring_vtbl =
{
/* IUnknown methods */
iterator_hstring_QueryInterface,
iterator_hstring_AddRef,
iterator_hstring_Release,
/* IInspectable methods */
iterator_hstring_GetIids,
iterator_hstring_GetRuntimeClassName,
iterator_hstring_GetTrustLevel,
/* IIterator<HSTRING> methods */
iterator_hstring_get_Current,
iterator_hstring_get_HasCurrent,
iterator_hstring_MoveNext,
iterator_hstring_GetMany,
};
/*
*
* IVectorView<HSTRING>
@ -204,8 +339,20 @@ DEFINE_IINSPECTABLE_(iterable_view_hstring, IIterable_HSTRING, struct vector_vie
static HRESULT WINAPI iterable_view_hstring_First( IIterable_HSTRING *iface, IIterator_HSTRING **value )
{
TRACE("iface %p, value %p stub!\n", iface, value);
return E_NOTIMPL;
struct vector_view_hstring *impl = view_impl_from_IIterable_HSTRING(iface);
struct iterator_hstring *iter;
TRACE("iface %p, value %p.\n", iface, value);
if (!(iter = calloc(1, sizeof(*iter)))) return E_OUTOFMEMORY;
iter->IIterator_HSTRING_iface.lpVtbl = &iterator_hstring_vtbl;
iter->ref = 1;
IVectorView_HSTRING_AddRef((iter->view = &impl->IVectorView_HSTRING_iface));
iter->size = impl->size;
*value = &iter->IIterator_HSTRING_iface;
return S_OK;
}
static const struct IIterable_HSTRINGVtbl iterable_view_hstring_vtbl =
@ -533,8 +680,22 @@ DEFINE_IINSPECTABLE(iterable_hstring, IIterable_HSTRING, struct vector_hstring,
static HRESULT WINAPI iterable_hstring_First( IIterable_HSTRING *iface, IIterator_HSTRING **value )
{
FIXME("iface %p, value %p stub!\n", iface, value);
return E_NOTIMPL;
struct vector_hstring *impl = impl_from_IIterable_HSTRING(iface);
IIterable_HSTRING *iterable;
IVectorView_HSTRING *view;
HRESULT hr;
TRACE("iface %p, value %p.\n", iface, value);
if (FAILED(hr = IVector_HSTRING_GetView(&impl->IVector_HSTRING_iface, &view))) return hr;
hr = IVectorView_HSTRING_QueryInterface(view, &IID_IIterable_HSTRING, (void **)&iterable);
IVectorView_HSTRING_Release(view);
if (FAILED(hr)) return hr;
hr = IIterable_HSTRING_First(iterable, value);
IIterable_HSTRING_Release(iterable);
return hr;
}
static const struct IIterable_HSTRINGVtbl iterable_hstring_vtbl =