blob: 784bee725b75ee78ee30f1aef13ffabe90c542c2 (
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
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/idle.h"
#include <limits.h>
#include <windows.h>
static bool IsScreensaverRunning();
static bool IsWorkstationLocked();
void CalculateIdleState(unsigned int idle_threshold, IdleCallback notify) {
if (CheckIdleStateIsLocked()) {
notify.Run(IDLE_STATE_LOCKED);
return;
}
LASTINPUTINFO last_input_info = {0};
last_input_info.cbSize = sizeof(LASTINPUTINFO);
DWORD current_idle_time = 0;
if (::GetLastInputInfo(&last_input_info)) {
DWORD now = ::GetTickCount();
if (now < last_input_info.dwTime) {
// GetTickCount() wraps around every 49.7 days -- assume it wrapped just
// once.
const DWORD kMaxDWORD = static_cast<DWORD>(-1);
DWORD time_before_wrap = kMaxDWORD - last_input_info.dwTime;
DWORD time_after_wrap = now;
// The sum is always smaller than kMaxDWORD.
current_idle_time = time_before_wrap + time_after_wrap;
} else {
current_idle_time = now - last_input_info.dwTime;
}
// Convert from ms to seconds.
current_idle_time /= 1000;
}
if (current_idle_time >= idle_threshold)
notify.Run(IDLE_STATE_IDLE);
else
notify.Run(IDLE_STATE_ACTIVE);
}
bool IsScreensaverRunning() {
DWORD result = 0;
if (::SystemParametersInfo(SPI_GETSCREENSAVERRUNNING, 0, &result, 0))
return result != FALSE;
return false;
}
bool IsWorkstationLocked() {
bool is_locked = true;
HDESK input_desk = ::OpenInputDesktop(0, 0, GENERIC_READ);
if (input_desk) {
wchar_t name[256] = {0};
DWORD needed = 0;
if (::GetUserObjectInformation(input_desk,
UOI_NAME,
name,
sizeof(name),
&needed)) {
is_locked = lstrcmpi(name, L"default") != 0;
}
::CloseDesktop(input_desk);
}
return is_locked;
}
bool CheckIdleStateIsLocked() {
return IsWorkstationLocked() || IsScreensaverRunning();
}
|