added more overlay handler infos
[TortoiseGit.git] / src / crashrpt / CrashHandler.h
blob1a06cc3480ea5a6fa16e3e4ff823dde6bf97f0d2
1 ///////////////////////////////////////////////////////////////////////////////
2 //
3 // Module: CrashHandler.h
4 //
5 // Desc: CCrashHandler is the main class used by crashrpt to manage all
6 // of the details associated with handling the exception, generating
7 // the report, gathering client input, and sending the report.
8 //
9 // Copyright (c) 2003 Michael Carruth
11 ///////////////////////////////////////////////////////////////////////////////
13 #pragma once
15 #include "crashrpt.h" // defines LPGETLOGFILE callback
16 #include "excprpt.h" // bulk of crash report generation
18 #ifndef TStrStrVector
19 #include <vector>
21 typedef std::pair<string,string> TStrStrPair;
22 typedef std::vector<TStrStrPair> TStrStrVector;
23 #endif // !defined TStrStrVector
26 extern BOOL g_bNoCrashHandler;// don't use the crash handler but let the system handle it
28 ////////////////////////////// Class Definitions /////////////////////////////
30 // ===========================================================================
31 // CCrashHandler
32 //
33 // See the module comment at top of file.
35 class CCrashHandler
37 public:
39 //-----------------------------------------------------------------------------
40 // GetInstance (static)
41 // Returns the instance for the current process. Creates one if necessary.
43 // Parameters
44 // none
46 // Return Values
47 // none
49 // Remarks
50 // none
52 static CCrashHandler * GetInstance();
55 //-----------------------------------------------------------------------------
56 // Install
57 // Installs the crash handler..
59 // Parameters
60 // lpfn Client crash callback
61 // lpcszTo Email address to send crash report
62 // lpczSubject Subject line to be used with email
64 // Return Values
65 // none
67 // Remarks
68 // Passing NULL for lpTo will disable the email feature and cause the crash
69 // report to be saved to disk.
71 void Install(
72 LPGETLOGFILE lpfn = NULL, // Client crash callback
73 LPCTSTR lpcszTo = NULL, // EMail:To
74 LPCTSTR lpcszSubject = NULL, // EMail:Subject
75 BOOL bUseUI = TRUE
78 //-----------------------------------------------------------------------------
79 // Unnstall
80 // Removes the crash handler..
82 // Parameters
83 // none
85 // Return Values
86 // none
88 // Remarks
89 // none
91 void Uninstall();
93 //-----------------------------------------------------------------------------
94 // EnableUI
95 // Enables the UI part
97 // Parameters
98 // none
100 // Return Values
101 // none
103 // Remarks
104 // none
106 void EnableUI();
108 //-----------------------------------------------------------------------------
109 // DisableUI
110 // Disables the UI part
112 // Parameters
113 // none
115 // Return Values
116 // none
118 // Remarks
119 // none
121 void DisableUI();
123 //-----------------------------------------------------------------------------
124 // DisableUI
125 // Disables the exception handler
127 // Parameters
128 // none
130 // Return Values
131 // none
133 // Remarks
134 // none
136 void DisableHandler();
138 //-----------------------------------------------------------------------------
139 // DisableUI
140 // Enables the custom exception handler
142 // Parameters
143 // none
145 // Return Values
146 // none
148 // Remarks
149 // none
151 void EnableHandler();
153 //-----------------------------------------------------------------------------
154 // ~CCrashHandler
155 // Uninitializes the crashrpt library.
157 // Parameters
158 // none
160 // Return Values
161 // none
163 // Remarks
164 // none
166 virtual
167 ~CCrashHandler();
169 //-----------------------------------------------------------------------------
170 // AddFile
171 // Adds a file to the crash report.
173 // Parameters
174 // lpFile Fully qualified file name
175 // lpDesc File description
177 // Return Values
178 // none
180 // Remarks
181 // Call this function to include application specific file(s) in the crash
182 // report. For example, application logs, initialization files, etc.
184 void
185 AddFile(
186 LPCTSTR lpFile, // File nae
187 LPCTSTR lpDesc // File description
190 //-----------------------------------------------------------------------------
191 // RemoveFile
192 // Removes a file from the crash report.
194 // Parameters
195 // lpFile Fully qualified file name
197 // Return Values
198 // none
200 // Remarks
201 // lpFile must exactly match that passed to AddFile.
203 void
204 RemoveFile(
205 LPCTSTR lpFile // File nae
208 //-----------------------------------------------------------------------------
209 // AddRegistryHive
210 // Adds a registry hive to the crash report.
212 // Parameters
213 // lpKey Fully registry eky
214 // lpDesc Description
216 // Return Values
217 // none
219 // Remarks
220 // Call this function to include application specific registry hive(s) in the crash
221 // report.
223 void
224 AddRegistryHive(
225 LPCTSTR lpKey, // Registry key
226 LPCTSTR lpDesc // description
229 //-----------------------------------------------------------------------------
230 // RemoveRegistryHive
231 // Removes a registry hive from the crash report.
233 // Parameters
234 // lpKey Full registry key
236 // Return Values
237 // none
239 // Remarks
240 // lpKey must exactly match that passed to AddRegistryHive.
242 void
243 RemoveRegistryHive(
244 LPCTSTR lpKey // Registry key
247 //-----------------------------------------------------------------------------
248 // AddEventLog
249 // Adds an event log to the crash report.
251 // Parameters
252 // lpKey Event log name ("Application", "System", "Security")
253 // lpDesc Description
255 // Return Values
256 // none
258 // Remarks
259 // Call this function to include application specific registry hive(s) in the crash
260 // report.
262 void
263 AddEventLog(
264 LPCTSTR lpKey, // Event log name
265 LPCTSTR lpDesc // description
268 //-----------------------------------------------------------------------------
269 // RemoveEventLog
270 // Removes an event log from the crash report.
272 // Parameters
273 // lpKey Event log name
275 // Return Values
276 // none
278 // Remarks
279 // lpKey must exactly match that passed to AddEventLog.
281 void
282 RemoveEventLog(
283 LPCTSTR lpKey // Registry key
286 //-----------------------------------------------------------------------------
287 // GenerateErrorReport
288 // Produces a crash report.
290 // Parameters
291 // pExInfo Pointer to an EXCEPTION_POINTERS structure
293 // Return Values
294 // BOOL TRUE if exception to be executed; FALSE
295 // if to search for another handler. This
296 // should be used to allow breaking into
297 // the debugger, where appropriate.
299 // Remarks
300 // Call this function to manually generate a crash report.
302 BOOL
303 GenerateErrorReport(
304 PEXCEPTION_POINTERS pExInfo, // Exception pointers (see MSDN)
305 BSTR message = NULL
309 protected:
311 //-----------------------------------------------------------------------------
312 // CCrashHandler
313 // Initializes the library and optionally set the client crash callback and
314 // sets up the email details.
316 // Parameters
317 // none
319 // Return Values
320 // none
322 // Remarks
323 // Passing NULL for lpTo will disable the email feature and cause the crash
324 // report to be saved to disk.
326 CCrashHandler(
329 //-----------------------------------------------------------------------------
330 // SaveReport
331 // Presents the user with a file save dialog and saves the crash report
332 // file to disk. This function is called if an Email:To was not provided
333 // in the constructor.
335 // Parameters
336 // rpt The report details
337 // lpcszFile The zipped crash report
339 // Return Values
340 // True is successful.
342 // Remarks
343 // none
345 BOOL
346 SaveReport(
347 CExceptionReport &rpt,
348 LPCTSTR lpcszFile
351 //-----------------------------------------------------------------------------
352 // MailReport
353 // Mails the zipped crash report to the address specified.
355 // Parameters
356 // rpt The report details
357 // lpcszFile The zipped crash report
358 // lpcszEmail The Email:To
359 // lpcszDesc
361 // Return Values
362 // TRUE is successful.
364 // Remarks
365 // MAPI is used to send the report.
367 BOOL
368 MailReport(
369 CExceptionReport &rpt,
370 LPCTSTR lpcszFile,
371 LPCTSTR lpcszEmail,
372 LPCTSTR lpcszSubject
375 //-----------------------------------------------------------------------------
376 // DialogThreadExecute
377 // Displays the dialog and handles the user's reply. Executed as a separate
378 // thread.
380 // Parameters
381 // pParam Standard CreateThreadParameter; set to pointer to CCrashHandler
383 // Return Values
384 // none
386 // Remarks
387 // Started from GenerateErrorReport via CreateThread. This ensures the caller
388 // is stopped (and will not confuse state by dispatching messages).
390 static DWORD WINAPI CCrashHandler::DialogThreadExecute(LPVOID pParam);
392 string LoadResourceString(UINT id);
393 LPTOP_LEVEL_EXCEPTION_FILTER m_oldFilter; // previous exception filter
394 LPGETLOGFILE m_lpfnCallback; // client crash callback
395 int m_pid; // process id
396 TStrStrVector m_files; // custom files to add
397 TStrStrVector m_registryHives; // custom registry hives to save
398 TStrStrVector m_eventLogs; // custom event logs to save
399 string m_sTo; // Email:To
400 string m_sSubject; // Email:Subject
401 HANDLE m_ipc_event; // Event for dialog thread synchronization
402 CExceptionReport *m_rpt; // Exception report for dialog
403 bool m_installed; // True if already installed
404 HMODULE m_hModule; // Module handle for loading resource strings
405 string m_userDataFile; // file to save user input when m_sTo is empty
406 bool m_wantDebug; // user pushed Debug button
407 BOOL m_bUseUI; // use an UI or print to the error output