1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim:set ts=2 sw=2 sts=2 et cindent: */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef mozilla_dom_nsSynthVoiceRegistry_h
#define mozilla_dom_nsSynthVoiceRegistry_h
#include "nsISynthVoiceRegistry.h"
#include "nsRefPtrHashtable.h"
#include "nsTArray.h"
#include "MediaStreamGraph.h"
class nsISpeechService;
namespace mozilla {
namespace dom {
class RemoteVoice;
class SpeechSynthesisUtterance;
class SpeechSynthesisChild;
class nsSpeechTask;
class VoiceData;
class GlobalQueueItem;
class nsSynthVoiceRegistry final : public nsISynthVoiceRegistry
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSISYNTHVOICEREGISTRY
nsSynthVoiceRegistry();
already_AddRefed<nsSpeechTask> SpeakUtterance(SpeechSynthesisUtterance& aUtterance,
const nsAString& aDocLang);
void Speak(const nsAString& aText, const nsAString& aLang,
const nsAString& aUri, const float& aVolume, const float& aRate,
const float& aPitch, nsSpeechTask* aTask);
void SendVoicesAndState(InfallibleTArray<RemoteVoice>* aVoices,
InfallibleTArray<nsString>* aDefaults,
bool* aIsSpeaking);
void SpeakNext();
void ResumeQueue();
bool IsSpeaking();
void SetIsSpeaking(bool aIsSpeaking);
static nsSynthVoiceRegistry* GetInstance();
static already_AddRefed<nsSynthVoiceRegistry> GetInstanceForService();
static void RecvRemoveVoice(const nsAString& aUri);
static void RecvAddVoice(const RemoteVoice& aVoice);
static void RecvSetDefaultVoice(const nsAString& aUri, bool aIsDefault);
static void RecvIsSpeakingChanged(bool aIsSpeaking);
static void RecvNotifyVoicesChanged();
static void Shutdown();
private:
virtual ~nsSynthVoiceRegistry();
VoiceData* FindBestMatch(const nsAString& aUri, const nsAString& lang);
bool FindVoiceByLang(const nsAString& aLang, VoiceData** aRetval);
nsresult AddVoiceImpl(nsISpeechService* aService,
const nsAString& aUri,
const nsAString& aName,
const nsAString& aLang,
bool aLocalService,
bool aQueuesUtterances);
void SpeakImpl(VoiceData* aVoice,
nsSpeechTask* aTask,
const nsAString& aText,
const float& aVolume,
const float& aRate,
const float& aPitch);
nsTArray<RefPtr<VoiceData>> mVoices;
nsTArray<RefPtr<VoiceData>> mDefaultVoices;
nsRefPtrHashtable<nsStringHashKey, VoiceData> mUriVoiceMap;
SpeechSynthesisChild* mSpeechSynthChild;
bool mUseGlobalQueue;
nsTArray<RefPtr<GlobalQueueItem>> mGlobalQueue;
bool mIsSpeaking;
};
} // namespace dom
} // namespace mozilla
#endif
|