]>
git.saurik.com Git - wxWidgets.git/blob - samples/debugrpt/debugrpt.cpp
1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: minimal sample showing wxDebugReport and related classes
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2005 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // License: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 // ----------------------------------------------------------------------------
14 // ----------------------------------------------------------------------------
18 #include "wx/datetime.h"
20 #include "wx/filename.h"
21 #include "wx/dynlib.h"
22 #include "wx/debugrpt.h"
24 #include "wx/msgdlg.h"
26 #if !wxUSE_DEBUGREPORT
27 #error "This sample can't be built without wxUSE_DEBUGREPORT"
28 #endif // wxUSE_DEBUGREPORT
30 // ----------------------------------------------------------------------------
31 // custom debug reporting class
32 // ----------------------------------------------------------------------------
34 // this is your custom debug reporter, you will probably want to parse the XML
35 // document in OnServerReply() instead of just dumping it as I do
36 class MyDebugReport
: public wxDebugReportUpload
39 MyDebugReport() : wxDebugReportUpload
41 //_T("http://iml2.hitchcock.org/intranet/crashes/wxtest"),
42 _T("http://your.url.here/"),
50 virtual bool OnServerReply(const wxArrayString
& reply
)
52 if ( reply
.IsEmpty() )
54 wxLogError(_T("Didn't receive the expected server reply."));
58 wxString
s(_T("Server replied:\n"));
60 const size_t count
= reply
.GetCount();
61 for ( size_t n
= 0; n
< count
; n
++ )
63 s
<< _T('\t') << reply
[n
] << _T('\n');
66 wxLogMessage(_T("%s"), s
.c_str());
72 // ----------------------------------------------------------------------------
74 // ----------------------------------------------------------------------------
76 // just some functions to get a slightly deeper stack trace
77 static void bar(const wxChar
*p
)
82 printf("bar: %s\n", p
);
85 void baz(const wxString
& s
)
87 printf("baz: %s\n", s
.c_str());
98 // ----------------------------------------------------------------------------
100 // ----------------------------------------------------------------------------
102 // this is a usual application class modified to work with debug reporter
104 // basically just 2 things are necessary: call wxHandleFatalExceptions() as
105 // early as possible and override OnFatalException() to create the report there
106 class MyApp
: public wxApp
109 virtual bool OnInit()
111 wxHandleFatalExceptions();
113 if ( !wxApp::OnInit() )
121 // a real program would be presumably be a bit harder to crash than
122 // just pressing "yes" in a dialog... but this is just an example
123 switch ( wxMessageBox
125 _T("Generate report for crash (or just current context)?"),
126 _T("wxDebugReport Test"),
131 // this call is going to crash
137 // example of manually generated report, this could be also
138 // used in wxApp::OnAssert()
139 GenerateReport(wxDebugReport::Context_Current
);
149 virtual void OnFatalException()
151 GenerateReport(wxDebugReport::Context_Exception
);
154 void GenerateReport(wxDebugReport::Context ctx
)
156 MyDebugReport report
;
158 // add all standard files: currently this means just a minidump and an
159 // XML file with system info and stack trace
162 // you can also call report.AddFile(...) with your own log files, files
163 // created using wxRegKey::Export() and so on, here we just add a test
164 // file containing the date of the crash
165 wxFileName
fn(report
.GetDirectory(), _T("timestamp.my"));
166 wxFFile
file(fn
.GetFullPath(), _T("w"));
167 if ( file
.IsOpened() )
169 wxDateTime dt
= wxDateTime::Now();
170 file
.Write(dt
.FormatISODate() + _T(' ') + dt
.FormatISOTime());
174 report
.AddFile(fn
.GetFullName(), _T("timestamp of this report"));
176 // calling Show() is not mandatory, but is more polite
177 if ( wxDebugReportPreviewStd().Show(report
) )
179 if ( report
.Process() )
181 // report successfully uploaded
184 //else: user cancelled the report