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
|
// 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 "components/storage_monitor/image_capture_device_manager.h"
#import <ImageCaptureCore/ImageCaptureCore.h>
#include "base/memory/raw_ptr.h"
#import "components/storage_monitor/image_capture_device.h"
#include "components/storage_monitor/storage_info.h"
namespace {
storage_monitor::ImageCaptureDeviceManager* g_image_capture_device_manager =
nullptr;
} // namespace
// This class is the surface for the Mac ICDeviceBrowser ImageCaptureCore API.
// Owned by the ChromeBrowserParts and has browser process lifetime. Upon
// creation, it gets a list of attached media volumes (asynchronously) which
// it will eventually forward to StorageMonitor. It will also
// set up an ImageCaptureCore listener to be told when new devices/volumes
// are discovered and existing ones are removed.
@interface ImageCaptureDeviceManagerImpl
: NSObject<ICDeviceBrowserDelegate> {
@private
ICDeviceBrowser* __strong _deviceBrowser;
NSMutableArray* __strong _cameras;
// Guaranteed to outlive this class.
// TODO(gbillock): Update when ownership chains go up through
// a StorageMonitor subclass.
raw_ptr<storage_monitor::StorageMonitor::Receiver, DanglingUntriaged>
_notifications;
}
- (void)setNotifications:
(storage_monitor::StorageMonitor::Receiver*)notifications;
- (void)close;
// The UUIDs passed here are available in the device attach notifications.
// They're gotten by cracking the device ID and taking the unique ID output.
- (ImageCaptureDevice*)deviceForUUID:(const std::string&)uuid;
- (ICDeviceBrowser*)deviceBrowserForTest;
@end
@implementation ImageCaptureDeviceManagerImpl
- (instancetype)init {
if ((self = [super init])) {
_cameras = [[NSMutableArray alloc] init];
_deviceBrowser = [[ICDeviceBrowser alloc] init];
_deviceBrowser.delegate = self;
_deviceBrowser.browsedDeviceTypeMask = ICDeviceTypeMask{
ICDeviceTypeMaskCamera | UInt{ICDeviceLocationTypeMaskLocal}};
[_deviceBrowser start];
}
return self;
}
- (void)setNotifications:
(storage_monitor::StorageMonitor::Receiver*)notifications {
_notifications = notifications;
}
- (void)close {
_deviceBrowser.delegate = nil;
[_deviceBrowser stop];
_deviceBrowser = nil;
_cameras = nil;
}
- (ImageCaptureDevice*)deviceForUUID:(const std::string&)uuid {
for (ICCameraDevice* camera in _cameras) {
if (base::SysNSStringToUTF8(camera.UUIDString) == uuid) {
return [[ImageCaptureDevice alloc] initWithCameraDevice:camera];
}
}
return nil;
}
- (void)deviceBrowser:(ICDeviceBrowser*)browser
didAddDevice:(ICDevice*)addedDevice
moreComing:(BOOL)moreComing {
if (!(addedDevice.type & ICDeviceTypeCamera))
return;
// Ignore mass storage attaches -- those will be handled
// by Mac's removable storage watcher.
if ([addedDevice.transportType isEqualToString:ICTransportTypeMassStorage])
return;
ICCameraDevice* cameraDevice =
base::apple::ObjCCastStrict<ICCameraDevice>(addedDevice);
[_cameras addObject:addedDevice];
// TODO(gbillock): use cameraDevice.mountPoint here when possible.
storage_monitor::StorageInfo info(
storage_monitor::StorageInfo::MakeDeviceId(
storage_monitor::StorageInfo::MAC_IMAGE_CAPTURE,
base::SysNSStringToUTF8(cameraDevice.UUIDString)),
/*device_location=*/std::string(),
base::SysNSStringToUTF16(cameraDevice.name),
/*vendor=*/std::u16string(), /*model=*/std::u16string(),
/*size_in_bytes=*/0);
_notifications->ProcessAttach(info);
}
- (void)deviceBrowser:(ICDeviceBrowser*)browser
didRemoveDevice:(ICDevice*)device
moreGoing:(BOOL)moreGoing {
if (!(device.type & ICDeviceTypeCamera))
return;
std::string uuid = base::SysNSStringToUTF8(device.UUIDString);
// May delete |device|.
[_cameras removeObject:device];
_notifications->ProcessDetach(storage_monitor::StorageInfo::MakeDeviceId(
storage_monitor::StorageInfo::MAC_IMAGE_CAPTURE, uuid));
}
- (ICDeviceBrowser*)deviceBrowserForTest {
return _deviceBrowser;
}
@end // ImageCaptureDeviceManagerImpl
namespace storage_monitor {
ImageCaptureDeviceManager::ImageCaptureDeviceManager() {
device_browser_ = [[ImageCaptureDeviceManagerImpl alloc] init];
g_image_capture_device_manager = this;
}
ImageCaptureDeviceManager::~ImageCaptureDeviceManager() {
g_image_capture_device_manager = nullptr;
[device_browser_ close];
}
void ImageCaptureDeviceManager::SetNotifications(
StorageMonitor::Receiver* notifications) {
[device_browser_ setNotifications:notifications];
}
void ImageCaptureDeviceManager::EjectDevice(
const std::string& uuid,
base::OnceCallback<void(StorageMonitor::EjectStatus)> callback) {
ImageCaptureDevice* camera_device = [device_browser_ deviceForUUID:uuid];
[camera_device eject];
[camera_device close];
std::move(callback).Run(StorageMonitor::EJECT_OK);
}
// static
ImageCaptureDevice* ImageCaptureDeviceManager::deviceForUUID(
const std::string& uuid) {
ImageCaptureDeviceManagerImpl* manager =
g_image_capture_device_manager->device_browser_;
return [manager deviceForUUID:uuid];
}
id<ICDeviceBrowserDelegate>
ImageCaptureDeviceManager::device_browser_delegate() {
return device_browser_;
}
ICDeviceBrowser* ImageCaptureDeviceManager::device_browser_for_test() {
return [device_browser_ deviceBrowserForTest];
}
} // namespace storage_monitor
|