blob: 8de1b6b01fbefc5d739d03ce4d5b47705d448f98 (
plain)
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
|
// Copyright 2025 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#ifdef _WIN32
#include <iterator>
#include <memory>
#include <optional>
#include <string>
#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN
#endif
#ifndef NOMINMAX
#define NOMINMAX
#endif
#include <windows.h>
#include <cfgmgr32.h>
#include <devpropdef.h>
#include <setupapi.h>
#include "Common/Functional.h"
namespace Common
{
std::optional<std::wstring> GetDevNodeStringProperty(DEVINST device,
const DEVPROPKEY* requested_property);
std::optional<std::wstring> GetDeviceInterfaceStringProperty(LPCWSTR iface,
const DEVPROPKEY* requested_property);
// Allows iterating null-separated/terminated string lists returned by the Windows API.
template <typename T>
struct NullTerminatedStringList
{
class Iterator
{
friend NullTerminatedStringList;
public:
constexpr T* operator*() { return m_ptr; }
constexpr Iterator& operator++()
{
m_ptr += std::basic_string_view(m_ptr).size() + 1;
return *this;
}
constexpr Iterator operator++(int)
{
const auto result{*this};
++*this;
return result;
}
constexpr bool operator==(std::default_sentinel_t) const { return *m_ptr == T{}; }
private:
constexpr Iterator(T* ptr) : m_ptr{ptr} {}
T* m_ptr;
};
constexpr auto begin() const { return Iterator{list.get()}; }
constexpr auto end() const { return std::default_sentinel; }
std::unique_ptr<T[]> list;
};
NullTerminatedStringList<WCHAR> GetDeviceInterfaceList(LPGUID iface_class_guid, DEVINSTID device_id,
ULONG flags);
class DeviceChangeNotification
{
public:
enum class EventType : bool
{
Arrival,
Removal,
};
using CallbackType = Common::MoveOnlyFunction<void(EventType)>;
DeviceChangeNotification();
~DeviceChangeNotification();
// FYI: Currently hardcoded to a GUID_DEVINTERFACE_HID filter.
void Register(CallbackType callback);
void Unregister();
DeviceChangeNotification(const DeviceChangeNotification&) = delete;
DeviceChangeNotification(DeviceChangeNotification&&) = delete;
void operator=(const DeviceChangeNotification&) = delete;
void operator=(DeviceChangeNotification&&) = delete;
private:
CallbackType m_callback{};
HCMNOTIFICATION m_notify_handle{nullptr};
};
} // namespace Common
#endif
|