1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 // AudioInputRendererHost serves audio related requests from audio capturer
6 // which lives inside the render process and provide access to audio hardware.
8 // Create stream sequence (AudioInputController = AIC):
10 // AudioInputHostMsg_CreateStream -> OnCreateStream -> AIC::CreateLowLatency ->
11 // <- AudioInputMsg_NotifyStreamCreated <- DoCompleteCreation <- OnCreated <-
13 // Close stream sequence:
15 // AudioInputHostMsg_CloseStream -> OnCloseStream -> AIC::Close ->
17 // This class is owned by BrowserRenderProcessHost and instantiated on UI
18 // thread. All other operations and method calls happen on IO thread, so we
19 // need to be extra careful about the lifetime of this object.
21 // To ensure low latency audio, a SyncSocket pair is used to signal buffer
22 // readiness without having to route messages using the IO thread.
24 #ifndef CONTENT_BROWSER_RENDERER_HOST_MEDIA_AUDIO_INPUT_RENDERER_HOST_H_
25 #define CONTENT_BROWSER_RENDERER_HOST_MEDIA_AUDIO_INPUT_RENDERER_HOST_H_
30 #include "base/compiler_specific.h"
31 #include "base/gtest_prod_util.h"
32 #include "base/memory/ref_counted.h"
33 #include "base/memory/scoped_ptr.h"
34 #include "base/memory/shared_memory.h"
35 #include "base/process/process.h"
36 #include "base/sequenced_task_runner_helpers.h"
37 #include "content/common/media/audio_messages.h"
38 #include "content/public/browser/browser_message_filter.h"
39 #include "content/public/browser/browser_thread.h"
40 #include "media/audio/audio_input_controller.h"
41 #include "media/audio/audio_io.h"
42 #include "media/audio/audio_logging.h"
43 #include "media/audio/simple_sources.h"
47 class AudioParameters
;
48 class UserInputMonitor
;
52 class AudioMirroringManager
;
53 class MediaStreamManager
;
55 class CONTENT_EXPORT AudioInputRendererHost
56 : public BrowserMessageFilter
,
57 public media::AudioInputController::EventHandler
{
60 // Error codes to make native loggin more clear. These error codes are added
61 // to generic error strings to provide a higher degree of details.
62 // Changing these values can lead to problems when matching native debug
63 // logs with the actual cause of error.
65 // An unspecified error occured.
68 // Failed to look up audio intry for the provided stream id.
69 INVALID_AUDIO_ENTRY
, // = 1
71 // A stream with the specified stream id already exists.
72 STREAM_ALREADY_EXISTS
, // = 2
74 // The page does not have permission to open the specified capture device.
75 PERMISSION_DENIED
, // = 3
77 // Failed to create shared memory.
78 SHARED_MEMORY_CREATE_FAILED
, // = 4
80 // Failed to initialize the AudioInputSyncWriter instance.
81 SYNC_WRITER_INIT_FAILED
, // = 5
83 // Failed to create native audio input stream.
84 STREAM_CREATE_ERROR
, // = 6
86 // Renderer process handle is invalid.
87 INVALID_PEER_HANDLE
, // = 7
89 // Only low-latency mode is supported.
90 INVALID_LATENCY_MODE
, // = 8
92 // Failed to map and share the shared memory.
93 MEMORY_SHARING_FAILED
, // = 9
95 // Unable to prepare the foreign socket handle.
96 SYNC_SOCKET_ERROR
, // = 10
98 // This error message comes from the AudioInputController instance.
99 AUDIO_INPUT_CONTROLLER_ERROR
, // = 11
102 // Called from UI thread from the owner of this object.
103 // |user_input_monitor| is used for typing detection and can be NULL.
104 AudioInputRendererHost(int render_process_id
,
105 media::AudioManager
* audio_manager
,
106 MediaStreamManager
* media_stream_manager
,
107 AudioMirroringManager
* audio_mirroring_manager
,
108 media::UserInputMonitor
* user_input_monitor
);
110 // BrowserMessageFilter implementation.
111 void OnChannelClosing() override
;
112 void OnDestruct() const override
;
113 bool OnMessageReceived(const IPC::Message
& message
) override
;
115 // AudioInputController::EventHandler implementation.
116 void OnCreated(media::AudioInputController
* controller
) override
;
117 void OnRecording(media::AudioInputController
* controller
) override
;
118 void OnError(media::AudioInputController
* controller
,
119 media::AudioInputController::ErrorCode error_code
) override
;
120 void OnData(media::AudioInputController
* controller
,
121 const media::AudioBus
* data
) override
;
122 void OnLog(media::AudioInputController
* controller
,
123 const std::string
& message
) override
;
126 // TODO(henrika): extend test suite (compare AudioRenderHost)
127 friend class BrowserThread
;
128 friend class TestAudioInputRendererHost
;
129 friend class base::DeleteHelper
<AudioInputRendererHost
>;
132 typedef std::map
<int, AudioEntry
*> AudioEntryMap
;
134 ~AudioInputRendererHost() override
;
136 // Methods called on IO thread ----------------------------------------------
138 // Audio related IPC message handlers.
140 // For ChromeOS: Checks if the stream should contain keyboard mic, if so
141 // registers to AudioInputDeviceManager. Then calls DoCreateStream.
142 // For non-ChromeOS: Just calls DoCreateStream.
143 void OnCreateStream(int stream_id
,
146 const AudioInputHostMsg_CreateStream_Config
& config
);
148 // Creates an audio input stream with the specified format whose data is
149 // consumed by an entity in the RenderFrame referenced by |render_frame_id|.
150 // |session_id| is used to find out which device to be used for the stream.
151 // Upon success/failure, the peer is notified via the
152 // NotifyStreamCreated message.
153 void DoCreateStream(int stream_id
,
156 const AudioInputHostMsg_CreateStream_Config
& config
);
158 // Record the audio input stream referenced by |stream_id|.
159 void OnRecordStream(int stream_id
);
161 // Close the audio stream referenced by |stream_id|.
162 void OnCloseStream(int stream_id
);
164 // Set the volume of the audio stream referenced by |stream_id|.
165 void OnSetVolume(int stream_id
, double volume
);
167 // Complete the process of creating an audio input stream. This will set up
168 // the shared memory or shared socket in low latency mode and send the
169 // NotifyStreamCreated message to the peer.
170 void DoCompleteCreation(media::AudioInputController
* controller
);
172 // Send a state change message to the renderer.
173 void DoSendRecordingMessage(media::AudioInputController
* controller
);
175 // Handle error coming from audio stream.
176 void DoHandleError(media::AudioInputController
* controller
,
177 media::AudioInputController::ErrorCode error_code
);
179 // Log audio level of captured audio stream.
180 void DoLog(media::AudioInputController
* controller
,
181 const std::string
& message
);
183 // Send an error message to the renderer.
184 void SendErrorMessage(int stream_id
, ErrorCode error_code
);
186 // Delete all audio entry and all audio streams
187 void DeleteEntries();
189 // Closes the stream. The stream is then deleted in DeleteEntry() after it
191 void CloseAndDeleteStream(AudioEntry
* entry
);
193 // Delete an audio entry and close the related audio stream.
194 void DeleteEntry(AudioEntry
* entry
);
196 // Delete audio entry and close the related audio input stream.
197 void DeleteEntryOnError(AudioEntry
* entry
, ErrorCode error_code
);
199 // A helper method to look up a AudioEntry identified by |stream_id|.
200 // Returns NULL if not found.
201 AudioEntry
* LookupById(int stream_id
);
203 // Search for a AudioEntry having the reference to |controller|.
204 // This method is used to look up an AudioEntry after a controller
205 // event is received.
206 AudioEntry
* LookupByController(media::AudioInputController
* controller
);
208 // If ChromeOS and |config|'s layout has keyboard mic, unregister in
209 // AudioInputDeviceManager.
210 void MaybeUnregisterKeyboardMicStream(
211 const AudioInputHostMsg_CreateStream_Config
& config
);
213 // ID of the RenderProcessHost that owns this instance.
214 const int render_process_id_
;
216 // Used to create an AudioInputController.
217 media::AudioManager
* audio_manager_
;
219 // Used to access to AudioInputDeviceManager.
220 MediaStreamManager
* media_stream_manager_
;
222 AudioMirroringManager
* audio_mirroring_manager_
;
224 // A map of stream IDs to audio sources.
225 AudioEntryMap audio_entries_
;
227 // Raw pointer of the UserInputMonitor.
228 media::UserInputMonitor
* user_input_monitor_
;
230 scoped_ptr
<media::AudioLog
> audio_log_
;
232 DISALLOW_COPY_AND_ASSIGN(AudioInputRendererHost
);
235 } // namespace content
237 #endif // CONTENT_BROWSER_RENDERER_HOST_MEDIA_AUDIO_INPUT_RENDERER_HOST_H_