mirror of
https://github.com/vale981/tdesktop
synced 2025-03-04 17:21:40 -05:00
'TDESKTOP_DISABLE_CRASH_REPORTS' => 'DESKTOP_APP_DISABLE_..'
This commit is contained in:
parent
35befb2b3c
commit
6a668fc171
9 changed files with 27 additions and 28 deletions
|
@ -63,7 +63,7 @@ GOTO:EOF
|
||||||
)
|
)
|
||||||
|
|
||||||
echo %BUILD_VERSION% | findstr /C:"disable_crash_reports">nul && (
|
echo %BUILD_VERSION% | findstr /C:"disable_crash_reports">nul && (
|
||||||
set TDESKTOP_BUILD_DEFINES=%TDESKTOP_BUILD_DEFINES%,TDESKTOP_DISABLE_CRASH_REPORTS
|
set TDESKTOP_BUILD_DEFINES=%TDESKTOP_BUILD_DEFINES%,DESKTOP_APP_DISABLE_CRASH_REPORTS
|
||||||
)
|
)
|
||||||
|
|
||||||
echo %BUILD_VERSION% | findstr /C:"disable_network_proxy">nul && (
|
echo %BUILD_VERSION% | findstr /C:"disable_network_proxy">nul && (
|
||||||
|
|
|
@ -107,7 +107,7 @@ build() {
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ $BUILD_VERSION == *"disable_crash_reports"* ]]; then
|
if [[ $BUILD_VERSION == *"disable_crash_reports"* ]]; then
|
||||||
GYP_DEFINES+=",TDESKTOP_DISABLE_CRASH_REPORTS"
|
GYP_DEFINES+=",DESKTOP_APP_DISABLE_CRASH_REPORTS"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ $BUILD_VERSION == *"disable_network_proxy"* ]]; then
|
if [[ $BUILD_VERSION == *"disable_network_proxy"* ]]; then
|
||||||
|
|
|
@ -15,7 +15,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||||
#include <new>
|
#include <new>
|
||||||
#include <mutex>
|
#include <mutex>
|
||||||
|
|
||||||
#ifndef TDESKTOP_DISABLE_CRASH_REPORTS
|
#ifndef DESKTOP_APP_DISABLE_CRASH_REPORTS
|
||||||
|
|
||||||
// see https://blog.inventic.eu/2012/08/qt-and-google-breakpad/
|
// see https://blog.inventic.eu/2012/08/qt-and-google-breakpad/
|
||||||
#ifdef Q_OS_WIN
|
#ifdef Q_OS_WIN
|
||||||
|
@ -49,7 +49,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||||
|
|
||||||
#endif // Q_OS_LINUX64 || Q_OS_LINUX32
|
#endif // Q_OS_LINUX64 || Q_OS_LINUX32
|
||||||
|
|
||||||
#endif // !TDESKTOP_DISABLE_CRASH_REPORTS
|
#endif // !DESKTOP_APP_DISABLE_CRASH_REPORTS
|
||||||
|
|
||||||
namespace CrashReports {
|
namespace CrashReports {
|
||||||
namespace {
|
namespace {
|
||||||
|
@ -60,7 +60,7 @@ using AnnotationRefs = std::map<std::string, const QString*>;
|
||||||
Annotations ProcessAnnotations;
|
Annotations ProcessAnnotations;
|
||||||
AnnotationRefs ProcessAnnotationRefs;
|
AnnotationRefs ProcessAnnotationRefs;
|
||||||
|
|
||||||
#ifndef TDESKTOP_DISABLE_CRASH_REPORTS
|
#ifndef DESKTOP_APP_DISABLE_CRASH_REPORTS
|
||||||
|
|
||||||
QString ReportPath;
|
QString ReportPath;
|
||||||
FILE *ReportFile = nullptr;
|
FILE *ReportFile = nullptr;
|
||||||
|
@ -317,7 +317,7 @@ bool DumpCallback(const google_breakpad::MinidumpDescriptor &md, void *context,
|
||||||
}
|
}
|
||||||
#endif // !Q_OS_MAC || MAC_USE_BREAKPAD
|
#endif // !Q_OS_MAC || MAC_USE_BREAKPAD
|
||||||
|
|
||||||
#endif // !TDESKTOP_DISABLE_CRASH_REPORTS
|
#endif // !DESKTOP_APP_DISABLE_CRASH_REPORTS
|
||||||
|
|
||||||
} // namespace
|
} // namespace
|
||||||
|
|
||||||
|
@ -341,7 +341,7 @@ QString PlatformString() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void StartCatching(not_null<Core::Launcher*> launcher) {
|
void StartCatching(not_null<Core::Launcher*> launcher) {
|
||||||
#ifndef TDESKTOP_DISABLE_CRASH_REPORTS
|
#ifndef DESKTOP_APP_DISABLE_CRASH_REPORTS
|
||||||
ProcessAnnotations["Binary"] = cExeName().toUtf8().constData();
|
ProcessAnnotations["Binary"] = cExeName().toUtf8().constData();
|
||||||
ProcessAnnotations["ApiId"] = QString::number(ApiId).toUtf8().constData();
|
ProcessAnnotations["ApiId"] = QString::number(ApiId).toUtf8().constData();
|
||||||
ProcessAnnotations["Version"] = (cAlphaVersion() ? qsl("%1 alpha").arg(cAlphaVersion()) : (AppBetaVersion ? qsl("%1 beta") : qsl("%1")).arg(AppVersion)).toUtf8().constData();
|
ProcessAnnotations["Version"] = (cAlphaVersion() ? qsl("%1 alpha").arg(cAlphaVersion()) : (AppBetaVersion ? qsl("%1 beta") : qsl("%1")).arg(AppVersion)).toUtf8().constData();
|
||||||
|
@ -401,21 +401,21 @@ void StartCatching(not_null<Core::Launcher*> launcher) {
|
||||||
-1
|
-1
|
||||||
);
|
);
|
||||||
#endif // Q_OS_LINUX64 || Q_OS_LINUX32
|
#endif // Q_OS_LINUX64 || Q_OS_LINUX32
|
||||||
#endif // !TDESKTOP_DISABLE_CRASH_REPORTS
|
#endif // !DESKTOP_APP_DISABLE_CRASH_REPORTS
|
||||||
}
|
}
|
||||||
|
|
||||||
void FinishCatching() {
|
void FinishCatching() {
|
||||||
#ifndef TDESKTOP_DISABLE_CRASH_REPORTS
|
#ifndef DESKTOP_APP_DISABLE_CRASH_REPORTS
|
||||||
#if !defined Q_OS_MAC || defined MAC_USE_BREAKPAD
|
#if !defined Q_OS_MAC || defined MAC_USE_BREAKPAD
|
||||||
|
|
||||||
delete base::take(BreakpadExceptionHandler);
|
delete base::take(BreakpadExceptionHandler);
|
||||||
|
|
||||||
#endif // !Q_OS_MAC || MAC_USE_BREAKPAD
|
#endif // !Q_OS_MAC || MAC_USE_BREAKPAD
|
||||||
#endif // !TDESKTOP_DISABLE_CRASH_REPORTS
|
#endif // !DESKTOP_APP_DISABLE_CRASH_REPORTS
|
||||||
}
|
}
|
||||||
|
|
||||||
StartResult Start() {
|
StartResult Start() {
|
||||||
#ifndef TDESKTOP_DISABLE_CRASH_REPORTS
|
#ifndef DESKTOP_APP_DISABLE_CRASH_REPORTS
|
||||||
ReportPath = cWorkingDir() + qsl("tdata/working");
|
ReportPath = cWorkingDir() + qsl("tdata/working");
|
||||||
|
|
||||||
#ifdef Q_OS_WIN
|
#ifdef Q_OS_WIN
|
||||||
|
@ -441,12 +441,12 @@ StartResult Start() {
|
||||||
return lastdump;
|
return lastdump;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif // !TDESKTOP_DISABLE_CRASH_REPORTS
|
#endif // !DESKTOP_APP_DISABLE_CRASH_REPORTS
|
||||||
return Restart();
|
return Restart();
|
||||||
}
|
}
|
||||||
|
|
||||||
Status Restart() {
|
Status Restart() {
|
||||||
#ifndef TDESKTOP_DISABLE_CRASH_REPORTS
|
#ifndef DESKTOP_APP_DISABLE_CRASH_REPORTS
|
||||||
if (ReportFile) {
|
if (ReportFile) {
|
||||||
return Started;
|
return Started;
|
||||||
}
|
}
|
||||||
|
@ -495,13 +495,13 @@ Status Restart() {
|
||||||
LOG(("FATAL: Could not open '%1' for writing!").arg(ReportPath));
|
LOG(("FATAL: Could not open '%1' for writing!").arg(ReportPath));
|
||||||
|
|
||||||
return CantOpen;
|
return CantOpen;
|
||||||
#else // !TDESKTOP_DISABLE_CRASH_REPORTS
|
#else // !DESKTOP_APP_DISABLE_CRASH_REPORTS
|
||||||
return Started;
|
return Started;
|
||||||
#endif // else for !TDESKTOP_DISABLE_CRASH_REPORTS
|
#endif // else for !DESKTOP_APP_DISABLE_CRASH_REPORTS
|
||||||
}
|
}
|
||||||
|
|
||||||
void Finish() {
|
void Finish() {
|
||||||
#ifndef TDESKTOP_DISABLE_CRASH_REPORTS
|
#ifndef DESKTOP_APP_DISABLE_CRASH_REPORTS
|
||||||
FinishCatching();
|
FinishCatching();
|
||||||
|
|
||||||
if (ReportFile) {
|
if (ReportFile) {
|
||||||
|
@ -514,7 +514,7 @@ void Finish() {
|
||||||
unlink(ReportPath.toUtf8().constData());
|
unlink(ReportPath.toUtf8().constData());
|
||||||
#endif // else for Q_OS_WIN
|
#endif // else for Q_OS_WIN
|
||||||
}
|
}
|
||||||
#endif // !TDESKTOP_DISABLE_CRASH_REPORTS
|
#endif // !DESKTOP_APP_DISABLE_CRASH_REPORTS
|
||||||
}
|
}
|
||||||
|
|
||||||
void SetAnnotation(const std::string &key, const QString &value) {
|
void SetAnnotation(const std::string &key, const QString &value) {
|
||||||
|
@ -564,7 +564,7 @@ void SetAnnotationRef(const std::string &key, const QString *valuePtr) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifndef TDESKTOP_DISABLE_CRASH_REPORTS
|
#ifndef DESKTOP_APP_DISABLE_CRASH_REPORTS
|
||||||
|
|
||||||
dump::~dump() {
|
dump::~dump() {
|
||||||
if (ReportFile) {
|
if (ReportFile) {
|
||||||
|
@ -629,6 +629,6 @@ const dump &operator<<(const dump &stream, double num) {
|
||||||
return stream;
|
return stream;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif // TDESKTOP_DISABLE_CRASH_REPORTS
|
#endif // DESKTOP_APP_DISABLE_CRASH_REPORTS
|
||||||
|
|
||||||
} // namespace CrashReports
|
} // namespace CrashReports
|
||||||
|
|
|
@ -15,7 +15,7 @@ namespace CrashReports {
|
||||||
|
|
||||||
QString PlatformString();
|
QString PlatformString();
|
||||||
|
|
||||||
#ifndef TDESKTOP_DISABLE_CRASH_REPORTS
|
#ifndef DESKTOP_APP_DISABLE_CRASH_REPORTS
|
||||||
|
|
||||||
struct dump {
|
struct dump {
|
||||||
~dump();
|
~dump();
|
||||||
|
@ -28,7 +28,7 @@ const dump &operator<<(const dump &stream, unsigned long num);
|
||||||
const dump &operator<<(const dump &stream, unsigned long long num);
|
const dump &operator<<(const dump &stream, unsigned long long num);
|
||||||
const dump &operator<<(const dump &stream, double num);
|
const dump &operator<<(const dump &stream, double num);
|
||||||
|
|
||||||
#endif // TDESKTOP_DISABLE_CRASH_REPORTS
|
#endif // DESKTOP_APP_DISABLE_CRASH_REPORTS
|
||||||
|
|
||||||
enum Status {
|
enum Status {
|
||||||
CantOpen,
|
CantOpen,
|
||||||
|
|
|
@ -57,10 +57,10 @@ QRect psDesktopRect() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void psWriteDump() {
|
void psWriteDump() {
|
||||||
#ifndef TDESKTOP_DISABLE_CRASH_REPORTS
|
#ifndef DESKTOP_APP_DISABLE_CRASH_REPORTS
|
||||||
double v = objc_appkitVersion();
|
double v = objc_appkitVersion();
|
||||||
CrashReports::dump() << "OS-Version: " << v;
|
CrashReports::dump() << "OS-Version: " << v;
|
||||||
#endif // TDESKTOP_DISABLE_CRASH_REPORTS
|
#endif // DESKTOP_APP_DISABLE_CRASH_REPORTS
|
||||||
}
|
}
|
||||||
|
|
||||||
void psDeleteDir(const QString &dir) {
|
void psDeleteDir(const QString &dir) {
|
||||||
|
|
|
@ -563,7 +563,7 @@ void psSendToMenu(bool send, bool silent) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void psWriteDump() {
|
void psWriteDump() {
|
||||||
#ifndef TDESKTOP_DISABLE_CRASH_REPORTS
|
#ifndef DESKTOP_APP_DISABLE_CRASH_REPORTS
|
||||||
PROCESS_MEMORY_COUNTERS data = { 0 };
|
PROCESS_MEMORY_COUNTERS data = { 0 };
|
||||||
if (Dlls::GetProcessMemoryInfo
|
if (Dlls::GetProcessMemoryInfo
|
||||||
&& Dlls::GetProcessMemoryInfo(
|
&& Dlls::GetProcessMemoryInfo(
|
||||||
|
@ -584,7 +584,7 @@ void psWriteDump() {
|
||||||
<< (data.PagefileUsage / mb)
|
<< (data.PagefileUsage / mb)
|
||||||
<< " MB (current)\n";
|
<< " MB (current)\n";
|
||||||
}
|
}
|
||||||
#endif // TDESKTOP_DISABLE_CRASH_REPORTS
|
#endif // DESKTOP_APP_DISABLE_CRASH_REPORTS
|
||||||
}
|
}
|
||||||
|
|
||||||
bool psLaunchMaps(const Data::LocationPoint &point) {
|
bool psLaunchMaps(const Data::LocationPoint &point) {
|
||||||
|
|
|
@ -50,7 +50,6 @@
|
||||||
'ko',
|
'ko',
|
||||||
'pt-BR',
|
'pt-BR',
|
||||||
],
|
],
|
||||||
'build_defines%': '',
|
|
||||||
'list_sources_command': 'python <(submodules_loc)/lib_base/gyp/list_sources.py --input <(DEPTH)/telegram/sources.txt --replace src_loc=<(src_loc)',
|
'list_sources_command': 'python <(submodules_loc)/lib_base/gyp/list_sources.py --input <(DEPTH)/telegram/sources.txt --replace src_loc=<(src_loc)',
|
||||||
'pch_source': '<(src_loc)/stdafx.cpp',
|
'pch_source': '<(src_loc)/stdafx.cpp',
|
||||||
'pch_header': '<(src_loc)/stdafx.h',
|
'pch_header': '<(src_loc)/stdafx.h',
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit c5ecf9612d8d0ac41891a694d4c787abed66fc2b
|
Subproject commit 1b346350ead307c8d7015a9b4fd6a8af06e0efd2
|
|
@ -1 +1 @@
|
||||||
Subproject commit 33f64d6d9de493acb287154a557f25bd8eb50bb4
|
Subproject commit a94ad7f817c1e1aeb242843d90f2bac313daab7a
|
Loading…
Add table
Reference in a new issue