-
Notifications
You must be signed in to change notification settings - Fork 1
/
PTPowerManagement.c
77 lines (50 loc) · 1.25 KB
/
PTPowerManagement.c
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
#include "PTPowerManagement.h"
#include <assert.h>
#if __APPLE__
#include <IOKit/pwr_mgt/IOPMLib.h>
static IOPMAssertionID sAssertion;
static void DoStartPreventingSleep(void)
{
// IOPM stuff was added in 10.6, so weak-linked for 10.5 compatibility.
if (IOPMAssertionCreateWithName == NULL) return;
IOReturn status = IOPMAssertionCreateWithName(kIOPMAssertionTypePreventUserIdleSystemSleep, kIOPMAssertionLevelOn, CFSTR("Rendering planet"), &sAssertion);
if (status != kIOReturnSuccess) sAssertion = kIOPMNullAssertionID;
}
static void DoStopPreventingSleep(void)
{
// IOPM stuff was added in 10.6, so weak-linked for 10.5 compatibility.
if (IOPMAssertionRelease == NULL) return;
if (sAssertion != kIOPMNullAssertionID)
{
IOPMAssertionRelease(sAssertion);
sAssertion = kIOPMNullAssertionID;
}
}
#else
static void DoStartPreventingSleep(void)
{
}
static void DoStopPreventingSleep(void)
{
}
#endif
static unsigned sPreventionCount;
void PTStartPreventingSleep(void)
{
if (sPreventionCount++ == 0)
{
DoStartPreventingSleep();
}
}
void PTStopPreventingSleep(void)
{
assert(sPreventionCount != 0);
if (--sPreventionCount == 0)
{
DoStopPreventingSleep();
}
}
bool PTIsPreventingSleep(void)
{
return sPreventionCount != 0;
}