1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
|
// 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.
#include "content/browser/media/media_internals.h"
#include "base/memory/scoped_ptr.h"
#include "base/string16.h"
#include "base/stringprintf.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/web_ui.h"
#include "media/base/media_log.h"
#include "media/base/media_log_event.h"
namespace content {
MediaInternals* MediaInternals::GetInstance() {
return Singleton<MediaInternals>::get();
}
MediaInternals::~MediaInternals() {}
void MediaInternals::OnDeleteAudioStream(void* host, int stream_id) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
std::string stream = base::StringPrintf("audio_streams.%p:%d",
host, stream_id);
DeleteItem(stream);
}
void MediaInternals::OnSetAudioStreamPlaying(
void* host, int stream_id, bool playing) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
UpdateAudioStream(host, stream_id,
"playing", new base::FundamentalValue(playing));
}
void MediaInternals::OnSetAudioStreamStatus(
void* host, int stream_id, const std::string& status) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
UpdateAudioStream(host, stream_id,
"status", new base::StringValue(status));
}
void MediaInternals::OnSetAudioStreamVolume(
void* host, int stream_id, double volume) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
UpdateAudioStream(host, stream_id,
"volume", new base::FundamentalValue(volume));
}
void MediaInternals::OnMediaEvents(
int render_process_id, const std::vector<media::MediaLogEvent>& events) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
// Notify observers that |event| has occured.
for (std::vector<media::MediaLogEvent>::const_iterator event = events.begin();
event != events.end(); ++event) {
base::DictionaryValue dict;
dict.SetInteger("renderer", render_process_id);
dict.SetInteger("player", event->id);
dict.SetString("type", media::MediaLog::EventTypeToString(event->type));
dict.SetDouble("time", event->time.ToDoubleT());
dict.Set("params", event->params.DeepCopy());
SendUpdate("media.onMediaEvent", &dict);
}
}
void MediaInternals::AddUpdateCallback(const UpdateCallback& callback) {
update_callbacks_.push_back(callback);
}
void MediaInternals::RemoveUpdateCallback(const UpdateCallback& callback) {
for (size_t i = 0; i < update_callbacks_.size(); ++i) {
if (update_callbacks_[i].Equals(callback)) {
update_callbacks_.erase(update_callbacks_.begin() + i);
return;
}
}
NOTREACHED();
}
void MediaInternals::SendEverything() {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
SendUpdate("media.onReceiveEverything", &data_);
}
MediaInternals::MediaInternals() {
}
void MediaInternals::UpdateAudioStream(void* host,
int stream_id,
const std::string& property,
base::Value* value) {
std::string stream = base::StringPrintf("audio_streams.%p:%d",
host, stream_id);
UpdateItem("media.addAudioStream", stream, property, value);
}
void MediaInternals::DeleteItem(const std::string& item) {
data_.Remove(item, NULL);
scoped_ptr<base::Value> value(new base::StringValue(item));
SendUpdate("media.onItemDeleted", value.get());
}
void MediaInternals::UpdateItem(
const std::string& update_fn, const std::string& id,
const std::string& property, base::Value* value) {
base::DictionaryValue* item_properties;
if (!data_.GetDictionary(id, &item_properties)) {
item_properties = new base::DictionaryValue();
data_.Set(id, item_properties);
item_properties->SetString("id", id);
}
item_properties->Set(property, value);
SendUpdate(update_fn, item_properties);
}
void MediaInternals::SendUpdate(const std::string& function,
base::Value* value) {
// Only bother serializing the update to JSON if someone is watching.
if (update_callbacks_.empty())
return;
std::vector<const base::Value*> args;
args.push_back(value);
string16 update = WebUI::GetJavascriptCall(function, args);
for (size_t i = 0; i < update_callbacks_.size(); i++)
update_callbacks_[i].Run(update);
}
} // namespace content
|