Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1553)

Unified Diff: content/browser/speech/speech_recognition_engine.h

Issue 9663066: Refactoring of chrome speech recognition architecture (CL1.3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed according to Hans review. Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/speech/speech_recognition_engine.h
diff --git a/content/browser/speech/speech_recognition_engine.h b/content/browser/speech/speech_recognition_engine.h
new file mode 100644
index 0000000000000000000000000000000000000000..caf955d8aed4f551b9f54a8df90020c090a547dc
--- /dev/null
+++ b/content/browser/speech/speech_recognition_engine.h
@@ -0,0 +1,88 @@
+// 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.
+
+#ifndef CONTENT_BROWSER_SPEECH_SPEECH_RECOGNITION_ENGINE_H_
+#define CONTENT_BROWSER_SPEECH_SPEECH_RECOGNITION_ENGINE_H_
+#pragma once
+
+#include <string>
+#include <vector>
+
+#include "base/basictypes.h"
+#include "content/public/common/speech_recognition_result.h"
+
+namespace content {
+struct SpeechRecognitionResult;
+struct SpeechRecognitionError;
+}
+
+namespace speech {
+
+class AudioChunk;
+
+// This interface models the basic contract that a speech recognition engine,
+// either working locally or relying on a remote web-service, must obey.
+// The expected call sequence for exported methods is:
+// SpeechRecognitionBegins Mandatory at beginning of SR.
+// PushSpeechAudio For every audio chunk pushed.
+// SpeechAudioStreamComplete Finalize the audio stream (if no errors).
+// SpeechRecognitionEnds Mandatory at end of SR (even on errors).
+class SpeechRecognitionEngine {
+ public:
+ // Interface for receiving callbacks from this object.
+ class Delegate {
+ public:
+ virtual void OnSpeechEngineResult(
Satish 2012/03/16 17:00:35 OnSpeech -> OnSpeechRecognition ?
Primiano Tucci (use gerrit) 2012/03/20 13:14:50 I'd prefer OnSpeechEngine since this interface mod
+ const content::SpeechRecognitionResult& result) = 0;
+ virtual void OnSpeechEngineError(
Satish 2012/03/16 17:00:35 ditto
Primiano Tucci (use gerrit) 2012/03/20 13:14:50 Same as above. On 2012/03/16 17:00:35, Satish wrot
+ const content::SpeechRecognitionError& error) = 0;
+ protected:
+ virtual ~Delegate() {}
+ };
+
+ virtual ~SpeechRecognitionEngine() {}
+
+ // Notify the engine that we started the recognition, so it can prepare for
+ // the upcoming PushSpeechAudio() calls.
+ virtual void SpeechRecognitionBegins() = 0;
Satish 2012/03/16 17:00:35 perhaps 'StartSession' or something similar?
Primiano Tucci (use gerrit) 2012/03/20 13:14:50 Agree with the ambiguity of names. However I don't
+
+ // Notify the engine that we have ended (either gracefully or aborting) the
Satish 2012/03/16 17:00:35 I don't see a way to abort in this class. Should t
Primiano Tucci (use gerrit) 2012/03/20 13:14:50 Basically, Cleanup() does it, since can be called
+ // recognition, so it can cleanup.
+ virtual void SpeechRecognitionEnds() = 0;
Satish 2012/03/16 17:00:35 EndSession ?
Primiano Tucci (use gerrit) 2012/03/20 13:14:50 Cleanup? On 2012/03/16 17:00:35, Satish wrote:
+
+ // Push a chunk of uncompressed audio data, where the chunk length agrees with
+ // DesiredAudioChunkDurationMs(), and bytes_per_sample agrees to the engine
+ // configuration.
+ virtual void PushSpeechAudio(const AudioChunk& data) = 0;
Satish 2012/03/16 17:00:35 AddAudioChunk or something similar?
Primiano Tucci (use gerrit) 2012/03/20 13:14:50 TakeAudioChunk? On 2012/03/16 17:00:35, Satish wro
+
+ // Notifies the engine that audio capture has completed and no more chunks
+ // will be pushed. The engine can finalize the recognition in order to provide
Satish 2012/03/16 17:00:35 "finalize the recognition in order to provide a fi
Primiano Tucci (use gerrit) 2012/03/20 13:14:50 Done.
+ // a final result.
+ virtual void SpeechAudioStreamComplete() = 0;
Satish 2012/03/16 17:00:35 AudioCompleted or something similar?
Primiano Tucci (use gerrit) 2012/03/20 13:14:50 AudioChunksEnded? On 2012/03/16 17:00:35, Satish w
+
+ // Checks wheter recognition of pushed audio data is pending.
+ virtual bool IsRecognitionPending() const = 0;
+
+ // Retrieves the desired duration, in milliseconds, of pushed AudioChunk(s).
+ virtual int DesiredAudioChunkDurationMs() const = 0;
Satish 2012/03/16 17:00:35 Desired -> GetDesired ?
Primiano Tucci (use gerrit) 2012/03/20 13:14:50 Done.
+
+ // set_delegate detached from constructor for lazy dependency injection.
+ void set_delegate(Delegate* delegate) { delegate_ = delegate; }
+
+ protected:
+ Delegate* delegate() const { return delegate_; }
+
+ private:
Satish 2012/03/16 17:00:35 add DISALLOW_COPY_AND_ASSIGN(SpeechRecognitionEngi
Primiano Tucci (use gerrit) 2012/03/20 13:14:50 Done.
+ Delegate* delegate_;
+};
+
+// This typedef is to workaround the issue with certain versions of
+// Visual Studio where it gets confused between multiple Delegate
+// classes and gives a C2500 error. (I saw this error on the try bots -
+// the workaround was not needed for my machine).
+typedef SpeechRecognitionEngine::Delegate SpeechRecognitionEngineDelegate;
+
+} // namespace speech
+
+#endif // CONTENT_BROWSER_SPEECH_SPEECH_RECOGNITION_ENGINE_H_

Powered by Google App Engine
This is Rietveld 408576698