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

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 (partial) Satish 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..31443784a3c33cf30f848bb66be8c7195219ffd5
--- /dev/null
+++ b/content/browser/speech/speech_recognition_engine.h
@@ -0,0 +1,87 @@
+// 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:
+// Initialize Mandatory at beginning of SR.
Satish 2012/03/21 13:29:48 Do you allow SpeechRecognitionEngine to be reused
Primiano Tucci (use gerrit) 2012/03/22 11:20:41 Done.
+// TakeAudioChunk For every audio chunk pushed.
+// AudioChunksEnded Finalize the audio stream (omitted in case of errors).
+// Cleanup Mandatory at end of SR (even on errors).
+// No delegate callback is allowed before Initialize() or after Cleanup().
+class SpeechRecognitionEngine {
+ public:
+ // Interface for receiving callbacks from this object.
+ class Delegate {
+ public:
+ virtual void OnSpeechEngineResult(
Satish 2012/03/21 13:29:48 SpeechEngine -> SpeechRecognitionEngine. Add comme
Primiano Tucci (use gerrit) 2012/03/22 11:20:41 Done.
+ const content::SpeechRecognitionResult& result) = 0;
+ virtual void OnSpeechEngineError(
+ const content::SpeechRecognitionError& error) = 0;
+ protected:
Satish 2012/03/21 13:29:48 add newline above
Primiano Tucci (use gerrit) 2012/03/22 11:20:41 Done.
+ virtual ~Delegate() {}
+ };
+
+ virtual ~SpeechRecognitionEngine() {}
+
+ // Prepare for upcoming TakeAudioChunk() calls.
Satish 2012/03/21 13:29:48 reword comment to explain this should be called wh
Primiano Tucci (use gerrit) 2012/03/22 11:20:41 Done.
+ virtual void Initialize() = 0;
+
+ // End any recognition activity and don't make any further callback.
+ virtual void Cleanup() = 0;
+
+ // Push a chunk of uncompressed audio data, where the chunk length agrees with
+ // GetDesiredAudioChunkDurationMs(), and bytes_per_sample agrees to the engine
Satish 2012/03/21 13:29:48 No need to mention this in the comment if they are
Primiano Tucci (use gerrit) 2012/03/22 11:20:41 Removed the bytes_per_sample as it is DCHECKed. Th
+ // configuration.
+ virtual void TakeAudioChunk(const AudioChunk& data) = 0;
+
+ // Notifies the engine that audio capture has completed and no more chunks
+ // will be pushed. The engine, however, can still provide further results
+ // using the audio chunks collected so far.
+ virtual void AudioChunksEnded() = 0;
+
+ // 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 GetDesiredAudioChunkDurationMs() const = 0;
+
+ // set_delegate detached from constructor for lazy dependency injection.
+ void set_delegate(Delegate* delegate) { delegate_ = delegate; }
+
+ protected:
+ Delegate* delegate() const { return delegate_; }
+
+ private:
+ 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