mirror-chatterino2/src/RunGui.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

294 lines
8.8 KiB
C++
Raw Normal View History

2018-08-02 14:23:27 +02:00
#include "RunGui.hpp"
#include "Application.hpp"
#include "common/Args.hpp"
#include "common/Modes.hpp"
2018-08-02 14:23:27 +02:00
#include "common/NetworkManager.hpp"
#include "common/QLogging.hpp"
#include "singletons/CrashHandler.hpp"
2018-08-02 14:23:27 +02:00
#include "singletons/Paths.hpp"
2019-09-22 10:53:39 +02:00
#include "singletons/Resources.hpp"
2019-09-22 15:32:36 +02:00
#include "singletons/Settings.hpp"
2018-08-02 14:23:27 +02:00
#include "singletons/Updates.hpp"
#include "util/CombinePath.hpp"
2018-08-02 14:23:27 +02:00
#include "widgets/dialogs/LastRunCrashDialog.hpp"
#include <QApplication>
#include <QFile>
#include <QPalette>
#include <QStyleFactory>
#include <Qt>
#include <QtConcurrent>
#include <csignal>
#include <tuple>
#ifdef USEWINSDK
# include "util/WindowsHelper.hpp"
#endif
2018-08-02 14:23:27 +02:00
#ifdef C_USE_BREAKPAD
2018-08-15 22:46:20 +02:00
# include <QBreakpadHandler.h>
2018-08-02 14:23:27 +02:00
#endif
#ifdef Q_OS_MAC
# include "corefoundation/CFBundle.h"
#endif
2018-08-02 14:23:27 +02:00
namespace chatterino {
namespace {
2018-08-15 22:46:20 +02:00
void installCustomPalette()
{
// borrowed from
// https://stackoverflow.com/questions/15035767/is-the-qt-5-dark-fusion-theme-available-for-windows
auto dark = qApp->palette();
dark.setColor(QPalette::Window, QColor(22, 22, 22));
dark.setColor(QPalette::WindowText, Qt::white);
dark.setColor(QPalette::Text, Qt::white);
dark.setColor(QPalette::Base, QColor("#333"));
dark.setColor(QPalette::AlternateBase, QColor("#444"));
dark.setColor(QPalette::ToolTipBase, Qt::white);
dark.setColor(QPalette::ToolTipText, Qt::white);
dark.setColor(QPalette::Dark, QColor(35, 35, 35));
dark.setColor(QPalette::Shadow, QColor(20, 20, 20));
dark.setColor(QPalette::Button, QColor(70, 70, 70));
dark.setColor(QPalette::ButtonText, Qt::white);
dark.setColor(QPalette::BrightText, Qt::red);
dark.setColor(QPalette::Link, QColor(42, 130, 218));
dark.setColor(QPalette::Highlight, QColor(42, 130, 218));
dark.setColor(QPalette::HighlightedText, Qt::white);
dark.setColor(QPalette::PlaceholderText, QColor(127, 127, 127));
2018-08-15 22:46:20 +02:00
dark.setColor(QPalette::Disabled, QPalette::Highlight,
QColor(80, 80, 80));
dark.setColor(QPalette::Disabled, QPalette::HighlightedText,
QColor(127, 127, 127));
dark.setColor(QPalette::Disabled, QPalette::ButtonText,
QColor(127, 127, 127));
dark.setColor(QPalette::Disabled, QPalette::Text,
QColor(127, 127, 127));
dark.setColor(QPalette::Disabled, QPalette::WindowText,
QColor(127, 127, 127));
2018-08-15 22:46:20 +02:00
qApp->setPalette(dark);
}
2018-08-02 14:23:27 +02:00
2018-08-15 22:46:20 +02:00
void initQt()
{
// set up the QApplication flags
QApplication::setAttribute(Qt::AA_Use96Dpi, true);
#if defined(Q_OS_WIN32) && QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
2018-08-15 22:46:20 +02:00
QApplication::setAttribute(Qt::AA_DisableHighDpiScaling, true);
2018-08-02 14:23:27 +02:00
#endif
2018-08-15 22:46:20 +02:00
QApplication::setStyle(QStyleFactory::create("Fusion"));
2018-08-02 14:23:27 +02:00
#ifndef Q_OS_MAC
QApplication::setWindowIcon(QIcon(":/icon.ico"));
#endif
#ifdef Q_OS_MAC
// On the Mac/Cocoa platform this attribute is enabled by default
// We override it to ensure shortcuts show in context menus on that platform
QApplication::setAttribute(Qt::AA_DontShowShortcutsInContextMenus,
false);
#endif
2018-08-15 22:46:20 +02:00
installCustomPalette();
}
2018-08-02 14:23:27 +02:00
void showLastCrashDialog(const Args &args)
2018-08-15 22:46:20 +02:00
{
auto *dialog = new LastRunCrashDialog(args);
// Use exec() over open() to block the app from being loaded
// and to be able to set the safe mode.
dialog->exec();
2018-08-15 22:46:20 +02:00
}
2018-08-02 14:23:27 +02:00
2018-08-15 22:46:20 +02:00
void createRunningFile(const QString &path)
{
QFile runningFile(path);
2018-08-02 14:23:27 +02:00
2018-08-15 22:46:20 +02:00
runningFile.open(QIODevice::WriteOnly | QIODevice::Truncate);
runningFile.flush();
runningFile.close();
}
2018-08-02 14:23:27 +02:00
2018-08-15 22:46:20 +02:00
void removeRunningFile(const QString &path)
{
QFile::remove(path);
}
2019-09-22 15:32:36 +02:00
std::chrono::steady_clock::time_point signalsInitTime;
[[noreturn]] void handleSignal(int signum)
{
using namespace std::chrono_literals;
if (std::chrono::steady_clock::now() - signalsInitTime > 30s &&
getIApp()->getCrashHandler()->shouldRecover())
2019-09-22 16:14:16 +02:00
{
QProcess proc;
#ifdef Q_OS_MAC
// On macOS, programs are bundled into ".app" Application bundles,
// when restarting Chatterino that bundle should be opened with the "open"
// terminal command instead of directly starting the underlying executable,
// as those are 2 different things for the OS and i.e. do not use
// the same dock icon (resulting in a second Chatterino icon on restarting)
CFURLRef appUrlRef = CFBundleCopyBundleURL(CFBundleGetMainBundle());
CFStringRef macPath =
CFURLCopyFileSystemPath(appUrlRef, kCFURLPOSIXPathStyle);
const char *pathPtr =
CFStringGetCStringPtr(macPath, CFStringGetSystemEncoding());
proc.setProgram("open");
proc.setArguments({pathPtr, "-n", "--args", "--crash-recovery"});
CFRelease(appUrlRef);
CFRelease(macPath);
#else
2019-09-22 16:14:16 +02:00
proc.setProgram(QApplication::applicationFilePath());
proc.setArguments({"--crash-recovery"});
#endif
2019-09-22 16:14:16 +02:00
proc.startDetached();
}
2019-09-22 15:32:36 +02:00
_exit(signum);
}
// We want to restart Chatterino when it crashes and the setting is set to
2019-09-22 15:32:36 +02:00
// true.
void initSignalHandler()
{
#if defined(NDEBUG) && !defined(CHATTERINO_WITH_CRASHPAD)
2019-09-22 15:32:36 +02:00
signalsInitTime = std::chrono::steady_clock::now();
signal(SIGSEGV, handleSignal);
2019-09-22 16:14:16 +02:00
#endif
2019-09-22 15:32:36 +02:00
}
// We delete cache files that haven't been modified in 14 days. This strategy may be
// improved in the future.
void clearCache(const QDir &dir)
{
size_t deletedCount = 0;
for (const auto &info : dir.entryInfoList(QDir::Files))
{
if (info.lastModified().addDays(14) < QDateTime::currentDateTime())
{
bool res = QFile(info.absoluteFilePath()).remove();
if (res)
{
++deletedCount;
}
}
}
qCDebug(chatterinoCache)
<< "Deleted" << deletedCount << "files in" << dir.path();
}
// We delete all but the five most recent crashdumps. This strategy may be
// improved in the future.
void clearCrashes(QDir dir)
{
// crashpad crashdumps are stored inside the Crashes/report directory
if (!dir.cd("reports"))
{
// no reports directory exists = no files to delete
return;
}
dir.setNameFilters({"*.dmp"});
size_t deletedCount = 0;
// TODO: use std::views::drop once supported by all compilers
size_t filesToSkip = 5;
for (auto &&info : dir.entryInfoList(QDir::Files, QDir::Time))
{
if (filesToSkip > 0)
{
filesToSkip--;
continue;
}
if (QFile(info.absoluteFilePath()).remove())
{
deletedCount++;
}
}
qCDebug(chatterinoApp) << "Deleted" << deletedCount << "crashdumps";
}
2018-08-02 14:23:27 +02:00
} // namespace
void runGui(QApplication &a, Paths &paths, Settings &settings, const Args &args)
2018-08-02 14:23:27 +02:00
{
2018-08-07 08:12:44 +02:00
initQt();
2019-09-22 10:53:39 +02:00
initResources();
2019-09-22 15:32:36 +02:00
initSignalHandler();
#ifdef Q_OS_WIN
if (args.crashRecovery)
{
showLastCrashDialog(args);
}
#endif
2019-09-22 10:53:39 +02:00
auto thread = std::thread([dir = paths.miscDirectory] {
{
auto path = combinePath(dir, "Update.exe");
if (QFile::exists(path))
{
QFile::remove(path);
}
}
{
auto path = combinePath(dir, "update.zip");
if (QFile::exists(path))
{
QFile::remove(path);
}
}
});
// Clear the cache 1 minute after start.
QTimer::singleShot(60 * 1000, [cachePath = paths.cacheDirectory(),
crashDirectory = paths.crashdumpDirectory,
avatarPath = paths.twitchProfileAvatars] {
std::ignore = QtConcurrent::run([cachePath] {
clearCache(cachePath);
});
std::ignore = QtConcurrent::run([avatarPath] {
clearCache(avatarPath);
});
std::ignore = QtConcurrent::run([crashDirectory] {
clearCrashes(crashDirectory);
});
});
2018-08-02 14:23:27 +02:00
chatterino::NetworkManager::init();
chatterino::Updates::instance().checkForUpdates();
2018-08-02 14:23:27 +02:00
Application app(settings, paths, args);
2018-08-02 14:23:27 +02:00
app.initialize(settings, paths);
app.run(a);
app.save();
if (!args.dontSaveSettings)
{
pajlada::Settings::SettingManager::gSave();
}
2018-08-02 14:23:27 +02:00
chatterino::NetworkManager::deinit();
#ifdef USEWINSDK
// flushing windows clipboard to keep copied messages
flushClipboard();
#endif
2018-08-02 14:23:27 +02:00
_exit(0);
}
} // namespace chatterino