2022-03-09 17:45:31 +00:00
|
|
|
/* WinRT Windows.Media.Speech implementation
|
|
|
|
*
|
|
|
|
* Copyright 2021 Rémi Bernon for CodeWeavers
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "private.h"
|
|
|
|
|
|
|
|
#include "wine/debug.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(speech);
|
|
|
|
|
2022-06-02 14:09:35 +00:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* IVectorView_VoiceInformation
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2022-03-09 17:45:31 +00:00
|
|
|
struct voice_information_vector
|
|
|
|
{
|
|
|
|
IVectorView_VoiceInformation IVectorView_VoiceInformation_iface;
|
|
|
|
LONG ref;
|
|
|
|
};
|
|
|
|
|
2022-06-02 10:01:53 +00:00
|
|
|
static inline struct voice_information_vector *impl_from_IVectorView_VoiceInformation( IVectorView_VoiceInformation *iface )
|
2022-03-09 17:45:31 +00:00
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, struct voice_information_vector, IVectorView_VoiceInformation_iface);
|
|
|
|
}
|
|
|
|
|
2022-06-02 10:01:53 +00:00
|
|
|
static HRESULT WINAPI vector_view_voice_information_QueryInterface( IVectorView_VoiceInformation *iface, REFIID iid, void **out )
|
2022-03-09 17:45:31 +00:00
|
|
|
{
|
2022-06-02 13:49:36 +00:00
|
|
|
struct voice_information_vector *impl = impl_from_IVectorView_VoiceInformation(iface);
|
|
|
|
|
2022-03-09 17:45:31 +00:00
|
|
|
TRACE("iface %p, iid %s, out %p stub!\n", iface, debugstr_guid(iid), out);
|
|
|
|
|
|
|
|
if (IsEqualGUID(iid, &IID_IUnknown) ||
|
|
|
|
IsEqualGUID(iid, &IID_IInspectable) ||
|
|
|
|
IsEqualGUID(iid, &IID_IVectorView_VoiceInformation))
|
|
|
|
{
|
2022-06-02 13:49:36 +00:00
|
|
|
IInspectable_AddRef((*out = &impl->IVectorView_VoiceInformation_iface));
|
2022-03-09 17:45:31 +00:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
WARN("%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid(iid));
|
|
|
|
*out = NULL;
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
2022-06-02 10:01:53 +00:00
|
|
|
static ULONG WINAPI vector_view_voice_information_AddRef( IVectorView_VoiceInformation *iface )
|
2022-03-09 17:45:31 +00:00
|
|
|
{
|
|
|
|
struct voice_information_vector *impl = impl_from_IVectorView_VoiceInformation(iface);
|
|
|
|
ULONG ref = InterlockedIncrement(&impl->ref);
|
|
|
|
TRACE("iface %p, ref %lu.\n", iface, ref);
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
2022-06-02 10:01:53 +00:00
|
|
|
static ULONG WINAPI vector_view_voice_information_Release( IVectorView_VoiceInformation *iface )
|
2022-03-09 17:45:31 +00:00
|
|
|
{
|
|
|
|
struct voice_information_vector *impl = impl_from_IVectorView_VoiceInformation(iface);
|
|
|
|
ULONG ref = InterlockedDecrement(&impl->ref);
|
|
|
|
TRACE("iface %p, ref %lu.\n", iface, ref);
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
2022-06-02 10:01:53 +00:00
|
|
|
static HRESULT WINAPI vector_view_voice_information_GetIids( IVectorView_VoiceInformation *iface, ULONG *iid_count, IID **iids )
|
2022-03-09 17:45:31 +00:00
|
|
|
{
|
|
|
|
FIXME("iface %p, iid_count %p, iids %p stub!\n", iface, iid_count, iids);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2022-06-02 10:01:53 +00:00
|
|
|
static HRESULT WINAPI vector_view_voice_information_GetRuntimeClassName( IVectorView_VoiceInformation *iface, HSTRING *class_name )
|
2022-03-09 17:45:31 +00:00
|
|
|
{
|
|
|
|
FIXME("iface %p, class_name %p stub!\n", iface, class_name);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2022-06-02 10:01:53 +00:00
|
|
|
static HRESULT WINAPI vector_view_voice_information_GetTrustLevel( IVectorView_VoiceInformation *iface, TrustLevel *trust_level )
|
2022-03-09 17:45:31 +00:00
|
|
|
{
|
|
|
|
FIXME("iface %p, trust_level %p stub!\n", iface, trust_level);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2022-06-02 10:01:53 +00:00
|
|
|
static HRESULT WINAPI vector_view_voice_information_GetAt( IVectorView_VoiceInformation *iface, UINT32 index, IVoiceInformation **value )
|
2022-03-09 17:45:31 +00:00
|
|
|
{
|
|
|
|
FIXME("iface %p, index %#x, value %p stub!\n", iface, index, value);
|
|
|
|
*value = NULL;
|
|
|
|
return E_BOUNDS;
|
|
|
|
}
|
|
|
|
|
2022-06-02 10:01:53 +00:00
|
|
|
static HRESULT WINAPI vector_view_voice_information_get_Size( IVectorView_VoiceInformation *iface, UINT32 *value )
|
2022-03-09 17:45:31 +00:00
|
|
|
{
|
|
|
|
FIXME("iface %p, value %p stub!\n", iface, value);
|
|
|
|
*value = 0;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2022-06-02 10:01:53 +00:00
|
|
|
static HRESULT WINAPI vector_view_voice_information_IndexOf( IVectorView_VoiceInformation *iface,
|
|
|
|
IVoiceInformation *element, UINT32 *index, BOOLEAN *found )
|
2022-03-09 17:45:31 +00:00
|
|
|
{
|
|
|
|
FIXME("iface %p, element %p, index %p, found %p stub!\n", iface, element, index, found);
|
|
|
|
*index = 0;
|
|
|
|
*found = FALSE;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2022-06-02 10:01:53 +00:00
|
|
|
static HRESULT WINAPI vector_view_voice_information_GetMany( IVectorView_VoiceInformation *iface, UINT32 start_index,
|
|
|
|
UINT32 items_size, IVoiceInformation **items, UINT *value )
|
2022-03-09 17:45:31 +00:00
|
|
|
{
|
|
|
|
FIXME("iface %p, start_index %#x, items %p, value %p stub!\n", iface, start_index, items, value);
|
|
|
|
*value = 0;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct IVectorView_VoiceInformationVtbl vector_view_voice_information_vtbl =
|
|
|
|
{
|
|
|
|
vector_view_voice_information_QueryInterface,
|
|
|
|
vector_view_voice_information_AddRef,
|
|
|
|
vector_view_voice_information_Release,
|
|
|
|
/* IInspectable methods */
|
|
|
|
vector_view_voice_information_GetIids,
|
|
|
|
vector_view_voice_information_GetRuntimeClassName,
|
|
|
|
vector_view_voice_information_GetTrustLevel,
|
|
|
|
/* IVectorView<VoiceInformation> methods */
|
|
|
|
vector_view_voice_information_GetAt,
|
|
|
|
vector_view_voice_information_get_Size,
|
|
|
|
vector_view_voice_information_IndexOf,
|
|
|
|
vector_view_voice_information_GetMany,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct voice_information_vector all_voices =
|
|
|
|
{
|
|
|
|
{&vector_view_voice_information_vtbl},
|
|
|
|
0
|
|
|
|
};
|
|
|
|
|
2022-06-07 19:59:32 +00:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* ISpeechSynthesisStream
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct synthesis_stream
|
|
|
|
{
|
|
|
|
ISpeechSynthesisStream ISpeechSynthesisStream_iface;
|
|
|
|
LONG ref;
|
|
|
|
|
|
|
|
IVector_IMediaMarker *markers;
|
|
|
|
};
|
|
|
|
|
|
|
|
static inline struct synthesis_stream *impl_from_ISpeechSynthesisStream( ISpeechSynthesisStream *iface )
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, struct synthesis_stream, ISpeechSynthesisStream_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI synthesis_stream_QueryInterface( ISpeechSynthesisStream *iface, REFIID iid, void **out )
|
|
|
|
{
|
|
|
|
struct synthesis_stream *impl = impl_from_ISpeechSynthesisStream(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p, iid %s, out %p stub!\n", iface, debugstr_guid(iid), out);
|
|
|
|
|
|
|
|
if (IsEqualGUID(iid, &IID_IUnknown) ||
|
|
|
|
IsEqualGUID(iid, &IID_IInspectable) ||
|
|
|
|
IsEqualGUID(iid, &IID_IAgileObject) ||
|
|
|
|
IsEqualGUID(iid, &IID_ISpeechSynthesisStream))
|
|
|
|
{
|
|
|
|
IInspectable_AddRef((*out = &impl->ISpeechSynthesisStream_iface));
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
FIXME("%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid(iid));
|
|
|
|
*out = NULL;
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
ULONG WINAPI synthesis_stream_AddRef( ISpeechSynthesisStream *iface )
|
|
|
|
{
|
|
|
|
struct synthesis_stream *impl = impl_from_ISpeechSynthesisStream(iface);
|
|
|
|
ULONG ref = InterlockedIncrement(&impl->ref);
|
|
|
|
TRACE("iface %p, ref %lu.\n", iface, ref);
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
ULONG WINAPI synthesis_stream_Release( ISpeechSynthesisStream *iface )
|
|
|
|
{
|
|
|
|
struct synthesis_stream *impl = impl_from_ISpeechSynthesisStream(iface);
|
|
|
|
ULONG ref = InterlockedDecrement(&impl->ref);
|
|
|
|
|
|
|
|
TRACE("iface %p, ref %lu.\n", iface, ref);
|
|
|
|
|
|
|
|
if (!ref)
|
|
|
|
free(impl);
|
|
|
|
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI synthesis_stream_GetIids( ISpeechSynthesisStream *iface, ULONG *iid_count, IID **iids )
|
|
|
|
{
|
|
|
|
FIXME("iface %p, iid_count %p, iids %p stub.\n", iface, iid_count, iids);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI synthesis_stream_GetRuntimeClassName( ISpeechSynthesisStream *iface, HSTRING *class_name )
|
|
|
|
{
|
|
|
|
FIXME("iface %p, class_name %p stub.\n", iface, class_name);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI synthesis_stream_GetTrustLevel( ISpeechSynthesisStream *iface, TrustLevel *trust_level )
|
|
|
|
{
|
|
|
|
FIXME("iface %p, trust_level %p stub.\n", iface, trust_level);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI synthesis_stream_get_Markers( ISpeechSynthesisStream *iface, IVectorView_IMediaMarker **value )
|
|
|
|
{
|
|
|
|
struct synthesis_stream *impl = impl_from_ISpeechSynthesisStream(iface);
|
|
|
|
FIXME("iface %p, value %p stub!\n", iface, value);
|
|
|
|
return IVector_IMediaMarker_GetView(impl->markers, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct ISpeechSynthesisStreamVtbl synthesis_stream_vtbl =
|
|
|
|
{
|
|
|
|
/* IUnknown methods */
|
|
|
|
synthesis_stream_QueryInterface,
|
|
|
|
synthesis_stream_AddRef,
|
|
|
|
synthesis_stream_Release,
|
|
|
|
/* IInspectable methods */
|
|
|
|
synthesis_stream_GetIids,
|
|
|
|
synthesis_stream_GetRuntimeClassName,
|
|
|
|
synthesis_stream_GetTrustLevel,
|
|
|
|
/* ISpeechSynthesisStream methods */
|
|
|
|
synthesis_stream_get_Markers
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static HRESULT synthesis_stream_create( ISpeechSynthesisStream **out )
|
|
|
|
{
|
|
|
|
struct synthesis_stream *impl;
|
|
|
|
struct vector_iids markers_iids =
|
|
|
|
{
|
|
|
|
.iterable = &IID_IIterable_IMediaMarker,
|
|
|
|
.iterator = &IID_IIterator_IMediaMarker,
|
|
|
|
.vector = &IID_IVector_IMediaMarker,
|
|
|
|
.view = &IID_IVectorView_IMediaMarker,
|
|
|
|
};
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
TRACE("out %p.\n", out);
|
|
|
|
|
|
|
|
if (!(impl = calloc(1, sizeof(*impl))))
|
|
|
|
{
|
|
|
|
*out = NULL;
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl->ISpeechSynthesisStream_iface.lpVtbl = &synthesis_stream_vtbl;
|
|
|
|
impl->ref = 1;
|
|
|
|
if (FAILED(hr = vector_inspectable_create(&markers_iids, (IVector_IInspectable**)&impl->markers)))
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
TRACE("created ISpeechSynthesisStream %p.\n", impl);
|
|
|
|
*out = &impl->ISpeechSynthesisStream_iface;
|
|
|
|
return S_OK;
|
|
|
|
|
|
|
|
error:
|
|
|
|
free(impl);
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
2022-06-02 14:09:35 +00:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* SpeechSynthesizer runtimeclass
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2022-06-02 10:20:40 +00:00
|
|
|
struct synthesizer
|
2022-03-09 17:45:31 +00:00
|
|
|
{
|
|
|
|
ISpeechSynthesizer ISpeechSynthesizer_iface;
|
2022-03-23 16:21:59 +00:00
|
|
|
ISpeechSynthesizer2 ISpeechSynthesizer2_iface;
|
2022-03-09 17:45:31 +00:00
|
|
|
IClosable IClosable_iface;
|
|
|
|
LONG ref;
|
|
|
|
};
|
|
|
|
|
2022-06-02 14:09:35 +00:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* ISpeechSynthesizer for SpeechSynthesizer runtimeclass
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2022-06-02 10:20:40 +00:00
|
|
|
static inline struct synthesizer *impl_from_ISpeechSynthesizer( ISpeechSynthesizer *iface )
|
2022-03-09 17:45:31 +00:00
|
|
|
{
|
2022-06-02 10:20:40 +00:00
|
|
|
return CONTAINING_RECORD(iface, struct synthesizer, ISpeechSynthesizer_iface);
|
2022-03-09 17:45:31 +00:00
|
|
|
}
|
|
|
|
|
2022-06-02 10:20:40 +00:00
|
|
|
static HRESULT WINAPI synthesizer_QueryInterface( ISpeechSynthesizer *iface, REFIID iid, void **out )
|
2022-03-09 17:45:31 +00:00
|
|
|
{
|
2022-06-02 10:20:40 +00:00
|
|
|
struct synthesizer *impl = impl_from_ISpeechSynthesizer(iface);
|
2022-03-09 17:45:31 +00:00
|
|
|
|
|
|
|
TRACE("iface %p, iid %s, out %p stub!\n", iface, debugstr_guid(iid), out);
|
|
|
|
|
|
|
|
if (IsEqualGUID(iid, &IID_IUnknown) ||
|
|
|
|
IsEqualGUID(iid, &IID_IInspectable) ||
|
|
|
|
IsEqualGUID(iid, &IID_ISpeechSynthesizer))
|
|
|
|
{
|
2022-06-02 13:49:36 +00:00
|
|
|
IInspectable_AddRef((*out = &impl->ISpeechSynthesizer_iface));
|
2022-03-09 17:45:31 +00:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2022-03-23 16:21:59 +00:00
|
|
|
if (IsEqualGUID(iid, &IID_ISpeechSynthesizer2))
|
|
|
|
{
|
2022-06-02 13:49:36 +00:00
|
|
|
IInspectable_AddRef((*out = &impl->ISpeechSynthesizer2_iface));
|
2022-03-23 16:21:59 +00:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2022-03-09 17:45:31 +00:00
|
|
|
if (IsEqualGUID(iid, &IID_IClosable))
|
|
|
|
{
|
2022-06-02 13:49:36 +00:00
|
|
|
IInspectable_AddRef((*out = &impl->IClosable_iface));
|
2022-03-09 17:45:31 +00:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
FIXME("%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid(iid));
|
|
|
|
*out = NULL;
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
2022-06-02 10:20:40 +00:00
|
|
|
static ULONG WINAPI synthesizer_AddRef( ISpeechSynthesizer *iface )
|
2022-03-09 17:45:31 +00:00
|
|
|
{
|
2022-06-02 10:20:40 +00:00
|
|
|
struct synthesizer *impl = impl_from_ISpeechSynthesizer(iface);
|
2022-03-09 17:45:31 +00:00
|
|
|
ULONG ref = InterlockedIncrement(&impl->ref);
|
|
|
|
TRACE("iface %p, ref %lu.\n", iface, ref);
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
2022-06-02 10:20:40 +00:00
|
|
|
static ULONG WINAPI synthesizer_Release( ISpeechSynthesizer *iface )
|
2022-03-09 17:45:31 +00:00
|
|
|
{
|
2022-06-02 10:20:40 +00:00
|
|
|
struct synthesizer *impl = impl_from_ISpeechSynthesizer(iface);
|
2022-03-09 17:45:31 +00:00
|
|
|
ULONG ref = InterlockedDecrement(&impl->ref);
|
|
|
|
|
|
|
|
TRACE("iface %p, ref %lu.\n", iface, ref);
|
|
|
|
|
|
|
|
if (!ref)
|
|
|
|
free(impl);
|
|
|
|
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
2022-06-02 10:20:40 +00:00
|
|
|
static HRESULT WINAPI synthesizer_GetIids( ISpeechSynthesizer *iface, ULONG *iid_count, IID **iids )
|
2022-03-09 17:45:31 +00:00
|
|
|
{
|
|
|
|
FIXME("iface %p, iid_count %p, iids %p stub.\n", iface, iid_count, iids);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2022-06-02 10:20:40 +00:00
|
|
|
static HRESULT WINAPI synthesizer_GetRuntimeClassName( ISpeechSynthesizer *iface, HSTRING *class_name )
|
2022-03-09 17:45:31 +00:00
|
|
|
{
|
|
|
|
FIXME("iface %p, class_name %p stub.\n", iface, class_name);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2022-06-02 10:20:40 +00:00
|
|
|
static HRESULT WINAPI synthesizer_GetTrustLevel( ISpeechSynthesizer *iface, TrustLevel *trust_level )
|
2022-03-09 17:45:31 +00:00
|
|
|
{
|
|
|
|
FIXME("iface %p, trust_level %p stub.\n", iface, trust_level);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2023-01-03 14:08:28 +00:00
|
|
|
static HRESULT synthesizer_synthesize_text_to_stream_async( IInspectable *invoker, IInspectable **result )
|
2022-06-07 19:53:35 +00:00
|
|
|
{
|
2022-06-07 19:59:32 +00:00
|
|
|
return synthesis_stream_create((ISpeechSynthesisStream **)result);
|
2022-06-07 19:53:35 +00:00
|
|
|
}
|
|
|
|
|
2022-06-02 10:20:40 +00:00
|
|
|
static HRESULT WINAPI synthesizer_SynthesizeTextToStreamAsync( ISpeechSynthesizer *iface, HSTRING text,
|
|
|
|
IAsyncOperation_SpeechSynthesisStream **operation )
|
2022-03-09 17:45:31 +00:00
|
|
|
{
|
2022-06-07 19:59:32 +00:00
|
|
|
TRACE("iface %p, text %p, operation %p.\n", iface, text, operation);
|
2022-06-07 19:53:35 +00:00
|
|
|
return async_operation_inspectable_create(&IID_IAsyncOperation_SpeechSynthesisStream, NULL,
|
2023-01-03 14:08:28 +00:00
|
|
|
synthesizer_synthesize_text_to_stream_async, (IAsyncOperation_IInspectable **)operation);
|
2022-03-09 17:45:31 +00:00
|
|
|
}
|
|
|
|
|
2023-01-03 14:08:28 +00:00
|
|
|
static HRESULT synthesizer_synthesize_ssml_to_stream_async( IInspectable *invoker, IInspectable **result )
|
2022-06-07 19:55:55 +00:00
|
|
|
{
|
2022-06-07 19:59:32 +00:00
|
|
|
return synthesis_stream_create((ISpeechSynthesisStream **)result);
|
2022-06-07 19:55:55 +00:00
|
|
|
}
|
|
|
|
|
2022-06-02 10:20:40 +00:00
|
|
|
static HRESULT WINAPI synthesizer_SynthesizeSsmlToStreamAsync( ISpeechSynthesizer *iface, HSTRING ssml,
|
|
|
|
IAsyncOperation_SpeechSynthesisStream **operation )
|
2022-03-09 17:45:31 +00:00
|
|
|
{
|
2022-06-07 19:59:32 +00:00
|
|
|
TRACE("iface %p, ssml %p, operation %p.\n", iface, ssml, operation);
|
2022-06-07 19:55:55 +00:00
|
|
|
return async_operation_inspectable_create(&IID_IAsyncOperation_SpeechSynthesisStream, NULL,
|
2023-01-03 14:08:28 +00:00
|
|
|
synthesizer_synthesize_ssml_to_stream_async, (IAsyncOperation_IInspectable **)operation);
|
2022-03-09 17:45:31 +00:00
|
|
|
}
|
|
|
|
|
2022-06-02 10:20:40 +00:00
|
|
|
static HRESULT WINAPI synthesizer_put_Voice( ISpeechSynthesizer *iface, IVoiceInformation *value )
|
2022-03-09 17:45:31 +00:00
|
|
|
{
|
|
|
|
FIXME("iface %p, value %p stub.\n", iface, value);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2022-06-02 10:20:40 +00:00
|
|
|
static HRESULT WINAPI synthesizer_get_Voice( ISpeechSynthesizer *iface, IVoiceInformation **value )
|
2022-03-09 17:45:31 +00:00
|
|
|
{
|
|
|
|
FIXME("iface %p, value %p stub.\n", iface, value);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2022-06-02 10:20:40 +00:00
|
|
|
static const struct ISpeechSynthesizerVtbl synthesizer_vtbl =
|
2022-03-09 17:45:31 +00:00
|
|
|
{
|
|
|
|
/* IUnknown methods */
|
2022-06-02 10:20:40 +00:00
|
|
|
synthesizer_QueryInterface,
|
|
|
|
synthesizer_AddRef,
|
|
|
|
synthesizer_Release,
|
2022-03-09 17:45:31 +00:00
|
|
|
/* IInspectable methods */
|
2022-06-02 10:20:40 +00:00
|
|
|
synthesizer_GetIids,
|
|
|
|
synthesizer_GetRuntimeClassName,
|
|
|
|
synthesizer_GetTrustLevel,
|
2022-03-09 17:45:31 +00:00
|
|
|
/* ISpeechSynthesizer methods */
|
2022-06-02 10:20:40 +00:00
|
|
|
synthesizer_SynthesizeTextToStreamAsync,
|
|
|
|
synthesizer_SynthesizeSsmlToStreamAsync,
|
|
|
|
synthesizer_put_Voice,
|
|
|
|
synthesizer_get_Voice,
|
2022-03-09 17:45:31 +00:00
|
|
|
};
|
|
|
|
|
2022-06-02 14:09:35 +00:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* ISpeechSynthesizer2 for SpeechSynthesizer runtimeclass
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2022-06-02 10:20:40 +00:00
|
|
|
DEFINE_IINSPECTABLE(synthesizer2, ISpeechSynthesizer2, struct synthesizer, ISpeechSynthesizer_iface)
|
2022-03-23 16:21:59 +00:00
|
|
|
|
2022-06-02 10:20:40 +00:00
|
|
|
static HRESULT WINAPI synthesizer2_get_Options( ISpeechSynthesizer2 *iface, ISpeechSynthesizerOptions **value )
|
2022-03-23 16:21:59 +00:00
|
|
|
{
|
|
|
|
FIXME("iface %p, value %p stub.\n", iface, value);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2022-06-02 10:20:40 +00:00
|
|
|
static const struct ISpeechSynthesizer2Vtbl synthesizer2_vtbl =
|
2022-03-23 16:21:59 +00:00
|
|
|
{
|
|
|
|
/* IUnknown methods */
|
2022-06-02 10:20:40 +00:00
|
|
|
synthesizer2_QueryInterface,
|
|
|
|
synthesizer2_AddRef,
|
|
|
|
synthesizer2_Release,
|
2022-03-23 16:21:59 +00:00
|
|
|
/* IInspectable methods */
|
2022-06-02 10:20:40 +00:00
|
|
|
synthesizer2_GetIids,
|
|
|
|
synthesizer2_GetRuntimeClassName,
|
|
|
|
synthesizer2_GetTrustLevel,
|
2022-03-23 16:21:59 +00:00
|
|
|
/* ISpeechSynthesizer2 methods */
|
2022-06-02 10:20:40 +00:00
|
|
|
synthesizer2_get_Options,
|
2022-03-23 16:21:59 +00:00
|
|
|
};
|
|
|
|
|
2022-06-02 14:09:35 +00:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* IClosable for SpeechSynthesizer runtimeclass
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2022-06-02 10:20:40 +00:00
|
|
|
DEFINE_IINSPECTABLE(closable, IClosable, struct synthesizer, ISpeechSynthesizer_iface)
|
2022-03-09 17:45:31 +00:00
|
|
|
|
2022-06-02 10:01:53 +00:00
|
|
|
static HRESULT WINAPI closable_Close( IClosable *iface )
|
2022-03-09 17:45:31 +00:00
|
|
|
{
|
|
|
|
FIXME("iface %p stub.\n", iface);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct IClosableVtbl closable_vtbl =
|
|
|
|
{
|
|
|
|
/* IUnknown methods */
|
|
|
|
closable_QueryInterface,
|
|
|
|
closable_AddRef,
|
|
|
|
closable_Release,
|
|
|
|
/* IInspectable methods */
|
|
|
|
closable_GetIids,
|
|
|
|
closable_GetRuntimeClassName,
|
|
|
|
closable_GetTrustLevel,
|
|
|
|
/* IClosable methods */
|
|
|
|
closable_Close,
|
|
|
|
};
|
|
|
|
|
2022-06-02 14:09:35 +00:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Static interfaces for SpeechSynthesizer runtimeclass
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2022-03-09 17:45:33 +00:00
|
|
|
struct synthesizer_statics
|
2022-03-09 17:45:31 +00:00
|
|
|
{
|
|
|
|
IActivationFactory IActivationFactory_iface;
|
|
|
|
IInstalledVoicesStatic IInstalledVoicesStatic_iface;
|
|
|
|
LONG ref;
|
|
|
|
};
|
|
|
|
|
2022-06-02 14:09:35 +00:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* IActivationFactory for SpeechSynthesizer runtimeclass
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2022-06-02 10:01:53 +00:00
|
|
|
static inline struct synthesizer_statics *impl_from_IActivationFactory( IActivationFactory *iface )
|
2022-03-09 17:45:31 +00:00
|
|
|
{
|
2022-03-09 17:45:33 +00:00
|
|
|
return CONTAINING_RECORD(iface, struct synthesizer_statics, IActivationFactory_iface);
|
2022-03-09 17:45:31 +00:00
|
|
|
}
|
|
|
|
|
2022-06-02 10:01:53 +00:00
|
|
|
static HRESULT WINAPI factory_QueryInterface( IActivationFactory *iface, REFIID iid, void **out )
|
2022-03-09 17:45:31 +00:00
|
|
|
{
|
2022-03-09 17:45:33 +00:00
|
|
|
struct synthesizer_statics *impl = impl_from_IActivationFactory(iface);
|
2022-03-09 17:45:31 +00:00
|
|
|
|
|
|
|
TRACE("iface %p, iid %s, out %p stub!\n", iface, debugstr_guid(iid), out);
|
|
|
|
|
|
|
|
if (IsEqualGUID(iid, &IID_IUnknown) ||
|
|
|
|
IsEqualGUID(iid, &IID_IInspectable) ||
|
|
|
|
IsEqualGUID(iid, &IID_IAgileObject) ||
|
|
|
|
IsEqualGUID(iid, &IID_IActivationFactory))
|
|
|
|
{
|
2022-06-02 13:49:36 +00:00
|
|
|
IInspectable_AddRef((*out = &impl->IActivationFactory_iface));
|
2022-03-09 17:45:31 +00:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (IsEqualGUID(iid, &IID_IInstalledVoicesStatic))
|
|
|
|
{
|
2022-06-02 13:49:36 +00:00
|
|
|
IInspectable_AddRef((*out = &impl->IInstalledVoicesStatic_iface));
|
2022-03-09 17:45:31 +00:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
FIXME("%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid(iid));
|
|
|
|
*out = NULL;
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
2022-06-02 10:01:53 +00:00
|
|
|
static ULONG WINAPI factory_AddRef( IActivationFactory *iface )
|
2022-03-09 17:45:31 +00:00
|
|
|
{
|
2022-03-09 17:45:33 +00:00
|
|
|
struct synthesizer_statics *impl = impl_from_IActivationFactory(iface);
|
2022-03-09 17:45:31 +00:00
|
|
|
ULONG ref = InterlockedIncrement(&impl->ref);
|
|
|
|
TRACE("iface %p, ref %lu.\n", iface, ref);
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
2022-06-02 10:01:53 +00:00
|
|
|
static ULONG WINAPI factory_Release( IActivationFactory *iface )
|
2022-03-09 17:45:31 +00:00
|
|
|
{
|
2022-03-09 17:45:33 +00:00
|
|
|
struct synthesizer_statics *impl = impl_from_IActivationFactory(iface);
|
2022-03-09 17:45:31 +00:00
|
|
|
ULONG ref = InterlockedDecrement(&impl->ref);
|
|
|
|
TRACE("iface %p, ref %lu.\n", iface, ref);
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
2022-06-02 10:01:53 +00:00
|
|
|
static HRESULT WINAPI factory_GetIids( IActivationFactory *iface, ULONG *iid_count, IID **iids )
|
2022-03-09 17:45:31 +00:00
|
|
|
{
|
|
|
|
FIXME("iface %p, iid_count %p, iids %p stub!\n", iface, iid_count, iids);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2022-06-02 10:01:53 +00:00
|
|
|
static HRESULT WINAPI factory_GetRuntimeClassName( IActivationFactory *iface, HSTRING *class_name )
|
2022-03-09 17:45:31 +00:00
|
|
|
{
|
|
|
|
FIXME("iface %p, class_name %p stub!\n", iface, class_name);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2022-06-02 10:01:53 +00:00
|
|
|
static HRESULT WINAPI factory_GetTrustLevel( IActivationFactory *iface, TrustLevel *trust_level )
|
2022-03-09 17:45:31 +00:00
|
|
|
{
|
|
|
|
FIXME("iface %p, trust_level %p stub!\n", iface, trust_level);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2022-06-02 10:01:53 +00:00
|
|
|
static HRESULT WINAPI factory_ActivateInstance( IActivationFactory *iface, IInspectable **instance )
|
2022-03-09 17:45:31 +00:00
|
|
|
{
|
2022-06-02 13:59:55 +00:00
|
|
|
struct synthesizer *impl;
|
2022-03-09 17:45:31 +00:00
|
|
|
|
|
|
|
TRACE("iface %p, instance %p.\n", iface, instance);
|
|
|
|
|
2022-06-02 13:59:55 +00:00
|
|
|
if (!(impl = calloc(1, sizeof(*impl))))
|
2022-03-09 17:45:31 +00:00
|
|
|
{
|
|
|
|
*instance = NULL;
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
|
2022-06-02 13:59:55 +00:00
|
|
|
impl->ISpeechSynthesizer_iface.lpVtbl = &synthesizer_vtbl;
|
|
|
|
impl->ISpeechSynthesizer2_iface.lpVtbl = &synthesizer2_vtbl;
|
|
|
|
impl->IClosable_iface.lpVtbl = &closable_vtbl;
|
|
|
|
impl->ref = 1;
|
|
|
|
|
|
|
|
*instance = (IInspectable *)&impl->ISpeechSynthesizer_iface;
|
2022-03-09 17:45:31 +00:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2022-03-09 17:45:33 +00:00
|
|
|
static const struct IActivationFactoryVtbl factory_vtbl =
|
2022-03-09 17:45:31 +00:00
|
|
|
{
|
2022-03-09 17:45:33 +00:00
|
|
|
factory_QueryInterface,
|
|
|
|
factory_AddRef,
|
|
|
|
factory_Release,
|
2022-03-09 17:45:31 +00:00
|
|
|
/* IInspectable methods */
|
2022-03-09 17:45:33 +00:00
|
|
|
factory_GetIids,
|
|
|
|
factory_GetRuntimeClassName,
|
|
|
|
factory_GetTrustLevel,
|
2022-03-09 17:45:31 +00:00
|
|
|
/* IActivationFactory methods */
|
2022-03-09 17:45:33 +00:00
|
|
|
factory_ActivateInstance,
|
2022-03-09 17:45:31 +00:00
|
|
|
};
|
|
|
|
|
2022-06-02 14:09:35 +00:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* IInstalledVoicesStatic for SpeechSynthesizer runtimeclass
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2022-06-02 10:58:13 +00:00
|
|
|
DEFINE_IINSPECTABLE(installed_voices_static, IInstalledVoicesStatic, struct synthesizer_statics, IActivationFactory_iface)
|
2022-03-09 17:45:31 +00:00
|
|
|
|
2022-06-02 10:01:53 +00:00
|
|
|
static HRESULT WINAPI installed_voices_static_get_AllVoices( IInstalledVoicesStatic *iface, IVectorView_VoiceInformation **value )
|
2022-03-09 17:45:31 +00:00
|
|
|
{
|
|
|
|
TRACE("iface %p, value %p.\n", iface, value);
|
|
|
|
*value = &all_voices.IVectorView_VoiceInformation_iface;
|
|
|
|
IVectorView_VoiceInformation_AddRef(*value);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2022-06-02 10:01:53 +00:00
|
|
|
static HRESULT WINAPI installed_voices_static_get_DefaultVoice( IInstalledVoicesStatic *iface, IVoiceInformation **value )
|
2022-03-09 17:45:31 +00:00
|
|
|
{
|
|
|
|
FIXME("iface %p, value %p stub!\n", iface, value);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct IInstalledVoicesStaticVtbl installed_voices_static_vtbl =
|
|
|
|
{
|
|
|
|
installed_voices_static_QueryInterface,
|
|
|
|
installed_voices_static_AddRef,
|
|
|
|
installed_voices_static_Release,
|
|
|
|
/* IInspectable methods */
|
|
|
|
installed_voices_static_GetIids,
|
|
|
|
installed_voices_static_GetRuntimeClassName,
|
|
|
|
installed_voices_static_GetTrustLevel,
|
|
|
|
/* IInstalledVoicesStatic methods */
|
|
|
|
installed_voices_static_get_AllVoices,
|
|
|
|
installed_voices_static_get_DefaultVoice,
|
|
|
|
};
|
|
|
|
|
2022-03-09 17:45:33 +00:00
|
|
|
static struct synthesizer_statics synthesizer_statics =
|
2022-03-09 17:45:31 +00:00
|
|
|
{
|
2022-03-09 17:45:33 +00:00
|
|
|
.IActivationFactory_iface = {&factory_vtbl},
|
|
|
|
.IInstalledVoicesStatic_iface = {&installed_voices_static_vtbl},
|
|
|
|
.ref = 1
|
2022-03-09 17:45:31 +00:00
|
|
|
};
|
|
|
|
|
2022-03-09 17:45:33 +00:00
|
|
|
IActivationFactory *synthesizer_factory = &synthesizer_statics.IActivationFactory_iface;
|