-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathKeeper.cpp
323 lines (277 loc) · 8.15 KB
/
Keeper.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
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
// Keeper.cpp : 定义应用程序的类行为。
//
#include "stdafx.h"
#include "Keeper.h"
#include "KeeperDlg.h"
#include "confReader.h"
#include "ChooseExecutable.h"
#include "Afx_MessageBox.h"
#include <gdiplus.h>
#pragma comment(lib, "gdiplus.lib")
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// 采用WinExec重启程序
#define WIN_EXEC 1
// CKeeperApp
BEGIN_MESSAGE_MAP(CKeeperApp, CWinApp)
ON_COMMAND(ID_HELP, &CWinApp::OnHelp)
END_MESSAGE_MAP()
// CKeeperApp 构造
CKeeperApp::CKeeperApp()
{
// 支持重新启动管理器
m_dwRestartManagerSupportFlags = AFX_RESTART_MANAGER_SUPPORT_RESTART;
// TODO: 在此处添加构造代码,
// 将所有重要的初始化放置在 InitInstance 中
m_bUnique = true;
m_bReStart = false;
m_nParentId = 0;
m_hMutex = INVALID_HANDLE_VALUE;
}
// 唯一的一个 CKeeperApp 对象
CKeeperApp theApp;
// CKeeperApp 初始化
// 寻找可执行文件,作为被守护程序
string CKeeperApp::FindExecutable(const char *sDirect)
{
CString filter = CString(sDirect) + _T("\\*.EXE");
CFileFind ff;
BOOL bFind = ff.FindFile(filter);
vector<CString> result;
USES_CONVERSION;
while (bFind)
{
bFind = ff.FindNextFile();
if (ff.IsDots() || ff.IsDirectory())
continue;
CString ret = ff.GetFileTitle();
char *cur = W2A(ret);
const char *lwr = _strlwr(cur);
if (strcmp(lwr, m_strTitle))
{
result.push_back(ret);
}
}
ff.Close();
if (1 == result.size())
{
return W2A(result.at(0));
}
else if (result.size())
{
CChooseExecutable dlg(result);
dlg.DoModal();
return W2A(dlg.GetExecutable());
}
return "";
}
BOOL CKeeperApp::Prepare(string &temp)
{
// 获取当前用户名,必须以指定身份(默认administrator)登录系统
DWORD nLen = MAX_PATH;
char strUser[MAX_PATH];
if (!GetUserNameA(strUser, &nLen))
return FALSE;
//////////////////////////////////////////////////////////////////////////
USES_CONVERSION;
WCHAR wPath[MAX_PATH]; // 程序完整路径
GetModuleFileName(NULL, wPath, MAX_PATH);
CString csPath(wPath);
int pos = csPath.ReverseFind('\\');
CString sDir = csPath.Left(pos);
const char * strModuleDir = W2A(sDir);
CString sName = csPath.Right(csPath.GetLength() - pos - 1);
pos = sName.ReverseFind('.');
CString sTitle = sName.Left(pos);
strcpy_s(m_strTitle, W2A(sTitle));
//////////////////////////////////////////////////////////////////////////
const char *pTitle = _strlwr(m_strTitle);
m_strConf = (0 == strcmp(m_strTitle, "keeper")) ?
string(strModuleDir) + "\\Keep.conf" :
string(strModuleDir) + string("\\") + string(m_strTitle) + string(".conf");
const string &file = m_strConf;
// 配置文件读取
confReader ini(file);
// 读取模块ID
ini.setSection("module");
temp = ini.readStr("id", "");
if(temp.empty())
{
// ID为空时读取名称
temp = ini.readStr("name", "");
temp = temp.empty() ? FindExecutable(strModuleDir) : temp;
if (temp.empty())
{
AfxMessageBox(_T("待守护程序不存在或未被选择! 守护程序无法继续运行。"));
return FALSE;
}
WritePrivateProfileStringA("module", "name", temp.c_str(), file.c_str());
WritePrivateProfileStringA("module", "id", temp.c_str(), file.c_str());
}
ini.setSection("settings");
// [14] 是否只允许唯一的实例运行(默认为1)
m_bUnique = ini.readInt("unique", 1);
// 用模块的唯一编码创建信号量
m_hMutex = m_bUnique ? ::CreateMutex(NULL, TRUE, CString(temp.c_str())) : INVALID_HANDLE_VALUE;
if ( m_bUnique && (GetLastError() == ERROR_ALREADY_EXISTS) )
{
if (IDCANCEL == AfxMessageBox(_T("在该设备已经运行了一个守护! ID = ") + CString(temp.c_str())
+ _T(", \r\n是否继续守护? 这将重复运行被守护程序, 后果不可预料!\r\n除非你确定这2个程序不一样。"), MY_AfxMsgBox))
return FALSE;
int t = time(NULL) % 86400;//1天第几秒
char t_str[64];
sprintf_s(t_str, "_%d", t);
temp = temp + string(t_str);
WritePrivateProfileStringA("module", "id", temp.c_str(), file.c_str());
}
// [1]读取操作系统用户
const char *dst = _strlwr(strUser);
temp = ini.readStr("sys_user", "");
if (temp.empty())
{
WritePrivateProfileStringA("settings", "sys_user", dst, file.c_str());
temp = dst;
}
else if (strcmp(temp.c_str(), dst) && m_bUnique)
{
Afx_MessageBox box(_T("操作系统用户与配置文件不匹配! 是否重新启动程序?"));
if (IDOK == box.DoModal())
{
WritePrivateProfileStringA("settings", "sys_user", dst, file.c_str());
m_bReStart = true;
}
return FALSE;
}
// [7]读取图标文件
Gdiplus::GdiplusStartupInput StartupInput;
if (Gdiplus::GdiplusStartup(&m_gdiplusToken, &StartupInput, NULL))
return FALSE;
temp = ini.readStr("icon", "");
temp = temp.empty() ? string(strModuleDir) + "\\Keeper.png" : temp;
// Icon如果在当前目录
const char *p = temp.c_str();
if (p + 1 && ':' != p[1])
temp = string(strModuleDir) + "\\" + temp;
return TRUE;
}
BOOL CKeeperApp::InitInstance()
{
float time_span = 6000.F;
USES_CONVERSION;
const char *id = W2A(m_lpCmdLine);
m_nParentId = atoi(id);
string temp;
if (FALSE == Prepare(temp))
return FALSE;
// 如果一个运行在 Windows XP 上的应用程序清单指定要
// 使用 ComCtl32.dll 版本 6 或更高版本来启用可视化方式,
//则需要 InitCommonControlsEx()。否则,将无法创建窗口。
INITCOMMONCONTROLSEX InitCtrls;
InitCtrls.dwSize = sizeof(InitCtrls);
// 将它设置为包括所有要在应用程序中使用的
// 公共控件类。
InitCtrls.dwICC = ICC_WIN95_CLASSES;
InitCommonControlsEx(&InitCtrls);
CWinApp::InitInstance();
// [11]程序运行状态(程序自动生成)
const char is_run[4] = { "1" };
int isRun = GetPrivateProfileIntA("settings", "is_run", 0, m_strConf.c_str());
if (1 == isRun && m_bUnique)// 上一次守护程序可能非正常关闭
{
Afx_MessageBox box(_T("检测到此应用程序的上一次退出是不正常的。是否检查此原因?"), time_span);
box.DoModal();
}else
WritePrivateProfileStringA("settings", "is_run", is_run, m_strConf.c_str());
AfxEnableControlContainer();
#ifndef _AFX_NO_MFC_CONTROLS_IN_DIALOGS
// 创建 shell 管理器,以防对话框包含
// 任何 shell 树视图控件或 shell 列表视图控件。
CShellManager *pShellManager = new CShellManager;
// 激活“Windows Native”视觉管理器,以便在 MFC 控件中启用主题
CMFCVisualManager::SetDefaultManager(RUNTIME_CLASS(CMFCVisualManagerWindows));
#endif
// 标准初始化
// 如果未使用这些功能并希望减小
// 最终可执行文件的大小,则应移除下列
// 不需要的特定初始化例程
// 更改用于存储设置的注册表项
// TODO: 应适当修改该字符串,
// 例如修改为公司或组织名
SetRegistryKey(_T("TQEH"));
CKeeperDlg dlg(temp);
m_pMainWnd = &dlg;
INT_PTR nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: 在此放置处理何时用
// “确定”来关闭对话框的代码
}
else if (nResponse == IDCANCEL)
{
// TODO: 在此放置处理何时用
// “取消”来关闭对话框的代码
}
else if (nResponse == -1)
{
TRACE(traceAppMsg, 0, "警告: 对话框创建失败,应用程序将意外终止。\n");
TRACE(traceAppMsg, 0, "警告: 如果您在对话框上使用 MFC 控件,则无法 #define _AFX_NO_MFC_CONTROLS_IN_DIALOGS。\n");
}
#ifndef _AFX_NO_MFC_CONTROLS_IN_DIALOGS
// 删除上面创建的 shell 管理器。
if (pShellManager != NULL)
{
delete pShellManager;
}
#endif
// 由于对话框已关闭,所以将返回 FALSE 以便退出应用程序,
// 而不是启动应用程序的消息泵。
return FALSE;
}
int CKeeperApp::ExitInstance()
{
// 关闭信号量句柄
if (INVALID_HANDLE_VALUE != m_hMutex)
{
ReleaseMutex(m_hMutex);
CloseHandle(m_hMutex);
m_hMutex = INVALID_HANDLE_VALUE;
}
// GDI +
Gdiplus::GdiplusShutdown(m_gdiplusToken);
const char is_run[4] = { "0" };
WritePrivateProfileStringA("settings", "is_run", is_run, m_strConf.c_str());
// 重启程序
if (m_bReStart)
{
char buf[_MAX_PATH];
::GetModuleFileNameA(NULL, buf, sizeof(buf));
CString path(buf);
SHELLEXECUTEINFO ShExecInfo = { 0 };
ShExecInfo.cbSize = sizeof(SHELLEXECUTEINFO);
ShExecInfo.fMask = SEE_MASK_NOCLOSEPROCESS;
ShExecInfo.lpFile = path;
ShExecInfo.lpParameters = m_lpCmdLine;
ShExecInfo.nShow = SW_SHOW;
#if WIN_EXEC
if (WinExec(buf, SW_SHOW) <= 31)
#else
if (FALSE == ShellExecuteEx(&ShExecInfo))
#endif
OutputDebugStringA("======> 重启\"Keeper\"失败\n");
else
OutputDebugStringA("======> 重启\"Keeper\"成功\n");
}
OutputDebugStringA("======> Keeper 退出 <======\n");
return CWinApp::ExitInstance();
}
// AfxMessageBox的重定义行为
int CKeeperApp::DoMessageBox(LPCTSTR lpszPrompt, UINT nType, UINT nIDPrompt)
{
if (MY_AfxMsgBox == nType)
{
Afx_MessageBox box(lpszPrompt, 8000);
return box.DoModal();
}
return CWinApp::DoMessageBox(lpszPrompt, nType, nIDPrompt);
}