cc: Make picture pile base thread safe.
[chromium-blink-merge.git] / content / browser / media / media_internals.cc
blob4d600851783452b708edd2a04cb59edf7c2397e6
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 #include "content/browser/media/media_internals.h"
7 #include "base/strings/string16.h"
8 #include "base/strings/string_number_conversions.h"
9 #include "base/strings/stringprintf.h"
10 #include "content/public/browser/browser_thread.h"
11 #include "content/public/browser/web_ui.h"
12 #include "media/audio/audio_parameters.h"
13 #include "media/base/media_log.h"
14 #include "media/base/media_log_event.h"
16 namespace {
18 static base::LazyInstance<content::MediaInternals>::Leaky g_media_internals =
19 LAZY_INSTANCE_INITIALIZER;
21 base::string16 SerializeUpdate(const std::string& function,
22 const base::Value* value) {
23 return content::WebUI::GetJavascriptCall(
24 function, std::vector<const base::Value*>(1, value));
27 std::string EffectsToString(int effects) {
28 if (effects == media::AudioParameters::NO_EFFECTS)
29 return "NO_EFFECTS";
31 struct {
32 int flag;
33 const char* name;
34 } flags[] = {
35 { media::AudioParameters::ECHO_CANCELLER, "ECHO_CANCELLER" },
36 { media::AudioParameters::DUCKING, "DUCKING" },
37 { media::AudioParameters::KEYBOARD_MIC, "KEYBOARD_MIC" },
40 std::string ret;
41 for (size_t i = 0; i < arraysize(flags); ++i) {
42 if (effects & flags[i].flag) {
43 if (!ret.empty())
44 ret += " | ";
45 ret += flags[i].name;
46 effects &= ~flags[i].flag;
50 if (effects) {
51 if (!ret.empty())
52 ret += " | ";
53 ret += base::IntToString(effects);
56 return ret;
59 const char kAudioLogStatusKey[] = "status";
60 const char kAudioLogUpdateFunction[] = "media.updateAudioComponent";
62 } // namespace
64 namespace content {
66 class AudioLogImpl : public media::AudioLog {
67 public:
68 AudioLogImpl(int owner_id,
69 media::AudioLogFactory::AudioComponent component,
70 content::MediaInternals* media_internals);
71 ~AudioLogImpl() override;
73 void OnCreated(int component_id,
74 const media::AudioParameters& params,
75 const std::string& device_id) override;
76 void OnStarted(int component_id) override;
77 void OnStopped(int component_id) override;
78 void OnClosed(int component_id) override;
79 void OnError(int component_id) override;
80 void OnSetVolume(int component_id, double volume) override;
82 private:
83 void SendSingleStringUpdate(int component_id,
84 const std::string& key,
85 const std::string& value);
86 void StoreComponentMetadata(int component_id, base::DictionaryValue* dict);
87 std::string FormatCacheKey(int component_id);
89 const int owner_id_;
90 const media::AudioLogFactory::AudioComponent component_;
91 content::MediaInternals* const media_internals_;
93 DISALLOW_COPY_AND_ASSIGN(AudioLogImpl);
96 AudioLogImpl::AudioLogImpl(int owner_id,
97 media::AudioLogFactory::AudioComponent component,
98 content::MediaInternals* media_internals)
99 : owner_id_(owner_id),
100 component_(component),
101 media_internals_(media_internals) {}
103 AudioLogImpl::~AudioLogImpl() {}
105 void AudioLogImpl::OnCreated(int component_id,
106 const media::AudioParameters& params,
107 const std::string& device_id) {
108 base::DictionaryValue dict;
109 StoreComponentMetadata(component_id, &dict);
111 dict.SetString(kAudioLogStatusKey, "created");
112 dict.SetString("device_id", device_id);
113 dict.SetInteger("frames_per_buffer", params.frames_per_buffer());
114 dict.SetInteger("sample_rate", params.sample_rate());
115 dict.SetInteger("channels", params.channels());
116 dict.SetString("channel_layout",
117 ChannelLayoutToString(params.channel_layout()));
118 dict.SetString("effects", EffectsToString(params.effects()));
120 media_internals_->SendUpdateAndCacheAudioStreamKey(
121 FormatCacheKey(component_id), kAudioLogUpdateFunction, &dict);
124 void AudioLogImpl::OnStarted(int component_id) {
125 SendSingleStringUpdate(component_id, kAudioLogStatusKey, "started");
128 void AudioLogImpl::OnStopped(int component_id) {
129 SendSingleStringUpdate(component_id, kAudioLogStatusKey, "stopped");
132 void AudioLogImpl::OnClosed(int component_id) {
133 base::DictionaryValue dict;
134 StoreComponentMetadata(component_id, &dict);
135 dict.SetString(kAudioLogStatusKey, "closed");
136 media_internals_->SendUpdateAndPurgeAudioStreamCache(
137 FormatCacheKey(component_id), kAudioLogUpdateFunction, &dict);
140 void AudioLogImpl::OnError(int component_id) {
141 SendSingleStringUpdate(component_id, "error_occurred", "true");
144 void AudioLogImpl::OnSetVolume(int component_id, double volume) {
145 base::DictionaryValue dict;
146 StoreComponentMetadata(component_id, &dict);
147 dict.SetDouble("volume", volume);
148 media_internals_->SendUpdateAndCacheAudioStreamKey(
149 FormatCacheKey(component_id), kAudioLogUpdateFunction, &dict);
152 std::string AudioLogImpl::FormatCacheKey(int component_id) {
153 return base::StringPrintf("%d:%d:%d", owner_id_, component_, component_id);
156 void AudioLogImpl::SendSingleStringUpdate(int component_id,
157 const std::string& key,
158 const std::string& value) {
159 base::DictionaryValue dict;
160 StoreComponentMetadata(component_id, &dict);
161 dict.SetString(key, value);
162 media_internals_->SendUpdateAndCacheAudioStreamKey(
163 FormatCacheKey(component_id), kAudioLogUpdateFunction, &dict);
166 void AudioLogImpl::StoreComponentMetadata(int component_id,
167 base::DictionaryValue* dict) {
168 dict->SetInteger("owner_id", owner_id_);
169 dict->SetInteger("component_id", component_id);
170 dict->SetInteger("component_type", component_);
173 MediaInternals* MediaInternals::GetInstance() {
174 return g_media_internals.Pointer();
177 MediaInternals::MediaInternals() : owner_ids_() {}
178 MediaInternals::~MediaInternals() {}
180 void MediaInternals::OnMediaEvents(
181 int render_process_id, const std::vector<media::MediaLogEvent>& events) {
182 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
183 // Notify observers that |event| has occurred.
184 for (std::vector<media::MediaLogEvent>::const_iterator event = events.begin();
185 event != events.end(); ++event) {
186 base::DictionaryValue dict;
187 dict.SetInteger("renderer", render_process_id);
188 dict.SetInteger("player", event->id);
189 dict.SetString("type", media::MediaLog::EventTypeToString(event->type));
191 // TODO(dalecurtis): This is technically not correct. TimeTicks "can't" be
192 // converted to to a human readable time format. See base/time/time.h.
193 const double ticks = event->time.ToInternalValue();
194 const double ticks_millis = ticks / base::Time::kMicrosecondsPerMillisecond;
195 dict.SetDouble("ticksMillis", ticks_millis);
196 dict.Set("params", event->params.DeepCopy());
197 SendUpdate(SerializeUpdate("media.onMediaEvent", &dict));
201 void MediaInternals::AddUpdateCallback(const UpdateCallback& callback) {
202 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
203 update_callbacks_.push_back(callback);
206 void MediaInternals::RemoveUpdateCallback(const UpdateCallback& callback) {
207 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
208 for (size_t i = 0; i < update_callbacks_.size(); ++i) {
209 if (update_callbacks_[i].Equals(callback)) {
210 update_callbacks_.erase(update_callbacks_.begin() + i);
211 return;
214 NOTREACHED();
217 void MediaInternals::SendAudioStreamData() {
218 base::string16 audio_stream_update;
220 base::AutoLock auto_lock(lock_);
221 audio_stream_update = SerializeUpdate(
222 "media.onReceiveAudioStreamData", &audio_streams_cached_data_);
224 SendUpdate(audio_stream_update);
227 void MediaInternals::SendVideoCaptureDeviceCapabilities() {
228 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
229 SendUpdate(SerializeUpdate("media.onReceiveVideoCaptureCapabilities",
230 &video_capture_capabilities_cached_data_));
233 void MediaInternals::UpdateVideoCaptureDeviceCapabilities(
234 const media::VideoCaptureDeviceInfos& video_capture_device_infos) {
235 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
236 video_capture_capabilities_cached_data_.Clear();
238 for (const auto& video_capture_device_info : video_capture_device_infos) {
239 base::ListValue* format_list = new base::ListValue();
240 for (const auto& format : video_capture_device_info.supported_formats)
241 format_list->AppendString(format.ToString());
243 base::DictionaryValue* device_dict = new base::DictionaryValue();
244 device_dict->SetString("id", video_capture_device_info.name.id());
245 device_dict->SetString(
246 "name", video_capture_device_info.name.GetNameAndModel());
247 device_dict->Set("formats", format_list);
248 #if defined(OS_WIN) || defined(OS_MACOSX)
249 device_dict->SetString(
250 "captureApi",
251 video_capture_device_info.name.GetCaptureApiTypeString());
252 #endif
253 video_capture_capabilities_cached_data_.Append(device_dict);
256 if (update_callbacks_.size() > 0)
257 SendVideoCaptureDeviceCapabilities();
260 scoped_ptr<media::AudioLog> MediaInternals::CreateAudioLog(
261 AudioComponent component) {
262 base::AutoLock auto_lock(lock_);
263 return scoped_ptr<media::AudioLog>(new AudioLogImpl(
264 owner_ids_[component]++, component, this));
267 void MediaInternals::SendUpdate(const base::string16& update) {
268 // SendUpdate() may be called from any thread, but must run on the IO thread.
269 // TODO(dalecurtis): This is pretty silly since the update callbacks simply
270 // forward the calls to the UI thread. We should avoid the extra hop.
271 if (!BrowserThread::CurrentlyOn(BrowserThread::IO)) {
272 BrowserThread::PostTask(BrowserThread::IO, FROM_HERE, base::Bind(
273 &MediaInternals::SendUpdate, base::Unretained(this), update));
274 return;
277 for (size_t i = 0; i < update_callbacks_.size(); i++)
278 update_callbacks_[i].Run(update);
281 void MediaInternals::SendUpdateAndCacheAudioStreamKey(
282 const std::string& cache_key,
283 const std::string& function,
284 const base::DictionaryValue* value) {
285 SendUpdate(SerializeUpdate(function, value));
287 base::AutoLock auto_lock(lock_);
288 if (!audio_streams_cached_data_.HasKey(cache_key)) {
289 audio_streams_cached_data_.Set(cache_key, value->DeepCopy());
290 return;
293 base::DictionaryValue* existing_dict = NULL;
294 CHECK(audio_streams_cached_data_.GetDictionary(cache_key, &existing_dict));
295 existing_dict->MergeDictionary(value);
298 void MediaInternals::SendUpdateAndPurgeAudioStreamCache(
299 const std::string& cache_key,
300 const std::string& function,
301 const base::DictionaryValue* value) {
302 SendUpdate(SerializeUpdate(function, value));
304 base::AutoLock auto_lock(lock_);
305 scoped_ptr<base::Value> out_value;
306 CHECK(audio_streams_cached_data_.Remove(cache_key, &out_value));
309 } // namespace content