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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
|
// Copyright (c) 2012 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/renderer/speech_recognition_dispatcher.h"
#include "base/basictypes.h"
#include "base/strings/utf_string_conversions.h"
#include "content/common/speech_recognition_messages.h"
#include "content/renderer/render_view_impl.h"
#include "third_party/WebKit/public/platform/WebString.h"
#include "third_party/WebKit/public/platform/WebVector.h"
#include "third_party/WebKit/public/web/WebSpeechGrammar.h"
#include "third_party/WebKit/public/web/WebSpeechRecognitionParams.h"
#include "third_party/WebKit/public/web/WebSpeechRecognitionResult.h"
#include "third_party/WebKit/public/web/WebSpeechRecognizerClient.h"
using blink::WebVector;
using blink::WebString;
using blink::WebSpeechGrammar;
using blink::WebSpeechRecognitionHandle;
using blink::WebSpeechRecognitionResult;
using blink::WebSpeechRecognitionParams;
using blink::WebSpeechRecognizerClient;
namespace content {
SpeechRecognitionDispatcher::SpeechRecognitionDispatcher(
RenderViewImpl* render_view)
: RenderViewObserver(render_view),
recognizer_client_(NULL),
next_id_(1) {
}
SpeechRecognitionDispatcher::~SpeechRecognitionDispatcher() {
}
bool SpeechRecognitionDispatcher::OnMessageReceived(
const IPC::Message& message) {
bool handled = true;
IPC_BEGIN_MESSAGE_MAP(SpeechRecognitionDispatcher, message)
IPC_MESSAGE_HANDLER(SpeechRecognitionMsg_Started, OnRecognitionStarted)
IPC_MESSAGE_HANDLER(SpeechRecognitionMsg_AudioStarted, OnAudioStarted)
IPC_MESSAGE_HANDLER(SpeechRecognitionMsg_SoundStarted, OnSoundStarted)
IPC_MESSAGE_HANDLER(SpeechRecognitionMsg_SoundEnded, OnSoundEnded)
IPC_MESSAGE_HANDLER(SpeechRecognitionMsg_AudioEnded, OnAudioEnded)
IPC_MESSAGE_HANDLER(SpeechRecognitionMsg_ErrorOccurred, OnErrorOccurred)
IPC_MESSAGE_HANDLER(SpeechRecognitionMsg_Ended, OnRecognitionEnded)
IPC_MESSAGE_HANDLER(SpeechRecognitionMsg_ResultRetrieved,
OnResultsRetrieved)
IPC_MESSAGE_UNHANDLED(handled = false)
IPC_END_MESSAGE_MAP()
return handled;
}
void SpeechRecognitionDispatcher::start(
const WebSpeechRecognitionHandle& handle,
const WebSpeechRecognitionParams& params,
WebSpeechRecognizerClient* recognizer_client) {
DCHECK(!recognizer_client_ || recognizer_client_ == recognizer_client);
recognizer_client_ = recognizer_client;
SpeechRecognitionHostMsg_StartRequest_Params msg_params;
for (size_t i = 0; i < params.grammars().size(); ++i) {
const WebSpeechGrammar& grammar = params.grammars()[i];
msg_params.grammars.push_back(
SpeechRecognitionGrammar(grammar.src().spec(), grammar.weight()));
}
msg_params.language = base::UTF16ToUTF8(params.language());
msg_params.max_hypotheses = static_cast<uint32>(params.maxAlternatives());
msg_params.continuous = params.continuous();
msg_params.interim_results = params.interimResults();
msg_params.origin_url = params.origin().toString().utf8();
msg_params.render_view_id = routing_id();
msg_params.request_id = GetOrCreateIDForHandle(handle);
// The handle mapping will be removed in |OnRecognitionEnd|.
Send(new SpeechRecognitionHostMsg_StartRequest(msg_params));
}
void SpeechRecognitionDispatcher::stop(
const WebSpeechRecognitionHandle& handle,
WebSpeechRecognizerClient* recognizer_client) {
// Ignore a |stop| issued without a matching |start|.
if (recognizer_client_ != recognizer_client || !HandleExists(handle))
return;
Send(new SpeechRecognitionHostMsg_StopCaptureRequest(
routing_id(), GetOrCreateIDForHandle(handle)));
}
void SpeechRecognitionDispatcher::abort(
const WebSpeechRecognitionHandle& handle,
WebSpeechRecognizerClient* recognizer_client) {
// Ignore an |abort| issued without a matching |start|.
if (recognizer_client_ != recognizer_client || !HandleExists(handle))
return;
Send(new SpeechRecognitionHostMsg_AbortRequest(
routing_id(), GetOrCreateIDForHandle(handle)));
}
void SpeechRecognitionDispatcher::OnRecognitionStarted(int request_id) {
recognizer_client_->didStart(GetHandleFromID(request_id));
}
void SpeechRecognitionDispatcher::OnAudioStarted(int request_id) {
recognizer_client_->didStartAudio(GetHandleFromID(request_id));
}
void SpeechRecognitionDispatcher::OnSoundStarted(int request_id) {
recognizer_client_->didStartSound(GetHandleFromID(request_id));
}
void SpeechRecognitionDispatcher::OnSoundEnded(int request_id) {
recognizer_client_->didEndSound(GetHandleFromID(request_id));
}
void SpeechRecognitionDispatcher::OnAudioEnded(int request_id) {
recognizer_client_->didEndAudio(GetHandleFromID(request_id));
}
static WebSpeechRecognizerClient::ErrorCode WebKitErrorCode(
SpeechRecognitionErrorCode e) {
switch (e) {
case SPEECH_RECOGNITION_ERROR_NONE:
NOTREACHED();
return WebSpeechRecognizerClient::OtherError;
case SPEECH_RECOGNITION_ERROR_ABORTED:
return WebSpeechRecognizerClient::AbortedError;
case SPEECH_RECOGNITION_ERROR_AUDIO:
return WebSpeechRecognizerClient::AudioCaptureError;
case SPEECH_RECOGNITION_ERROR_NETWORK:
return WebSpeechRecognizerClient::NetworkError;
case SPEECH_RECOGNITION_ERROR_NOT_ALLOWED:
return WebSpeechRecognizerClient::NotAllowedError;
case SPEECH_RECOGNITION_ERROR_NO_SPEECH:
return WebSpeechRecognizerClient::NoSpeechError;
case SPEECH_RECOGNITION_ERROR_NO_MATCH:
NOTREACHED();
return WebSpeechRecognizerClient::OtherError;
case SPEECH_RECOGNITION_ERROR_BAD_GRAMMAR:
return WebSpeechRecognizerClient::BadGrammarError;
}
NOTREACHED();
return WebSpeechRecognizerClient::OtherError;
}
void SpeechRecognitionDispatcher::OnErrorOccurred(
int request_id, const SpeechRecognitionError& error) {
if (error.code == SPEECH_RECOGNITION_ERROR_NO_MATCH) {
recognizer_client_->didReceiveNoMatch(GetHandleFromID(request_id),
WebSpeechRecognitionResult());
} else {
recognizer_client_->didReceiveError(
GetHandleFromID(request_id),
WebString(), // TODO(primiano): message?
WebKitErrorCode(error.code));
}
}
void SpeechRecognitionDispatcher::OnRecognitionEnded(int request_id) {
// TODO(tommi): It is possible that the handle isn't found in the array if
// the user just refreshed the page. It seems that we then get a notification
// for the previously loaded instance of the page.
HandleMap::iterator iter = handle_map_.find(request_id);
if (iter == handle_map_.end()) {
DLOG(ERROR) << "OnRecognitionEnded called for a handle that doesn't exist";
} else {
WebSpeechRecognitionHandle handle = iter->second;
// Note: we need to erase the handle from the map *before* calling didEnd.
// didEnd may call back synchronously to start a new recognition session,
// and we don't want to delete the handle from the map after that happens.
handle_map_.erase(request_id);
recognizer_client_->didEnd(handle);
}
}
void SpeechRecognitionDispatcher::OnResultsRetrieved(
int request_id, const SpeechRecognitionResults& results) {
size_t provisional_count = 0;
SpeechRecognitionResults::const_iterator it = results.begin();
for (; it != results.end(); ++it) {
if (it->is_provisional)
++provisional_count;
}
WebVector<WebSpeechRecognitionResult> provisional(provisional_count);
WebVector<WebSpeechRecognitionResult> final(
results.size() - provisional_count);
int provisional_index = 0, final_index = 0;
for (it = results.begin(); it != results.end(); ++it) {
const SpeechRecognitionResult& result = (*it);
WebSpeechRecognitionResult* webkit_result = result.is_provisional ?
&provisional[provisional_index++] : &final[final_index++];
const size_t num_hypotheses = result.hypotheses.size();
WebVector<WebString> transcripts(num_hypotheses);
WebVector<float> confidences(num_hypotheses);
for (size_t i = 0; i < num_hypotheses; ++i) {
transcripts[i] = result.hypotheses[i].utterance;
confidences[i] = static_cast<float>(result.hypotheses[i].confidence);
}
webkit_result->assign(transcripts, confidences, !result.is_provisional);
}
recognizer_client_->didReceiveResults(
GetHandleFromID(request_id), final, provisional);
}
int SpeechRecognitionDispatcher::GetOrCreateIDForHandle(
const WebSpeechRecognitionHandle& handle) {
// Search first for an existing mapping.
for (HandleMap::iterator iter = handle_map_.begin();
iter != handle_map_.end();
++iter) {
if (iter->second.equals(handle))
return iter->first;
}
// If no existing mapping found, create a new one.
const int new_id = next_id_;
handle_map_[new_id] = handle;
++next_id_;
return new_id;
}
bool SpeechRecognitionDispatcher::HandleExists(
const WebSpeechRecognitionHandle& handle) {
for (HandleMap::iterator iter = handle_map_.begin();
iter != handle_map_.end();
++iter) {
if (iter->second.equals(handle))
return true;
}
return false;
}
const WebSpeechRecognitionHandle& SpeechRecognitionDispatcher::GetHandleFromID(
int request_id) {
HandleMap::iterator iter = handle_map_.find(request_id);
DCHECK(iter != handle_map_.end());
return iter->second;
}
} // namespace content
|