-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBreakpadHandler.cpp
203 lines (168 loc) · 5.43 KB
/
BreakpadHandler.cpp
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
/*
Copyright (c) 2009, Aleksey Palazhchenko
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following disclaimer
in the documentation and/or other materials provided with the
distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "BreakpadHandler.h"
#include <QtCore/QDir>
#include <QtCore/QProcess>
#include <QtCore/QCoreApplication>
#if defined(Q_OS_MAC)
#include "client/mac/handler/exception_handler.h"
#elif defined(Q_OS_LINUX)
#include "client/linux/handler/exception_handler.h"
#elif defined(Q_OS_WIN32)
#include "client/windows/handler/exception_handler.h"
#endif
namespace BreakpadQt
{
class GlobalHandlerPrivate
{
public:
GlobalHandlerPrivate();
~GlobalHandlerPrivate();
public:
static char reporter_[1024];
static char reporterArguments_[8*1024];
static google_breakpad::ExceptionHandler* handler_;
static ReportCrashesToSystem reportCrashesToSystem_;
};
char GlobalHandlerPrivate::reporter_[1024] = {0};
char GlobalHandlerPrivate::reporterArguments_[8*1024] = {0};
google_breakpad::ExceptionHandler* GlobalHandlerPrivate::handler_ = 0;
ReportCrashesToSystem GlobalHandlerPrivate::reportCrashesToSystem_ = ReportUnhandled;
bool launcher(const char* program, const char* const arguments[])
{
// TODO launcher
// if(!GlobalHandlerPrivate::reporter_.isEmpty()) {
// QProcess::startDetached(GlobalHandlerPrivate::reporter_); // very likely we will die there
// }
Q_UNUSED(program);
Q_UNUSED(arguments);
return false;
}
#if defined(Q_OS_WIN32)
bool DumpCallback(const wchar_t* _dump_dir,
const wchar_t* _minidump_id,
void* context,
EXCEPTION_POINTERS* exinfo,
MDRawAssertionInfo* assertion,
bool success)
#else
bool DumpCallback(const char* _dump_dir,
const char* _minidump_id,
void *context, bool success)
#endif
{
Q_UNUSED(_dump_dir);
Q_UNUSED(_minidump_id);
Q_UNUSED(context);
#if defined(Q_OS_WIN32)
Q_UNUSED(assertion);
Q_UNUSED(exinfo);
#endif
/*
NO STACK USE, NO HEAP USE THERE !!!
Creating QString's, using qDebug, etc. - everything is crash-unfriendly.
*/
launcher(GlobalHandlerPrivate::reporter_, 0);
return (GlobalHandlerPrivate::reportCrashesToSystem_ == ReportUnhandled) ? success : false;
}
GlobalHandlerPrivate::GlobalHandlerPrivate()
{
handler_ = new google_breakpad::ExceptionHandler(/*DumpPath*/ "", /*FilterCallback*/ 0, DumpCallback, /*context*/ 0, true, 0);
}
GlobalHandlerPrivate::~GlobalHandlerPrivate()
{
//delete handler_;
//handler_ = 0;
}
GlobalHandler* GlobalHandler::instance()
{
static GlobalHandler globalHandler;
return &globalHandler;
}
GlobalHandler::GlobalHandler()
{
d = new GlobalHandlerPrivate();
}
GlobalHandler::~GlobalHandler()
{
//delete d;
//d = 0;
}
void GlobalHandler::setDumpPath(const QString& path)
{
QString absPath = path;
if(!QDir::isAbsolutePath(absPath)) {
absPath = QDir::cleanPath(qApp->applicationDirPath() + QLatin1String("/") + path);
qDebug("BreakpadQt: setDumpPath: %s -> %s", qPrintable(path), qPrintable(absPath));
}
Q_ASSERT(QDir::isAbsolutePath(absPath));
QDir().mkpath(absPath);
Q_ASSERT(QDir().exists(absPath));
# if defined(Q_OS_WIN32)
d->handler_->set_dump_path(absPath.toStdWString());
# else
d->handler_->set_dump_path(absPath.toStdString());
# endif
}
void GlobalHandler::setReporter(const QString& reporter)
{
QString rep = reporter;
if(!QDir::isAbsolutePath(rep)) {
# if defined(Q_OS_MAC)
// TODO(AlekSi) What to do if we are not inside bundle?
rep = QDir::cleanPath(qApp->applicationDirPath() + QLatin1String("/../Resources/") + rep);
# elif defined(Q_OS_LINUX) || defined(Q_OS_WIN32)
// MAYBE(AlekSi) Better place for Linux? libexec? or what?
rep = QDir::cleanPath(qApp->applicationDirPath() + QLatin1String("/") + rep);
# else
What is this?!
# endif
qDebug("BreakpadQt: setReporter: %s -> %s", qPrintable(reporter), qPrintable(rep));
}
Q_ASSERT(QDir::isAbsolutePath(rep));
// add .exe for Windows if needed
# if defined(Q_OS_WIN32)
if(!QDir().exists(rep)) {
rep += QLatin1String(".exe");
}
# endif
Q_ASSERT(QDir().exists(rep));
qstrcpy(d->reporter_, QFile::encodeName(rep));
}
void GlobalHandler::setReportCrashesToSystem(ReportCrashesToSystem report)
{
d->reportCrashesToSystem_ = report;
}
bool GlobalHandler::writeMinidump()
{
bool res = d->handler_->WriteMinidump();
if (res) {
qDebug("BreakpadQt: writeMinidump() successed.");
} else {
qWarning("BreakpadQt: writeMinidump() failed.");
}
return res;
}
} // namespace