]> git.saurik.com Git - wxWidgets.git/blame - interface/debugrpt.h
Mention wxDataViewTreeCtrl in wxTreeCtrl
[wxWidgets.git] / interface / debugrpt.h
CommitLineData
23324ae1
FM
1/////////////////////////////////////////////////////////////////////////////
2// Name: debugrpt.h
1db8f1dc 3// Purpose: interface of wxDebugReport*
23324ae1
FM
4// Author: wxWidgets team
5// RCS-ID: $Id$
6// Licence: wxWindows license
7/////////////////////////////////////////////////////////////////////////////
8
9/**
10 @class wxDebugReportPreview
11 @wxheader{debugrpt.h}
7c913512 12
1db8f1dc
BP
13 This class presents the debug report to the user and allows him to veto
14 report entirely or remove some parts of it. Although not mandatory, using
15 this class is strongly recommended as data included in the debug report
16 might contain sensitive private information and the user should be notified
17 about it as well as having a possibility to examine the data which had been
18 gathered to check whether this is effectively the case and discard the
19 debug report if it is.
7c913512 20
23324ae1 21 wxDebugReportPreview is an abstract base class, currently the only concrete
1db8f1dc 22 class deriving from it is wxDebugReportPreviewStd.
7c913512 23
23324ae1
FM
24 @library{wxqa}
25 @category{debugging}
26*/
7c913512 27class wxDebugReportPreview
23324ae1
FM
28{
29public:
30 /**
1db8f1dc 31 Default constructor.
23324ae1
FM
32 */
33 wxDebugReportPreview();
34
35 /**
1db8f1dc 36 Destructor is trivial as well but should be virtual for a base class.
23324ae1 37 */
1db8f1dc 38 virtual ~wxDebugReportPreview();
23324ae1
FM
39
40 /**
1db8f1dc
BP
41 Present the report to the user and allow him to modify it by removing
42 some or all of the files and, potentially, adding some notes.
43
d29a9a8a 44 @return @true if the report should be processed or @false if the user
1db8f1dc
BP
45 chose to cancel report generation or removed all files from
46 it.
23324ae1 47 */
1db8f1dc 48 virtual bool Show(wxDebugReport& dbgrpt) const;
23324ae1
FM
49};
50
51
e54c96f1 52
23324ae1
FM
53/**
54 @class wxDebugReportCompress
55 @wxheader{debugrpt.h}
7c913512 56
1db8f1dc
BP
57 wxDebugReportCompress is a wxDebugReport which compresses all the files in
58 this debug report into a single ZIP file in its wxDebugReport::Process()
59 function.
7c913512 60
23324ae1
FM
61 @library{wxqa}
62 @category{debugging}
63*/
64class wxDebugReportCompress : public wxDebugReport
65{
66public:
67 /**
68 Default constructor does nothing special.
69 */
70 wxDebugReportCompress();
71
72 /**
1db8f1dc
BP
73 Returns the full path of the compressed file (empty if creation
74 failed).
23324ae1 75 */
328f5751 76 const wxString GetCompressedFileName() const;
23324ae1
FM
77};
78
79
e54c96f1 80
23324ae1
FM
81/**
82 @class wxDebugReport
83 @wxheader{debugrpt.h}
7c913512 84
1db8f1dc
BP
85 wxDebugReport is used to generate a debug report, containing information
86 about the program current state. It is usually used from
87 wxApp::OnFatalException() as shown in the @ref page_samples_debugrpt.
7c913512 88
1db8f1dc
BP
89 A wxDebugReport object contains one or more files. A few of them can be
90 created by the class itself but more can be created from the outside and
91 then added to the report. Also note that several virtual functions may be
92 overridden to further customize the class behaviour.
7c913512 93
23324ae1 94 Once a report is fully assembled, it can simply be left in the temporary
1db8f1dc
BP
95 directory so that the user can email it to the developers (in which case
96 you should still use wxDebugReportCompress to compress it in a single file)
97 or uploaded to a Web server using wxDebugReportUpload (setting up the Web
98 server to accept uploads is your responsibility, of course). Other
99 handlers, for example for automatically emailing the report, can be defined
100 as well but are not currently included in wxWidgets.
101
102 A typical usage example:
103
104 @code
105 wxDebugReport report;
106 wxDebugReportPreviewStd preview;
107
108 report.AddCurrentContext(); // could also use AddAll()
109 report.AddCurrentDump(); // to do both at once
110
111 if ( preview.Show(report) )
112 report.Process();
113 @endcode
7c913512 114
23324ae1
FM
115 @library{wxqa}
116 @category{debugging}
117*/
7c913512 118class wxDebugReport
23324ae1
FM
119{
120public:
1db8f1dc
BP
121 /**
122 This enum is used for functions that report either the current state or
123 the state during the last (fatal) exception.
124 */
125 enum Context {
126 Context_Current,
127 Context_Exception
128 };
129
23324ae1
FM
130 /**
131 The constructor creates a temporary directory where the files that will
1db8f1dc 132 be included in the report are created. Use IsOk() to check for errors.
23324ae1
FM
133 */
134 wxDebugReport();
135
136 /**
137 The destructor normally destroys the temporary directory created in the
1db8f1dc
BP
138 constructor with all the files it contains. Call Reset() to prevent
139 this from happening.
23324ae1
FM
140 */
141 ~wxDebugReport();
142
143 /**
144 Adds all available information to the report. Currently this includes a
1db8f1dc
BP
145 text (XML) file describing the process context and, under Win32, a
146 minidump file.
23324ae1
FM
147 */
148 void AddAll(Context context = Context_Exception);
149
150 /**
151 Add an XML file containing the current or exception context and the
152 stack trace.
153 */
154 bool AddContext(Context ctx);
155
156 /**
1db8f1dc 157 The same as calling AddContext(Context_Current).
23324ae1
FM
158 */
159 bool AddCurrentContext();
160
161 /**
1db8f1dc 162 The same as calling AddDump(Context_Current).
23324ae1
FM
163 */
164 bool AddCurrentDump();
165
166 /**
167 Adds the minidump file to the debug report.
1db8f1dc
BP
168
169 Minidumps are only available under recent Win32 versions
170 (@c dbghlp32.dll can be installed under older systems to make minidumps
171 available).
23324ae1
FM
172 */
173 bool AddDump(Context ctx);
174
175 /**
1db8f1dc 176 The same as calling AddContext(Context_Exception).
23324ae1
FM
177 */
178 bool AddExceptionContext();
179
180 /**
1db8f1dc 181 The same as calling AddDump(Context_Exception).
23324ae1
FM
182 */
183 bool AddExceptionDump();
184
185 /**
1db8f1dc
BP
186 Add another file to the report. If @a filename is an absolute path, it
187 is copied to a file in the debug report directory with the same name.
188 Otherwise the file should already exist in this directory
189 @a description only exists to be displayed to the user in the report
190 summary shown by wxDebugReportPreview.
191
192 @see GetDirectory(), AddText()
23324ae1 193 */
1db8f1dc 194 void AddFile(const wxString& filename, const wxString& description);
23324ae1
FM
195
196 /**
1db8f1dc
BP
197 This is a convenient wrapper around AddFile(). It creates the file with
198 the given @a name and writes @a text to it, then adds the file to the
199 report. The @a filename shouldn't contain the path.
200
d29a9a8a 201 @return @true if file could be added successfully, @false if an IO
1db8f1dc 202 error occurred.
23324ae1
FM
203 */
204 bool AddText(const wxString& filename, const wxString& text,
205 const wxString& description);
206
207 /**
1db8f1dc
BP
208 This function may be overridden to add arbitrary custom context to the
209 XML context file created by AddContext(). By default, it does nothing.
23324ae1 210 */
4cc4bfaf 211 void DoAddCustomContext(wxXmlNode* nodeRoot);
23324ae1
FM
212
213 /**
1db8f1dc
BP
214 This function may be overridden to modify the contents of the exception
215 tag in the XML context file.
23324ae1
FM
216 */
217 bool DoAddExceptionInfo(wxXmlNode* nodeContext);
218
219 /**
1db8f1dc
BP
220 This function may be overridden to modify the contents of the modules
221 tag in the XML context file.
23324ae1
FM
222 */
223 bool DoAddLoadedModules(wxXmlNode* nodeModules);
224
225 /**
1db8f1dc
BP
226 This function may be overridden to modify the contents of the system
227 tag in the XML context file.
23324ae1
FM
228 */
229 bool DoAddSystemInfo(wxXmlNode* nodeSystemInfo);
230
231 /**
1db8f1dc
BP
232 This method should be used to construct the full name of the files
233 which you wish to add to the report using AddFile().
234
d29a9a8a 235 @return The name of the temporary directory used for the files in this
1db8f1dc 236 report.
23324ae1 237 */
328f5751 238 const wxString GetDirectory() const;
23324ae1
FM
239
240 /**
1db8f1dc
BP
241 Retrieves the name (relative to GetDirectory()) and the description of
242 the file with the given index. If @a n is greater than or equal to the
243 number of filse, @false is returned.
23324ae1 244 */
328f5751 245 bool GetFile(size_t n, wxString* name, wxString* desc) const;
23324ae1
FM
246
247 /**
248 Gets the current number files in this report.
249 */
328f5751 250 size_t GetFilesCount() const;
23324ae1
FM
251
252 /**
7c913512 253 Gets the name used as a base name for various files, by default
1db8f1dc 254 wxApp::GetAppName() is used.
23324ae1 255 */
328f5751 256 wxString GetReportName() const;
23324ae1
FM
257
258 /**
1db8f1dc
BP
259 Returns @true if the object was successfully initialized. If this
260 method returns @false the report can't be used.
23324ae1 261 */
328f5751 262 bool IsOk() const;
23324ae1
FM
263
264 /**
265 Processes this report: the base class simply notifies the user that the
266 report has been generated. This is usually not enough -- instead you
267 should override this method to do something more useful to you.
268 */
269 bool Process();
270
271 /**
1db8f1dc
BP
272 Removes the file from report: this is used by wxDebugReportPreview to
273 allow the user to remove files potentially containing private
274 information from the report.
23324ae1
FM
275 */
276 void RemoveFile(const wxString& name);
277
278 /**
1db8f1dc
BP
279 Resets the directory name we use. The object can't be used any more
280 after this as it becomes uninitialized and invalid.
23324ae1
FM
281 */
282 void Reset();
283};
284
285
e54c96f1 286
23324ae1
FM
287/**
288 @class wxDebugReportPreviewStd
289 @wxheader{debugrpt.h}
7c913512 290
1db8f1dc
BP
291 wxDebugReportPreviewStd is a standard debug report preview window. It
292 displays a dialog allowing the user to examine the contents of a debug
293 report, remove files from and add notes to it.
7c913512 294
23324ae1
FM
295 @library{wxqa}
296 @category{debugging}
297*/
298class wxDebugReportPreviewStd : public wxDebugReportPreview
299{
300public:
301 /**
302 Trivial default constructor.
303 */
304 wxDebugReportPreviewStd();
305
306 /**
1db8f1dc
BP
307 Shows the dialog.
308
309 @see wxDebugReportPreview::Show()
23324ae1 310 */
328f5751 311 bool Show(wxDebugReport& dbgrpt) const;
23324ae1
FM
312};
313
314
e54c96f1 315
23324ae1
FM
316/**
317 @class wxDebugReportUpload
318 @wxheader{debugrpt.h}
7c913512 319
1db8f1dc
BP
320 This class is used to upload a compressed file using HTTP POST request. As
321 this class derives from wxDebugReportCompress, before upload the report is
322 compressed in a single ZIP file.
7c913512 323
23324ae1
FM
324 @library{wxqa}
325 @category{debugging}
326*/
327class wxDebugReportUpload : public wxDebugReportCompress
328{
329public:
330 /**
1db8f1dc
BP
331 This class will upload the compressed file created by its base class to
332 an HTML multipart/form-data form at the specified address. The @a url
333 is the upload page address, @a input is the name of the @c "type=file"
334 control on the form used for the file name and @a action is the value
335 of the form action field. The report is uploaded using the @e curl
336 program which should be available, the @e curl parameter may be used to
337 specify the full path to it.
23324ae1
FM
338 */
339 wxDebugReportUpload(const wxString& url, const wxString& input,
1db8f1dc
BP
340 const wxString& action,
341 const wxString& curl = "curl");
23324ae1
FM
342
343 /**
1db8f1dc
BP
344 This function may be overridden in a derived class to show the output
345 from curl: this may be an HTML page or anything else that the server
346 returned. Value returned by this function becomes the return value of
347 wxDebugReport::Process().
23324ae1 348 */
1db8f1dc 349 bool OnServerReply(const wxArrayString& reply);
23324ae1 350};
e54c96f1 351