This repository has been archived by the owner on Sep 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.cpp
144 lines (125 loc) · 4.84 KB
/
main.cpp
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
// win-caffeinate
//
// Copyright iorate 2017-2018.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
// Require Windows 7 or later.
#define WINVER 0x0601
#define _WIN32_WINNT 0x0601
#include <algorithm>
#include <iostream>
#include <regex>
#include <string>
#include <utility>
#include <vector>
#include <nonsugar.hpp>
#include <windows.h>
namespace {
struct scope_exit
{
template <class F>
struct impl
{
impl(impl const &) = delete;
impl &operator=(impl const &) = delete;
~impl() { m_f(); }
F m_f;
};
template <class F>
impl<F> operator^(F &&f) const
{
return { std::move(f) };
}
};
} // unnamed namespace
#define PP_CAT_I(i, j) i ## j
#define PP_CAT(i, j) PP_CAT_I(i, j)
#define SCOPE_EXIT auto const &PP_CAT(scope_exit_, __LINE__) = ::scope_exit() ^ [&]
int main(int argc, char **argv)
try {
// Parse the command line.
auto const cmd = nonsugar::command<char>("caffeinate", "prevent the system from sleeping")
.flag<'h'>({'h'}, {"help"}, "", "display this help and exit")
.flag<'v'>({'v'}, {"version"}, "", "display the version info and exit")
.flag<'d'>({'d'}, {"display"}, "", "prevent the display from sleeping")
.flag<'i'>({'i'}, {"system-idle"}, "", "prevent the system from idle sleeping (default)")
.flag<'t', int>({'t'}, {"timeout"}, "PERIOD", "specify the timeout value in seconds")
.flag<'w', int>({'w'}, {"wait"}, "PID", "wait for the process with the specified pid to\nexit")
.argument<'U', std::vector<std::string>>("UTILITY")
;
auto const opts = nonsugar::parse(argc, argv, cmd);
if (opts.has<'h'>()) {
std::cout << nonsugar::usage(cmd);
return 0;
}
if (opts.has<'v'>()) {
std::cout << "caffeinate 1.2\n";
return 0;
}
// Create a power request.
REASON_CONTEXT rc = { POWER_REQUEST_CONTEXT_VERSION, POWER_REQUEST_CONTEXT_SIMPLE_STRING };
wchar_t wcs[] = L"caffeinate";
rc.Reason.SimpleReasonString = wcs;
auto const request = PowerCreateRequest(&rc);
if (request == INVALID_HANDLE_VALUE) throw 0;
SCOPE_EXIT { CloseHandle(request); };
// Prevent the display from sleeping.
auto const disp = opts.has<'d'>();
if (disp && PowerSetRequest(request, PowerRequestDisplayRequired) == 0) throw 0;
SCOPE_EXIT { if (disp) PowerClearRequest(request, PowerRequestDisplayRequired); };
// Prevent the system from idle sleeping.
auto const sys = !opts.has<'d'>() || opts.has<'i'>();
if (sys && PowerSetRequest(request, PowerRequestSystemRequired) == 0) throw 0;
SCOPE_EXIT { if (sys) PowerClearRequest(request, PowerRequestSystemRequired); };
auto const args = opts.get<'U'>();
if (!args.empty()) {
// Create a process.
std::string util;
for (auto const &s : args) {
util += '"' + std::regex_replace(s, std::regex(R"_((\\*)")_"), R"($1$1\\")") + "\" ";
}
util.back() = '\0';
STARTUPINFO si = { sizeof(STARTUPINFO) };
PROCESS_INFORMATION pi;
auto const cp = CreateProcess(
nullptr, &util[0], nullptr, nullptr, 0, 0, nullptr, nullptr, &si, &pi);
if (cp == 0) {
// Get the last error.
char *buf;
auto const fm = FormatMessage(
FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM, nullptr,
GetLastError(), MAKELANGID(LANG_ENGLISH, SUBLANG_ENGLISH_US),
reinterpret_cast<char *>(&buf), 0, nullptr);
if (fm == 0) throw 0;
SCOPE_EXIT { LocalFree(buf); };
std::cerr << "caffeinate: " << buf;
return 0;
}
SCOPE_EXIT { CloseHandle(pi.hProcess); };
CloseHandle(pi.hThread);
// Wait for the process.
if (WaitForSingleObject(pi.hProcess, INFINITE) == WAIT_FAILED) throw 0;
return 0;
}
auto const timeout = opts.has<'t'>() ?
static_cast<DWORD>((std::max)(opts.get<'t'>(), 0)) * 1000 :
INFINITE;
if (opts.has<'w'>()) {
// Open the process.
auto const process = OpenProcess(SYNCHRONIZE, 0, static_cast<DWORD>(opts.get<'w'>()));
if (process == nullptr) return 0;
SCOPE_EXIT { CloseHandle(process); };
// Wait for the process.
if (WaitForSingleObject(process, timeout) == WAIT_FAILED) throw 0;
return 0;
}
// Sleep for the specified timeout, otherwise forever.
Sleep(timeout);
} catch (nonsugar::error const &e) {
std::cerr << e.message() << '\n';
return 1;
} catch (...) {
std::cerr << "caffeinate: unexpected error occurred\n";
return 1;
}