2014-10-07 13:18:44 +00:00
|
|
|
// Copyright (c) 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.
|
|
|
|
|
|
|
|
#ifndef CHROME_RENDERER_TTS_DISPATCHER_H_
|
|
|
|
#define CHROME_RENDERER_TTS_DISPATCHER_H_
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "base/containers/hash_tables.h"
|
2016-07-04 06:08:55 +00:00
|
|
|
#include "content/public/renderer/render_thread_observer.h"
|
2014-10-07 13:18:44 +00:00
|
|
|
#include "third_party/WebKit/public/platform/WebSpeechSynthesizer.h"
|
|
|
|
#include "third_party/WebKit/public/platform/WebSpeechSynthesizerClient.h"
|
|
|
|
|
|
|
|
namespace IPC {
|
|
|
|
class Message;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct TtsVoice;
|
|
|
|
|
|
|
|
// TtsDispatcher is a delegate for methods used by Blink for speech synthesis
|
|
|
|
// APIs. It's the complement of TtsDispatcherHost (owned by RenderViewHost).
|
|
|
|
// Each TtsDispatcher is owned by the WebSpeechSynthesizerClient in Blink;
|
|
|
|
// it registers itself to listen to IPC upon construction and unregisters
|
|
|
|
// itself when deleted. There can be multiple TtsDispatchers alive at once,
|
|
|
|
// so each one routes IPC messages to its WebSpeechSynthesizerClient only if
|
|
|
|
// the utterance id (which is globally unique) matches.
|
|
|
|
class TtsDispatcher
|
|
|
|
: public blink::WebSpeechSynthesizer,
|
2016-07-04 06:08:55 +00:00
|
|
|
public content::RenderThreadObserver {
|
2014-10-07 13:18:44 +00:00
|
|
|
public:
|
|
|
|
explicit TtsDispatcher(blink::WebSpeechSynthesizerClient* client);
|
|
|
|
virtual ~TtsDispatcher();
|
|
|
|
|
2017-08-04 17:41:34 +00:00
|
|
|
private:
|
2014-10-07 13:18:44 +00:00
|
|
|
// RenderProcessObserver override.
|
2015-01-10 01:42:48 +00:00
|
|
|
virtual bool OnControlMessageReceived(const IPC::Message& message) override;
|
2014-10-07 13:18:44 +00:00
|
|
|
|
|
|
|
// blink::WebSpeechSynthesizer implementation.
|
2017-06-16 20:42:33 +00:00
|
|
|
virtual void UpdateVoiceList() override;
|
|
|
|
virtual void Speak(const blink::WebSpeechSynthesisUtterance& utterance)
|
2015-01-10 01:42:48 +00:00
|
|
|
override;
|
2017-06-16 20:42:33 +00:00
|
|
|
virtual void Pause() override;
|
|
|
|
virtual void Resume() override;
|
|
|
|
virtual void Cancel() override;
|
2014-10-07 13:18:44 +00:00
|
|
|
|
|
|
|
blink::WebSpeechSynthesisUtterance FindUtterance(int utterance_id);
|
|
|
|
|
|
|
|
void OnSetVoiceList(const std::vector<TtsVoice>& voices);
|
|
|
|
void OnDidStartSpeaking(int utterance_id);
|
|
|
|
void OnDidFinishSpeaking(int utterance_id);
|
|
|
|
void OnDidPauseSpeaking(int utterance_id);
|
|
|
|
void OnDidResumeSpeaking(int utterance_id);
|
|
|
|
void OnWordBoundary(int utterance_id, int char_index);
|
|
|
|
void OnSentenceBoundary(int utterance_id, int char_index);
|
|
|
|
void OnMarkerEvent(int utterance_id, int char_index);
|
|
|
|
void OnWasInterrupted(int utterance_id);
|
|
|
|
void OnWasCancelled(int utterance_id);
|
|
|
|
void OnSpeakingErrorOccurred(int utterance_id,
|
|
|
|
const std::string& error_message);
|
|
|
|
|
|
|
|
// The WebKit client class that we use to send events back to the JS world.
|
|
|
|
// Weak reference, this will be valid as long as this object exists.
|
|
|
|
blink::WebSpeechSynthesizerClient* synthesizer_client_;
|
|
|
|
|
|
|
|
// Next utterance id, used to map response IPCs to utterance objects.
|
|
|
|
static int next_utterance_id_;
|
|
|
|
|
|
|
|
// Map from id to utterance objects.
|
|
|
|
base::hash_map<int, blink::WebSpeechSynthesisUtterance> utterance_id_map_;
|
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(TtsDispatcher);
|
|
|
|
};
|
|
|
|
|
2016-03-08 14:28:53 +00:00
|
|
|
#endif // CHROME_RENDERER_TTS_DISPATCHER_H_
|