mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-05 10:17:30 -05:00
![João Barbosa](/assets/img/avatar_default.png)
This change forwards the shutdown request on the GUI (close the application for instace) to the node as soon as possible. This way the GUI doesn't have to wait for long operations to complete (rescan the wallet for instance), instead those operations detect the shutdown request and abort/interrupt.
599 lines
22 KiB
C++
599 lines
22 KiB
C++
// Copyright (c) 2011-2019 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#if defined(HAVE_CONFIG_H)
|
|
#include <config/bitcoin-config.h>
|
|
#endif
|
|
|
|
#include <qt/bitcoin.h>
|
|
#include <qt/bitcoingui.h>
|
|
|
|
#include <chainparams.h>
|
|
#include <qt/clientmodel.h>
|
|
#include <fs.h>
|
|
#include <qt/guiconstants.h>
|
|
#include <qt/guiutil.h>
|
|
#include <qt/intro.h>
|
|
#include <qt/networkstyle.h>
|
|
#include <qt/optionsmodel.h>
|
|
#include <qt/platformstyle.h>
|
|
#include <qt/splashscreen.h>
|
|
#include <qt/utilitydialog.h>
|
|
#include <qt/winshutdownmonitor.h>
|
|
|
|
#ifdef ENABLE_WALLET
|
|
#include <qt/paymentserver.h>
|
|
#include <qt/walletcontroller.h>
|
|
#endif
|
|
|
|
#include <interfaces/handler.h>
|
|
#include <interfaces/node.h>
|
|
#include <noui.h>
|
|
#include <rpc/server.h>
|
|
#include <ui_interface.h>
|
|
#include <uint256.h>
|
|
#include <util/system.h>
|
|
#include <warnings.h>
|
|
|
|
#include <walletinitinterface.h>
|
|
|
|
#include <memory>
|
|
#include <stdint.h>
|
|
|
|
#include <boost/thread.hpp>
|
|
|
|
#include <QApplication>
|
|
#include <QDebug>
|
|
#include <QLibraryInfo>
|
|
#include <QLocale>
|
|
#include <QMessageBox>
|
|
#include <QSettings>
|
|
#include <QThread>
|
|
#include <QTimer>
|
|
#include <QTranslator>
|
|
|
|
#if defined(QT_STATICPLUGIN)
|
|
#include <QtPlugin>
|
|
#if QT_VERSION < 0x050400
|
|
Q_IMPORT_PLUGIN(AccessibleFactory)
|
|
#endif
|
|
#if defined(QT_QPA_PLATFORM_XCB)
|
|
Q_IMPORT_PLUGIN(QXcbIntegrationPlugin);
|
|
#elif defined(QT_QPA_PLATFORM_WINDOWS)
|
|
Q_IMPORT_PLUGIN(QWindowsIntegrationPlugin);
|
|
#elif defined(QT_QPA_PLATFORM_COCOA)
|
|
Q_IMPORT_PLUGIN(QCocoaIntegrationPlugin);
|
|
#endif
|
|
#endif
|
|
|
|
// Declare meta types used for QMetaObject::invokeMethod
|
|
Q_DECLARE_METATYPE(bool*)
|
|
Q_DECLARE_METATYPE(CAmount)
|
|
Q_DECLARE_METATYPE(uint256)
|
|
|
|
static QString GetLangTerritory()
|
|
{
|
|
QSettings settings;
|
|
// Get desired locale (e.g. "de_DE")
|
|
// 1) System default language
|
|
QString lang_territory = QLocale::system().name();
|
|
// 2) Language from QSettings
|
|
QString lang_territory_qsettings = settings.value("language", "").toString();
|
|
if(!lang_territory_qsettings.isEmpty())
|
|
lang_territory = lang_territory_qsettings;
|
|
// 3) -lang command line argument
|
|
lang_territory = QString::fromStdString(gArgs.GetArg("-lang", lang_territory.toStdString()));
|
|
return lang_territory;
|
|
}
|
|
|
|
/** Set up translations */
|
|
static void initTranslations(QTranslator &qtTranslatorBase, QTranslator &qtTranslator, QTranslator &translatorBase, QTranslator &translator)
|
|
{
|
|
// Remove old translators
|
|
QApplication::removeTranslator(&qtTranslatorBase);
|
|
QApplication::removeTranslator(&qtTranslator);
|
|
QApplication::removeTranslator(&translatorBase);
|
|
QApplication::removeTranslator(&translator);
|
|
|
|
// Get desired locale (e.g. "de_DE")
|
|
// 1) System default language
|
|
QString lang_territory = GetLangTerritory();
|
|
|
|
// Convert to "de" only by truncating "_DE"
|
|
QString lang = lang_territory;
|
|
lang.truncate(lang_territory.lastIndexOf('_'));
|
|
|
|
// Load language files for configured locale:
|
|
// - First load the translator for the base language, without territory
|
|
// - Then load the more specific locale translator
|
|
|
|
// Load e.g. qt_de.qm
|
|
if (qtTranslatorBase.load("qt_" + lang, QLibraryInfo::location(QLibraryInfo::TranslationsPath)))
|
|
QApplication::installTranslator(&qtTranslatorBase);
|
|
|
|
// Load e.g. qt_de_DE.qm
|
|
if (qtTranslator.load("qt_" + lang_territory, QLibraryInfo::location(QLibraryInfo::TranslationsPath)))
|
|
QApplication::installTranslator(&qtTranslator);
|
|
|
|
// Load e.g. bitcoin_de.qm (shortcut "de" needs to be defined in bitcoin.qrc)
|
|
if (translatorBase.load(lang, ":/translations/"))
|
|
QApplication::installTranslator(&translatorBase);
|
|
|
|
// Load e.g. bitcoin_de_DE.qm (shortcut "de_DE" needs to be defined in bitcoin.qrc)
|
|
if (translator.load(lang_territory, ":/translations/"))
|
|
QApplication::installTranslator(&translator);
|
|
}
|
|
|
|
/* qDebug() message handler --> debug.log */
|
|
void DebugMessageHandler(QtMsgType type, const QMessageLogContext& context, const QString &msg)
|
|
{
|
|
Q_UNUSED(context);
|
|
if (type == QtDebugMsg) {
|
|
LogPrint(BCLog::QT, "GUI: %s\n", msg.toStdString());
|
|
} else {
|
|
LogPrintf("GUI: %s\n", msg.toStdString());
|
|
}
|
|
}
|
|
|
|
BitcoinCore::BitcoinCore(interfaces::Node& node) :
|
|
QObject(), m_node(node)
|
|
{
|
|
}
|
|
|
|
void BitcoinCore::handleRunawayException(const std::exception *e)
|
|
{
|
|
PrintExceptionContinue(e, "Runaway exception");
|
|
Q_EMIT runawayException(QString::fromStdString(m_node.getWarnings("gui")));
|
|
}
|
|
|
|
void BitcoinCore::initialize()
|
|
{
|
|
try
|
|
{
|
|
qDebug() << __func__ << ": Running initialization in thread";
|
|
bool rv = m_node.appInitMain();
|
|
Q_EMIT initializeResult(rv);
|
|
} catch (const std::exception& e) {
|
|
handleRunawayException(&e);
|
|
} catch (...) {
|
|
handleRunawayException(nullptr);
|
|
}
|
|
}
|
|
|
|
void BitcoinCore::shutdown()
|
|
{
|
|
try
|
|
{
|
|
qDebug() << __func__ << ": Running Shutdown in thread";
|
|
m_node.appShutdown();
|
|
qDebug() << __func__ << ": Shutdown finished";
|
|
Q_EMIT shutdownResult();
|
|
} catch (const std::exception& e) {
|
|
handleRunawayException(&e);
|
|
} catch (...) {
|
|
handleRunawayException(nullptr);
|
|
}
|
|
}
|
|
|
|
BitcoinApplication::BitcoinApplication(interfaces::Node& node, int &argc, char **argv):
|
|
QApplication(argc, argv),
|
|
coreThread(nullptr),
|
|
m_node(node),
|
|
optionsModel(nullptr),
|
|
clientModel(nullptr),
|
|
window(nullptr),
|
|
pollShutdownTimer(nullptr),
|
|
returnValue(0),
|
|
platformStyle(nullptr)
|
|
{
|
|
setQuitOnLastWindowClosed(false);
|
|
}
|
|
|
|
void BitcoinApplication::setupPlatformStyle()
|
|
{
|
|
// UI per-platform customization
|
|
// This must be done inside the BitcoinApplication constructor, or after it, because
|
|
// PlatformStyle::instantiate requires a QApplication
|
|
std::string platformName;
|
|
platformName = gArgs.GetArg("-uiplatform", BitcoinGUI::DEFAULT_UIPLATFORM);
|
|
platformStyle = PlatformStyle::instantiate(QString::fromStdString(platformName));
|
|
if (!platformStyle) // Fall back to "other" if specified name not found
|
|
platformStyle = PlatformStyle::instantiate("other");
|
|
assert(platformStyle);
|
|
}
|
|
|
|
BitcoinApplication::~BitcoinApplication()
|
|
{
|
|
if(coreThread)
|
|
{
|
|
qDebug() << __func__ << ": Stopping thread";
|
|
coreThread->quit();
|
|
coreThread->wait();
|
|
qDebug() << __func__ << ": Stopped thread";
|
|
}
|
|
|
|
delete window;
|
|
window = nullptr;
|
|
#ifdef ENABLE_WALLET
|
|
delete paymentServer;
|
|
paymentServer = nullptr;
|
|
delete m_wallet_controller;
|
|
m_wallet_controller = nullptr;
|
|
#endif
|
|
delete optionsModel;
|
|
optionsModel = nullptr;
|
|
delete platformStyle;
|
|
platformStyle = nullptr;
|
|
}
|
|
|
|
#ifdef ENABLE_WALLET
|
|
void BitcoinApplication::createPaymentServer()
|
|
{
|
|
paymentServer = new PaymentServer(this);
|
|
}
|
|
#endif
|
|
|
|
void BitcoinApplication::createOptionsModel(bool resetSettings)
|
|
{
|
|
optionsModel = new OptionsModel(m_node, nullptr, resetSettings);
|
|
}
|
|
|
|
void BitcoinApplication::createWindow(const NetworkStyle *networkStyle)
|
|
{
|
|
window = new BitcoinGUI(m_node, platformStyle, networkStyle, nullptr);
|
|
|
|
pollShutdownTimer = new QTimer(window);
|
|
connect(pollShutdownTimer, &QTimer::timeout, window, &BitcoinGUI::detectShutdown);
|
|
}
|
|
|
|
void BitcoinApplication::createSplashScreen(const NetworkStyle *networkStyle)
|
|
{
|
|
SplashScreen *splash = new SplashScreen(m_node, nullptr, networkStyle);
|
|
// We don't hold a direct pointer to the splash screen after creation, but the splash
|
|
// screen will take care of deleting itself when finish() happens.
|
|
splash->show();
|
|
connect(this, &BitcoinApplication::splashFinished, splash, &SplashScreen::finish);
|
|
connect(this, &BitcoinApplication::requestedShutdown, splash, &QWidget::close);
|
|
}
|
|
|
|
bool BitcoinApplication::baseInitialize()
|
|
{
|
|
return m_node.baseInitialize();
|
|
}
|
|
|
|
void BitcoinApplication::startThread()
|
|
{
|
|
if(coreThread)
|
|
return;
|
|
coreThread = new QThread(this);
|
|
BitcoinCore *executor = new BitcoinCore(m_node);
|
|
executor->moveToThread(coreThread);
|
|
|
|
/* communication to and from thread */
|
|
connect(executor, &BitcoinCore::initializeResult, this, &BitcoinApplication::initializeResult);
|
|
connect(executor, &BitcoinCore::shutdownResult, this, &BitcoinApplication::shutdownResult);
|
|
connect(executor, &BitcoinCore::runawayException, this, &BitcoinApplication::handleRunawayException);
|
|
connect(this, &BitcoinApplication::requestedInitialize, executor, &BitcoinCore::initialize);
|
|
connect(this, &BitcoinApplication::requestedShutdown, executor, &BitcoinCore::shutdown);
|
|
/* make sure executor object is deleted in its own thread */
|
|
connect(coreThread, &QThread::finished, executor, &QObject::deleteLater);
|
|
|
|
coreThread->start();
|
|
}
|
|
|
|
void BitcoinApplication::parameterSetup()
|
|
{
|
|
// Default printtoconsole to false for the GUI. GUI programs should not
|
|
// print to the console unnecessarily.
|
|
gArgs.SoftSetBoolArg("-printtoconsole", false);
|
|
|
|
m_node.initLogging();
|
|
m_node.initParameterInteraction();
|
|
}
|
|
|
|
void BitcoinApplication::requestInitialize()
|
|
{
|
|
qDebug() << __func__ << ": Requesting initialize";
|
|
startThread();
|
|
Q_EMIT requestedInitialize();
|
|
}
|
|
|
|
void BitcoinApplication::requestShutdown()
|
|
{
|
|
// Show a simple window indicating shutdown status
|
|
// Do this first as some of the steps may take some time below,
|
|
// for example the RPC console may still be executing a command.
|
|
shutdownWindow.reset(ShutdownWindow::showShutdownWindow(window));
|
|
|
|
qDebug() << __func__ << ": Requesting shutdown";
|
|
startThread();
|
|
window->hide();
|
|
// Must disconnect node signals otherwise current thread can deadlock since
|
|
// no event loop is running.
|
|
window->unsubscribeFromCoreSignals();
|
|
// Request node shutdown, which can interrupt long operations, like
|
|
// rescanning a wallet.
|
|
m_node.startShutdown();
|
|
// Unsetting the client model can cause the current thread to wait for node
|
|
// to complete an operation, like wait for a RPC execution to complate.
|
|
window->setClientModel(nullptr);
|
|
pollShutdownTimer->stop();
|
|
|
|
delete clientModel;
|
|
clientModel = nullptr;
|
|
|
|
// Request shutdown from core thread
|
|
Q_EMIT requestedShutdown();
|
|
}
|
|
|
|
void BitcoinApplication::initializeResult(bool success)
|
|
{
|
|
qDebug() << __func__ << ": Initialization result: " << success;
|
|
// Set exit result.
|
|
returnValue = success ? EXIT_SUCCESS : EXIT_FAILURE;
|
|
if(success)
|
|
{
|
|
// Log this only after AppInitMain finishes, as then logging setup is guaranteed complete
|
|
qWarning() << "Platform customization:" << platformStyle->getName();
|
|
#ifdef ENABLE_WALLET
|
|
m_wallet_controller = new WalletController(m_node, platformStyle, optionsModel, this);
|
|
#ifdef ENABLE_BIP70
|
|
PaymentServer::LoadRootCAs();
|
|
#endif
|
|
if (paymentServer) {
|
|
paymentServer->setOptionsModel(optionsModel);
|
|
#ifdef ENABLE_BIP70
|
|
connect(m_wallet_controller, &WalletController::coinsSent, paymentServer, &PaymentServer::fetchPaymentACK);
|
|
#endif
|
|
}
|
|
#endif
|
|
|
|
clientModel = new ClientModel(m_node, optionsModel);
|
|
window->setClientModel(clientModel);
|
|
#ifdef ENABLE_WALLET
|
|
window->setWalletController(m_wallet_controller);
|
|
#endif
|
|
|
|
// If -min option passed, start window minimized (iconified) or minimized to tray
|
|
if (!gArgs.GetBoolArg("-min", false)) {
|
|
window->show();
|
|
} else if (clientModel->getOptionsModel()->getMinimizeToTray() && window->hasTrayIcon()) {
|
|
// do nothing as the window is managed by the tray icon
|
|
} else {
|
|
window->showMinimized();
|
|
}
|
|
Q_EMIT splashFinished();
|
|
Q_EMIT windowShown(window);
|
|
|
|
#ifdef ENABLE_WALLET
|
|
// Now that initialization/startup is done, process any command-line
|
|
// bitcoin: URIs or payment requests:
|
|
if (paymentServer) {
|
|
connect(paymentServer, &PaymentServer::receivedPaymentRequest, window, &BitcoinGUI::handlePaymentRequest);
|
|
connect(window, &BitcoinGUI::receivedURI, paymentServer, &PaymentServer::handleURIOrFile);
|
|
connect(paymentServer, &PaymentServer::message, [this](const QString& title, const QString& message, unsigned int style) {
|
|
window->message(title, message, style);
|
|
});
|
|
QTimer::singleShot(100, paymentServer, &PaymentServer::uiReady);
|
|
}
|
|
#endif
|
|
pollShutdownTimer->start(200);
|
|
} else {
|
|
Q_EMIT splashFinished(); // Make sure splash screen doesn't stick around during shutdown
|
|
quit(); // Exit first main loop invocation
|
|
}
|
|
}
|
|
|
|
void BitcoinApplication::shutdownResult()
|
|
{
|
|
quit(); // Exit second main loop invocation after shutdown finished
|
|
}
|
|
|
|
void BitcoinApplication::handleRunawayException(const QString &message)
|
|
{
|
|
QMessageBox::critical(nullptr, "Runaway exception", BitcoinGUI::tr("A fatal error occurred. Bitcoin can no longer continue safely and will quit.") + QString("\n\n") + message);
|
|
::exit(EXIT_FAILURE);
|
|
}
|
|
|
|
WId BitcoinApplication::getMainWinId() const
|
|
{
|
|
if (!window)
|
|
return 0;
|
|
|
|
return window->winId();
|
|
}
|
|
|
|
static void SetupUIArgs()
|
|
{
|
|
#if defined(ENABLE_WALLET) && defined(ENABLE_BIP70)
|
|
gArgs.AddArg("-allowselfsignedrootcertificates", strprintf("Allow self signed root certificates (default: %u)", DEFAULT_SELFSIGNED_ROOTCERTS), true, OptionsCategory::GUI);
|
|
#endif
|
|
gArgs.AddArg("-choosedatadir", strprintf("Choose data directory on startup (default: %u)", DEFAULT_CHOOSE_DATADIR), false, OptionsCategory::GUI);
|
|
gArgs.AddArg("-lang=<lang>", "Set language, for example \"de_DE\" (default: system locale)", false, OptionsCategory::GUI);
|
|
gArgs.AddArg("-min", "Start minimized", false, OptionsCategory::GUI);
|
|
gArgs.AddArg("-resetguisettings", "Reset all settings changed in the GUI", false, OptionsCategory::GUI);
|
|
gArgs.AddArg("-rootcertificates=<file>", "Set SSL root certificates for payment request (default: -system-)", false, OptionsCategory::GUI);
|
|
gArgs.AddArg("-splash", strprintf("Show splash screen on startup (default: %u)", DEFAULT_SPLASHSCREEN), false, OptionsCategory::GUI);
|
|
gArgs.AddArg("-uiplatform", strprintf("Select platform to customize UI for (one of windows, macosx, other; default: %s)", BitcoinGUI::DEFAULT_UIPLATFORM), true, OptionsCategory::GUI);
|
|
}
|
|
|
|
#ifndef BITCOIN_QT_TEST
|
|
int GuiMain(int argc, char* argv[])
|
|
{
|
|
#ifdef WIN32
|
|
util::WinCmdLineArgs winArgs;
|
|
std::tie(argc, argv) = winArgs.get();
|
|
#endif
|
|
SetupEnvironment();
|
|
|
|
std::unique_ptr<interfaces::Node> node = interfaces::MakeNode();
|
|
|
|
// Subscribe to global signals from core
|
|
std::unique_ptr<interfaces::Handler> handler_message_box = node->handleMessageBox(noui_ThreadSafeMessageBox);
|
|
std::unique_ptr<interfaces::Handler> handler_question = node->handleQuestion(noui_ThreadSafeQuestion);
|
|
std::unique_ptr<interfaces::Handler> handler_init_message = node->handleInitMessage(noui_InitMessage);
|
|
|
|
// Do not refer to data directory yet, this can be overridden by Intro::pickDataDirectory
|
|
|
|
/// 1. Basic Qt initialization (not dependent on parameters or configuration)
|
|
Q_INIT_RESOURCE(bitcoin);
|
|
Q_INIT_RESOURCE(bitcoin_locale);
|
|
|
|
BitcoinApplication app(*node, argc, argv);
|
|
// Generate high-dpi pixmaps
|
|
QApplication::setAttribute(Qt::AA_UseHighDpiPixmaps);
|
|
#if QT_VERSION >= 0x050600
|
|
QGuiApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
|
|
#endif
|
|
#ifdef Q_OS_MAC
|
|
QApplication::setAttribute(Qt::AA_DontShowIconsInMenus);
|
|
#endif
|
|
|
|
// Register meta types used for QMetaObject::invokeMethod
|
|
qRegisterMetaType< bool* >();
|
|
// Need to pass name here as CAmount is a typedef (see http://qt-project.org/doc/qt-5/qmetatype.html#qRegisterMetaType)
|
|
// IMPORTANT if it is no longer a typedef use the normal variant above
|
|
qRegisterMetaType< CAmount >("CAmount");
|
|
qRegisterMetaType< std::function<void()> >("std::function<void()>");
|
|
|
|
/// 2. Parse command-line options. We do this after qt in order to show an error if there are problems parsing these
|
|
// Command-line options take precedence:
|
|
node->setupServerArgs();
|
|
SetupUIArgs();
|
|
std::string error;
|
|
if (!node->parseParameters(argc, argv, error)) {
|
|
QMessageBox::critical(nullptr, QObject::tr(PACKAGE_NAME),
|
|
QObject::tr("Error parsing command line arguments: %1.").arg(QString::fromStdString(error)));
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
// Now that the QApplication is setup and we have parsed our parameters, we can set the platform style
|
|
app.setupPlatformStyle();
|
|
|
|
/// 3. Application identification
|
|
// must be set before OptionsModel is initialized or translations are loaded,
|
|
// as it is used to locate QSettings
|
|
QApplication::setOrganizationName(QAPP_ORG_NAME);
|
|
QApplication::setOrganizationDomain(QAPP_ORG_DOMAIN);
|
|
QApplication::setApplicationName(QAPP_APP_NAME_DEFAULT);
|
|
|
|
/// 4. Initialization of translations, so that intro dialog is in user's language
|
|
// Now that QSettings are accessible, initialize translations
|
|
QTranslator qtTranslatorBase, qtTranslator, translatorBase, translator;
|
|
initTranslations(qtTranslatorBase, qtTranslator, translatorBase, translator);
|
|
|
|
// Show help message immediately after parsing command-line options (for "-lang") and setting locale,
|
|
// but before showing splash screen.
|
|
if (HelpRequested(gArgs) || gArgs.IsArgSet("-version")) {
|
|
HelpMessageDialog help(*node, nullptr, gArgs.IsArgSet("-version"));
|
|
help.showOrPrint();
|
|
return EXIT_SUCCESS;
|
|
}
|
|
|
|
/// 5. Now that settings and translations are available, ask user for data directory
|
|
// User language is set up: pick a data directory
|
|
if (!Intro::pickDataDirectory(*node))
|
|
return EXIT_SUCCESS;
|
|
|
|
/// 6. Determine availability of data and blocks directory and parse bitcoin.conf
|
|
/// - Do not call GetDataDir(true) before this step finishes
|
|
if (!fs::is_directory(GetDataDir(false)))
|
|
{
|
|
QMessageBox::critical(nullptr, QObject::tr(PACKAGE_NAME),
|
|
QObject::tr("Error: Specified data directory \"%1\" does not exist.").arg(QString::fromStdString(gArgs.GetArg("-datadir", ""))));
|
|
return EXIT_FAILURE;
|
|
}
|
|
if (!node->readConfigFiles(error)) {
|
|
QMessageBox::critical(nullptr, QObject::tr(PACKAGE_NAME),
|
|
QObject::tr("Error: Cannot parse configuration file: %1.").arg(QString::fromStdString(error)));
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
/// 7. Determine network (and switch to network specific options)
|
|
// - Do not call Params() before this step
|
|
// - Do this after parsing the configuration file, as the network can be switched there
|
|
// - QSettings() will use the new application name after this, resulting in network-specific settings
|
|
// - Needs to be done before createOptionsModel
|
|
|
|
// Check for -testnet or -regtest parameter (Params() calls are only valid after this clause)
|
|
try {
|
|
node->selectParams(gArgs.GetChainName());
|
|
} catch(std::exception &e) {
|
|
QMessageBox::critical(nullptr, QObject::tr(PACKAGE_NAME), QObject::tr("Error: %1").arg(e.what()));
|
|
return EXIT_FAILURE;
|
|
}
|
|
#ifdef ENABLE_WALLET
|
|
// Parse URIs on command line -- this can affect Params()
|
|
PaymentServer::ipcParseCommandLine(*node, argc, argv);
|
|
#endif
|
|
|
|
QScopedPointer<const NetworkStyle> networkStyle(NetworkStyle::instantiate(QString::fromStdString(Params().NetworkIDString())));
|
|
assert(!networkStyle.isNull());
|
|
// Allow for separate UI settings for testnets
|
|
QApplication::setApplicationName(networkStyle->getAppName());
|
|
// Re-initialize translations after changing application name (language in network-specific settings can be different)
|
|
initTranslations(qtTranslatorBase, qtTranslator, translatorBase, translator);
|
|
|
|
#ifdef ENABLE_WALLET
|
|
/// 8. URI IPC sending
|
|
// - Do this early as we don't want to bother initializing if we are just calling IPC
|
|
// - Do this *after* setting up the data directory, as the data directory hash is used in the name
|
|
// of the server.
|
|
// - Do this after creating app and setting up translations, so errors are
|
|
// translated properly.
|
|
if (PaymentServer::ipcSendCommandLine())
|
|
exit(EXIT_SUCCESS);
|
|
|
|
// Start up the payment server early, too, so impatient users that click on
|
|
// bitcoin: links repeatedly have their payment requests routed to this process:
|
|
app.createPaymentServer();
|
|
#endif
|
|
|
|
/// 9. Main GUI initialization
|
|
// Install global event filter that makes sure that long tooltips can be word-wrapped
|
|
app.installEventFilter(new GUIUtil::ToolTipToRichTextFilter(TOOLTIP_WRAP_THRESHOLD, &app));
|
|
#if defined(Q_OS_WIN)
|
|
// Install global event filter for processing Windows session related Windows messages (WM_QUERYENDSESSION and WM_ENDSESSION)
|
|
qApp->installNativeEventFilter(new WinShutdownMonitor());
|
|
#endif
|
|
// Install qDebug() message handler to route to debug.log
|
|
qInstallMessageHandler(DebugMessageHandler);
|
|
// Allow parameter interaction before we create the options model
|
|
app.parameterSetup();
|
|
// Load GUI settings from QSettings
|
|
app.createOptionsModel(gArgs.GetBoolArg("-resetguisettings", false));
|
|
|
|
if (gArgs.GetBoolArg("-splash", DEFAULT_SPLASHSCREEN) && !gArgs.GetBoolArg("-min", false))
|
|
app.createSplashScreen(networkStyle.data());
|
|
|
|
int rv = EXIT_SUCCESS;
|
|
try
|
|
{
|
|
app.createWindow(networkStyle.data());
|
|
// Perform base initialization before spinning up initialization/shutdown thread
|
|
// This is acceptable because this function only contains steps that are quick to execute,
|
|
// so the GUI thread won't be held up.
|
|
if (app.baseInitialize()) {
|
|
app.requestInitialize();
|
|
#if defined(Q_OS_WIN)
|
|
WinShutdownMonitor::registerShutdownBlockReason(QObject::tr("%1 didn't yet exit safely...").arg(QObject::tr(PACKAGE_NAME)), (HWND)app.getMainWinId());
|
|
#endif
|
|
app.exec();
|
|
app.requestShutdown();
|
|
app.exec();
|
|
rv = app.getReturnValue();
|
|
} else {
|
|
// A dialog with detailed error will have been shown by InitError()
|
|
rv = EXIT_FAILURE;
|
|
}
|
|
} catch (const std::exception& e) {
|
|
PrintExceptionContinue(&e, "Runaway exception");
|
|
app.handleRunawayException(QString::fromStdString(node->getWarnings("gui")));
|
|
} catch (...) {
|
|
PrintExceptionContinue(nullptr, "Runaway exception");
|
|
app.handleRunawayException(QString::fromStdString(node->getWarnings("gui")));
|
|
}
|
|
return rv;
|
|
}
|
|
#endif // BITCOIN_QT_TEST
|