2015-10-02 17:50:10 +08:00
|
|
|
// Copyright (c) 2015 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2019-06-19 13:46:59 -07:00
|
|
|
#include "shell/browser/api/electron_api_desktop_capturer.h"
|
2015-10-02 17:50:10 +08:00
|
|
|
|
2018-09-12 19:25:56 -05:00
|
|
|
#include <memory>
|
|
|
|
#include <utility>
|
2018-04-08 22:43:35 -07:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "base/strings/string_number_conversions.h"
|
2015-10-02 17:50:10 +08:00
|
|
|
#include "base/strings/utf_string_conversions.h"
|
2018-10-03 17:56:42 +05:30
|
|
|
#include "base/threading/thread_restrictions.h"
|
|
|
|
#include "chrome/browser/media/webrtc/desktop_media_list.h"
|
2018-12-03 22:42:49 -08:00
|
|
|
#include "chrome/browser/media/webrtc/window_icon_util.h"
|
2018-01-17 17:04:57 -08:00
|
|
|
#include "content/public/browser/desktop_capture.h"
|
2020-03-19 11:35:11 -07:00
|
|
|
#include "gin/object_template_builder.h"
|
2020-06-22 09:35:24 -07:00
|
|
|
#include "shell/browser/javascript_environment.h"
|
2019-06-19 13:46:59 -07:00
|
|
|
#include "shell/common/api/electron_api_native_image.h"
|
2019-10-21 16:05:40 +09:00
|
|
|
#include "shell/common/gin_converters/gfx_converter.h"
|
|
|
|
#include "shell/common/gin_helper/dictionary.h"
|
2020-03-19 11:35:11 -07:00
|
|
|
#include "shell/common/gin_helper/event_emitter_caller.h"
|
2019-06-19 13:46:59 -07:00
|
|
|
#include "shell/common/node_includes.h"
|
2015-10-02 17:50:10 +08:00
|
|
|
#include "third_party/webrtc/modules/desktop_capture/desktop_capture_options.h"
|
2017-01-23 18:47:30 +09:00
|
|
|
#include "third_party/webrtc/modules/desktop_capture/desktop_capturer.h"
|
2018-10-03 17:56:42 +05:30
|
|
|
|
2022-02-09 18:58:52 -08:00
|
|
|
#if BUILDFLAG(IS_WIN)
|
2018-04-08 22:43:35 -07:00
|
|
|
#include "third_party/webrtc/modules/desktop_capture/win/dxgi_duplicator_controller.h"
|
2018-07-03 01:03:05 -07:00
|
|
|
#include "third_party/webrtc/modules/desktop_capture/win/screen_capturer_win_directx.h"
|
2018-04-08 22:43:35 -07:00
|
|
|
#include "ui/display/win/display_info.h"
|
2022-02-09 18:58:52 -08:00
|
|
|
#endif // BUILDFLAG(IS_WIN)
|
2015-10-02 17:50:10 +08:00
|
|
|
|
2019-10-21 16:05:40 +09:00
|
|
|
namespace gin {
|
2015-10-06 14:34:54 +08:00
|
|
|
|
2018-04-08 22:43:35 -07:00
|
|
|
template <>
|
|
|
|
struct Converter<electron::api::DesktopCapturer::Source> {
|
|
|
|
static v8::Local<v8::Value> ToV8(
|
|
|
|
v8::Isolate* isolate,
|
|
|
|
const electron::api::DesktopCapturer::Source& source) {
|
2019-10-21 16:05:40 +09:00
|
|
|
gin_helper::Dictionary dict = gin::Dictionary::CreateEmpty(isolate);
|
2018-04-08 22:43:35 -07:00
|
|
|
content::DesktopMediaID id = source.media_list_source.id;
|
|
|
|
dict.Set("name", base::UTF16ToUTF8(source.media_list_source.name));
|
2015-10-06 14:34:54 +08:00
|
|
|
dict.Set("id", id.ToString());
|
2018-04-08 22:43:35 -07:00
|
|
|
dict.Set("thumbnail",
|
|
|
|
electron::api::NativeImage::Create(
|
|
|
|
isolate, gfx::Image(source.media_list_source.thumbnail)));
|
|
|
|
dict.Set("display_id", source.display_id);
|
2018-12-03 22:42:49 -08:00
|
|
|
if (source.fetch_icon) {
|
|
|
|
dict.Set(
|
|
|
|
"appIcon",
|
|
|
|
electron::api::NativeImage::Create(
|
|
|
|
isolate, gfx::Image(GetWindowIcon(source.media_list_source.id))));
|
2020-05-13 19:05:53 +02:00
|
|
|
} else {
|
|
|
|
dict.Set("appIcon", nullptr);
|
2018-12-03 22:42:49 -08:00
|
|
|
}
|
2015-10-06 14:34:54 +08:00
|
|
|
return ConvertToV8(isolate, dict);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-10-21 16:05:40 +09:00
|
|
|
} // namespace gin
|
2015-10-06 14:34:54 +08:00
|
|
|
|
2022-06-29 12:55:47 -07:00
|
|
|
namespace electron::api {
|
2018-10-03 17:56:42 +05:30
|
|
|
|
2020-03-19 11:35:11 -07:00
|
|
|
gin::WrapperInfo DesktopCapturer::kWrapperInfo = {gin::kEmbedderNativeGin};
|
|
|
|
|
|
|
|
DesktopCapturer::DesktopCapturer(v8::Isolate* isolate) {}
|
2015-10-04 09:35:00 +08:00
|
|
|
|
2019-09-16 18:12:00 -04:00
|
|
|
DesktopCapturer::~DesktopCapturer() = default;
|
2018-10-03 17:56:42 +05:30
|
|
|
|
|
|
|
void DesktopCapturer::StartHandling(bool capture_window,
|
|
|
|
bool capture_screen,
|
2018-12-03 22:42:49 -08:00
|
|
|
const gfx::Size& thumbnail_size,
|
|
|
|
bool fetch_window_icons) {
|
|
|
|
fetch_window_icons_ = fetch_window_icons;
|
2022-02-09 18:58:52 -08:00
|
|
|
#if BUILDFLAG(IS_WIN)
|
2018-07-02 21:37:10 -07:00
|
|
|
if (content::desktop_capture::CreateDesktopCaptureOptions()
|
2018-09-19 13:10:26 +02:00
|
|
|
.allow_directx_capturer()) {
|
2018-07-02 21:37:10 -07:00
|
|
|
// DxgiDuplicatorController should be alive in this scope according to
|
|
|
|
// screen_capturer_win.cc.
|
2018-07-03 01:03:05 -07:00
|
|
|
auto duplicator = webrtc::DxgiDuplicatorController::Instance();
|
2018-10-03 17:56:42 +05:30
|
|
|
using_directx_capturer_ = webrtc::ScreenCapturerWinDirectx::IsSupported();
|
2018-07-02 21:37:10 -07:00
|
|
|
}
|
2022-02-09 18:58:52 -08:00
|
|
|
#endif // BUILDFLAG(IS_WIN)
|
2018-10-03 17:56:42 +05:30
|
|
|
|
|
|
|
// clear any existing captured sources.
|
|
|
|
captured_sources_.clear();
|
|
|
|
|
|
|
|
// Start listening for captured sources.
|
|
|
|
capture_window_ = capture_window;
|
|
|
|
capture_screen_ = capture_screen;
|
|
|
|
|
|
|
|
{
|
|
|
|
// Initialize the source list.
|
|
|
|
// Apply the new thumbnail size and restart capture.
|
|
|
|
if (capture_window) {
|
2019-09-16 18:12:00 -04:00
|
|
|
window_capturer_ = std::make_unique<NativeDesktopMediaList>(
|
2021-03-05 16:46:44 -08:00
|
|
|
DesktopMediaList::Type::kWindow,
|
2019-09-16 18:12:00 -04:00
|
|
|
content::desktop_capture::CreateWindowCapturer());
|
2018-10-03 17:56:42 +05:30
|
|
|
window_capturer_->SetThumbnailSize(thumbnail_size);
|
2021-09-03 16:37:36 -07:00
|
|
|
window_capturer_->Update(
|
|
|
|
base::BindOnce(&DesktopCapturer::UpdateSourcesList,
|
|
|
|
weak_ptr_factory_.GetWeakPtr(),
|
|
|
|
window_capturer_.get()),
|
|
|
|
/* refresh_thumbnails = */ true);
|
2018-10-03 17:56:42 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
if (capture_screen) {
|
2019-09-16 18:12:00 -04:00
|
|
|
screen_capturer_ = std::make_unique<NativeDesktopMediaList>(
|
2021-03-05 16:46:44 -08:00
|
|
|
DesktopMediaList::Type::kScreen,
|
2019-09-16 18:12:00 -04:00
|
|
|
content::desktop_capture::CreateScreenCapturer());
|
2018-10-03 17:56:42 +05:30
|
|
|
screen_capturer_->SetThumbnailSize(thumbnail_size);
|
2021-09-03 16:37:36 -07:00
|
|
|
screen_capturer_->Update(
|
|
|
|
base::BindOnce(&DesktopCapturer::UpdateSourcesList,
|
|
|
|
weak_ptr_factory_.GetWeakPtr(),
|
|
|
|
screen_capturer_.get()),
|
|
|
|
/* refresh_thumbnails = */ true);
|
2018-10-03 17:56:42 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DesktopCapturer::UpdateSourcesList(DesktopMediaList* list) {
|
|
|
|
if (capture_window_ &&
|
2021-03-05 16:46:44 -08:00
|
|
|
list->GetMediaListType() == DesktopMediaList::Type::kWindow) {
|
2018-10-03 17:56:42 +05:30
|
|
|
capture_window_ = false;
|
2019-01-25 09:39:32 -05:00
|
|
|
std::vector<DesktopCapturer::Source> window_sources;
|
2021-09-03 16:37:36 -07:00
|
|
|
window_sources.reserve(list->GetSourceCount());
|
|
|
|
for (int i = 0; i < list->GetSourceCount(); i++) {
|
2018-12-03 22:42:49 -08:00
|
|
|
window_sources.emplace_back(DesktopCapturer::Source{
|
2021-09-03 16:37:36 -07:00
|
|
|
list->GetSource(i), std::string(), fetch_window_icons_});
|
2018-10-03 17:56:42 +05:30
|
|
|
}
|
|
|
|
std::move(window_sources.begin(), window_sources.end(),
|
|
|
|
std::back_inserter(captured_sources_));
|
2018-04-08 22:43:35 -07:00
|
|
|
}
|
|
|
|
|
2018-10-03 17:56:42 +05:30
|
|
|
if (capture_screen_ &&
|
2021-03-05 16:46:44 -08:00
|
|
|
list->GetMediaListType() == DesktopMediaList::Type::kScreen) {
|
2018-10-03 17:56:42 +05:30
|
|
|
capture_screen_ = false;
|
2019-01-25 09:39:32 -05:00
|
|
|
std::vector<DesktopCapturer::Source> screen_sources;
|
2021-09-03 16:37:36 -07:00
|
|
|
screen_sources.reserve(list->GetSourceCount());
|
|
|
|
for (int i = 0; i < list->GetSourceCount(); i++) {
|
2018-10-03 17:56:42 +05:30
|
|
|
screen_sources.emplace_back(
|
2021-09-03 16:37:36 -07:00
|
|
|
DesktopCapturer::Source{list->GetSource(i), std::string()});
|
2018-10-03 17:56:42 +05:30
|
|
|
}
|
2022-02-09 18:58:52 -08:00
|
|
|
#if BUILDFLAG(IS_WIN)
|
2018-10-03 17:56:42 +05:30
|
|
|
// Gather the same unique screen IDs used by the electron.screen API in
|
|
|
|
// order to provide an association between it and
|
|
|
|
// desktopCapturer/getUserMedia. This is only required when using the
|
|
|
|
// DirectX capturer, otherwise the IDs across the APIs already match.
|
|
|
|
if (using_directx_capturer_) {
|
|
|
|
std::vector<std::string> device_names;
|
|
|
|
// Crucially, this list of device names will be in the same order as
|
|
|
|
// |media_list_sources|.
|
2019-04-25 15:12:38 -07:00
|
|
|
if (!webrtc::DxgiDuplicatorController::Instance()->GetDeviceNames(
|
|
|
|
&device_names)) {
|
2020-06-22 09:35:24 -07:00
|
|
|
v8::Isolate* isolate = JavascriptEnvironment::GetIsolate();
|
2020-04-02 16:07:56 -07:00
|
|
|
v8::HandleScope scope(isolate);
|
2020-03-19 11:35:11 -07:00
|
|
|
gin_helper::CallMethod(this, "_onerror", "Failed to get sources.");
|
2021-03-18 16:43:35 -04:00
|
|
|
|
|
|
|
Unpin();
|
|
|
|
|
2019-04-25 15:12:38 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-10-03 17:56:42 +05:30
|
|
|
int device_name_index = 0;
|
|
|
|
for (auto& source : screen_sources) {
|
2018-04-08 22:43:35 -07:00
|
|
|
const auto& device_name = device_names[device_name_index++];
|
|
|
|
std::wstring wide_device_name;
|
|
|
|
base::UTF8ToWide(device_name.c_str(), device_name.size(),
|
|
|
|
&wide_device_name);
|
|
|
|
const int64_t device_id =
|
|
|
|
display::win::DisplayInfo::DeviceIdFromDeviceName(
|
|
|
|
wide_device_name.c_str());
|
2019-04-20 13:20:37 -04:00
|
|
|
source.display_id = base::NumberToString(device_id);
|
2018-04-08 22:43:35 -07:00
|
|
|
}
|
|
|
|
}
|
2022-02-09 18:58:52 -08:00
|
|
|
#elif BUILDFLAG(IS_MAC)
|
2018-10-03 17:56:42 +05:30
|
|
|
// On Mac, the IDs across the APIs match.
|
|
|
|
for (auto& source : screen_sources) {
|
2019-04-20 13:20:37 -04:00
|
|
|
source.display_id = base::NumberToString(source.media_list_source.id.id);
|
2018-04-08 22:43:35 -07:00
|
|
|
}
|
2022-02-09 18:58:52 -08:00
|
|
|
#endif // BUILDFLAG(IS_WIN)
|
2018-10-03 17:56:42 +05:30
|
|
|
// TODO(ajmacd): Add Linux support. The IDs across APIs differ but Chrome
|
|
|
|
// only supports capturing the entire desktop on Linux. Revisit this if
|
|
|
|
// individual screen support is added.
|
|
|
|
std::move(screen_sources.begin(), screen_sources.end(),
|
|
|
|
std::back_inserter(captured_sources_));
|
|
|
|
}
|
2018-06-19 11:37:53 +10:00
|
|
|
|
2020-04-02 16:07:56 -07:00
|
|
|
if (!capture_window_ && !capture_screen_) {
|
2020-06-22 09:35:24 -07:00
|
|
|
v8::Isolate* isolate = JavascriptEnvironment::GetIsolate();
|
2020-04-02 16:07:56 -07:00
|
|
|
v8::HandleScope scope(isolate);
|
2020-05-13 19:05:53 +02:00
|
|
|
gin_helper::CallMethod(this, "_onfinished", captured_sources_);
|
2021-03-18 16:43:35 -04:00
|
|
|
|
|
|
|
Unpin();
|
2020-04-02 16:07:56 -07:00
|
|
|
}
|
2015-10-02 17:50:10 +08:00
|
|
|
}
|
|
|
|
|
2016-04-25 10:17:54 +09:00
|
|
|
// static
|
2019-10-21 16:05:40 +09:00
|
|
|
gin::Handle<DesktopCapturer> DesktopCapturer::Create(v8::Isolate* isolate) {
|
2021-03-18 16:43:35 -04:00
|
|
|
auto handle = gin::CreateHandle(isolate, new DesktopCapturer(isolate));
|
|
|
|
|
|
|
|
// Keep reference alive until capturing has finished.
|
|
|
|
handle->Pin(isolate);
|
|
|
|
|
|
|
|
return handle;
|
2015-10-02 17:50:10 +08:00
|
|
|
}
|
|
|
|
|
2020-03-19 11:35:11 -07:00
|
|
|
gin::ObjectTemplateBuilder DesktopCapturer::GetObjectTemplateBuilder(
|
|
|
|
v8::Isolate* isolate) {
|
|
|
|
return gin::Wrappable<DesktopCapturer>::GetObjectTemplateBuilder(isolate)
|
2016-04-25 10:17:54 +09:00
|
|
|
.SetMethod("startHandling", &DesktopCapturer::StartHandling);
|
2015-10-02 17:50:10 +08:00
|
|
|
}
|
|
|
|
|
2020-03-19 11:35:11 -07:00
|
|
|
const char* DesktopCapturer::GetTypeName() {
|
|
|
|
return "DesktopCapturer";
|
|
|
|
}
|
|
|
|
|
2022-06-29 12:55:47 -07:00
|
|
|
} // namespace electron::api
|
2015-10-02 17:50:10 +08:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2018-04-17 21:55:30 -04:00
|
|
|
void Initialize(v8::Local<v8::Object> exports,
|
|
|
|
v8::Local<v8::Value> unused,
|
|
|
|
v8::Local<v8::Context> context,
|
|
|
|
void* priv) {
|
2019-10-21 16:05:40 +09:00
|
|
|
gin_helper::Dictionary dict(context->GetIsolate(), exports);
|
2019-04-29 13:21:28 -07:00
|
|
|
dict.SetMethod("createDesktopCapturer",
|
|
|
|
&electron::api::DesktopCapturer::Create);
|
2015-10-02 17:50:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2020-02-14 03:25:39 -08:00
|
|
|
NODE_LINKED_MODULE_CONTEXT_AWARE(electron_browser_desktop_capturer, Initialize)
|