AutoUpdate.cpp
3.26 KB
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
// AutoUpdate.cpp : 定义应用程序的类行为。
//
#include "stdafx.h"
#include "AutoUpdate.h"
#include "AutoUpdateDlg.h"
#include "dbghelp.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
#pragma comment(lib, "dbghelp.lib")
//异常处理 add by liuye 2016.9.23
LONG WINAPI ExceptionHandler(PEXCEPTION_POINTERS ExceptionPointer)
{
AfxMessageBox(_T("升级程序发生异常,请联系工作人员!"));
// Open the file
CTime tmCurTime;
tmCurTime = CTime::GetCurrentTime();
CString sData = tmCurTime.Format(_T("%y%m%d"));
CString sDumpName = _T("AutoUpdate_") + sData + ".dmp";
HANDLE hFile = CreateFile(sDumpName, GENERIC_READ | GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
if ((hFile != NULL) && (hFile != INVALID_HANDLE_VALUE))
{
// Create the minidump
MINIDUMP_EXCEPTION_INFORMATION stuDump;
stuDump.ThreadId = GetCurrentThreadId();
stuDump.ExceptionPointers = ExceptionPointer;
stuDump.ClientPointers = FALSE;
MINIDUMP_TYPE emDumpType = MiniDumpNormal;
BOOL bCreateDump = MiniDumpWriteDump(GetCurrentProcess(), GetCurrentProcessId(), hFile, emDumpType, (ExceptionPointer != 0) ? &stuDump : 0, 0, 0);
if (!bCreateDump)
_tprintf(_T("MiniDumpWriteDump failed. Error: %u \n"), GetLastError());
else
_tprintf(_T("Minidump created.\n"));
// Close the file
CloseHandle(hFile);
CWinApp* pApp = AfxGetApp();
SendMessage(pApp->m_pMainWnd->m_hWnd, WM_CRASH_CLOSE, NULL, NULL);
}
else
{
_tprintf(_T("CreateFile failed. Error: %u \n"), GetLastError());
}
return EXCEPTION_EXECUTE_HANDLER;
}
// CAUAutoUpdateApp
BEGIN_MESSAGE_MAP(CAUAutoUpdateApp, CWinApp)
ON_COMMAND(ID_HELP, &CWinApp::OnHelp)
END_MESSAGE_MAP()
// CAUAutoUpdateApp 构造
CAUAutoUpdateApp::CAUAutoUpdateApp()
{
// TODO: 在此处添加构造代码,
// 将所有重要的初始化放置在 InitInstance 中
}
// 唯一的一个 CAUAutoUpdateApp 对象
CAUAutoUpdateApp theApp;
// CAUAutoUpdateApp 初始化
BOOL CAUAutoUpdateApp::InitInstance()
{
CWinApp::InitInstance();
SetUnhandledExceptionFilter(ExceptionHandler);
// 创建 shell 管理器,以防对话框包含
// 任何 shell 树视图控件或 shell 列表视图控件。
CShellManager *pShellManager = new CShellManager;
// 激活“Windows Native”视觉管理器,以便在 MFC 控件中启用主题
CMFCVisualManager::SetDefaultManager(RUNTIME_CLASS(CMFCVisualManagerWindows));
// 标准初始化
// 如果未使用这些功能并希望减小
// 最终可执行文件的大小,则应移除下列
// 不需要的特定初始化例程
// 更改用于存储设置的注册表项
// TODO: 应适当修改该字符串,
// 例如修改为公司或组织名
SetRegistryKey(_T("应用程序向导生成的本地应用程序"));
CAUAutoUpdateDlg dlgUpdate;
m_pMainWnd = &dlgUpdate;
INT_PTR nResponse = dlgUpdate.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");
}
CAUDataManage::Instantialize()->DestoryInstance();
// 删除上面创建的 shell 管理器。
if (pShellManager != NULL)
{
delete pShellManager;
}
// 由于对话框已关闭,所以将返回 FALSE 以便退出应用程序,
// 而不是启动应用程序的消息泵。
return FALSE;
}