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
|
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_BROWSER_SPEECH_TTS_CONTROLLER_IMPL_H_
#define CONTENT_BROWSER_SPEECH_TTS_CONTROLLER_IMPL_H_
#include <list>
#include <memory>
#include <string>
#include <vector>
#include "base/gtest_prod_util.h"
#include "base/json/json_reader.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/singleton.h"
#include "base/metrics/user_metrics.h"
#include "base/observer_list.h"
#include "base/values.h"
#include "build/build_config.h"
#include "content/common/content_export.h"
#include "content/public/browser/tts_controller.h"
#include "content/public/browser/tts_platform.h"
#include "content/public/browser/web_contents_observer.h"
#include "net/base/network_change_notifier.h"
#include "services/data_decoder/public/cpp/data_decoder.h"
#include "url/gurl.h"
namespace content {
class BrowserContext;
#if BUILDFLAG(IS_CHROMEOS)
class TtsControllerDelegate;
#endif
// Singleton class that manages text-to-speech for all TTS engines and
// APIs, maintaining a queue of pending utterances and keeping
// track of all state.
class CONTENT_EXPORT TtsControllerImpl
: public TtsController,
public WebContentsObserver,
public net::NetworkChangeNotifier::NetworkChangeObserver {
public:
// Get the single instance of this class.
static TtsControllerImpl* GetInstance();
TtsControllerImpl(const TtsControllerImpl&) = delete;
TtsControllerImpl& operator=(const TtsControllerImpl&) = delete;
static void SkipAddNetworkChangeObserverForTests(bool enabled);
void SetStopSpeakingWhenHidden(bool value);
// TtsController methods
bool IsSpeaking() override;
void SpeakOrEnqueue(std::unique_ptr<TtsUtterance> utterance) override;
void Stop() override;
void Stop(const GURL& source_url) override;
void Pause() override;
void Resume() override;
void UpdateLanguageStatus(const std::string& lang,
LanguageInstallStatus install_status,
const std::string& error) override;
void AddUpdateLanguageStatusDelegate(
UpdateLanguageStatusDelegate* delegate) override;
void RemoveUpdateLanguageStatusDelegate(
UpdateLanguageStatusDelegate* delegate) override;
void UninstallLanguageRequest(content::BrowserContext* browser_context,
const std::string& lang,
const std::string& client_id,
int source,
bool uninstall_immediately) override;
void InstallLanguageRequest(BrowserContext* browser_context,
const std::string& lang,
const std::string& client_id,
int source) override;
void LanguageStatusRequest(BrowserContext* browser_context,
const std::string& lang,
const std::string& client_id,
int source) override;
void OnTtsEvent(int utterance_id,
TtsEventType event_type,
int char_index,
int length,
const std::string& error_message) override;
void OnTtsUtteranceBecameInvalid(int utterance_id) override;
void GetVoices(BrowserContext* browser_context,
const GURL& source_url,
std::vector<VoiceData>* out_voices) override;
void VoicesChanged() override;
void AddVoicesChangedDelegate(VoicesChangedDelegate* delegate) override;
void RemoveVoicesChangedDelegate(VoicesChangedDelegate* delegate) override;
void RemoveUtteranceEventDelegate(UtteranceEventDelegate* delegate) override;
void SetTtsEngineDelegate(TtsEngineDelegate* delegate) override;
TtsEngineDelegate* GetTtsEngineDelegate() override;
void RefreshVoices() override;
void Shutdown();
// Called directly by ~BrowserContext, because a raw BrowserContext pointer
// is stored in an Utterance.
void OnBrowserContextDestroyed(BrowserContext* browser_context);
// Testing methods
void SetTtsPlatform(TtsPlatform* tts_platform) override;
int QueueSize() override;
// Strips SSML so that tags are not output by speech engine.
void StripSSML(
const std::string& utterance,
base::OnceCallback<void(const std::string&)> callback) override;
protected:
TtsControllerImpl();
~TtsControllerImpl() override;
// Exposed for unittest.
bool IsPausedForTesting() const { return paused_; }
private:
friend class TestTtsControllerImpl;
friend struct base::DefaultSingletonTraits<TtsControllerImpl>;
// Get the platform TTS implementation (or injected mock).
TtsPlatform* GetTtsPlatform();
// Whether the platform implementation is supported and completed its
// initialization.
bool TtsPlatformReady();
// Whether the platform implementation is supported, but still being
// initialized.
bool TtsPlatformLoading();
// Start speaking the given utterance. Will either take ownership of
// |utterance| or delete it if there's an error. Returns true on success.
void SpeakNow(std::unique_ptr<TtsUtterance> utterance);
// If the current utterance matches |source_url|, it is stopped and the
// utterance queue cleared.
void StopAndClearQueue(const GURL& source_url);
// Stops the current utterance if it matches |source_url|. Returns true on
// success, false if the current utterance does not match |source_url|.
bool StopCurrentUtteranceIfMatches(const GURL& source_url);
// Stops the current utterance.
void StopCurrentUtterance();
// Removes the utterance matching |utterance_id|, and stops the current
// utterance if it matches |utterance_id|.
void RemoveUtteranceAndStopIfNeeded(int utterance_id);
// Stops the current utterance if it matches |utterance_id|. Returns true on
// success, false if the current utterance does not match |utterance_id|.
bool StopCurrentUtteranceIfMatches(int utterance_id);
// Clear the utterance queue. If send_events is true, will send
// TTS_EVENT_CANCELLED events on each one.
void ClearUtteranceQueue(bool send_events);
// Finalize and delete the current utterance.
void FinishCurrentUtterance();
// Start speaking the next utterance in the queue.
void SpeakNextUtterance();
// Updates the utterance to have default values for rate, pitch, and
// volume if they have not yet been set. On Chrome OS, defaults are
// pulled from user prefs, and may not be the same as other platforms.
void UpdateUtteranceDefaults(TtsUtterance* utterance);
// Passed to Speak() as a callback.
void OnSpeakFinished(int utterance_id, bool success);
// Static helper methods for StripSSML.
static void StripSSMLHelper(
const std::string& utterance,
base::OnceCallback<void(const std::string&)> on_ssml_parsed,
data_decoder::DataDecoder::ValueOrError result);
static void PopulateParsedText(std::string* parsed_text,
const base::Value* element);
int GetMatchingVoice(TtsUtterance* utterance,
const std::vector<VoiceData>& voices);
// Called internally to set |current_utterance_|.
void SetCurrentUtterance(std::unique_ptr<TtsUtterance> utterance);
// Used when the WebContents of the current utterance is destroyed/hidden.
void StopCurrentUtteranceAndRemoveUtterancesMatching(WebContents* wc);
// Returns true if the utterance should be spoken.
bool ShouldSpeakUtterance(TtsUtterance* utterance);
// WebContentsObserver methods
void WebContentsDestroyed() override;
void OnVisibilityChanged(Visibility visibility) override;
// net::NetworkChangeNotifier::NetworkChangeObserver
void OnNetworkChanged(
net::NetworkChangeNotifier::ConnectionType type) override;
#if BUILDFLAG(IS_CHROMEOS)
TtsControllerDelegate* GetTtsControllerDelegate();
void SetTtsControllerDelegateForTesting(TtsControllerDelegate* delegate);
raw_ptr<TtsControllerDelegate, DanglingUntriaged> delegate_ = nullptr;
#endif
raw_ptr<TtsEngineDelegate, DanglingUntriaged> engine_delegate_ = nullptr;
bool stop_speaking_when_hidden_ = false;
// A set of delegates that want to be notified when the voices change.
base::ObserverList<VoicesChangedDelegate> voices_changed_delegates_;
// A set of delegates to be notified when a voice status for a language
// changes.
base::ObserverList<UpdateLanguageStatusDelegate>
update_language_status_delegates_;
// The current utterance being spoken.
std::unique_ptr<TtsUtterance> current_utterance_;
// Whether the queue is paused or not.
bool paused_ = false;
// A pointer to the platform implementation of text-to-speech, for
// dependency injection.
raw_ptr<TtsPlatform, DanglingUntriaged> tts_platform_ = nullptr;
// A queue of utterances to speak after the current one finishes.
std::list<std::unique_ptr<TtsUtterance>> utterance_list_;
// Whether to allow remote voices.
bool allow_remote_voices_ = false;
// Skip |AddNetworkChangeObserver| call during the creation of tts_controller
// for unittests as network change notifier wouldn't have been created.
static bool skip_add_network_change_observer_for_tests_;
};
} // namespace content
#endif // CONTENT_BROWSER_SPEECH_TTS_CONTROLLER_IMPL_H_
|