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 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664
|
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/media/cast_mirroring_service_host.h"
#include <algorithm>
#include <optional>
#include <utility>
#include "base/command_line.h"
#include "base/functional/bind.h"
#include "base/functional/callback_helpers.h"
#include "base/logging.h"
#include "base/memory/ref_counted.h"
#include "base/strings/string_util.h"
#include "base/strings/utf_string_conversions.h"
#include "base/task/single_thread_task_runner.h"
#include "base/task/thread_pool.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/media/cast_remoting_connector.h"
#include "chrome/browser/media/router/discovery/access_code/access_code_cast_feature.h"
#include "chrome/browser/media/router/media_router_feature.h"
#include "chrome/browser/media/webrtc/media_capture_devices_dispatcher.h"
#include "chrome/browser/media/webrtc/media_stream_capture_indicator.h"
#include "chrome/browser/net/system_network_context_manager.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/profiles/profile_manager.h"
#include "chrome/browser/ui/tab_sharing/tab_sharing_ui.h"
#include "components/access_code_cast/common/access_code_cast_metrics.h"
#include "components/mirroring/browser/single_client_video_capture_host.h"
#include "components/mirroring/mojom/cast_message_channel.mojom.h"
#include "components/mirroring/mojom/mirroring_service.mojom.h"
#include "components/mirroring/mojom/session_observer.mojom.h"
#include "components/mirroring/mojom/session_parameters.mojom.h"
#include "content/public/browser/audio_service.h"
#include "content/public/browser/browser_task_traits.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/desktop_streams_registry.h"
#include "content/public/browser/gpu_client.h"
#include "content/public/browser/network_service_instance.h"
#include "content/public/browser/render_frame_host.h"
#include "content/public/browser/render_process_host.h"
#include "content/public/browser/service_process_host.h"
#include "content/public/browser/video_capture_device_launcher.h"
#include "content/public/browser/web_contents.h"
#include "media/audio/audio_device_description.h"
#include "media/base/media_switches.h"
#include "media/capture/mojom/video_capture.mojom.h"
#include "media/capture/video_capture_types.h"
#include "media/mojo/mojom/audio_data_pipe.mojom.h"
#include "media/mojo/mojom/audio_input_stream.mojom.h"
#include "media/mojo/mojom/audio_processing.mojom.h"
#include "media/mojo/services/mojo_video_encoder_metrics_provider_service.h"
#include "mojo/public/cpp/bindings/self_owned_receiver.h"
#include "services/metrics/public/cpp/ukm_source_id.h"
#include "services/network/public/mojom/network_context.mojom.h"
#include "services/network/public/mojom/network_service.mojom.h"
#include "services/viz/public/mojom/gpu.mojom.h"
#include "third_party/blink/public/mojom/mediastream/media_stream.mojom.h"
#include "ui/display/display.h"
#include "ui/display/screen.h"
#include "url/origin.h"
using content::BrowserThread;
namespace mirroring {
namespace {
using media::mojom::AudioInputStream;
using media::mojom::AudioInputStreamClient;
using media::mojom::AudioInputStreamObserver;
// Default resolution constraint.
constexpr gfx::Size kMaxResolution(1920, 1080);
// Command line arguments that should be passed to the mirroring service.
static const char* kPassthroughSwitches[]{
switches::kCastStreamingForceEnableHardwareH264,
switches::kCastStreamingForceEnableHardwareVp8,
switches::kCastStreamingForceEnableHardwareVp9,
switches::kCastStreamingForceDisableHardwareH264,
switches::kCastStreamingForceDisableHardwareVp8,
switches::kCastStreamingForceDisableHardwareVp9};
mojo::SelfOwnedReceiverRef<media::mojom::VideoCaptureHost>
CreateVideoCaptureHostOnIO(
const std::string& device_id,
blink::mojom::MediaStreamType type,
mojo::PendingReceiver<media::mojom::VideoCaptureHost> receiver) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
scoped_refptr<base::SingleThreadTaskRunner> device_task_runner =
base::ThreadPool::CreateSingleThreadTaskRunner(
{base::TaskPriority::USER_BLOCKING,
base::TaskShutdownBehavior::SKIP_ON_SHUTDOWN},
base::SingleThreadTaskRunnerThreadMode::DEDICATED);
return mojo::MakeSelfOwnedReceiver(
std::make_unique<SingleClientVideoCaptureHost>(
device_id, type,
base::BindRepeating(&content::VideoCaptureDeviceLauncher::
CreateInProcessVideoCaptureDeviceLauncher,
std::move(device_task_runner))),
std::move(receiver));
}
void PauseVideoCaptureHostOnIO(media::mojom::VideoCaptureHost* host,
base::UnguessableToken device_id,
base::OnceClosure on_paused_callback) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
host->Pause(device_id);
std::move(on_paused_callback).Run();
}
void ResumeVideoCaptureHostOnIO(media::mojom::VideoCaptureHost* host,
base::UnguessableToken device_id,
base::UnguessableToken session_id,
media::VideoCaptureParams params,
base::OnceClosure on_resumed_callback) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
host->Resume(device_id, session_id, params);
std::move(on_resumed_callback).Run();
}
blink::mojom::MediaStreamType ConvertVideoStreamType(
content::DesktopMediaID::Type type) {
switch (type) {
case content::DesktopMediaID::TYPE_NONE:
return blink::mojom::MediaStreamType::NO_SERVICE;
case content::DesktopMediaID::TYPE_WEB_CONTENTS:
return blink::mojom::MediaStreamType::GUM_TAB_VIDEO_CAPTURE;
case content::DesktopMediaID::TYPE_SCREEN:
case content::DesktopMediaID::TYPE_WINDOW:
return blink::mojom::MediaStreamType::GUM_DESKTOP_VIDEO_CAPTURE;
}
// To suppress compiler warning on Windows.
return blink::mojom::MediaStreamType::NO_SERVICE;
}
// Get the content::WebContents associated with the given |id|.
content::WebContents* GetContents(
const content::WebContentsMediaCaptureId& id) {
return content::WebContents::FromRenderFrameHost(
content::RenderFrameHost::FromID(id.render_process_id,
id.main_render_frame_id));
}
// Gets the profile associated with `web_contents`, if it exists. Else, gets the
// last used profile if it is loaded.
Profile* GetProfileOrLastUsedProfile(content::WebContents* web_contents) {
if (web_contents) {
return Profile::FromBrowserContext(web_contents->GetBrowserContext());
}
return ProfileManager::GetLastUsedProfileIfLoaded();
}
// Returns true if this user is allowed to use Access Codes & QR codes to
// discover cast devices, and AccessCodeCastTabSwitchingUI flag is enabled.
bool IsAccessCodeCastTabSwitchingUIEnabled(
const content::WebContentsMediaCaptureId& id) {
Profile* profile = GetProfileOrLastUsedProfile(GetContents(id));
return media_router::IsAccessCodeCastTabSwitchingUiEnabled(profile);
}
// Returns the size of the primary display in pixels, or std::nullopt if it
// cannot be determined.
std::optional<gfx::Size> GetScreenResolution() {
display::Screen* screen = display::Screen::GetScreen();
if (!screen) {
DVLOG(1) << "Cannot get the Screen object.";
return std::nullopt;
}
return screen->GetPrimaryDisplay().GetSizeInPixel();
}
} // namespace
CastMirroringServiceHost::CastMirroringServiceHost(
content::DesktopMediaID source_media_id)
: source_media_id_(source_media_id),
gpu_client_(nullptr, base::OnTaskRunnerDeleter(nullptr)),
tab_switching_ui_enabled_(IsAccessCodeCastTabSwitchingUIEnabled(
source_media_id.web_contents_id)) {
DETACH_FROM_SEQUENCE(sequence_checker_);
// Observe the target WebContents for Tab mirroring.
if (source_media_id_.type == content::DesktopMediaID::TYPE_WEB_CONTENTS)
Observe(GetContents(source_media_id_.web_contents_id));
}
CastMirroringServiceHost::~CastMirroringServiceHost() {
RecordTabUIUsageMetricsIfNeededAndReset();
}
void CastMirroringServiceHost::Start(
mojom::SessionParametersPtr session_params,
mojo::PendingRemote<mojom::SessionObserver> observer,
mojo::PendingRemote<mojom::CastMessageChannel> outbound_channel,
mojo::PendingReceiver<mojom::CastMessageChannel> inbound_channel,
const std::string& sink_name) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
// Start() should not be called in the middle of a mirroring session.
if (mirroring_service_) {
LOG(WARNING) << "Unexpected Start() call during an active"
<< "mirroring session";
return;
}
// Although the base::Features get propagated to the mirroring service, the
// command line flags do not.
const base::CommandLine& command_line =
*base::CommandLine::ForCurrentProcess();
std::vector<std::string> extra_switches;
for (const char* passthrough_switch : kPassthroughSwitches) {
if (command_line.HasSwitch(passthrough_switch)) {
extra_switches.emplace_back(passthrough_switch);
}
}
// Launch and connect to the Mirroring Service. The process will run until
// |mirroring_service_| is reset.
content::ServiceProcessHost::Launch(
mirroring_service_.BindNewPipeAndPassReceiver(),
content::ServiceProcessHost::Options()
.WithDisplayName("Mirroring Service")
.WithExtraCommandLineSwitches(extra_switches)
.Pass());
mojo::PendingRemote<mojom::ResourceProvider> provider;
resource_provider_receiver_.Bind(provider.InitWithNewPipeAndPassReceiver());
mirroring_service_->Start(
std::move(session_params), GetCaptureResolutionConstraint(),
std::move(observer), std::move(provider), std::move(outbound_channel),
std::move(inbound_channel));
sink_name_ = base::UTF8ToUTF16(
base::TrimWhitespaceASCII(sink_name, base::TrimPositions::TRIM_ALL));
ShowCaptureIndicator();
}
std::optional<content::FrameTreeNodeId>
CastMirroringServiceHost::GetTabSourceId() const {
if (web_contents()) {
return web_contents()->GetPrimaryMainFrame()->GetFrameTreeNodeId();
}
return std::nullopt;
}
// static
content::DesktopMediaID CastMirroringServiceHost::BuildMediaIdForWebContents(
content::WebContents* contents) {
content::DesktopMediaID media_id;
if (!contents) {
return media_id;
}
media_id.type = content::DesktopMediaID::TYPE_WEB_CONTENTS;
media_id.web_contents_id = content::WebContentsMediaCaptureId(
contents->GetPrimaryMainFrame()->GetProcess()->GetDeprecatedID(),
contents->GetPrimaryMainFrame()->GetRoutingID(),
true /* disable_local_echo */);
return media_id;
}
// static
gfx::Size CastMirroringServiceHost::GetCaptureResolutionConstraint() {
std::optional<gfx::Size> screen_resolution = GetScreenResolution();
if (screen_resolution) {
return GetClampedResolution(screen_resolution.value());
} else {
return kMaxResolution;
}
}
// static
gfx::Size CastMirroringServiceHost::GetClampedResolution(
gfx::Size screen_resolution) {
// Use landscape mode dimensions for screens in portrait mode.
if (screen_resolution.height() > screen_resolution.width()) {
screen_resolution =
gfx::Size(screen_resolution.height(), screen_resolution.width());
}
const int width_step = 160;
const int height_step = 90;
int clamped_width = 0;
int clamped_height = 0;
if (kMaxResolution.height() * screen_resolution.width() <
kMaxResolution.width() * screen_resolution.height()) {
clamped_width = std::min(kMaxResolution.width(), screen_resolution.width());
clamped_width = clamped_width - (clamped_width % width_step);
clamped_height = clamped_width * height_step / width_step;
} else {
clamped_height =
std::min(kMaxResolution.height(), screen_resolution.height());
clamped_height = clamped_height - (clamped_height % height_step);
clamped_width = clamped_height * width_step / height_step;
}
clamped_width = std::max(clamped_width, width_step);
clamped_height = std::max(clamped_height, height_step);
return gfx::Size(clamped_width, clamped_height);
}
void CastMirroringServiceHost::BindGpu(
mojo::PendingReceiver<viz::mojom::Gpu> receiver) {
gpu_client_ = content::CreateGpuClient(std::move(receiver));
}
void CastMirroringServiceHost::GetVideoCaptureHost(
mojo::PendingReceiver<media::mojom::VideoCaptureHost> receiver) {
content::GetIOThreadTaskRunner({})->PostTaskAndReplyWithResult(
FROM_HERE,
base::BindOnce(&CreateVideoCaptureHostOnIO, source_media_id_.ToString(),
ConvertVideoStreamType(source_media_id_.type),
std::move(receiver)),
// Setting the video capture host inside of the
// CastMirroringServiceHost class is handled by the browser thread.
base::BindOnce(&CastMirroringServiceHost::SetVideoCaptureHost,
weak_factory_for_ui_.GetWeakPtr()));
}
void CastMirroringServiceHost::GetVideoEncoderMetricsProvider(
mojo::PendingReceiver<media::mojom::VideoEncoderMetricsProvider> receiver) {
media::MojoVideoEncoderMetricsProviderService::Create(ukm::NoURLSourceId(),
std::move(receiver));
}
void CastMirroringServiceHost::SetVideoCaptureHost(
mojo::SelfOwnedReceiverRef<media::mojom::VideoCaptureHost>
video_capture_host) {
video_capture_host_ = video_capture_host;
}
void CastMirroringServiceHost::GetNetworkContext(
mojo::PendingReceiver<network::mojom::NetworkContext> receiver) {
network::mojom::NetworkContextParamsPtr network_context_params =
g_browser_process->system_network_context_manager()
->CreateDefaultNetworkContextParams();
content::CreateNetworkContextInNetworkService(
std::move(receiver), std::move(network_context_params));
}
void CastMirroringServiceHost::CreateAudioStream(
mojo::PendingRemote<mojom::AudioStreamCreatorClient> requestor,
const media::AudioParameters& params,
uint32_t total_segments) {
if (!audio_stream_factory_) {
content::GetAudioService().BindStreamFactory(
audio_stream_factory_.BindNewPipeAndPassReceiver());
}
if (source_media_id_.type == content::DesktopMediaID::TYPE_WEB_CONTENTS) {
content::WebContents* const contents = web_contents();
if (!contents) {
VLOG(1) << "Failed to create audio stream: Invalid source.";
return;
}
const base::UnguessableToken group_id = contents->GetAudioGroupId();
// Fix for regression: https://crbug.com/1111026
//
// Muting of the browser tab's local audio output starts when the first
// WebContents loopback capture stream is requested. The mute is held so
// that switching audio capture on/off (between mirroring and remoting
// modes) does not cause ~1 second blips of audio to bother the user. When
// this CastMirroringServiceHost is destroyed, the "Muter" will go away,
// restoring local audio output.
//
// There may be other browser features that also mute the same tab (before
// or during mirroring). The Audio Service allows multiple Muters for the
// same tab, and so the mute state will remain in-place if requested by
// those other features.
if (!web_contents_audio_muter_) {
audio_stream_factory_->BindMuter(
web_contents_audio_muter_.BindNewEndpointAndPassReceiver(), group_id);
}
CreateAudioStreamForTab(std::move(requestor), params, total_segments,
group_id);
} else {
CreateAudioStreamForDesktop(std::move(requestor), params, total_segments);
}
}
void CastMirroringServiceHost::CreateAudioStreamForTab(
mojo::PendingRemote<mojom::AudioStreamCreatorClient> requestor,
const media::AudioParameters& params,
uint32_t total_segments,
const base::UnguessableToken& group_id) {
// Stream control message pipes. The pipe endpoints will end up at the Audio
// Service and the Mirroring Service, not here.
mojo::MessagePipe pipe_to_audio_service;
mojo::MessagePipe pipe_to_mirroring_service;
// The Audio Service's CreateLoopbackStream() API requires an observer, but
// CastMirroringServiceHost does not care about any of the events. Also, the
// Audio Service requires that something has to be bound to the receive end of
// the message pipe or it will kill the stream. Thus, a dummy is provided
// here.
class DummyObserver final : public AudioInputStreamObserver {
void DidStartRecording() final {}
};
mojo::MessagePipe observer_pipe;
mojo::MakeSelfOwnedReceiver(std::make_unique<DummyObserver>(),
mojo::PendingReceiver<AudioInputStreamObserver>(
std::move(observer_pipe.handle1)));
// The following insane glob of code asks the Audio Service to create a
// loopback stream using the |group_id| as the selector for the tab's audio
// outputs. One end of the message pipes is passed to the Audio Service via
// the CreateLoopbackStream() call. Then, when the reply comes back, the other
// end of the message pipes is passed to the Mirroring Service (the
// |requestor|), along with the audio data pipe.
audio_stream_factory_->CreateLoopbackStream(
mojo::PendingReceiver<AudioInputStream>(
std::move(pipe_to_audio_service.handle1)),
mojo::PendingRemote<AudioInputStreamClient>(
std::move(pipe_to_mirroring_service.handle0), 0),
mojo::PendingRemote<AudioInputStreamObserver>(
std::move(observer_pipe.handle0), 0),
params, total_segments, group_id,
base::BindOnce(
[](mojo::PendingRemote<mojom::AudioStreamCreatorClient> requestor,
mojo::PendingRemote<AudioInputStream> stream,
mojo::PendingReceiver<AudioInputStreamClient> client,
media::mojom::ReadWriteAudioDataPipePtr data_pipe) {
mojo::Remote<mojom::AudioStreamCreatorClient>(std::move(requestor))
->StreamCreated(std::move(stream), std::move(client),
std::move(data_pipe));
},
std::move(requestor),
mojo::PendingRemote<AudioInputStream>(
std::move(pipe_to_audio_service.handle0), 0),
mojo::PendingReceiver<AudioInputStreamClient>(
std::move(pipe_to_mirroring_service.handle1))));
}
void CastMirroringServiceHost::CreateAudioStreamForDesktop(
mojo::PendingRemote<mojom::AudioStreamCreatorClient> requestor,
const media::AudioParameters& params,
uint32_t total_segments) {
// Stream control message pipes. The pipe endpoints will end up at the Audio
// Service and the Mirroring Service, not here.
mojo::MessagePipe pipe_to_audio_service;
mojo::MessagePipe pipe_to_mirroring_service;
// This does the mostly the same thing as the similar insane glob of code in
// the CreateAudioStreamForTab() method. Here, system-wide audio is requested
// from the platform, and so the CreateInputStream() API is used instead of
// CreateLoopbackStream(). CreateInputStream() is more complex, having a
// number of optional parameters that people seem to just keep adding more of
// over time, with little consideration for maintainable code structure, and
// add to the fun we're having here.
//
// See if you can spot all 7 unused fields! :P
audio_stream_factory_->CreateInputStream(
mojo::PendingReceiver<AudioInputStream>(
std::move(pipe_to_audio_service.handle1)),
mojo::PendingRemote<AudioInputStreamClient>(
std::move(pipe_to_mirroring_service.handle0), 0),
mojo::NullRemote(), mojo::NullRemote(),
media::AudioDeviceDescription::kLoopbackWithMuteDeviceId, params,
total_segments, false, nullptr,
base::BindOnce(
[](mojo::PendingRemote<mojom::AudioStreamCreatorClient> requestor,
mojo::PendingRemote<AudioInputStream> stream,
mojo::PendingReceiver<AudioInputStreamClient> client,
media::mojom::ReadWriteAudioDataPipePtr data_pipe, bool,
const std::optional<base::UnguessableToken>&) {
mojo::Remote<mojom::AudioStreamCreatorClient>(std::move(requestor))
->StreamCreated(std::move(stream), std::move(client),
std::move(data_pipe));
},
std::move(requestor),
mojo::PendingRemote<AudioInputStream>(
std::move(pipe_to_audio_service.handle0), 0),
mojo::PendingReceiver<AudioInputStreamClient>(
std::move(pipe_to_mirroring_service.handle1))));
}
void CastMirroringServiceHost::ConnectToRemotingSource(
mojo::PendingRemote<media::mojom::Remoter> remoter,
mojo::PendingReceiver<media::mojom::RemotingSource> receiver) {
if (source_media_id_.type == content::DesktopMediaID::TYPE_WEB_CONTENTS) {
content::WebContents* source_contents = web_contents();
if (source_contents) {
CastRemotingConnector::Get(source_contents)
->ConnectWithMediaRemoter(std::move(remoter), std::move(receiver));
}
}
}
void CastMirroringServiceHost::WebContentsDestroyed() {
mirroring_service_.reset();
web_contents_audio_muter_.reset();
audio_stream_factory_.reset();
gpu_client_.reset();
RecordTabUIUsageMetricsIfNeededAndReset();
video_capture_host_ = nullptr;
}
void CastMirroringServiceHost::ShowCaptureIndicator() {
if (source_media_id_.type != content::DesktopMediaID::TYPE_WEB_CONTENTS ||
!web_contents()) {
return;
}
blink::mojom::StreamDevices devices;
const blink::mojom::MediaStreamType stream_type =
ConvertVideoStreamType(source_media_id_.type);
blink::MediaStreamDevice device = blink::MediaStreamDevice(
stream_type, source_media_id_.ToString(), /* name */ std::string());
if (blink::IsAudioInputMediaType(stream_type))
devices.audio_device = device;
else if (blink::IsVideoInputMediaType(stream_type))
devices.video_device = device;
DCHECK(devices.audio_device.has_value() || devices.video_device.has_value());
if (tab_switching_ui_enabled_) {
ShowTabSharingUI(devices);
return;
}
media_stream_ui_ = MediaCaptureDevicesDispatcher::GetInstance()
->GetMediaStreamCaptureIndicator()
->RegisterMediaStream(web_contents(), devices);
media_stream_ui_->OnStarted(
/*stop_callback=*/base::DoNothing(),
content::MediaStreamUI::SourceCallback(),
/*label=*/std::string(), /*screen_capture_ids=*/{},
content::MediaStreamUI::StateChangeCallback());
}
void CastMirroringServiceHost::ShowTabSharingUI(
const blink::mojom::StreamDevices& devices) {
DCHECK(tab_switching_ui_enabled_);
// Callbacks that were supplied to the existing `media_stream_ui_` are no
// longer applicable. This is important as some implementations
// (TabSharingUIViews) always run the callback when destroyed. However at the
// point the UI is replaced while casting is ongoing, invalidating ensures
// that casting is not terminated.
// TODO(crbug.com/1394268): Remove the need for manual invalidation.
weak_factory_for_ui_.InvalidateWeakPtrs();
content::GlobalRenderFrameHostId capturer_id =
web_contents()->GetPrimaryMainFrame()->GetGlobalId();
std::unique_ptr<MediaStreamUI> notification_ui =
TabSharingUI::Create(capturer_id, source_media_id_, sink_name_,
/*app_preferred_current_tab=*/false,
TabSharingInfoBarDelegate::TabShareType::CAST,
/*captured_surface_control_active=*/false);
media_stream_ui_ = MediaCaptureDevicesDispatcher::GetInstance()
->GetMediaStreamCaptureIndicator()
->RegisterMediaStream(web_contents(), devices,
std::move(notification_ui));
media_stream_ui_->OnStarted(
base::BindRepeating(&CastMirroringServiceHost::WebContentsDestroyed,
weak_factory_for_ui_.GetWeakPtr()),
base::BindRepeating(&CastMirroringServiceHost::SwitchMirroringSourceTab,
weak_factory_for_ui_.GetWeakPtr()),
/*label=*/std::string(), /*screen_capture_ids=*/{},
content::MediaStreamUI::StateChangeCallback());
if (!tab_switching_count_)
tab_switching_count_ = 0;
}
void CastMirroringServiceHost::SwitchMirroringSourceTab(
const content::DesktopMediaID& media_id,
bool captured_surface_control_active) {
DCHECK(!captured_surface_control_active) << "CSC not supported for casting.";
source_media_id_ = media_id;
source_media_id_.web_contents_id.disable_local_echo = true;
// Drop the reference to the VideoCaptureHost, since the weak_ptr will be
// invalidated. A new VideoCaptureHost will be created for the new source tab
// by the Mirroring Service.
video_capture_host_ = nullptr;
// Observe the target WebContents for tab mirroring.
DCHECK_EQ(source_media_id_.type, content::DesktopMediaID::TYPE_WEB_CONTENTS);
Observe(GetContents(source_media_id_.web_contents_id));
ShowCaptureIndicator();
web_contents_audio_muter_.reset();
mirroring_service_->SwitchMirroringSourceTab();
tab_switching_count_.value() += 1;
}
void CastMirroringServiceHost::RecordTabUIUsageMetricsIfNeededAndReset() {
if (!tab_switching_count_)
return;
if (tab_switching_count_.value() > 0) {
AccessCodeCastMetrics::RecordTabSwitcherUsageCase(
AccessCodeCastUiTabSwitcherUsage::
kTabSwitcherUiShownAndUsedToSwitchTabs);
} else {
AccessCodeCastMetrics::RecordTabSwitcherUsageCase(
AccessCodeCastUiTabSwitcherUsage::kTabSwitcherUiShownAndNotUsed);
}
AccessCodeCastMetrics::RecordTabSwitchesCountInTabSession(
tab_switching_count_.value());
tab_switching_count_.reset();
}
void CastMirroringServiceHost::DestroyTab(OffscreenTab* tab) {
if (offscreen_tab_ && (offscreen_tab_.get() == tab))
offscreen_tab_.reset();
}
void CastMirroringServiceHost::OpenOffscreenTab(
content::BrowserContext* context,
const GURL& presentation_url,
const std::string& presentation_id) {
DCHECK(!offscreen_tab_);
offscreen_tab_ = std::make_unique<OffscreenTab>(this, context);
offscreen_tab_->Start(presentation_url, GetCaptureResolutionConstraint(),
presentation_id);
source_media_id_ = BuildMediaIdForWebContents(offscreen_tab_->web_contents());
DCHECK_EQ(content::DesktopMediaID::TYPE_WEB_CONTENTS, source_media_id_.type);
Observe(offscreen_tab_->web_contents());
}
void CastMirroringServiceHost::Pause(base::OnceClosure on_paused_callback) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
if (video_capture_host_) {
content::GetIOThreadTaskRunner({})->PostTask(
FROM_HERE,
base::BindOnce(&PauseVideoCaptureHostOnIO, video_capture_host_->impl(),
ignored_token_, std::move(on_paused_callback)));
}
}
void CastMirroringServiceHost::Resume(base::OnceClosure on_resumed_callback) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
if (video_capture_host_) {
content::GetIOThreadTaskRunner({})->PostTask(
FROM_HERE,
base::BindOnce(&ResumeVideoCaptureHostOnIO, video_capture_host_->impl(),
ignored_token_, ignored_token_, ignored_params_,
std::move(on_resumed_callback)));
}
}
void CastMirroringServiceHost::GetMirroringStats(
base::OnceCallback<void(const base::Value)> json_stats_cb) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
if (!mirroring_service_.is_bound()) {
std::move(json_stats_cb).Run(base::Value());
return;
}
mirroring_service_->GetMirroringStats(std::move(json_stats_cb));
}
} // namespace mirroring
|