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 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086
|
// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/40285824): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif
#include "chrome/browser/media/webrtc/native_desktop_media_list.h"
#include <algorithm>
#include <memory>
#include <optional>
#include <utility>
#include "base/feature_list.h"
#include "base/functional/bind.h"
#include "base/hash/hash.h"
#include "base/logging.h"
#include "base/message_loop/message_pump_type.h"
#include "base/metrics/field_trial_params.h"
#include "base/numerics/checked_math.h"
#include "base/strings/utf_string_conversions.h"
#include "base/task/single_thread_task_runner.h"
#include "base/threading/thread_restrictions.h"
#include "build/build_config.h"
#include "chrome/browser/media/webrtc/desktop_media_list.h"
#include "chrome/grit/generated_resources.h"
#include "content/public/browser/browser_task_traits.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/desktop_capture.h"
#include "content/public/common/content_features.h"
#include "media/base/video_util.h"
#include "third_party/libyuv/include/libyuv/scale_argb.h"
#include "third_party/skia/include/core/SkBitmap.h"
#include "third_party/webrtc/modules/desktop_capture/desktop_capturer.h"
#include "third_party/webrtc/modules/desktop_capture/desktop_frame.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/gfx/native_widget_types.h"
#include "ui/snapshot/snapshot.h"
#if defined(USE_AURA)
#include "ui/aura/window.h"
#include "ui/aura/window_tree_host.h"
#include "ui/snapshot/snapshot_aura.h"
#endif
#if BUILDFLAG(IS_MAC)
#include "components/remote_cocoa/browser/scoped_cg_window_id.h"
#endif
#if BUILDFLAG(IS_WIN)
#include <windows.h>
#include "base/strings/string_util_win.h"
#include "ui/views/widget/desktop_aura/desktop_window_tree_host_win.h"
#endif
using content::DesktopMediaID;
namespace {
// The maximum number of window thumbnails that are concurrently captured when
// the frame delivery mode is set to kMultipleSourcesRecurrent.
// ThumbnailCapturerMac is the only capturer at the moment that implements this.
constexpr size_t kNativeDesktopMediaListMaxConcurrentStreams = 100;
// Update the list every second.
constexpr int kDefaultNativeDesktopMediaListUpdatePeriod = 1000;
// Returns a hash of a DesktopFrame content to detect when image for a desktop
// media source has changed, if the frame is valid, or absl::null_opt if not.
std::optional<size_t> GetFrameHash(webrtc::DesktopFrame* frame) {
// These checks ensure invalid data isn't passed along, potentially leading to
// crashes, e.g. when we calculate the hash which assumes a positive height
// and stride.
// TODO(crbug.com/40132113): figure out why the height is sometimes negative.
if (!frame || !frame->data() || frame->stride() < 0 ||
frame->size().height() < 0) {
return std::nullopt;
}
size_t data_size;
if (!base::CheckMul<size_t>(frame->stride(), frame->size().height())
.AssignIfValid(&data_size)) {
return std::nullopt;
}
return base::FastHash(base::span(frame->data(), data_size));
}
gfx::ImageSkia ScaleDesktopFrame(std::unique_ptr<webrtc::DesktopFrame> frame,
gfx::Size size) {
gfx::Rect scaled_rect = media::ComputeLetterboxRegion(
gfx::Rect(0, 0, size.width(), size.height()),
gfx::Size(frame->size().width(), frame->size().height()));
SkBitmap result;
result.allocN32Pixels(scaled_rect.width(), scaled_rect.height(), true);
uint8_t* pixels_data = reinterpret_cast<uint8_t*>(result.getPixels());
libyuv::ARGBScale(frame->data(), frame->stride(), frame->size().width(),
frame->size().height(), pixels_data, result.rowBytes(),
scaled_rect.width(), scaled_rect.height(),
libyuv::kFilterBilinear);
// Set alpha channel values to 255 for all pixels.
// TODO(sergeyu): Fix screen/window capturers to capture alpha channel and
// remove this code. Currently screen/window capturers (at least some
// implementations) only capture R, G and B channels and set Alpha to 0.
// crbug.com/264424
for (int y = 0; y < result.height(); ++y) {
for (int x = 0; x < result.width(); ++x) {
pixels_data[result.rowBytes() * y + x * result.bytesPerPixel() + 3] =
0xff;
}
}
return gfx::ImageSkia::CreateFrom1xBitmap(result);
}
#if BUILDFLAG(IS_WIN)
// These Collector functions are repeatedly invoked by `::EnumWindows` and they
// add HWNDs to the vector contained in `param`. Return TRUE to continue the
// enumeration or FALSE to end early.
//
// Collects all capturable HWNDs which are owned by the current process.
BOOL CALLBACK CapturableCurrentProcessHwndCollector(HWND hwnd, LPARAM param) {
DWORD process_id;
::GetWindowThreadProcessId(hwnd, &process_id);
if (process_id != ::GetCurrentProcessId())
return TRUE;
// Skip windows that aren't visible or are minimized.
if (!::IsWindowVisible(hwnd) || ::IsIconic(hwnd))
return TRUE;
// Skip windows which are not presented in the taskbar, e.g. the "Restore
// pages?" window.
HWND owner = ::GetWindow(hwnd, GW_OWNER);
LONG exstyle = ::GetWindowLong(hwnd, GWL_EXSTYLE);
if (owner && !(exstyle & WS_EX_APPWINDOW))
return TRUE;
auto* current_process_windows = reinterpret_cast<std::vector<HWND>*>(param);
current_process_windows->push_back(hwnd);
return TRUE;
}
// Collects all HWNDs, which are enumerated in z-order, to create a reference
// for sorting.
BOOL CALLBACK AllHwndCollector(HWND hwnd, LPARAM param) {
auto* hwnds = reinterpret_cast<std::vector<HWND>*>(param);
hwnds->push_back(hwnd);
return TRUE;
}
#endif // BUILDFLAG(IS_WIN)
content::DesktopMediaID::Type ConvertToDesktopMediaIDType(
DesktopMediaList::Type type) {
switch (type) {
case DesktopMediaList::Type::kScreen:
return content::DesktopMediaID::Type::TYPE_SCREEN;
case DesktopMediaList::Type::kWindow:
return content::DesktopMediaID::Type::TYPE_WINDOW;
case DesktopMediaList::Type::kWebContents:
case DesktopMediaList::Type::kCurrentTab:
case DesktopMediaList::Type::kNone:
break;
}
NOTREACHED();
}
content::DesktopMediaID::Id GetUpdatedWindowId(
const content::DesktopMediaID& desktop_media_id,
bool is_source_list_delegated) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
// Use current value by default.
content::DesktopMediaID::Id window_id = desktop_media_id.window_id;
// Update |window_id| if |desktop_media_id.id| corresponds to a
// viz::FrameSinkId.
// TODO(crbug.com/40239799): This lookup is fairly fragile and has
// now resulted in at least two patches to avoid it (though both are Wayland
// based problems). On top of that, the series of ifdefs is a bit confusing.
// We should try to simplify/abstract/cleanup this logic.
// The root cause is that the Ozone Wayland Window Manager does *not* use a
// platform handle/unique ID to back the AcceleratedWidget, but rather a
// monotonically increasing int. Thus, capturers on that platform that
// also (by default) use monotonically increasing ints as IDs (e.g.
// delegated source lists, the lacros capturer) can have source IDs that
// collide with known aura IDs. This causes us to mistakenly try to capture
// the non-aura windows as an aura window. The preview ultimately matches
// what is captured, but this is likely unexpected for the user and can
// result in multiple instances of a window appearing in the source list and
// also means that the collided non-aura window cannot be captured.
#if defined(USE_AURA)
if (!is_source_list_delegated) {
DesktopMediaID::Id search_id = desktop_media_id.id;
aura::WindowTreeHost* const host =
aura::WindowTreeHost::GetForAcceleratedWidget(
*reinterpret_cast<gfx::AcceleratedWidget*>(&search_id));
aura::Window* const aura_window = host ? host->window() : nullptr;
if (aura_window) {
DesktopMediaID aura_id = DesktopMediaID::RegisterNativeWindow(
DesktopMediaID::TYPE_WINDOW, aura_window);
window_id = aura_id.window_id;
} else if (search_id != DesktopMediaID::kNullId) {
// This is expected for non-LaCrOS platforms, where we are searching all
// IDs (which include windows/screens that we don't own). However, on
// LaCrOS, if we set search_id, then that means we think we should know
// about the window. There are potential race conditions where this
// could happen, so don't throw an error, but do log it in case any
// issues pop up in the future so we can debug it.
}
}
#elif BUILDFLAG(IS_MAC)
if (remote_cocoa::ScopedCGWindowID::Get(desktop_media_id.id)) {
window_id = desktop_media_id.id;
}
#endif
return window_id;
}
using ThumbnailCallback =
base::OnceCallback<void(const content::DesktopMediaID&,
const gfx::ImageSkia&)>;
void AssignWindowIdAndUpdateThumbnail(
content::DesktopMediaID desktop_media_id,
bool is_source_list_delegated,
const gfx::ImageSkia& thumbnail,
ThumbnailCallback update_thumbnail_callback) {
desktop_media_id.window_id =
GetUpdatedWindowId(desktop_media_id, is_source_list_delegated);
std::move(update_thumbnail_callback).Run(desktop_media_id, thumbnail);
}
} // namespace
class NativeDesktopMediaList::Worker
: public ThumbnailCapturer::Consumer,
public webrtc::DelegatedSourceListController::Observer {
public:
Worker(scoped_refptr<base::SingleThreadTaskRunner> task_runner,
base::WeakPtr<NativeDesktopMediaList> media_list,
DesktopMediaList::Type type,
std::unique_ptr<ThumbnailCapturer> capturer,
bool add_current_process_windows,
bool auto_show_delegated_source_list);
Worker(const Worker&) = delete;
Worker& operator=(const Worker&) = delete;
~Worker() override;
void Start();
void Refresh(bool update_thumbnails);
void RefreshThumbnails(std::vector<DesktopMediaID> native_ids,
const gfx::Size& thumbnail_size);
void FocusList();
void HideList();
void ShowDelegatedList();
void ClearDelegatedSourceListSelection();
// If |excluded_window_id| is not kNullId, then that ID will
// be ignored by `this`.
void SetExcludedWindow(DesktopMediaID::Id excluded_window_id);
void SetThumbnailSize(const gfx::Size& thumbnail_size);
private:
typedef std::map<DesktopMediaID, size_t> ImageHashesMap;
// Used to hold state associated with a call to RefreshThumbnails.
struct RefreshThumbnailsState {
std::vector<DesktopMediaID> source_ids;
gfx::Size thumbnail_size;
ImageHashesMap new_image_hashes;
size_t next_source_index = 0;
};
// These must be members because |SourceDescription| is a protected type from
// |DesktopMediaListBase|.
// |excluded_window_id|, if different from kNullId, indicates a window
// which should be excluded from the list produced.
static std::vector<SourceDescription> FormatSources(
const webrtc::DesktopCapturer::SourceList& sources,
const DesktopMediaID::Type source_type,
DesktopMediaID::Id excluded_window_id);
#if BUILDFLAG(IS_WIN)
static std::vector<SourceDescription> GetCurrentProcessWindows();
static std::vector<SourceDescription> MergeAndSortWindowSources(
std::vector<SourceDescription> sources_a,
std::vector<SourceDescription> sources_b);
#endif // BUILDFLAG(IS_WIN)
void RefreshNextThumbnail();
// ThumbnailCapturer::Consumer interface.
void OnCaptureResult(webrtc::DesktopCapturer::Result result,
std::unique_ptr<webrtc::DesktopFrame> frame) override;
void OnRecurrentCaptureResult(ThumbnailCapturer::Result result,
std::unique_ptr<webrtc::DesktopFrame> frame,
ThumbnailCapturer::SourceId source_id) override;
void OnSourceListUpdated() override;
// webrtc::DelegatedSourceListController::Observer interface.
void OnSelection() override;
void OnCancelled() override;
void OnError() override;
// Task runner used for capturing operations.
scoped_refptr<base::SingleThreadTaskRunner> task_runner_;
base::WeakPtr<NativeDesktopMediaList> media_list_;
DesktopMediaID::Type source_type_;
const std::unique_ptr<ThumbnailCapturer> capturer_;
const ThumbnailCapturer::FrameDeliveryMethod frame_delivery_method_;
const bool add_current_process_windows_;
const bool auto_show_delegated_source_list_;
const bool is_source_list_delegated_;
bool delegated_source_list_has_selection_ = false;
bool focused_ = false;
// If this ID is different than kNullId, then windows with this ID
// may not be captured.
// Used to keep track of the view dialog where the thumbnails are displayed,
// so as to avoid offering the user to capture that dialog, which will
// disappear as soon as the user makes that choice.
// TODO(crbug.com/40278456): Set this earlier to avoid frames being
// dropped because it's not set. If possible set it in the constructor.
DesktopMediaID::Id excluded_window_id_ = DesktopMediaID::kNullId;
gfx::Size thumbnail_size_ = kDefaultThumbnailSize;
// Stores hashes of snapshots previously captured.
ImageHashesMap image_hashes_;
// Non-null when RefreshThumbnails hasn't yet completed. Must only be accessed
// on `task_runner_` thread.
std::unique_ptr<RefreshThumbnailsState> refresh_thumbnails_state_;
base::WeakPtrFactory<Worker> weak_factory_{this};
};
NativeDesktopMediaList::Worker::Worker(
scoped_refptr<base::SingleThreadTaskRunner> task_runner,
base::WeakPtr<NativeDesktopMediaList> media_list,
DesktopMediaList::Type type,
std::unique_ptr<ThumbnailCapturer> capturer,
bool add_current_process_windows,
bool auto_show_delegated_source_list)
: task_runner_(task_runner),
media_list_(media_list),
source_type_(ConvertToDesktopMediaIDType(type)),
capturer_(std::move(capturer)),
frame_delivery_method_(capturer_->GetFrameDeliveryMethod()),
add_current_process_windows_(add_current_process_windows),
auto_show_delegated_source_list_(auto_show_delegated_source_list),
is_source_list_delegated_(capturer_->GetDelegatedSourceListController() !=
nullptr) {
DCHECK(capturer_);
DCHECK(source_type_ == DesktopMediaID::Type::TYPE_WINDOW ||
!add_current_process_windows_);
}
NativeDesktopMediaList::Worker::~Worker() {
DCHECK(task_runner_->BelongsToCurrentThread());
}
void NativeDesktopMediaList::Worker::Start() {
DCHECK(task_runner_->BelongsToCurrentThread());
capturer_->Start(this);
if (is_source_list_delegated_) {
capturer_->GetDelegatedSourceListController()->Observe(this);
}
}
void NativeDesktopMediaList::Worker::Refresh(bool update_thumbnails) {
DCHECK(task_runner_->BelongsToCurrentThread());
webrtc::DesktopCapturer::SourceList sources;
if (!capturer_->GetSourceList(&sources)) {
// Will pass empty results list to RefreshForVizFrameSinkWindows().
sources.clear();
}
if (capturer_->GetFrameDeliveryMethod() ==
ThumbnailCapturer::FrameDeliveryMethod::kMultipleSourcesRecurrent) {
// TODO(crbug.com/40278456): Select windows to stream based on what's
// visible. For now, select the first N windows.
const size_t target_size =
std::min(kNativeDesktopMediaListMaxConcurrentStreams, sources.size());
std::vector<ThumbnailCapturer::SourceId> source_ids;
for (size_t i = 0; i < target_size; ++i) {
if (sources[i].id != excluded_window_id_) {
source_ids.push_back(sources[i].id);
}
}
capturer_->SelectSources(source_ids, thumbnail_size_);
}
std::vector<SourceDescription> source_descriptions =
FormatSources(sources, source_type_, excluded_window_id_);
#if BUILDFLAG(IS_WIN)
// If |add_current_process_windows_| is set to false, |capturer_| will have
// found the windows owned by the current process for us. Otherwise, we must
// do this.
if (add_current_process_windows_) {
DCHECK_EQ(source_type_, DesktopMediaID::Type::TYPE_WINDOW);
// WebRTC returns the windows in order of highest z-order to lowest, but
// these additional windows will be out of order if we just append them. So
// we sort the list according to the z-order of the windows.
source_descriptions = MergeAndSortWindowSources(
std::move(source_descriptions), GetCurrentProcessWindows());
}
#endif // BUILDFLAG(IS_WIN)
content::GetUIThreadTaskRunner({})->PostTask(
FROM_HERE,
base::BindOnce(&NativeDesktopMediaList::RefreshForVizFrameSinkWindows,
media_list_, source_descriptions, update_thumbnails));
}
void NativeDesktopMediaList::Worker::RefreshThumbnails(
std::vector<DesktopMediaID> native_ids,
const gfx::Size& thumbnail_size) {
DCHECK(task_runner_->BelongsToCurrentThread());
// The refresh of thumbnails follows different steps depending on if the frame
// deliver method is kOnRequest or kMultipleSourcesRecurrent.
//
// For kOnRequest
// ==============
// To refresh thumbnails, a snapshot of each window is captured and scaled
// down to the specified size. Snapshotting can be asynchronous, and so
// the process looks like the following steps:
//
// 1) RefreshNextThumbnail
// 2) OnCaptureResult
// 3) UpdateSourceThumbnail (if the snapshot changed)
// [repeat 1, 2 and 3 until all thumbnails are refreshed]
// 4) RefreshNextThumbnail
// 5) UpdateNativeThumbnailsFinished
//
// |image_hashes_| is used to help avoid updating thumbnails that haven't
// changed since the last refresh.
//
// For kMultipleSourcesRecurrent
// =============================
// The refresh of thumbnails begins as soon as SelectSources() is called with
// the specific sources that should be captured. This will result in several
// callbacks to OnRecurrentCaptureResult for each source. If the source list
// is updated, there will be a call to OnSourceListUpdated() and the selection
// of sources may be changed.
// Ignore if refresh is already in progress or the frame delivery method is
// multiple sources recurrent.
if (refresh_thumbnails_state_ ||
frame_delivery_method_ ==
ThumbnailCapturer::FrameDeliveryMethod::kMultipleSourcesRecurrent) {
return;
}
refresh_thumbnails_state_ = std::make_unique<RefreshThumbnailsState>();
refresh_thumbnails_state_->source_ids = std::move(native_ids);
refresh_thumbnails_state_->thumbnail_size = thumbnail_size;
RefreshNextThumbnail();
}
// static
std::vector<DesktopMediaListBase::SourceDescription>
NativeDesktopMediaList::Worker::FormatSources(
const webrtc::DesktopCapturer::SourceList& sources,
const DesktopMediaID::Type source_type,
DesktopMediaID::Id excluded_window_id) {
std::vector<SourceDescription> source_descriptions;
std::u16string title;
for (size_t i = 0; i < sources.size(); ++i) {
switch (source_type) {
case DesktopMediaID::Type::TYPE_SCREEN:
// Just in case 'Screen' is inflected depending on the screen number,
// use plural formatter.
title = sources.size() > 1
? l10n_util::GetPluralStringFUTF16(
IDS_DESKTOP_MEDIA_PICKER_MULTIPLE_SCREEN_NAME,
static_cast<int>(i + 1))
: l10n_util::GetStringUTF16(
IDS_DESKTOP_MEDIA_PICKER_SINGLE_SCREEN_NAME);
break;
case DesktopMediaID::Type::TYPE_WINDOW:
// Skip the picker dialog window.
if (sources[i].id == excluded_window_id) {
continue;
}
title = base::UTF8ToUTF16(sources[i].title);
break;
default:
NOTREACHED();
}
DesktopMediaID source_id(source_type, sources[i].id);
source_descriptions.emplace_back(std::move(source_id), title);
}
return source_descriptions;
}
#if BUILDFLAG(IS_WIN)
// static
std::vector<DesktopMediaListBase::SourceDescription>
NativeDesktopMediaList::Worker::GetCurrentProcessWindows() {
std::vector<HWND> current_process_windows;
if (!::EnumWindows(CapturableCurrentProcessHwndCollector,
reinterpret_cast<LPARAM>(¤t_process_windows))) {
return std::vector<SourceDescription>();
}
std::vector<SourceDescription> current_process_sources;
for (HWND hwnd : current_process_windows) {
// Leave these sources untitled, we must get their title from the UI thread.
current_process_sources.emplace_back(
DesktopMediaID(
DesktopMediaID::Type::TYPE_WINDOW,
reinterpret_cast<webrtc::DesktopCapturer::SourceId>(hwnd)),
u"");
}
return current_process_sources;
}
// static
std::vector<DesktopMediaListBase::SourceDescription>
NativeDesktopMediaList::Worker::MergeAndSortWindowSources(
std::vector<SourceDescription> sources_a,
std::vector<SourceDescription> sources_b) {
// |EnumWindows| enumerates top level windows in z-order, we use this as a
// reference for sorting.
std::vector<HWND> z_ordered_windows;
if (!::EnumWindows(AllHwndCollector,
reinterpret_cast<LPARAM>(&z_ordered_windows))) {
// Since we can't get the z-order for the windows, we can't sort them. So,
// let's just concatenate.
sources_a.insert(sources_a.end(),
std::make_move_iterator(sources_b.begin()),
std::make_move_iterator(sources_b.end()));
return sources_a;
}
std::vector<const std::vector<SourceDescription>*> source_containers = {
&sources_a, &sources_b};
std::vector<SourceDescription> sorted_sources;
auto id_hwnd_projection = [](const SourceDescription& source) {
return reinterpret_cast<const HWND>(source.id.id);
};
for (HWND window : z_ordered_windows) {
for (const auto* source_container : source_containers) {
auto source_it =
std::ranges::find(*source_container, window, id_hwnd_projection);
if (source_it != source_container->end()) {
sorted_sources.push_back(*source_it);
break;
}
}
}
return sorted_sources;
}
#endif // BUILDFLAG(IS_WIN)
void NativeDesktopMediaList::Worker::RefreshNextThumbnail() {
DCHECK(task_runner_->BelongsToCurrentThread());
DCHECK(refresh_thumbnails_state_);
for (size_t index = refresh_thumbnails_state_->next_source_index;
index < refresh_thumbnails_state_->source_ids.size(); ++index) {
refresh_thumbnails_state_->next_source_index = index + 1;
DesktopMediaID source_id = refresh_thumbnails_state_->source_ids[index];
if (capturer_->SelectSource(source_id.id)) {
capturer_->CaptureFrame(); // Completes with OnCaptureResult.
return;
}
}
// Done capturing thumbnails.
image_hashes_.swap(refresh_thumbnails_state_->new_image_hashes);
refresh_thumbnails_state_.reset();
content::GetUIThreadTaskRunner({})->PostTask(
FROM_HERE,
base::BindOnce(&NativeDesktopMediaList::UpdateNativeThumbnailsFinished,
media_list_));
}
void NativeDesktopMediaList::Worker::OnCaptureResult(
webrtc::DesktopCapturer::Result result,
std::unique_ptr<webrtc::DesktopFrame> frame) {
DCHECK(task_runner_->BelongsToCurrentThread());
const size_t index = refresh_thumbnails_state_->next_source_index - 1;
DCHECK(index < refresh_thumbnails_state_->source_ids.size());
DesktopMediaID id = refresh_thumbnails_state_->source_ids[index];
// |frame| may be null if capture failed (e.g. because window has been
// closed).
const std::optional<size_t> frame_hash = GetFrameHash(frame.get());
if (frame_hash) {
refresh_thumbnails_state_->new_image_hashes[id] = *frame_hash;
// Scale the image only if it has changed.
auto it = image_hashes_.find(id);
if (it == image_hashes_.end() || it->second != *frame_hash) {
gfx::ImageSkia thumbnail = ScaleDesktopFrame(
std::move(frame), refresh_thumbnails_state_->thumbnail_size);
content::GetUIThreadTaskRunner({})->PostTask(
FROM_HERE,
base::BindOnce(&NativeDesktopMediaList::UpdateSourceThumbnail,
media_list_, id, thumbnail));
}
}
// Protect against possible re-entrancy since OnCaptureResult can be invoked
// from within the call to CaptureFrame.
base::SingleThreadTaskRunner::GetCurrentDefault()->PostTask(
FROM_HERE, base::BindOnce(&Worker::RefreshNextThumbnail,
weak_factory_.GetWeakPtr()));
}
void NativeDesktopMediaList::Worker::OnRecurrentCaptureResult(
ThumbnailCapturer::Result result,
std::unique_ptr<webrtc::DesktopFrame> frame,
ThumbnailCapturer::SourceId source_id) {
DCHECK(task_runner_->BelongsToCurrentThread());
// |frame| may be null if capture failed (e.g. because window has been
// closed).
if (!frame) {
return;
}
gfx::ImageSkia thumbnail =
ScaleDesktopFrame(std::move(frame), thumbnail_size_);
content::GetUIThreadTaskRunner({})->PostTask(
FROM_HERE,
base::BindOnce(
&AssignWindowIdAndUpdateThumbnail,
DesktopMediaID(source_type_, source_id), is_source_list_delegated_,
thumbnail,
base::BindOnce(&NativeDesktopMediaList::UpdateSourceThumbnail,
media_list_)));
}
void NativeDesktopMediaList::Worker::OnSourceListUpdated() {
Refresh(/*update_thumbnails=*/false);
}
void NativeDesktopMediaList::Worker::ClearDelegatedSourceListSelection() {
DCHECK(is_source_list_delegated_);
if (!delegated_source_list_has_selection_)
return;
delegated_source_list_has_selection_ = false;
// If we're currently focused and the selection has been cleared; ensure that
// the SourceList is visible if it should be auto-showed.
if (focused_ && auto_show_delegated_source_list_) {
capturer_->GetDelegatedSourceListController()->EnsureVisible();
}
}
void NativeDesktopMediaList::Worker::SetExcludedWindow(
DesktopMediaID::Id excluded_window_id) {
excluded_window_id_ = excluded_window_id;
}
void NativeDesktopMediaList::Worker::SetThumbnailSize(
const gfx::Size& thumbnail_size) {
thumbnail_size_ = thumbnail_size;
}
void NativeDesktopMediaList::Worker::FocusList() {
focused_ = true;
// If the capturer uses a delegated source list, then we need to ensure that
// its source list is visible, unless a selection has previously been made.
// If the capturer doesn't use a delegated source list, there's nothing for us
// to do as we're continually querying the list state ourselves.
if (is_source_list_delegated_ && auto_show_delegated_source_list_ &&
!delegated_source_list_has_selection_) {
capturer_->GetDelegatedSourceListController()->EnsureVisible();
}
}
void NativeDesktopMediaList::Worker::HideList() {
focused_ = false;
// If the capturer uses a delegated source list, then we need to ensure that
// its source list is hidden.
// If the capturer doesn't use a delegated source list, there's nothing for us
// to do as we want to continually querying the list state ourselves as we
// have been doing.
if (is_source_list_delegated_) {
capturer_->GetDelegatedSourceListController()->EnsureHidden();
}
}
void NativeDesktopMediaList::Worker::ShowDelegatedList() {
CHECK(capturer_->GetDelegatedSourceListController());
capturer_->GetDelegatedSourceListController()->EnsureVisible();
}
void NativeDesktopMediaList::Worker::OnSelection() {
VLOG(1) << "NDMLW::OnSelection";
delegated_source_list_has_selection_ = true;
content::GetUIThreadTaskRunner({})->PostTask(
FROM_HERE,
base::BindOnce(&NativeDesktopMediaList::OnDelegatedSourceListSelection,
media_list_));
}
void NativeDesktopMediaList::Worker::OnCancelled() {
VLOG(1) << "NDMLW::OnCancelled";
content::GetUIThreadTaskRunner({})->PostTask(
FROM_HERE,
base::BindOnce(&NativeDesktopMediaList::OnDelegatedSourceListDismissed,
media_list_));
}
void NativeDesktopMediaList::Worker::OnError() {
VLOG(1) << "NDMLW::OnError";
content::GetUIThreadTaskRunner({})->PostTask(
FROM_HERE,
base::BindOnce(&NativeDesktopMediaList::OnDelegatedSourceListDismissed,
media_list_));
}
NativeDesktopMediaList::NativeDesktopMediaList(
DesktopMediaList::Type type,
std::unique_ptr<ThumbnailCapturer> capturer)
: NativeDesktopMediaList(type,
std::move(capturer),
/*add_current_process_windows=*/false,
/*auto_show_delegated_source_list=*/true) {}
NativeDesktopMediaList::NativeDesktopMediaList(
DesktopMediaList::Type type,
std::unique_ptr<ThumbnailCapturer> capturer,
bool add_current_process_windows,
bool auto_show_delegated_source_list)
: DesktopMediaListBase(
base::Milliseconds(kDefaultNativeDesktopMediaListUpdatePeriod)),
thread_("DesktopMediaListCaptureThread"),
add_current_process_windows_(add_current_process_windows),
is_source_list_delegated_(capturer->GetDelegatedSourceListController() !=
nullptr) {
type_ = type;
DCHECK(type_ == DesktopMediaList::Type::kWindow ||
!add_current_process_windows_);
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC)
// webrtc::DesktopCapturer implementations on Windows, MacOS and Fuchsia
// expect to run on a thread with a UI message pump. Under Fuchsia the
// capturer needs an async loop to support FIDL I/O.
base::MessagePumpType thread_type = base::MessagePumpType::UI;
#else
base::MessagePumpType thread_type = base::MessagePumpType::DEFAULT;
#endif
thread_.StartWithOptions(base::Thread::Options(thread_type, 0));
worker_ = std::make_unique<Worker>(
thread_.task_runner(), weak_factory_.GetWeakPtr(), type,
std::move(capturer), add_current_process_windows_,
auto_show_delegated_source_list);
if (!is_source_list_delegated_)
StartCapturer();
}
NativeDesktopMediaList::~NativeDesktopMediaList() {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
// This thread should mostly be an idle observer. Stopping it should be fast.
base::ScopedAllowBaseSyncPrimitivesOutsideBlockingScope allow_thread_join;
// Since we're on the UI thread (where all tasks to worker_ must have
// posted from), this delete and then immediate stop (which triggers a thread
// join) is safe because it ensures that no other tasks can be queued on the
// thread after worker_'s deletion.
thread_.task_runner()->DeleteSoon(FROM_HERE, worker_.release());
thread_.Stop();
}
void NativeDesktopMediaList::SetViewDialogWindowId(DesktopMediaID dialog_id) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
DesktopMediaListBase::SetViewDialogWindowId(dialog_id);
// base::Unretained is safe here because we own the lifetime of both the
// worker and the thread and ensure that destroying the worker is the last
// thing the thread does before stopping.
thread_.task_runner()->PostTask(
FROM_HERE, base::BindOnce(&Worker::SetExcludedWindow,
base::Unretained(worker_.get()), dialog_id.id));
}
void NativeDesktopMediaList::SetThumbnailSize(const gfx::Size& thumbnail_size) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
DesktopMediaListBase::SetThumbnailSize(thumbnail_size);
// base::Unretained is safe here because we own the lifetime of both the
// worker and the thread and ensure that destroying the worker is the last
// thing the thread does before stopping.
thread_.task_runner()->PostTask(
FROM_HERE,
base::BindOnce(&Worker::SetThumbnailSize, base::Unretained(worker_.get()),
thumbnail_size));
}
bool NativeDesktopMediaList::IsSourceListDelegated() const {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
return is_source_list_delegated_;
}
void NativeDesktopMediaList::StartDelegatedCapturer() {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
DCHECK(IsSourceListDelegated());
StartCapturer();
}
void NativeDesktopMediaList::StartCapturer() {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
DCHECK(!is_capturer_started_);
// base::Unretained is safe here because we own the lifetime of both the
// worker and the thread and ensure that destroying the worker is the last
// thing the thread does before stopping.
thread_.task_runner()->PostTask(
FROM_HERE,
base::BindOnce(&Worker::Start, base::Unretained(worker_.get())));
is_capturer_started_ = true;
}
void NativeDesktopMediaList::ClearDelegatedSourceListSelection() {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
// base::Unretained is safe here because we own the lifetime of both the
// worker and the thread and ensure that destroying the worker is the last
// thing the thread does before stopping.
thread_.task_runner()->PostTask(
FROM_HERE, base::BindOnce(&Worker::ClearDelegatedSourceListSelection,
base::Unretained(worker_.get())));
}
void NativeDesktopMediaList::FocusList() {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
// base::Unretained is safe here because we own the lifetime of both the
// worker and the thread and ensure that destroying the worker is the last
// thing the thread does before stopping.
thread_.task_runner()->PostTask(
FROM_HERE,
base::BindOnce(&Worker::FocusList, base::Unretained(worker_.get())));
}
void NativeDesktopMediaList::HideList() {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
// base::Unretained is safe here because we own the lifetime of both the
// worker and the thread and ensure that destroying the worker is the last
// thing the thread does before stopping.
thread_.task_runner()->PostTask(
FROM_HERE,
base::BindOnce(&Worker::HideList, base::Unretained(worker_.get())));
}
void NativeDesktopMediaList::ShowDelegatedList() {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
// base::Unretained is safe here because we own the lifetime of both the
// worker and the thread and ensure that destroying the worker is the last
// thing the thread does before stopping.
thread_.task_runner()->PostTask(
FROM_HERE, base::BindOnce(&Worker::ShowDelegatedList,
base::Unretained(worker_.get())));
}
void NativeDesktopMediaList::Refresh(bool update_thumbnails) {
DCHECK(can_refresh());
#if defined(USE_AURA)
DCHECK_EQ(pending_aura_capture_requests_, 0);
DCHECK(!pending_native_thumbnail_capture_);
new_aura_thumbnail_hashes_.clear();
#endif
// base::Unretained is safe here because we own the lifetime of both the
// worker and the thread and ensure that destroying the worker is the last
// thing the thread does before stopping.
thread_.task_runner()->PostTask(
FROM_HERE,
base::BindOnce(&Worker::Refresh, base::Unretained(worker_.get()),
update_thumbnails));
}
void NativeDesktopMediaList::RefreshForVizFrameSinkWindows(
std::vector<SourceDescription> sources,
bool update_thumbnails) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
DCHECK(can_refresh());
auto source_it = sources.begin();
while (source_it != sources.end()) {
if (source_it->id.type != DesktopMediaID::TYPE_WINDOW) {
++source_it;
continue;
}
#if BUILDFLAG(IS_WIN)
// The worker thread can't safely get titles for windows owned by the
// current process, so we do it here, on the UI thread, where we can call
// |GetWindowText| without risking a deadlock.
const HWND hwnd = reinterpret_cast<HWND>(source_it->id.id);
DWORD hwnd_process;
::GetWindowThreadProcessId(hwnd, &hwnd_process);
if (hwnd_process == ::GetCurrentProcessId()) {
int title_length = ::GetWindowTextLength(hwnd);
// Remove untitled windows.
if (title_length <= 0) {
source_it = sources.erase(source_it);
continue;
}
source_it->name.resize(title_length + 1);
// The title may have changed since the call to |GetWindowTextLength|, so
// we update |title_length| to be the number of characters written into
// our string.
title_length = ::GetWindowText(
hwnd, base::as_writable_wcstr(source_it->name), title_length + 1);
if (title_length <= 0) {
source_it = sources.erase(source_it);
continue;
}
// Resize the string (in the case the title has shortened), and remove the
// trailing null character.
source_it->name.resize(title_length);
}
#endif // BUILDFLAG(IS_WIN)
source_it->id.window_id =
GetUpdatedWindowId(source_it->id, is_source_list_delegated_);
++source_it;
}
UpdateSourcesList(sources);
if (!update_thumbnails) {
OnRefreshComplete();
return;
}
if (thumbnail_size_.IsEmpty()) {
#if defined(USE_AURA)
pending_native_thumbnail_capture_ = true;
#endif
content::GetUIThreadTaskRunner({})->PostTask(
FROM_HERE,
base::BindOnce(&NativeDesktopMediaList::UpdateNativeThumbnailsFinished,
weak_factory_.GetWeakPtr()));
return;
}
// OnAuraThumbnailCaptured() and UpdateNativeThumbnailsFinished() are
// guaranteed to be executed after RefreshForVizFrameSinkWindows() and
// CaptureAuraWindowThumbnail() in the browser UI thread.
// Therefore pending_aura_capture_requests_ will be set the number of aura
// windows to be captured and pending_native_thumbnail_capture_ will be set
// true if native thumbnail capture is needed before OnAuraThumbnailCaptured()
// or UpdateNativeThumbnailsFinished() are called.
std::vector<DesktopMediaID> native_ids;
for (const auto& source : sources) {
#if defined(USE_AURA)
if (source.id.window_id > DesktopMediaID::kNullId) {
CaptureAuraWindowThumbnail(source.id);
continue;
}
#endif // defined(USE_AURA)
native_ids.push_back(source.id);
}
if (!native_ids.empty()) {
#if defined(USE_AURA)
pending_native_thumbnail_capture_ = true;
#endif
// base::Unretained is safe here because we own the lifetime of both the
// worker and the thread and ensure that destroying the worker is the last
// thing the thread does before stopping.
thread_.task_runner()->PostTask(
FROM_HERE, base::BindOnce(&Worker::RefreshThumbnails,
base::Unretained(worker_.get()),
std::move(native_ids), thumbnail_size_));
}
}
void NativeDesktopMediaList::UpdateNativeThumbnailsFinished() {
#if defined(USE_AURA)
DCHECK(pending_native_thumbnail_capture_);
pending_native_thumbnail_capture_ = false;
// If native thumbnail captures finished after aura thumbnail captures,
// execute |done_callback| to let the caller know the update process is
// finished. If necessary, this will schedule the next refresh.
if (pending_aura_capture_requests_ == 0)
OnRefreshComplete();
#else
OnRefreshComplete();
#endif // defined(USE_AURA)
}
#if defined(USE_AURA)
void NativeDesktopMediaList::CaptureAuraWindowThumbnail(
const DesktopMediaID& id) {
DCHECK(can_refresh());
gfx::NativeWindow window = DesktopMediaID::GetNativeWindowById(id);
if (!window)
return;
gfx::Rect window_rect(window->bounds().width(), window->bounds().height());
gfx::Rect scaled_rect = media::ComputeLetterboxRegion(
gfx::Rect(thumbnail_size_), window_rect.size());
pending_aura_capture_requests_++;
capture_locks_.push_back(window->GetHost()->CreateVideoCaptureLock());
ui::GrabWindowSnapshotAndScaleAura(
window, window_rect, scaled_rect.size(),
base::BindOnce(&NativeDesktopMediaList::OnAuraThumbnailCaptured,
weak_factory_.GetWeakPtr(), id));
}
void NativeDesktopMediaList::OnAuraThumbnailCaptured(const DesktopMediaID& id,
gfx::Image image) {
DCHECK(can_refresh());
if (!image.IsEmpty()) {
// Only new or changed thumbnail need update.
new_aura_thumbnail_hashes_[id] = GetImageHash(image);
if (!previous_aura_thumbnail_hashes_.count(id) ||
previous_aura_thumbnail_hashes_[id] != new_aura_thumbnail_hashes_[id]) {
UpdateSourceThumbnail(id, image.AsImageSkia());
}
}
// After all aura windows are processed, schedule next refresh;
pending_aura_capture_requests_--;
DCHECK_GE(pending_aura_capture_requests_, 0);
if (pending_aura_capture_requests_ == 0) {
previous_aura_thumbnail_hashes_ = std::move(new_aura_thumbnail_hashes_);
previous_capture_locks_ = std::move(capture_locks_);
capture_locks_.clear();
// Schedule next refresh if aura thumbnail captures finished after
// native thumbnail captures.
if (!pending_native_thumbnail_capture_) {
OnRefreshComplete();
}
}
}
#endif // defined(USE_AURA)
scoped_refptr<base::SingleThreadTaskRunner>
NativeDesktopMediaList::GetCapturerTaskRunnerForTesting() const {
return thread_.task_runner();
}
|