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
|
// 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 "device/base/device_monitor_win.h"
// windows.h must be included before dbt.h.
#include <windows.h>
#include <dbt.h>
#include <map>
#include <memory>
#include "base/at_exit.h"
#include "base/compiler_specific.h"
#include "base/functional/bind.h"
#include "base/functional/callback_helpers.h"
#include "base/logging.h"
#include "base/strings/string_util.h"
#include "base/strings/sys_string_conversions.h"
#include "base/win/message_window.h"
namespace device {
class DeviceMonitorMessageWindow;
namespace {
const wchar_t kWindowClassName[] = L"DeviceMonitorMessageWindow";
DeviceMonitorMessageWindow* g_message_window;
// Provides basic comparability for GUIDs so that they can be used as keys to an
// STL map.
struct CompareGUID {
bool operator()(const GUID& a, const GUID& b) const {
return UNSAFE_TODO(memcmp(&a, &b, sizeof a)) < 0;
}
};
} // namespace
// This singleton class manages a shared message window for all registered
// device notification observers. It vends one instance of DeviceManagerWin for
// each unique GUID it sees.
class DeviceMonitorMessageWindow {
public:
static DeviceMonitorMessageWindow* GetInstance() {
if (!g_message_window) {
g_message_window = new DeviceMonitorMessageWindow();
if (g_message_window->Init()) {
base::AtExitManager::RegisterTask(
base::BindOnce(&base::DeletePointer<DeviceMonitorMessageWindow>,
base::Unretained(g_message_window)));
} else {
delete g_message_window;
g_message_window = nullptr;
}
}
return g_message_window;
}
DeviceMonitorMessageWindow(const DeviceMonitorMessageWindow&) = delete;
DeviceMonitorMessageWindow& operator=(const DeviceMonitorMessageWindow&) =
delete;
DeviceMonitorWin* GetForDeviceInterface(const GUID& device_interface) {
std::unique_ptr<DeviceMonitorWin>& device_monitor =
device_monitors_[device_interface];
if (!device_monitor) {
device_monitor.reset(new DeviceMonitorWin());
}
return device_monitor.get();
}
DeviceMonitorWin* GetForAllInterfaces() { return &all_device_monitor_; }
private:
friend void base::DeletePointer<DeviceMonitorMessageWindow>(
DeviceMonitorMessageWindow* message_window);
DeviceMonitorMessageWindow() {}
~DeviceMonitorMessageWindow() {
if (notify_handle_) {
UnregisterDeviceNotification(notify_handle_);
}
}
bool Init() {
window_ = std::make_unique<base::win::MessageWindow>();
if (!window_->CreateNamed(
base::BindRepeating(&DeviceMonitorMessageWindow::HandleMessage,
base::Unretained(this)),
kWindowClassName)) {
LOG(ERROR) << "Failed to create message window: " << kWindowClassName;
return false;
}
DEV_BROADCAST_DEVICEINTERFACE db = {sizeof(DEV_BROADCAST_DEVICEINTERFACE),
DBT_DEVTYP_DEVICEINTERFACE};
notify_handle_ = RegisterDeviceNotification(
window_->hwnd(), &db,
DEVICE_NOTIFY_WINDOW_HANDLE | DEVICE_NOTIFY_ALL_INTERFACE_CLASSES);
if (!notify_handle_) {
PLOG(ERROR) << "Failed to register for device notifications";
return false;
}
return true;
}
bool HandleMessage(UINT message,
WPARAM wparam,
LPARAM lparam,
LRESULT* result) {
if (message == WM_DEVICECHANGE &&
(wparam == DBT_DEVICEARRIVAL || wparam == DBT_DEVICEREMOVECOMPLETE)) {
DEV_BROADCAST_HDR* hdr = reinterpret_cast<DEV_BROADCAST_HDR*>(lparam);
if (!hdr || hdr->dbch_devicetype != DBT_DEVTYP_DEVICEINTERFACE) {
return false;
}
DEV_BROADCAST_DEVICEINTERFACE* db =
reinterpret_cast<DEV_BROADCAST_DEVICEINTERFACE*>(hdr);
DeviceMonitorWin* device_monitor = nullptr;
const auto& map_entry = device_monitors_.find(db->dbcc_classguid);
if (map_entry != device_monitors_.end()) {
device_monitor = map_entry->second.get();
}
std::wstring device_path(db->dbcc_name);
DCHECK(base::IsStringASCII(device_path));
device_path = base::ToLowerASCII(device_path);
if (wparam == DBT_DEVICEARRIVAL) {
if (device_monitor) {
device_monitor->NotifyDeviceAdded(db->dbcc_classguid, device_path);
}
all_device_monitor_.NotifyDeviceAdded(db->dbcc_classguid, device_path);
} else if (wparam == DBT_DEVICEREMOVECOMPLETE) {
if (device_monitor) {
device_monitor->NotifyDeviceRemoved(db->dbcc_classguid, device_path);
}
all_device_monitor_.NotifyDeviceRemoved(db->dbcc_classguid,
device_path);
}
*result = NULL;
return true;
}
return false;
}
std::map<GUID, std::unique_ptr<DeviceMonitorWin>, CompareGUID>
device_monitors_;
DeviceMonitorWin all_device_monitor_;
std::unique_ptr<base::win::MessageWindow> window_;
HDEVNOTIFY notify_handle_ = NULL;
};
void DeviceMonitorWin::Observer::OnDeviceAdded(
const GUID& class_guid,
const std::wstring& device_path) {}
void DeviceMonitorWin::Observer::OnDeviceRemoved(
const GUID& class_guid,
const std::wstring& device_path) {}
// static
DeviceMonitorWin* DeviceMonitorWin::GetForDeviceInterface(
const GUID& device_interface) {
DeviceMonitorMessageWindow* message_window =
DeviceMonitorMessageWindow::GetInstance();
if (message_window) {
return message_window->GetForDeviceInterface(device_interface);
}
return nullptr;
}
// static
DeviceMonitorWin* DeviceMonitorWin::GetForAllInterfaces() {
DeviceMonitorMessageWindow* message_window =
DeviceMonitorMessageWindow::GetInstance();
if (message_window) {
return message_window->GetForAllInterfaces();
}
return nullptr;
}
DeviceMonitorWin::~DeviceMonitorWin() {}
void DeviceMonitorWin::AddObserver(Observer* observer) {
observer_list_.AddObserver(observer);
}
void DeviceMonitorWin::RemoveObserver(Observer* observer) {
observer_list_.RemoveObserver(observer);
}
DeviceMonitorWin::DeviceMonitorWin() {}
void DeviceMonitorWin::NotifyDeviceAdded(const GUID& class_guid,
const std::wstring& device_path) {
for (auto& observer : observer_list_) {
observer.OnDeviceAdded(class_guid, device_path);
}
}
void DeviceMonitorWin::NotifyDeviceRemoved(const GUID& class_guid,
const std::wstring& device_path) {
for (auto& observer : observer_list_) {
observer.OnDeviceRemoved(class_guid, device_path);
}
}
} // namespace device
|