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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
|
// Copyright 2013 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 "chrome/browser/search/hotword_service.h"
#include "base/command_line.h"
#include "base/i18n/case_conversion.h"
#include "base/metrics/field_trial.h"
#include "base/metrics/histogram.h"
#include "base/path_service.h"
#include "base/prefs/pref_service.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/chrome_notification_types.h"
#include "chrome/browser/extensions/api/hotword_private/hotword_private_api.h"
#include "chrome/browser/extensions/extension_service.h"
#include "chrome/browser/extensions/pending_extension_manager.h"
#include "chrome/browser/extensions/updater/extension_updater.h"
#include "chrome/browser/extensions/webstore_startup_installer.h"
#include "chrome/browser/plugins/plugin_prefs.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/search/hotword_audio_history_handler.h"
#include "chrome/browser/search/hotword_service_factory.h"
#include "chrome/browser/ui/extensions/application_launch.h"
#include "chrome/common/chrome_paths.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/common/extensions/extension_constants.h"
#include "chrome/common/pref_names.h"
#include "chrome/grit/generated_resources.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/notification_service.h"
#include "content/public/browser/plugin_service.h"
#include "content/public/common/webplugininfo.h"
#include "extensions/browser/extension_system.h"
#include "extensions/browser/uninstall_reason.h"
#include "extensions/common/extension.h"
#include "extensions/common/one_shot_event.h"
#include "ui/base/l10n/l10n_util.h"
using extensions::BrowserContextKeyedAPIFactory;
using extensions::HotwordPrivateEventService;
namespace {
// Allowed languages for hotwording.
static const char* kSupportedLocales[] = {
"en",
"de",
"fr",
"ru"
};
// Enum describing the state of the hotword preference.
// This is used for UMA stats -- do not reorder or delete items; only add to
// the end.
enum HotwordEnabled {
UNSET = 0, // The hotword preference has not been set.
ENABLED, // The hotword preference is enabled.
DISABLED, // The hotword preference is disabled.
NUM_HOTWORD_ENABLED_METRICS
};
// Enum describing the availability state of the hotword extension.
// This is used for UMA stats -- do not reorder or delete items; only add to
// the end.
enum HotwordExtensionAvailability {
UNAVAILABLE = 0,
AVAILABLE,
PENDING_DOWNLOAD,
DISABLED_EXTENSION,
NUM_HOTWORD_EXTENSION_AVAILABILITY_METRICS
};
// Enum describing the types of errors that can arise when determining
// if hotwording can be used. NO_ERROR is used so it can be seen how often
// errors arise relative to when they do not.
// This is used for UMA stats -- do not reorder or delete items; only add to
// the end.
enum HotwordError {
NO_HOTWORD_ERROR = 0,
GENERIC_HOTWORD_ERROR,
NACL_HOTWORD_ERROR,
MICROPHONE_HOTWORD_ERROR,
NUM_HOTWORD_ERROR_METRICS
};
void RecordExtensionAvailabilityMetrics(
ExtensionService* service,
const extensions::Extension* extension) {
HotwordExtensionAvailability availability_state = UNAVAILABLE;
if (extension) {
availability_state = AVAILABLE;
} else if (service->pending_extension_manager() &&
service->pending_extension_manager()->IsIdPending(
extension_misc::kHotwordExtensionId)) {
availability_state = PENDING_DOWNLOAD;
} else if (!service->IsExtensionEnabled(
extension_misc::kHotwordExtensionId)) {
availability_state = DISABLED_EXTENSION;
}
UMA_HISTOGRAM_ENUMERATION("Hotword.HotwordExtensionAvailability",
availability_state,
NUM_HOTWORD_EXTENSION_AVAILABILITY_METRICS);
}
void RecordLoggingMetrics(Profile* profile) {
// If the user is not opted in to hotword voice search, the audio logging
// metric is not valid so it is not recorded.
if (!profile->GetPrefs()->GetBoolean(prefs::kHotwordSearchEnabled))
return;
UMA_HISTOGRAM_BOOLEAN(
"Hotword.HotwordAudioLogging",
profile->GetPrefs()->GetBoolean(prefs::kHotwordAudioLoggingEnabled));
}
void RecordErrorMetrics(int error_message) {
HotwordError error = NO_HOTWORD_ERROR;
switch (error_message) {
case IDS_HOTWORD_GENERIC_ERROR_MESSAGE:
error = GENERIC_HOTWORD_ERROR;
break;
case IDS_HOTWORD_NACL_DISABLED_ERROR_MESSAGE:
error = NACL_HOTWORD_ERROR;
break;
case IDS_HOTWORD_MICROPHONE_ERROR_MESSAGE:
error = MICROPHONE_HOTWORD_ERROR;
break;
default:
error = NO_HOTWORD_ERROR;
}
UMA_HISTOGRAM_ENUMERATION("Hotword.HotwordError",
error,
NUM_HOTWORD_ERROR_METRICS);
}
ExtensionService* GetExtensionService(Profile* profile) {
DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI));
extensions::ExtensionSystem* extension_system =
extensions::ExtensionSystem::Get(profile);
return extension_system ? extension_system->extension_service() : NULL;
}
std::string GetCurrentLocale(Profile* profile) {
#if defined(OS_CHROMEOS)
std::string profile_locale =
profile->GetPrefs()->GetString(prefs::kApplicationLocale);
if (!profile_locale.empty()) {
// On ChromeOS locale is per-profile, but only if set.
return profile_locale;
}
#endif
return g_browser_process->GetApplicationLocale();
}
} // namespace
namespace hotword_internal {
// Constants for the hotword field trial.
const char kHotwordFieldTrialName[] = "VoiceTrigger";
const char kHotwordFieldTrialDisabledGroupName[] = "Disabled";
// Old preference constant.
const char kHotwordUnusablePrefName[] = "hotword.search_enabled";
} // namespace hotword_internal
// static
bool HotwordService::DoesHotwordSupportLanguage(Profile* profile) {
std::string normalized_locale =
l10n_util::NormalizeLocale(GetCurrentLocale(profile));
base::StringToLowerASCII(&normalized_locale);
for (size_t i = 0; i < arraysize(kSupportedLocales); i++) {
if (normalized_locale.compare(0, 2, kSupportedLocales[i]) == 0)
return true;
}
return false;
}
// static
bool HotwordService::IsExperimentalHotwordingEnabled() {
CommandLine* command_line = CommandLine::ForCurrentProcess();
return command_line->HasSwitch(switches::kEnableExperimentalHotwording);
}
HotwordService::HotwordService(Profile* profile)
: profile_(profile),
extension_registry_observer_(this),
client_(NULL),
error_message_(0),
reinstall_pending_(false),
weak_factory_(this) {
extension_registry_observer_.Add(extensions::ExtensionRegistry::Get(profile));
// This will be called during profile initialization which is a good time
// to check the user's hotword state.
HotwordEnabled enabled_state = UNSET;
if (IsExperimentalHotwordingEnabled()) {
// Disable the old extension so it doesn't interfere with the new stuff.
DisableHotwordExtension(GetExtensionService(profile_));
} else {
if (profile_->GetPrefs()->HasPrefPath(prefs::kHotwordSearchEnabled)) {
if (profile_->GetPrefs()->GetBoolean(prefs::kHotwordSearchEnabled))
enabled_state = ENABLED;
else
enabled_state = DISABLED;
} else {
// If the preference has not been set the hotword extension should
// not be running. However, this should only be done if auto-install
// is enabled which is gated through the IsHotwordAllowed check.
if (IsHotwordAllowed())
DisableHotwordExtension(GetExtensionService(profile_));
}
}
UMA_HISTOGRAM_ENUMERATION("Hotword.Enabled", enabled_state,
NUM_HOTWORD_ENABLED_METRICS);
pref_registrar_.Init(profile_->GetPrefs());
pref_registrar_.Add(
prefs::kHotwordSearchEnabled,
base::Bind(&HotwordService::OnHotwordSearchEnabledChanged,
base::Unretained(this)));
extensions::ExtensionSystem::Get(profile_)->ready().Post(
FROM_HERE,
base::Bind(base::IgnoreResult(
&HotwordService::MaybeReinstallHotwordExtension),
weak_factory_.GetWeakPtr()));
// Clear the old user pref because it became unusable.
// TODO(rlp): Remove this code per crbug.com/358789.
if (profile_->GetPrefs()->HasPrefPath(
hotword_internal::kHotwordUnusablePrefName)) {
profile_->GetPrefs()->ClearPref(hotword_internal::kHotwordUnusablePrefName);
}
audio_history_handler_.reset(new HotwordAudioHistoryHandler(profile_));
}
HotwordService::~HotwordService() {
}
void HotwordService::OnExtensionUninstalled(
content::BrowserContext* browser_context,
const extensions::Extension* extension,
extensions::UninstallReason reason) {
CHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI));
if ((extension->id() != extension_misc::kHotwordExtensionId &&
extension->id() != extension_misc::kHotwordSharedModuleId) ||
profile_ != Profile::FromBrowserContext(browser_context) ||
!GetExtensionService(profile_))
return;
// If the extension wasn't uninstalled due to language change, don't try to
// reinstall it.
if (!reinstall_pending_)
return;
InstallHotwordExtensionFromWebstore();
SetPreviousLanguagePref();
}
std::string HotwordService::ReinstalledExtensionId() {
if (IsExperimentalHotwordingEnabled())
return extension_misc::kHotwordSharedModuleId;
return extension_misc::kHotwordExtensionId;
}
void HotwordService::InstallHotwordExtensionFromWebstore() {
installer_ = new extensions::WebstoreStartupInstaller(
ReinstalledExtensionId(),
profile_,
false,
extensions::WebstoreStandaloneInstaller::Callback());
installer_->BeginInstall();
}
void HotwordService::OnExtensionInstalled(
content::BrowserContext* browser_context,
const extensions::Extension* extension,
bool is_update) {
if ((extension->id() != extension_misc::kHotwordExtensionId &&
extension->id() != extension_misc::kHotwordSharedModuleId) ||
profile_ != Profile::FromBrowserContext(browser_context))
return;
// If the previous locale pref has never been set, set it now since
// the extension has been installed.
if (!profile_->GetPrefs()->HasPrefPath(prefs::kHotwordPreviousLanguage))
SetPreviousLanguagePref();
// If MaybeReinstallHotwordExtension already triggered an uninstall, we
// don't want to loop and trigger another uninstall-install cycle.
// However, if we arrived here via an uninstall-triggered-install (and in
// that case |reinstall_pending_| will be true) then we know install
// has completed and we can reset |reinstall_pending_|.
if (!reinstall_pending_)
MaybeReinstallHotwordExtension();
else
reinstall_pending_ = false;
// Now that the extension is installed, if the user has not selected
// the preference on, make sure it is turned off.
//
// Disabling the extension automatically on install should only occur
// if the user is in the field trial for auto-install which is gated
// by the IsHotwordAllowed check. The check for IsHotwordAllowed() here
// can be removed once it's known that few people have manually
// installed extension.
if (IsHotwordAllowed() &&
!profile_->GetPrefs()->GetBoolean(prefs::kHotwordSearchEnabled)) {
DisableHotwordExtension(GetExtensionService(profile_));
}
}
bool HotwordService::MaybeReinstallHotwordExtension() {
CHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI));
ExtensionService* extension_service = GetExtensionService(profile_);
if (!extension_service)
return false;
const extensions::Extension* extension = extension_service->GetExtensionById(
ReinstalledExtensionId(), true);
if (!extension)
return false;
// If the extension is currently pending, return and we'll check again
// after the install is finished.
extensions::PendingExtensionManager* pending_manager =
extension_service->pending_extension_manager();
if (pending_manager->IsIdPending(extension->id()))
return false;
// If there is already a pending request from HotwordService, don't try
// to uninstall either.
if (reinstall_pending_)
return false;
// Check if the current locale matches the previous. If they don't match,
// uninstall the extension.
if (!ShouldReinstallHotwordExtension())
return false;
// Ensure the call to OnExtensionUninstalled was triggered by a language
// change so it's okay to reinstall.
reinstall_pending_ = true;
return UninstallHotwordExtension(extension_service);
}
bool HotwordService::UninstallHotwordExtension(
ExtensionService* extension_service) {
base::string16 error;
std::string extension_id = ReinstalledExtensionId();
if (!extension_service->UninstallExtension(
extension_id,
extensions::UNINSTALL_REASON_INTERNAL_MANAGEMENT,
base::Bind(&base::DoNothing),
&error)) {
LOG(WARNING) << "Cannot uninstall extension with id "
<< extension_id
<< ": " << error;
reinstall_pending_ = false;
return false;
}
return true;
}
bool HotwordService::IsServiceAvailable() {
error_message_ = 0;
// Determine if the extension is available.
extensions::ExtensionSystem* system =
extensions::ExtensionSystem::Get(profile_);
ExtensionService* service = system->extension_service();
// Include disabled extensions (true parameter) since it may not be enabled
// if the user opted out.
const extensions::Extension* extension =
service->GetExtensionById(ReinstalledExtensionId(), true);
if (!extension)
error_message_ = IDS_HOTWORD_GENERIC_ERROR_MESSAGE;
RecordExtensionAvailabilityMetrics(service, extension);
RecordLoggingMetrics(profile_);
// Determine if NaCl is available.
bool nacl_enabled = false;
base::FilePath path;
if (PathService::Get(chrome::FILE_NACL_PLUGIN, &path)) {
content::WebPluginInfo info;
PluginPrefs* plugin_prefs = PluginPrefs::GetForProfile(profile_).get();
if (content::PluginService::GetInstance()->GetPluginInfoByPath(path, &info))
nacl_enabled = plugin_prefs->IsPluginEnabled(info);
}
if (!nacl_enabled)
error_message_ = IDS_HOTWORD_NACL_DISABLED_ERROR_MESSAGE;
RecordErrorMetrics(error_message_);
// Determine if the proper audio capabilities exist.
// The first time this is called, it probably won't return in time, but that's
// why it won't be included in the error calculation (i.e., the call to
// IsAudioDeviceStateUpdated()). However, this use case is rare and typically
// the devices will be initialized by the time a user goes to settings.
bool audio_device_state_updated =
HotwordServiceFactory::IsAudioDeviceStateUpdated();
HotwordServiceFactory::GetInstance()->UpdateMicrophoneState();
if (audio_device_state_updated) {
bool audio_capture_allowed =
profile_->GetPrefs()->GetBoolean(prefs::kAudioCaptureAllowed);
if (!audio_capture_allowed ||
!HotwordServiceFactory::IsMicrophoneAvailable())
error_message_ = IDS_HOTWORD_MICROPHONE_ERROR_MESSAGE;
}
return (error_message_ == 0) && IsHotwordAllowed();
}
bool HotwordService::IsHotwordAllowed() {
std::string group = base::FieldTrialList::FindFullName(
hotword_internal::kHotwordFieldTrialName);
return !group.empty() &&
group != hotword_internal::kHotwordFieldTrialDisabledGroupName &&
DoesHotwordSupportLanguage(profile_);
}
bool HotwordService::IsOptedIntoAudioLogging() {
// Do not opt the user in if the preference has not been set.
return
profile_->GetPrefs()->HasPrefPath(prefs::kHotwordAudioLoggingEnabled) &&
profile_->GetPrefs()->GetBoolean(prefs::kHotwordAudioLoggingEnabled);
}
bool HotwordService::IsAlwaysOnEnabled() {
return
profile_->GetPrefs()->HasPrefPath(prefs::kHotwordAlwaysOnSearchEnabled) &&
profile_->GetPrefs()->GetBoolean(prefs::kHotwordAlwaysOnSearchEnabled);
}
void HotwordService::EnableHotwordExtension(
ExtensionService* extension_service) {
if (extension_service && !IsExperimentalHotwordingEnabled())
extension_service->EnableExtension(extension_misc::kHotwordExtensionId);
}
void HotwordService::DisableHotwordExtension(
ExtensionService* extension_service) {
if (extension_service) {
extension_service->DisableExtension(
extension_misc::kHotwordExtensionId,
extensions::Extension::DISABLE_USER_ACTION);
}
}
void HotwordService::LaunchHotwordAudioVerificationApp(
const LaunchMode& launch_mode) {
hotword_audio_verification_launch_mode_ = launch_mode;
ExtensionService* extension_service = GetExtensionService(profile_);
if (!extension_service)
return;
const extensions::Extension* extension = extension_service->GetExtensionById(
extension_misc::kHotwordAudioVerificationAppId, true);
if (!extension)
return;
OpenApplication(AppLaunchParams(
profile_, extension, extensions::LAUNCH_CONTAINER_WINDOW, NEW_WINDOW));
}
HotwordService::LaunchMode
HotwordService::GetHotwordAudioVerificationLaunchMode() {
return hotword_audio_verification_launch_mode_;
}
void HotwordService::OnHotwordSearchEnabledChanged(
const std::string& pref_name) {
DCHECK_EQ(pref_name, std::string(prefs::kHotwordSearchEnabled));
ExtensionService* extension_service = GetExtensionService(profile_);
if (profile_->GetPrefs()->GetBoolean(prefs::kHotwordSearchEnabled))
EnableHotwordExtension(extension_service);
else
DisableHotwordExtension(extension_service);
}
void HotwordService::RequestHotwordSession(HotwordClient* client) {
if (!IsServiceAvailable() || (client_ && client_ != client))
return;
client_ = client;
HotwordPrivateEventService* event_service =
BrowserContextKeyedAPIFactory<HotwordPrivateEventService>::Get(profile_);
if (event_service)
event_service->OnHotwordSessionRequested();
}
void HotwordService::StopHotwordSession(HotwordClient* client) {
if (!IsServiceAvailable())
return;
// Do nothing if there's no client.
if (!client_)
return;
DCHECK(client_ == client);
client_ = NULL;
HotwordPrivateEventService* event_service =
BrowserContextKeyedAPIFactory<HotwordPrivateEventService>::Get(profile_);
if (event_service)
event_service->OnHotwordSessionStopped();
}
void HotwordService::SetPreviousLanguagePref() {
profile_->GetPrefs()->SetString(prefs::kHotwordPreviousLanguage,
GetCurrentLocale(profile_));
}
bool HotwordService::ShouldReinstallHotwordExtension() {
// If there is no previous locale pref, then this is the first install
// so no need to uninstall first.
if (!profile_->GetPrefs()->HasPrefPath(prefs::kHotwordPreviousLanguage))
return false;
std::string previous_locale =
profile_->GetPrefs()->GetString(prefs::kHotwordPreviousLanguage);
std::string locale = GetCurrentLocale(profile_);
// If it's a new locale, then the old extension should be uninstalled.
return locale != previous_locale &&
HotwordService::DoesHotwordSupportLanguage(profile_);
}
|