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 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290
|
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/browser/media/audio_stream_monitor.h"
#include "base/functional/bind.h"
#include "base/functional/callback_helpers.h"
#include "content/browser/renderer_host/render_frame_host_impl.h"
#include "content/browser/web_contents/web_contents_impl.h"
#include "content/public/browser/browser_task_traits.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/invalidate_type.h"
namespace content {
namespace {
AudioStreamMonitor* GetMonitorForRenderFrame(
GlobalRenderFrameHostId render_frame_host_id) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
WebContentsImpl* const web_contents =
static_cast<WebContentsImpl*>(WebContents::FromRenderFrameHost(
RenderFrameHost::FromID(render_frame_host_id)));
return web_contents ? web_contents->audio_stream_monitor() : nullptr;
}
} // namespace
AudioStreamMonitor::AudibleClientRegistration::AudibleClientRegistration(
GlobalRenderFrameHostId render_frame_host_id,
AudioStreamMonitor* audio_stream_monitor)
: render_frame_host_id_(render_frame_host_id),
audio_stream_monitor_(audio_stream_monitor) {
audio_stream_monitor_->AddAudibleClient(render_frame_host_id_);
}
AudioStreamMonitor::AudibleClientRegistration::~AudibleClientRegistration() {
audio_stream_monitor_->RemoveAudibleClient(render_frame_host_id_);
}
bool AudioStreamMonitor::StreamID::operator<(const StreamID& other) const {
return std::tie(render_frame_host_id, stream_id) <
std::tie(other.render_frame_host_id, other.stream_id);
}
bool AudioStreamMonitor::StreamID::operator==(const StreamID& other) const {
return std::tie(render_frame_host_id, stream_id) ==
std::tie(other.render_frame_host_id, other.stream_id);
}
AudioStreamMonitor::AudioStreamMonitor(WebContents* contents)
: WebContentsObserver(contents), web_contents_(contents) {
DCHECK(web_contents_);
}
AudioStreamMonitor::~AudioStreamMonitor() {
DCHECK(audible_clients_.empty());
}
bool AudioStreamMonitor::WasRecentlyAudible() const {
DCHECK(thread_checker_.CalledOnValidThread());
return indicator_is_on_;
}
bool AudioStreamMonitor::IsCurrentlyAudible() const {
DCHECK(thread_checker_.CalledOnValidThread());
return is_audible_;
}
void AudioStreamMonitor::RenderProcessGone(int render_process_id) {
DCHECK(thread_checker_.CalledOnValidThread());
// Note: It's possible for the RenderProcessHost and WebContents (and thus
// this class) to survive the death of the render process and subsequently be
// reused. During this period GetMonitorForRenderFrame() will be unable to
// lookup the WebContents using the now-dead |render_frame_id|. We must thus
// have this secondary mechanism for clearing stale streams.
// Streams must be removed locally before calling UpdateStreams() in order to
// avoid removing streams from the process twice, since RenderProcessHost
// removes the streams on its own when the renderer process is gone.
base::EraseIf(
streams_, [render_process_id](const std::pair<StreamID, bool>& entry) {
return entry.first.render_frame_host_id.child_id == render_process_id;
});
UpdateStreams();
}
std::unique_ptr<AudioStreamMonitor::AudibleClientRegistration>
AudioStreamMonitor::RegisterAudibleClient(
GlobalRenderFrameHostId render_frame_host_id) {
DCHECK(thread_checker_.CalledOnValidThread());
return std::make_unique<AudibleClientRegistration>(render_frame_host_id,
this);
}
void AudioStreamMonitor::AddAudibleClient(
GlobalRenderFrameHostId render_frame_host_id) {
DCHECK(thread_checker_.CalledOnValidThread());
audible_clients_[render_frame_host_id]++;
UpdateStreams();
}
void AudioStreamMonitor::RemoveAudibleClient(
GlobalRenderFrameHostId render_frame_host_id) {
DCHECK(thread_checker_.CalledOnValidThread());
DCHECK(!audible_clients_.empty());
auto it = audible_clients_.find(render_frame_host_id);
CHECK(it != audible_clients_.end());
CHECK_GT(it->second, 0u);
it->second--;
UpdateStreams();
if (it->second == 0) {
audible_clients_.erase(it);
}
}
// static
void AudioStreamMonitor::StartMonitoringStream(
GlobalRenderFrameHostId render_frame_host_id,
int stream_id) {
GetUIThreadTaskRunner({})->PostTask(
FROM_HERE,
base::BindOnce(
[](const StreamID& sid) {
if (AudioStreamMonitor* monitor =
GetMonitorForRenderFrame(sid.render_frame_host_id)) {
monitor->StartMonitoringStreamOnUIThread(sid);
}
},
StreamID{render_frame_host_id, stream_id}));
}
// static
void AudioStreamMonitor::StopMonitoringStream(
GlobalRenderFrameHostId render_frame_host_id,
int stream_id) {
GetUIThreadTaskRunner({})->PostTask(
FROM_HERE,
base::BindOnce(
[](const StreamID& sid) {
if (AudioStreamMonitor* monitor =
GetMonitorForRenderFrame(sid.render_frame_host_id)) {
monitor->StopMonitoringStreamOnUIThread(sid);
}
},
StreamID{render_frame_host_id, stream_id}));
}
// static
void AudioStreamMonitor::UpdateStreamAudibleState(
GlobalRenderFrameHostId render_frame_host_id,
int stream_id,
bool is_audible) {
GetUIThreadTaskRunner({})->PostTask(
FROM_HERE,
base::BindOnce(
[](const StreamID& sid, bool is_audible) {
if (AudioStreamMonitor* monitor =
GetMonitorForRenderFrame(sid.render_frame_host_id)) {
monitor->UpdateStreamAudibleStateOnUIThread(sid, is_audible);
}
},
StreamID{render_frame_host_id, stream_id}, is_audible));
}
void AudioStreamMonitor::StartMonitoringStreamOnUIThread(const StreamID& sid) {
DCHECK(thread_checker_.CalledOnValidThread());
DCHECK(streams_.find(sid) == streams_.end());
streams_[sid] = false;
}
void AudioStreamMonitor::StopMonitoringStreamOnUIThread(const StreamID& sid) {
DCHECK(thread_checker_.CalledOnValidThread());
auto it = streams_.find(sid);
if (it == streams_.end())
return;
// First set the state of stream to silent in order to correctly update the
// frame state.
streams_[sid] = false;
UpdateStreams();
streams_.erase(it);
}
void AudioStreamMonitor::UpdateStreamAudibleStateOnUIThread(const StreamID& sid,
bool is_audible) {
DCHECK(thread_checker_.CalledOnValidThread());
auto it = streams_.find(sid);
if (it == streams_.end())
return;
it->second = is_audible;
UpdateStreams();
}
void AudioStreamMonitor::UpdateStreams() {
bool was_audible = is_audible_;
is_audible_ = false;
// Determine whether a RenderFrameHost is audible based on
// stream and non-stream client states.
base::flat_map<GlobalRenderFrameHostId, bool> audible_frames;
audible_frames.reserve(streams_.size() + audible_clients_.size());
for (auto& kv : streams_) {
const bool is_stream_audible = kv.second;
is_audible_ |= is_stream_audible;
audible_frames[kv.first.render_frame_host_id] |= is_stream_audible;
}
for (auto& kv : audible_clients_) {
const bool is_client_audible = kv.second > 0;
is_audible_ |= is_client_audible;
audible_frames[kv.first] |= is_client_audible;
}
if (was_audible && !is_audible_) {
last_became_silent_time_ = base::TimeTicks::Now();
}
// Update RenderFrameHostImpl audible state if state has changed.
for (const auto& kv : audible_frames) {
auto* render_frame_host_impl =
static_cast<RenderFrameHostImpl*>(RenderFrameHost::FromID(kv.first));
// RenderFrameHostImpl may be null in some tests.
if (!render_frame_host_impl) {
continue;
}
bool is_frame_audible = kv.second;
if (is_frame_audible ==
render_frame_host_impl->HasMediaStreams(
RenderFrameHostImpl::MediaStreamType::kPlayingAudibleAudioStream)) {
continue;
}
if (is_frame_audible) {
render_frame_host_impl->OnMediaStreamAdded(
RenderFrameHostImpl::MediaStreamType::kPlayingAudibleAudioStream);
} else {
render_frame_host_impl->OnMediaStreamRemoved(
RenderFrameHostImpl::MediaStreamType::kPlayingAudibleAudioStream);
}
}
if (is_audible_ != was_audible) {
MaybeToggle();
web_contents_->OnAudioStateChanged();
}
}
void AudioStreamMonitor::MaybeToggle() {
const base::TimeTicks off_time =
last_became_silent_time_ + base::Milliseconds(kHoldOnMilliseconds);
const base::TimeTicks now = base::TimeTicks::Now();
const bool should_stop_timer = is_audible_ || now >= off_time;
const bool should_indicator_be_on = is_audible_ || !should_stop_timer;
if (should_indicator_be_on != indicator_is_on_) {
indicator_is_on_ = should_indicator_be_on;
web_contents_->NotifyNavigationStateChanged(INVALIDATE_TYPE_AUDIO);
}
if (should_stop_timer) {
off_timer_.Stop();
} else if (!off_timer_.IsRunning()) {
off_timer_.Start(FROM_HERE, off_time - now,
base::BindOnce(&AudioStreamMonitor::MaybeToggle,
base::Unretained(this)));
}
}
void AudioStreamMonitor::RenderFrameDeleted(
RenderFrameHost* render_frame_host) {
// It is possible for a frame to be deleted before notifications about its
// streams are received. Explicitly clear these streams.
base::EraseIf(streams_, [render_frame_host](
const std::pair<StreamID, bool>& entry) {
return entry.first.render_frame_host_id == render_frame_host->GetGlobalId();
});
UpdateStreams();
}
} // namespace content
|