zxd
2023-09-28 aac3b319965967f465881f3a8961904d57b6f337
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
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
 
// ConfigTool.cpp: 定义应用程序的类行为。
//
 
#include "pch.h"
#include "framework.h"
#include "afxwinappex.h"
#include "afxdialogex.h"
#include "ConfigTool.h"
#include "MainFrm.h"
 
#include "ConfigToolDoc.h"
#include "ConfigToolView.h"
 
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
 
#include <devguid.h>
#include <SetupAPI.h>
 
#include <eh.h>
#include <dbghelp.h>
#pragma comment(lib,"dbghelp.lib")
#pragma comment(lib,"SetupAPI.lib")
 
MHash MyCfg1;
Logger myLogger1;
 
MHash DeviceList;
 
// CConfigToolApp
 
BEGIN_MESSAGE_MAP(CConfigToolApp, CWinApp)
    ON_COMMAND(ID_APP_ABOUT, &CConfigToolApp::OnAppAbout)
    // 基于文件的标准文档命令
    ON_COMMAND(ID_FILE_NEW, &CWinApp::OnFileNew)
    ON_COMMAND(ID_FILE_OPEN, &CWinApp::OnFileOpen)
    // 标准打印设置命令
    ON_COMMAND(ID_FILE_PRINT_SETUP, &CWinApp::OnFilePrintSetup)
END_MESSAGE_MAP()
 
 
// CConfigToolApp 构造
 
CConfigToolApp::CConfigToolApp() noexcept
{
    // 支持重新启动管理器
    m_dwRestartManagerSupportFlags = AFX_RESTART_MANAGER_SUPPORT_ALL_ASPECTS;
#ifdef _MANAGED
    // 如果应用程序是利用公共语言运行时支持(/clr)构建的,则: 
    //     1) 必须有此附加设置,“重新启动管理器”支持才能正常工作。
    //     2) 在您的项目中,您必须按照生成顺序向 System.Windows.Forms 添加引用。
    System::Windows::Forms::Application::SetUnhandledExceptionMode(System::Windows::Forms::UnhandledExceptionMode::ThrowException);
#endif
 
    // TODO: 将以下应用程序 ID 字符串替换为唯一的 ID 字符串;建议的字符串格式
    //为 CompanyName.ProductName.SubProduct.VersionInformation
    SetAppID(_T("ConfigTool.AppID.NoVersion"));
 
    // TODO: 在此处添加构造代码,
    // 将所有重要的初始化放置在 InitInstance 中
}
 
// 唯一的 CConfigToolApp 对象
 
CConfigToolApp theApp;
 
 
// CConfigToolApp 初始化
 
BOOL CConfigToolApp::InitInstance()
{
    // 如果一个运行在 Windows XP 上的应用程序清单指定要
    // 使用 ComCtl32.dll 版本 6 或更高版本来启用可视化方式,
    //则需要 InitCommonControlsEx()。  否则,将无法创建窗口。
    INITCOMMONCONTROLSEX InitCtrls;
    InitCtrls.dwSize = sizeof(InitCtrls);
    // 将它设置为包括所有要在应用程序中使用的
    // 公共控件类。
    InitCtrls.dwICC = ICC_WIN95_CLASSES;
    InitCommonControlsEx(&InitCtrls);
 
    CWinApp::InitInstance();
 
 
    // 初始化 OLE 库
    if (!AfxOleInit())
    {
        AfxMessageBox(IDP_OLE_INIT_FAILED);
        return FALSE;
    }
 
    AfxEnableControlContainer();
 
    EnableTaskbarInteraction(FALSE);
 
    // 使用 RichEdit 控件需要 AfxInitRichEdit2()
    // AfxInitRichEdit2();
 
    // 标准初始化
    // 如果未使用这些功能并希望减小
    // 最终可执行文件的大小,则应移除下列
    // 不需要的特定初始化例程
    // 更改用于存储设置的注册表项
    // TODO: 应适当修改该字符串,
    // 例如修改为公司或组织名
    SetRegistryKey(_T("应用程序向导生成的本地应用程序"));
    LoadStdProfileSettings(4);  // 加载标准 INI 文件选项(包括 MRU)
 
    DeviceList.LoadFromFile(_T("./DeviceList.Ini"));
 
    // 注册应用程序的文档模板。  文档模板
    // 将用作文档、框架窗口和视图之间的连接
    CSingleDocTemplate* pDocTemplate;
    pDocTemplate = new CSingleDocTemplate(
        IDR_MAINFRAME,
        RUNTIME_CLASS(CConfigToolDoc),
        RUNTIME_CLASS(CMainFrame),       // 主 SDI 框架窗口
        RUNTIME_CLASS(CConfigToolView));
    if (!pDocTemplate)
        return FALSE;
    AddDocTemplate(pDocTemplate);
 
 
    // 分析标准 shell 命令、DDE、打开文件操作的命令行
    CCommandLineInfo cmdInfo;
    ParseCommandLine(cmdInfo);
 
//    if (cmdInfo.m_nShellCommand == CCommandLineInfo::FileNew)
//        cmdInfo.m_nShellCommand = CCommandLineInfo::FileNothing;
 
    // 调度在命令行中指定的命令。  如果
    // 用 /RegServer、/Register、/Unregserver 或 /Unregister 启动应用程序,则返回 FALSE。
    if (!ProcessShellCommand(cmdInfo))
        return FALSE;
 
    // 唯一的一个窗口已初始化,因此显示它并对其进行更新
    m_pMainWnd->ShowWindow(m_nCmdShow);
    m_pMainWnd->UpdateWindow();
    return TRUE;
}
 
int CConfigToolApp::ExitInstance()
{
    //TODO: 处理可能已添加的附加资源
    AfxOleTerm(FALSE);
 
    return CWinApp::ExitInstance();
}
 
// CConfigToolApp 消息处理程序
 
 
// 用于应用程序“关于”菜单项的 CAboutDlg 对话框
 
class CAboutDlg : public CDialogEx
{
public:
    CAboutDlg() noexcept;
 
// 对话框数据
#ifdef AFX_DESIGN_TIME
    enum { IDD = IDD_ABOUTBOX };
#endif
 
protected:
    virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV 支持
 
// 实现
protected:
    DECLARE_MESSAGE_MAP()
};
 
CAboutDlg::CAboutDlg() noexcept : CDialogEx(IDD_ABOUTBOX)
{
}
 
void CAboutDlg::DoDataExchange(CDataExchange* pDX)
{
    CDialogEx::DoDataExchange(pDX);
}
 
BEGIN_MESSAGE_MAP(CAboutDlg, CDialogEx)
END_MESSAGE_MAP()
 
// 用于运行对话框的应用程序命令
void CConfigToolApp::OnAppAbout()
{
    CAboutDlg aboutDlg;
    aboutDlg.DoModal();
}
 
// CConfigToolApp 消息处理程序
 
 
 
 
 
int SysLog(CString s, int channel)
{
    myLogger1.LogTxt(s, channel);
    return 1;
}
 
int DbgLog(CString s, int channel)
{
    myLogger1.LogTxt(s, channel);
    return 1;
}
 
int PopupMessage(CString Msg, int channel)
{
    Msg.Trim(_T("\r\n"));
    SysLog(_T("报警信息: ") + Msg + _T("\r\n"), channel);
    return 0;
}
 
void DoEvents()
{
    MSG msg;
    while (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE))
    {
        DispatchMessage(&msg);
        TranslateMessage(&msg);
    }
}
 
void dump_callstack(PCONTEXT pcontext, CString & infostr)
{
#ifdef _WIN64
 
    STACKFRAME64 sf;
    memset(&sf, 0, sizeof(STACKFRAME64));
 
    sf.AddrPC.Offset = pcontext->Rip;
    //context->
    sf.AddrPC.Mode = AddrModeFlat;
    sf.AddrStack.Offset = pcontext->Rsp;
    sf.AddrStack.Mode = AddrModeFlat;
    sf.AddrFrame.Offset = pcontext->Rbp;
    sf.AddrFrame.Mode = AddrModeFlat;
 
    DWORD machineType = //IMAGE_FILE_MACHINE_I386;
        IMAGE_FILE_MACHINE_AMD64;
#elif defined _WIN32
    STACKFRAME sf;
    memset(&sf, 0, sizeof(STACKFRAME));
 
    sf.AddrPC.Offset = pcontext->Eip;
    //context->
    sf.AddrPC.Mode = AddrModeFlat;
    sf.AddrStack.Offset = pcontext->Esp;
    sf.AddrStack.Mode = AddrModeFlat;
    sf.AddrFrame.Offset = pcontext->Ebp;
    sf.AddrFrame.Mode = AddrModeFlat;
 
    DWORD machineType = //IMAGE_FILE_MACHINE_I386;
        IMAGE_FILE_MACHINE_AMD64;
#endif
    HANDLE hProcess = GetCurrentProcess();
    HANDLE hThread = GetCurrentThread();
 
    for (;;)
    {
        if (!StackWalk(machineType, hProcess, hThread, &sf, pcontext, 0, SymFunctionTableAccess, SymGetModuleBase, 0))
        {
            break;
        }
 
        if (sf.AddrFrame.Offset == 0)
        {
            break;
        }
        BYTE symbolBuffer[sizeof(SYMBOL_INFO) + 1024];
        PSYMBOL_INFO pSymbol = (PSYMBOL_INFO)symbolBuffer;
 
        pSymbol->SizeOfStruct = sizeof(symbolBuffer);
        pSymbol->MaxNameLen = 1024;
 
        DWORD64 symDisplacement = 0;
        if (SymFromAddr(hProcess, sf.AddrPC.Offset, 0, pSymbol))
        {
            printf("Function : %s\n", pSymbol->Name);
            infostr.AppendFormat(_T("Function : %S \r\n"), pSymbol->Name);
        }
        else
        {
            printf("SymFromAdd failed!\n");
            //    infostr.AppendFormat(_T("SymFromAdd failed \r\n"),pSymbol->Name);
        }
 
        DWORD dwLineDisplacement;
#ifdef _WIN64
        IMAGEHLP_LINEW64 lineInfoW = { sizeof(IMAGEHLP_LINEW64) };
        if (SymGetLineFromAddrW(hProcess, sf.AddrPC.Offset, &dwLineDisplacement, &lineInfoW))
        {
            //        printf( "[Source File : %s]\n", lineInfo.FileName ); 
            //        printf( "[Source Line : %u]\n", lineInfo.LineNumber ); 
            CString s1(lineInfoW.FileName);
            infostr.AppendFormat(_T("File %s Line %d\r\n"), s1.Mid(s1.ReverseFind(_T('\\')) + 1, 99), lineInfoW.LineNumber);
        }
        else
        {
            printf("SymGetLineFromAddr failed!\n");
            //    infostr.Append(_T("SymGetLineFromAddr failed!\r\n"));
        }
#elif defined _WIN32
        IMAGEHLP_LINE lineInfo = { sizeof(IMAGEHLP_LINE) };
        if (SymGetLineFromAddr(hProcess, sf.AddrPC.Offset, &dwLineDisplacement, &lineInfo))
        {
            //        printf( "[Source File : %s]\n", lineInfo.FileName ); 
            //        printf( "[Source Line : %u]\n", lineInfo.LineNumber ); 
            CString s1(lineInfo.FileName);
            infostr.AppendFormat(_T("File %s Line %d\r\n"), s1.Mid(s1.ReverseFind(_T('\\')) + 1, 99), lineInfo.LineNumber);
        }
        else
        {
            printf("SymGetLineFromAddr failed!\n");
            //    infostr.Append(_T("SymGetLineFromAddr failed!\r\n"));
        }
#endif
 
    }
}
DWORD excep_filter(LPEXCEPTION_POINTERS lpEP)
{
    /**//// init dbghelp.dll
    CString s1;
    if (SymInitialize(GetCurrentProcess(), NULL, TRUE))
    {
        printf("Init dbghelp ok.\n");
    }
 
    dump_callstack(lpEP->ContextRecord, s1);
 
    if (SymCleanup(GetCurrentProcess()))
    {
        printf("Cleanup dbghelp ok.\n");
    }
 
    return EXCEPTION_EXECUTE_HANDLER;
}
 
void Trans_Tunc(unsigned int n, EXCEPTION_POINTERS* pExp)
{
    //    pExp->ExceptionRecord.
    //    throw SE_Exception(n);
    CString s1;
    if (SymInitialize(GetCurrentProcess(), NULL, TRUE))
    {
        printf("Init dbghelp ok.\n");
        //        s1=_T("Init dbghelp ok.\r\n");
    }
 
    dump_callstack(pExp->ContextRecord, s1);
 
    if (SymCleanup(GetCurrentProcess()))
    {
        printf("Cleanup dbghelp ok.\n");
        //        s1.Append(_T("Cleanup dbghelp ok.\n"));
    }
    throw SE_Exception(n, pExp->ExceptionRecord->ExceptionAddress, s1);
}
 
int DisplayException(CString File, int Line, CString Func, CString Sentence, SE_Exception &e)
{
    CString Serror;
    CString s1;
    s1.Format(_T("程序发生SE异常 代码 %08X 地址 %p \r\nFile: %s \r\nLine: %d \r\nFunc %s \r\n语句 %s \r\n 信息\r\n %s \r\n"), e.getSeNumber(), e.getAddress(), File, Line, Func, Sentence, e.getInfoStr());;
    PopupMessage(s1);
    return 0;
}
int DisplayException(CString File, int Line, CString Func, CString Sentence, CException *e)
{
    CString Serror;
    CString s1;
    e->GetErrorMessage(Serror.GetBuffer(256), 256);
    Serror.ReleaseBuffer();
    s1.Format(_T("程序发生C++异常 %s 在File: %s Line: %d Func %s Sentence %s \r\n"), Serror, File, Line, Func, Sentence);
    PopupMessage(s1);
    return 0;
}
int DisplayException(CString File, int Line, CString Func, CString Sentence)
{
    CString s1;
    s1.Format(_T("程序发生未知错误 File: %s Line: %d Func %s Sentence %s \r\n"), File, Line, Func, Sentence);
    PopupMessage(s1);
    return 0;
}
 
 
int LoadMyConfig()
{
    CString ConfigFilePathName;
    ConfigFilePathName = _T("./Settings.ini");
    int j = MyCfg1.LoadFromFile(ConfigFilePathName);
    return j;
}
 
int SaveMyConfig()
{
    CString ConfigFilePathName;
    ConfigFilePathName = _T("./Settings.ini");
    int j = MyCfg1.SaveToFile(ConfigFilePathName);
    return j;
}
 
CString& FormatHex(void * databuf, int nSize)
{
    static CString str1;
    unsigned char * ptr1 = (unsigned char *)databuf;
    str1.Empty();
 
    for (int i = 0; i < nSize && i<256; i++)
    {
//        if ((i & 0xf) == 0) str1.AppendFormat(_T("%02X  "), i);
        str1.AppendFormat(_T("%02X "), ptr1[i]);
        if (((i + 1) & 0xf) == 0) str1.Append(_T("\r\n"));
    }
    return str1;
}