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
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "remoting/host/desktop_resizer.h"
#include <Carbon/Carbon.h>
#include <stdint.h>
#include "base/apple/foundation_util.h"
#include "base/apple/scoped_cftyperef.h"
#include "base/mac/mac_util.h"
#include "base/memory/ptr_util.h"
#include "base/notimplemented.h"
#include "remoting/base/logging.h"
namespace {
// TODO(jamiewalch): Use the correct DPI for the mode: http://crbug.com/172405.
const int kDefaultDPI = 96;
} // namespace
namespace remoting {
class DesktopResizerMac : public DesktopResizer {
public:
DesktopResizerMac() = default;
DesktopResizerMac(const DesktopResizerMac&) = delete;
DesktopResizerMac& operator=(const DesktopResizerMac&) = delete;
// DesktopResizer interface
ScreenResolution GetCurrentResolution(webrtc::ScreenId screen_id) override;
std::list<ScreenResolution> GetSupportedResolutions(
const ScreenResolution& preferred,
webrtc::ScreenId screen_id) override;
void SetResolution(const ScreenResolution& resolution,
webrtc::ScreenId screen_id) override;
void RestoreResolution(const ScreenResolution& original,
webrtc::ScreenId screen_id) override;
void SetVideoLayout(const protocol::VideoLayout& layout) override;
private:
// If there is a single display, get its id and return true, otherwise return
// false. We don't currently support resize-to-client on multi-monitor Macs.
bool GetSoleDisplayId(CGDirectDisplayID* display);
void GetSupportedModesAndResolutions(
base::apple::ScopedCFTypeRef<CFMutableArrayRef>* modes,
std::list<ScreenResolution>* resolutions);
};
ScreenResolution DesktopResizerMac::GetCurrentResolution(
webrtc::ScreenId screen_id) {
CGDirectDisplayID display;
if (GetSoleDisplayId(&display)) {
CGRect rect = CGDisplayBounds(display);
return ScreenResolution(
webrtc::DesktopSize(rect.size.width, rect.size.height),
webrtc::DesktopVector(kDefaultDPI, kDefaultDPI));
}
return ScreenResolution();
}
std::list<ScreenResolution> DesktopResizerMac::GetSupportedResolutions(
const ScreenResolution& preferred,
webrtc::ScreenId screen_id) {
base::apple::ScopedCFTypeRef<CFMutableArrayRef> modes;
std::list<ScreenResolution> resolutions;
GetSupportedModesAndResolutions(&modes, &resolutions);
return resolutions;
}
void DesktopResizerMac::SetResolution(const ScreenResolution& resolution,
webrtc::ScreenId screen_id) {
CGDirectDisplayID display;
if (!GetSoleDisplayId(&display)) {
return;
}
base::apple::ScopedCFTypeRef<CFMutableArrayRef> modes;
std::list<ScreenResolution> resolutions;
GetSupportedModesAndResolutions(&modes, &resolutions);
// There may be many modes with the requested resolution. Pick the one with
// the highest color depth.
int index = 0, best_depth = 0;
CGDisplayModeRef best_mode = nullptr;
for (std::list<ScreenResolution>::const_iterator i = resolutions.begin();
i != resolutions.end(); ++i, ++index) {
if (i->Equals(resolution)) {
CGDisplayModeRef mode =
const_cast<CGDisplayModeRef>(static_cast<const CGDisplayMode*>(
CFArrayGetValueAtIndex(modes.get(), index)));
int depth = 0;
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
// TODO(crbug.com/40248574): Find non-deprecated replacement.
base::apple::ScopedCFTypeRef<CFStringRef> encoding(
CGDisplayModeCopyPixelEncoding(mode));
#pragma clang diagnostic pop
if (CFStringCompare(encoding.get(), CFSTR(IO32BitDirectPixels),
kCFCompareCaseInsensitive) == kCFCompareEqualTo) {
depth = 32;
} else if (CFStringCompare(encoding.get(), CFSTR(IO16BitDirectPixels),
kCFCompareCaseInsensitive) ==
kCFCompareEqualTo) {
depth = 16;
} else if (CFStringCompare(encoding.get(), CFSTR(IO8BitIndexedPixels),
kCFCompareCaseInsensitive) ==
kCFCompareEqualTo) {
depth = 8;
}
if (depth > best_depth) {
best_depth = depth;
best_mode = mode;
}
}
}
if (best_mode) {
HOST_LOG << "Changing mode to " << best_mode << " ("
<< resolution.dimensions().width() << "x"
<< "x" << resolution.dimensions().height() << "x" << best_depth
<< " @ " << resolution.dpi().x() << "x" << resolution.dpi().y()
<< " dpi)";
CGDisplaySetDisplayMode(display, best_mode, nullptr);
}
}
void DesktopResizerMac::RestoreResolution(const ScreenResolution& original,
webrtc::ScreenId screen_id) {
SetResolution(original, screen_id);
}
void DesktopResizerMac::SetVideoLayout(const protocol::VideoLayout& layout) {
NOTIMPLEMENTED();
}
void DesktopResizerMac::GetSupportedModesAndResolutions(
base::apple::ScopedCFTypeRef<CFMutableArrayRef>* modes,
std::list<ScreenResolution>* resolutions) {
CGDirectDisplayID display;
if (!GetSoleDisplayId(&display)) {
return;
}
base::apple::ScopedCFTypeRef<CFArrayRef> all_modes(
CGDisplayCopyAllDisplayModes(display, nullptr));
if (!all_modes) {
return;
}
modes->reset(CFArrayCreateMutableCopy(nullptr, 0, all_modes.get()));
CFIndex count = CFArrayGetCount(modes->get());
for (CFIndex i = 0; i < count; ++i) {
CGDisplayModeRef mode =
const_cast<CGDisplayModeRef>(static_cast<const CGDisplayMode*>(
CFArrayGetValueAtIndex(modes->get(), i)));
if (CGDisplayModeIsUsableForDesktopGUI(mode)) {
// TODO(jamiewalch): Get the correct DPI: http://crbug.com/172405.
ScreenResolution resolution(
webrtc::DesktopSize(CGDisplayModeGetWidth(mode),
CGDisplayModeGetHeight(mode)),
webrtc::DesktopVector(kDefaultDPI, kDefaultDPI));
resolutions->push_back(resolution);
} else {
CFArrayRemoveValueAtIndex(modes->get(), i);
--count;
--i;
}
}
}
bool DesktopResizerMac::GetSoleDisplayId(CGDirectDisplayID* display) {
// This code only supports a single display, but allocates space for two
// to allow the multi-monitor case to be detected.
CGDirectDisplayID displays[2];
uint32_t num_displays;
CGError err =
CGGetActiveDisplayList(std::size(displays), displays, &num_displays);
if (err != kCGErrorSuccess || num_displays != 1) {
return false;
}
*display = displays[0];
return true;
}
std::unique_ptr<DesktopResizer> DesktopResizer::Create() {
return base::WrapUnique(new DesktopResizerMac);
}
} // namespace remoting
|