blob: 880218107c162c2262500979149660b481072094 (
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
|
#include "ftnoir_protocol_ft.h"
#include <windows.h>
class check_for_first_run : public runonce
{
bool checked_for_first_run;
bool is_first_instance;
bool enabled;
void try_exit()
{
if (is_first_instance && enabled)
{
qDebug() << "ft runonce: removing registry keys";
FTNoIR_Protocol::set_protocols(false, false);
}
}
public:
check_for_first_run() : checked_for_first_run(false), is_first_instance(false), enabled(false)
{
}
bool is_first_run() override
{
return checked_for_first_run && is_first_instance;
}
void set_enabled(bool flag) override
{
enabled = flag;
qDebug() << "ft runonce:" << "enabled" << flag;
}
void try_runonce() override
{
constexpr const char* name = "opentrack-freetrack-runonce";
if (checked_for_first_run)
return;
// just leak it, no issue
HANDLE h = CreateMutexA(nullptr, false, name);
switch (WaitForSingleObject(h, 0))
{
case WAIT_OBJECT_0:
is_first_instance = true;
checked_for_first_run = true;
break;
case WAIT_TIMEOUT:
checked_for_first_run = true;
break;
default:
checked_for_first_run = false;
break;
}
if (checked_for_first_run && !is_first_instance)
CloseHandle(h);
qDebug() << "ft runonce:" << "first-run" << is_first_instance << "checked" << checked_for_first_run;
}
~check_for_first_run()
{
try_exit();
}
};
std::unique_ptr<runonce> FTNoIR_Protocol::runonce_check = std::unique_ptr<runonce>(static_cast<runonce*>(new check_for_first_run()));
|