forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtts_utterance_impl.cc
224 lines (177 loc) · 5.7 KB
/
tts_utterance_impl.cc
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
// Copyright (c) 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/browser/speech/tts_utterance_impl.h"
#include <memory>
#include "base/values.h"
#include "content/public/browser/web_contents.h"
#include "third_party/blink/public/mojom/speech/speech_synthesis.mojom.h"
namespace content {
namespace {
// Returns true if this event type is one that indicates an utterance
// is finished and can be destroyed.
bool IsFinalTtsEventType(TtsEventType event_type) {
return (event_type == TTS_EVENT_END || event_type == TTS_EVENT_INTERRUPTED ||
event_type == TTS_EVENT_CANCELLED || event_type == TTS_EVENT_ERROR);
}
} // namespace
//
// UtteranceContinuousParameters
//
UtteranceContinuousParameters::UtteranceContinuousParameters()
: rate(blink::mojom::kSpeechSynthesisDoublePrefNotSet),
pitch(blink::mojom::kSpeechSynthesisDoublePrefNotSet),
volume(blink::mojom::kSpeechSynthesisDoublePrefNotSet) {}
//
// Utterance
//
// static
int TtsUtteranceImpl::next_utterance_id_ = 0;
// static
std::unique_ptr<TtsUtterance> TtsUtterance::Create(WebContents* web_contents) {
DCHECK(web_contents);
return std::make_unique<TtsUtteranceImpl>(web_contents->GetBrowserContext(),
web_contents);
}
// static
std::unique_ptr<TtsUtterance> TtsUtterance::Create(
BrowserContext* browser_context) {
DCHECK(browser_context);
return std::make_unique<TtsUtteranceImpl>(browser_context, nullptr);
}
// static
std::unique_ptr<TtsUtterance> TtsUtterance::Create() {
return std::make_unique<TtsUtteranceImpl>(nullptr, nullptr);
}
TtsUtteranceImpl::TtsUtteranceImpl(BrowserContext* browser_context,
WebContents* web_contents)
: browser_context_(browser_context),
was_created_with_web_contents_(web_contents != nullptr),
id_(next_utterance_id_++),
src_id_(-1),
should_clear_queue_(true),
char_index_(0),
finished_(false) {
options_ = std::make_unique<base::DictionaryValue>();
if (web_contents) {
web_contents_ = web_contents->GetWeakPtr();
}
}
TtsUtteranceImpl::~TtsUtteranceImpl() {
// It's an error if an Utterance is destructed without being finished,
// unless |browser_context_| is nullptr because it's a unit test.
DCHECK(finished_ || !browser_context_);
}
void TtsUtteranceImpl::OnTtsEvent(TtsEventType event_type,
int char_index,
int length,
const std::string& error_message) {
if (char_index >= 0)
char_index_ = char_index;
if (IsFinalTtsEventType(event_type))
finished_ = true;
if (event_delegate_)
event_delegate_->OnTtsEvent(this, event_type, char_index, length,
error_message);
if (finished_)
event_delegate_ = nullptr;
}
void TtsUtteranceImpl::Finish() {
finished_ = true;
}
void TtsUtteranceImpl::SetText(const std::string& text) {
text_ = text;
}
const std::string& TtsUtteranceImpl::GetText() {
return text_;
}
void TtsUtteranceImpl::SetOptions(const base::Value* options) {
options_ = base::Value::ToUniquePtrValue(options->Clone());
}
const base::Value* TtsUtteranceImpl::GetOptions() {
return options_.get();
}
void TtsUtteranceImpl::SetSrcId(int src_id) {
src_id_ = src_id;
}
int TtsUtteranceImpl::GetSrcId() {
return src_id_;
}
void TtsUtteranceImpl::SetSrcUrl(const GURL& src_url) {
src_url_ = src_url;
}
const GURL& TtsUtteranceImpl::GetSrcUrl() {
return src_url_;
}
void TtsUtteranceImpl::SetVoiceName(const std::string& voice_name) {
voice_name_ = voice_name;
}
const std::string& TtsUtteranceImpl::GetVoiceName() {
return voice_name_;
}
void TtsUtteranceImpl::SetLang(const std::string& lang) {
lang_ = lang;
}
const std::string& TtsUtteranceImpl::GetLang() {
return lang_;
}
void TtsUtteranceImpl::SetContinuousParameters(const double rate,
const double pitch,
const double volume) {
continuous_parameters_.rate = rate;
continuous_parameters_.pitch = pitch;
continuous_parameters_.volume = volume;
}
const UtteranceContinuousParameters&
TtsUtteranceImpl::GetContinuousParameters() {
return continuous_parameters_;
}
void TtsUtteranceImpl::SetShouldClearQueue(bool value) {
should_clear_queue_ = value;
}
bool TtsUtteranceImpl::GetShouldClearQueue() {
return should_clear_queue_;
}
void TtsUtteranceImpl::SetRequiredEventTypes(
const std::set<TtsEventType>& types) {
required_event_types_ = types;
}
const std::set<TtsEventType>& TtsUtteranceImpl::GetRequiredEventTypes() {
return required_event_types_;
}
void TtsUtteranceImpl::SetDesiredEventTypes(
const std::set<TtsEventType>& types) {
desired_event_types_ = types;
}
const std::set<TtsEventType>& TtsUtteranceImpl::GetDesiredEventTypes() {
return desired_event_types_;
}
void TtsUtteranceImpl::SetEngineId(const std::string& engine_id) {
engine_id_ = engine_id;
}
const std::string& TtsUtteranceImpl::GetEngineId() {
return engine_id_;
}
void TtsUtteranceImpl::SetEventDelegate(
UtteranceEventDelegate* event_delegate) {
event_delegate_ = event_delegate;
}
UtteranceEventDelegate* TtsUtteranceImpl::GetEventDelegate() {
return event_delegate_;
}
BrowserContext* TtsUtteranceImpl::GetBrowserContext() {
return browser_context_;
}
void TtsUtteranceImpl::ClearBrowserContext() {
browser_context_ = nullptr;
}
int TtsUtteranceImpl::GetId() {
return id_;
}
bool TtsUtteranceImpl::IsFinished() {
return finished_;
}
WebContents* TtsUtteranceImpl::GetWebContents() {
return web_contents_.get();
}
} // namespace content