-
Notifications
You must be signed in to change notification settings - Fork 431
Expand file tree
/
Copy pathPowerNotifications.cpp
More file actions
343 lines (289 loc) · 10 KB
/
PowerNotifications.cpp
File metadata and controls
343 lines (289 loc) · 10 KB
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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
// Copyright (c) Microsoft Corporation and Contributors.
// Licensed under the MIT License.
#include <pch.h>
#include <future>
#include <PowerNotifications.h>
#include <frameworkudk\PowerNotificationsPal.h>
#include <Microsoft.Windows.System.Power.PowerManager.g.cpp>
#include <Microsoft.Windows.System.Power.SystemSuspendStatusChangedEventArgs.g.cpp>
#include <powrprof.h>
namespace winrt::Microsoft::Windows::System::Power::implementation
{
auto Factory()
{
return make_self<factory_implementation::PowerManager>();
}
// EnergySaverStatus Functions
EventType& EnergySaverStatus_Event()
{
return Factory()->m_energySaverStatusChangedEvent;
}
void EnergySaverStatus_Register()
{
THROW_IF_FAILED(PowerNotifications_RegisterEnergySaverStatusChangedListener(
&PowerManager::EnergySaverStatusChanged_Callback,
&Factory()->m_energySaverStatusHandle));
}
void EnergySaverStatus_Unregister()
{
THROW_IF_FAILED(PowerNotifications_UnregisterEnergySaverStatusChangedListener(
Factory()->m_energySaverStatusHandle));
}
void EnergySaverStatus_Update()
{
THROW_IF_FAILED(PowerNotifications_GetEnergySaverStatus(
&Factory()->m_cachedEnergySaverStatus));
}
// BatteryStatus Functions
EventType& BatteryStatus_Event()
{
return Factory()->m_batteryStatusChangedEvent;
}
void BatteryStatus_Register()
{
THROW_IF_FAILED(PowerNotifications_RegisterCompositeBatteryStatusChangedListener(
&PowerManager::CompositeBatteryStatusChanged_Callback,
&Factory()->m_batteryStatusHandle));
}
void BatteryStatus_Unregister()
{
THROW_IF_FAILED(PowerNotifications_UnregisterCompositeBatteryStatusChangedListener(
Factory()->m_batteryStatusHandle));
}
void BatteryStatus_Update()
{
auto status{ &Factory()->m_cachedCompositeBatteryStatus };
if (SUCCEEDED(PowerNotifications_GetCompositeBatteryStatus(status)))
{
Factory()->ProcessCompositeBatteryStatus(*status);
}
}
// PowerSupplyStatus Functions
EventType& PowerSupplyStatus_Event()
{
return Factory()->m_powerSupplyStatusChangedEvent;
}
void PowerSupplyStatus_Register()
{
BatteryStatus_Register();
}
void PowerSupplyStatus_Unregister()
{
BatteryStatus_Unregister();
}
void PowerSupplyStatus_Update()
{
BatteryStatus_Update();
}
// RemainingChargePercent Functions
EventType& RemainingChargePercent_Event()
{
return Factory()->m_remainingChargePercentChangedEvent;
}
void RemainingChargePercent_Register()
{
BatteryStatus_Register();
}
void RemainingChargePercent_Unregister()
{
BatteryStatus_Unregister();
}
void RemainingChargePercent_Update()
{
BatteryStatus_Update();
}
// RemainingDischargeTime Functions
EventType& RemainingDischargeTime_Event()
{
return Factory()->m_remainingDischargeTimeChangedEvent;
}
void RemainingDischargeTime_Register()
{
THROW_IF_FAILED(PowerNotifications_RegisterDischargeTimeChangedListener(
&PowerManager::RemainingDischargeTimeChanged_Callback,
&Factory()->m_dischargeTimeHandle));
}
void RemainingDischargeTime_Unregister()
{
THROW_IF_FAILED(PowerNotifications_UnregisterDischargeTimeChangedListener(
Factory()->m_dischargeTimeHandle));
}
void RemainingDischargeTime_Update()
{
THROW_IF_FAILED(PowerNotifications_GetDischargeTime(
&Factory()->m_cachedDischargeTime));
}
// PowerSourceKind Functions
EventType& PowerSourceKind_Event()
{
return Factory()->m_powerSourceKindChangedEvent;
}
void PowerSourceKind_Register()
{
THROW_IF_FAILED(PowerNotifications_RegisterPowerConditionChangedListener(
&PowerManager::PowerSourceKindChanged_Callback,
&Factory()->m_powerSourceKindHandle));
}
void PowerSourceKind_Unregister()
{
THROW_IF_FAILED(PowerNotifications_UnregisterPowerConditionChangedListener(
Factory()->m_powerSourceKindHandle));
}
void PowerSourceKind_Update()
{
THROW_IF_FAILED(PowerNotifications_GetPowerCondition(
&Factory()->m_cachedPowerSourceKind));
}
// DisplayStatus Functions
EventType& DisplayStatus_Event()
{
return Factory()->m_displayStatusChangedEvent;
}
void DisplayStatus_Register()
{
THROW_IF_FAILED(PowerNotifications_RegisterDisplayStatusChangedListener(
&PowerManager::DisplayStatusChanged_Callback,
&Factory()->m_displayStatusHandle));
}
void DisplayStatus_Unregister()
{
THROW_IF_FAILED(PowerNotifications_UnregisterDisplayStatusChangedListener
(Factory()->m_displayStatusHandle));
}
void DisplayStatus_Update()
{
THROW_IF_FAILED(PowerNotifications_GetDisplayStatus(
&Factory()->m_cachedDisplayStatus));
}
// SystemIdleStatus Functions
EventType& SystemIdleStatus_Event()
{
return Factory()->m_systemIdleStatusChangedEvent;
}
void SystemIdleStatus_Register()
{
THROW_IF_FAILED(PowerNotifications_RegisterSystemIdleStatusChangedListener(
&PowerManager::SystemIdleStatusChanged_Callback,
&Factory()->m_systemIdleStatusHandle));
}
void SystemIdleStatus_Unregister()
{
THROW_IF_FAILED(PowerNotifications_UnregisterSystemIdleStatusChangedListener(
Factory()->m_systemIdleStatusHandle));
}
ULONG GetEffectivePowerModeVersion()
{
// We check for the version supported by checking if the feature is supported
// Using NULL as an indicator for uninitialized cache value
auto& version{ Factory()->m_powerModeVersion };
if (!version)
{
void* handle{};
auto hr{ PowerRegisterForEffectivePowerModeNotifications(
EFFECTIVE_POWER_MODE_V2, [](EFFECTIVE_POWER_MODE, void*) {}, nullptr, &handle) };
version = SUCCEEDED(hr) ? EFFECTIVE_POWER_MODE_V2 : EFFECTIVE_POWER_MODE_V1;
THROW_IF_FAILED(PowerUnregisterFromEffectivePowerModeNotifications(handle));
}
return version;
}
EventType& EffectivePowerMode_Event()
{
return Factory()->m_powerModeChangedEvent;
}
void EffectivePowerMode_Register()
{
ULONG version{ GetEffectivePowerModeVersion() };
auto& powerModeHandle{ Factory()->m_powerModeHandle };
THROW_IF_FAILED(PowerRegisterForEffectivePowerModeNotifications(
version, [](EFFECTIVE_POWER_MODE mode, void*)
{
PowerManager::EffectivePowerModeChanged_Callback(mode);
}, nullptr, &powerModeHandle));
}
void EffectivePowerMode_Unregister()
{
auto& powerModeHandle{ Factory()->m_powerModeHandle };
THROW_IF_FAILED(PowerUnregisterFromEffectivePowerModeNotifications(powerModeHandle));
powerModeHandle = nullptr;
}
void EffectivePowerMode_Update()
{
// Effectively the Get() for PowerMode
// Needs to get a temporary subscription to get most recent value
struct notify_callback {
EFFECTIVE_POWER_MODE mode{ EffectivePowerModeBatterySaver };
wil::slim_event done;
} context;
auto handler{ [](EFFECTIVE_POWER_MODE mode, void* rawContext) {
auto context{ reinterpret_cast<notify_callback*>(rawContext) };
context->mode = mode;
context->done.SetEvent();
} };
void* handle{};
ULONG version{ GetEffectivePowerModeVersion() };
THROW_IF_FAILED(PowerRegisterForEffectivePowerModeNotifications(version, handler, &context, &handle));
context.done.wait();
Factory()->m_cachedPowerMode = context.mode;
THROW_IF_FAILED(PowerUnregisterFromEffectivePowerModeNotifications(handle));
}
// UserPresenceStatus Functions
EventType& UserPresenceStatus_Event()
{
return Factory()->m_userPresenceStatusChangedEvent;
}
void UserPresenceStatus_Register()
{
THROW_IF_FAILED(PowerNotifications_RegisterUserPresenceStatusChangedListener(
&PowerManager::UserPresenceStatusChanged_Callback,
&Factory()->m_userPresenceStatusHandle));
}
void UserPresenceStatus_Unregister()
{
THROW_IF_FAILED(PowerNotifications_UnregisterUserPresenceStatusChangedListener(
Factory()->m_userPresenceStatusHandle));
}
void UserPresenceStatus_Update()
{
THROW_IF_FAILED(PowerNotifications_GetUserPresenceStatus(
&Factory()->m_cachedUserPresenceStatus));
}
// SystemSuspendStatus Functions
EventType& SystemSuspendStatus_Event()
{
return Factory()->m_systemSuspendStatusChangedEvent;
}
// Using PVOID as per the actual typedef
ULONG CALLBACK SuspendResumeCallback(PVOID context, ULONG powerEvent, PVOID setting)
{
UNREFERENCED_PARAMETER(context);
UNREFERENCED_PARAMETER(setting);
Factory()->SystemSuspendStatusChanged_Callback(powerEvent);
return ERROR_SUCCESS;
}
void SystemSuspendStatus_Register()
{
DEVICE_NOTIFY_SUBSCRIBE_PARAMETERS powerParams{};
powerParams.Callback = SuspendResumeCallback;
check_win32(PowerRegisterSuspendResumeNotification(
DEVICE_NOTIFY_CALLBACK,
&powerParams,
&Factory()->m_systemSuspendHandle));
}
void SystemSuspendStatus_Unregister()
{
check_win32(PowerUnregisterSuspendResumeNotification(
Factory()->m_systemSuspendHandle));
}
SystemSuspendStatusChangedEventType& SystemSuspendStatus2_Event()
{
return Factory()->m_systemSuspendStatusChanged2Event;
}
void SystemSuspendStatus2_Register()
{
SystemSuspendStatus_Register();
}
void SystemSuspendStatus2_Unregister()
{
SystemSuspendStatus_Unregister();
}
}