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
|
// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/extensions/api/language_settings_private/language_settings_private_delegate.h"
#include <memory>
#include <string>
#include <utility>
#include <vector>
#include "base/functional/bind.h"
#include "base/functional/callback_helpers.h"
#include "base/strings/utf_string_conversions.h"
#include "build/chromeos_buildflags.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/spellchecker/spellcheck_factory.h"
#include "chrome/browser/spellchecker/spellcheck_service.h"
#include "components/prefs/pref_service.h"
#include "components/spellcheck/browser/pref_names.h"
#include "content/public/browser/browser_context.h"
#include "content/public/browser/storage_partition.h"
namespace extensions {
namespace language_settings_private = api::language_settings_private;
LanguageSettingsPrivateDelegate::LanguageSettingsPrivateDelegate(
content::BrowserContext* context)
: custom_dictionary_(nullptr),
context_(context),
listening_spellcheck_(false),
listening_input_method_(false) {
// Register with the event router so we know when renderers are listening to
// our events. We first check and see if there *is* an event router, because
// some unit tests try to create all context services, but don't initialize
// the event router first.
EventRouter* event_router = EventRouter::Get(context_);
if (!event_router)
return;
event_router->RegisterObserver(this,
language_settings_private::OnSpellcheckDictionariesChanged::kEventName);
event_router->RegisterObserver(this,
language_settings_private::OnCustomDictionaryChanged::kEventName);
event_router->RegisterObserver(
this, language_settings_private::OnInputMethodAdded::kEventName);
event_router->RegisterObserver(
this, language_settings_private::OnInputMethodRemoved::kEventName);
pref_change_registrar_.Init(
Profile::FromBrowserContext(context_)->GetPrefs());
StartOrStopListeningForSpellcheckChanges();
#if BUILDFLAG(IS_CHROMEOS)
StartOrStopListeningForInputMethodChanges();
#endif // BUILDFLAG(IS_CHROMEOS)
}
LanguageSettingsPrivateDelegate::~LanguageSettingsPrivateDelegate() {
DCHECK(!listening_spellcheck_);
DCHECK(!listening_input_method_);
pref_change_registrar_.RemoveAll();
}
std::unique_ptr<LanguageSettingsPrivateDelegate>
LanguageSettingsPrivateDelegate::Create(content::BrowserContext* context) {
return std::make_unique<LanguageSettingsPrivateDelegate>(context);
}
std::vector<language_settings_private::SpellcheckDictionaryStatus>
LanguageSettingsPrivateDelegate::GetHunspellDictionaryStatuses() {
std::vector<language_settings_private::SpellcheckDictionaryStatus> statuses;
for (const auto& dictionary : GetHunspellDictionaries()) {
if (!dictionary)
continue;
language_settings_private::SpellcheckDictionaryStatus status;
status.language_code = dictionary->GetLanguage();
status.is_ready = dictionary->IsReady();
if (!status.is_ready) {
if (dictionary->IsDownloadInProgress())
status.is_downloading = true;
if (dictionary->IsDownloadFailure())
status.download_failed = true;
}
statuses.push_back(std::move(status));
}
return statuses;
}
void LanguageSettingsPrivateDelegate::Shutdown() {
// Unregister with the event router. We first check and see if there *is* an
// event router, because some unit tests try to shutdown all context services,
// but didn't initialize the event router first.
EventRouter* event_router = EventRouter::Get(context_);
if (event_router)
event_router->UnregisterObserver(this);
if (listening_spellcheck_) {
RemoveDictionaryObservers();
listening_spellcheck_ = false;
}
#if BUILDFLAG(IS_CHROMEOS)
if (listening_input_method_) {
auto* input_method_manager = ash::input_method::InputMethodManager::Get();
if (input_method_manager)
input_method_manager->RemoveObserver(this);
listening_input_method_ = false;
}
#endif // BUILDFLAG(IS_CHROMEOS)
}
void LanguageSettingsPrivateDelegate::OnListenerAdded(
const EventListenerInfo& details) {
// Start listening to spellcheck change events.
if (details.event_name ==
language_settings_private::OnSpellcheckDictionariesChanged::kEventName ||
details.event_name ==
language_settings_private::OnCustomDictionaryChanged::kEventName) {
StartOrStopListeningForSpellcheckChanges();
return;
}
#if BUILDFLAG(IS_CHROMEOS)
if (details.event_name ==
language_settings_private::OnInputMethodAdded::kEventName ||
details.event_name ==
language_settings_private::OnInputMethodRemoved::kEventName) {
StartOrStopListeningForInputMethodChanges();
return;
}
#endif // BUILDFLAG(IS_CHROMEOS)
}
void LanguageSettingsPrivateDelegate::OnListenerRemoved(
const EventListenerInfo& details) {
// Stop listening to events if there are no more listeners.
StartOrStopListeningForSpellcheckChanges();
#if BUILDFLAG(IS_CHROMEOS)
StartOrStopListeningForInputMethodChanges();
#endif // BUILDFLAG(IS_CHROMEOS)
}
#if BUILDFLAG(IS_CHROMEOS)
void LanguageSettingsPrivateDelegate::InputMethodChanged(
ash::input_method::InputMethodManager* manager,
Profile* profile,
bool show_message) {
// Nothing to do.
}
void LanguageSettingsPrivateDelegate::OnInputMethodExtensionAdded(
const std::string& extension_id) {
auto args(
language_settings_private::OnInputMethodAdded::Create(extension_id));
std::unique_ptr<extensions::Event> extension_event(new extensions::Event(
events::LANGUAGE_SETTINGS_PRIVATE_ON_INPUT_METHOD_ADDED,
language_settings_private::OnInputMethodAdded::kEventName,
std::move(args)));
EventRouter::Get(context_)->BroadcastEvent(std::move(extension_event));
}
void LanguageSettingsPrivateDelegate::OnInputMethodExtensionRemoved(
const std::string& extension_id) {
auto args(
language_settings_private::OnInputMethodRemoved::Create(extension_id));
std::unique_ptr<extensions::Event> extension_event(new extensions::Event(
events::LANGUAGE_SETTINGS_PRIVATE_ON_INPUT_METHOD_REMOVED,
language_settings_private::OnInputMethodRemoved::kEventName,
std::move(args)));
EventRouter::Get(context_)->BroadcastEvent(std::move(extension_event));
}
#endif // BUILDFLAG(IS_CHROMEOS)
void LanguageSettingsPrivateDelegate::OnHunspellDictionaryInitialized(
const std::string& language) {
BroadcastDictionariesChangedEvent();
}
void LanguageSettingsPrivateDelegate::OnHunspellDictionaryDownloadBegin(
const std::string& language) {
BroadcastDictionariesChangedEvent();
}
void LanguageSettingsPrivateDelegate::OnHunspellDictionaryDownloadSuccess(
const std::string& language) {
BroadcastDictionariesChangedEvent();
}
void LanguageSettingsPrivateDelegate::OnHunspellDictionaryDownloadFailure(
const std::string& language) {
BroadcastDictionariesChangedEvent();
}
void LanguageSettingsPrivateDelegate::OnCustomDictionaryLoaded() {
}
void LanguageSettingsPrivateDelegate::OnCustomDictionaryChanged(
const SpellcheckCustomDictionary::Change& change) {
std::vector<std::string> to_add(change.to_add().begin(),
change.to_add().end());
std::vector<std::string> to_remove(change.to_remove().begin(),
change.to_remove().end());
auto args(language_settings_private::OnCustomDictionaryChanged::Create(
to_add, to_remove));
std::unique_ptr<Event> extension_event(new Event(
events::LANGUAGE_SETTINGS_PRIVATE_ON_CUSTOM_DICTIONARY_CHANGED,
language_settings_private::OnCustomDictionaryChanged::kEventName,
std::move(args)));
EventRouter::Get(context_)->BroadcastEvent(std::move(extension_event));
}
void LanguageSettingsPrivateDelegate::RefreshDictionaries(bool was_listening,
bool should_listen) {
if (was_listening)
RemoveDictionaryObservers();
hunspell_dictionaries_.clear();
SpellcheckService* service = SpellcheckServiceFactory::GetForContext(
context_);
if (!custom_dictionary_)
custom_dictionary_ = service->GetCustomDictionary();
const std::vector<std::unique_ptr<SpellcheckHunspellDictionary>>&
dictionaries(service->GetHunspellDictionaries());
for (const auto& dictionary : dictionaries) {
hunspell_dictionaries_.push_back(dictionary->AsWeakPtr());
if (should_listen)
dictionary->AddObserver(this);
}
}
const LanguageSettingsPrivateDelegate::WeakDictionaries&
LanguageSettingsPrivateDelegate::GetHunspellDictionaries() {
// If there are no hunspell dictionaries, or the first is invalid, refresh.
if (hunspell_dictionaries_.empty() || !hunspell_dictionaries_.front())
RefreshDictionaries(listening_spellcheck_, listening_spellcheck_);
return hunspell_dictionaries_;
}
void LanguageSettingsPrivateDelegate::
StartOrStopListeningForSpellcheckChanges() {
EventRouter* event_router = EventRouter::Get(context_);
bool should_listen =
event_router->HasEventListener(language_settings_private::
OnSpellcheckDictionariesChanged::kEventName) ||
event_router->HasEventListener(language_settings_private::
OnCustomDictionaryChanged::kEventName);
if (should_listen && !listening_spellcheck_) {
// Update and observe the hunspell dictionaries.
RefreshDictionaries(listening_spellcheck_, should_listen);
// Observe the dictionaries preference.
pref_change_registrar_.Add(
spellcheck::prefs::kSpellCheckDictionaries,
base::BindRepeating(
&LanguageSettingsPrivateDelegate::OnSpellcheckDictionariesChanged,
base::Unretained(this)));
// Observe the dictionary of custom words.
if (custom_dictionary_)
custom_dictionary_->AddObserver(this);
} else if (!should_listen && listening_spellcheck_) {
// Stop observing any dictionaries that still exist.
RemoveDictionaryObservers();
hunspell_dictionaries_.clear();
pref_change_registrar_.Remove(spellcheck::prefs::kSpellCheckDictionaries);
if (custom_dictionary_)
custom_dictionary_->RemoveObserver(this);
}
listening_spellcheck_ = should_listen;
}
#if BUILDFLAG(IS_CHROMEOS)
void LanguageSettingsPrivateDelegate::
StartOrStopListeningForInputMethodChanges() {
EventRouter* event_router = EventRouter::Get(context_);
bool should_listen =
event_router->HasEventListener(
language_settings_private::OnInputMethodAdded::kEventName) ||
event_router->HasEventListener(
language_settings_private::OnInputMethodRemoved::kEventName);
auto* input_method_manager = ash::input_method::InputMethodManager::Get();
if (input_method_manager) {
if (should_listen && !listening_input_method_)
input_method_manager->AddObserver(this);
else if (!should_listen && listening_input_method_)
input_method_manager->RemoveObserver(this);
}
listening_input_method_ = should_listen;
}
#endif // BUILDFLAG(IS_CHROMEOS)
void LanguageSettingsPrivateDelegate::RetryDownloadHunspellDictionary(
const std::string& language) {
for (const base::WeakPtr<SpellcheckHunspellDictionary>& dictionary :
GetHunspellDictionaries()) {
if (dictionary && dictionary->GetLanguage() == language) {
dictionary->RetryDownloadDictionary(context_);
return;
}
}
}
void LanguageSettingsPrivateDelegate::OnSpellcheckDictionariesChanged() {
RefreshDictionaries(listening_spellcheck_, listening_spellcheck_);
BroadcastDictionariesChangedEvent();
}
void LanguageSettingsPrivateDelegate::BroadcastDictionariesChangedEvent() {
std::vector<language_settings_private::SpellcheckDictionaryStatus> statuses =
GetHunspellDictionaryStatuses();
auto args(language_settings_private::OnSpellcheckDictionariesChanged::Create(
statuses));
std::unique_ptr<extensions::Event> extension_event(new extensions::Event(
events::LANGUAGE_SETTINGS_PRIVATE_ON_SPELLCHECK_DICTIONARIES_CHANGED,
language_settings_private::OnSpellcheckDictionariesChanged::kEventName,
std::move(args)));
EventRouter::Get(context_)->BroadcastEvent(std::move(extension_event));
}
void LanguageSettingsPrivateDelegate::RemoveDictionaryObservers() {
for (const auto& dictionary : hunspell_dictionaries_) {
if (dictionary)
dictionary->RemoveObserver(this);
}
}
} // namespace extensions
|