2020-10-07 10:36:04 +00:00
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
2020-12-26 19:56:06 +00:00
|
|
|
// Copyright (c) 2020-2021, The Monero Project.
|
2020-10-07 10:36:04 +00:00
|
|
|
|
|
|
|
#include <QResource>
|
|
|
|
#include <QApplication>
|
|
|
|
#include <QtCore>
|
|
|
|
#include <QtGui>
|
|
|
|
|
|
|
|
#include "config-feather.h"
|
|
|
|
#include "mainwindow.h"
|
|
|
|
#include "cli.h"
|
|
|
|
|
2020-12-08 16:02:11 +00:00
|
|
|
#if defined(Q_OS_WIN)
|
|
|
|
#include <windows.h>
|
|
|
|
#endif
|
|
|
|
|
2020-10-09 00:37:05 +00:00
|
|
|
#if defined(Q_OS_LINUX) && defined(STATIC)
|
2020-10-07 10:36:04 +00:00
|
|
|
Q_IMPORT_PLUGIN(QXcbIntegrationPlugin)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
Q_INIT_RESOURCE(assets);
|
|
|
|
|
2020-12-11 13:36:08 +00:00
|
|
|
#if defined(Q_OS_MAC) && defined(HAS_TOR_BIN)
|
2020-10-17 21:14:56 +00:00
|
|
|
Q_INIT_RESOURCE(assets_tor_macos);
|
2020-12-11 13:36:08 +00:00
|
|
|
#elif defined(HAS_TOR_BIN)
|
2020-10-17 21:14:56 +00:00
|
|
|
Q_INIT_RESOURCE(assets_tor);
|
|
|
|
#endif
|
|
|
|
|
2020-12-08 16:02:11 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
if (AttachConsole(ATTACH_PARENT_PROCESS)) {
|
|
|
|
freopen("CONOUT$", "w", stdout);
|
|
|
|
freopen("CONOUT$", "w", stderr);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2020-10-07 10:36:04 +00:00
|
|
|
QStringList argv_;
|
|
|
|
for(int i = 0; i != argc; i++){
|
|
|
|
argv_ << QString::fromStdString(argv[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
QCommandLineParser parser;
|
|
|
|
parser.setApplicationDescription("feather");
|
|
|
|
parser.addHelpOption();
|
|
|
|
parser.addVersionOption();
|
|
|
|
|
|
|
|
QCommandLineOption useLocalTorOption(QStringList() << "use-local-tor", "Use system wide installed Tor instead of the bundled.");
|
|
|
|
parser.addOption(useLocalTorOption);
|
|
|
|
|
|
|
|
QCommandLineOption torPortOption(QStringList() << "tor-port", "Port of running Tor instance.", "torPort");
|
|
|
|
parser.addOption(torPortOption);
|
|
|
|
|
|
|
|
QCommandLineOption debugModeOption(QStringList() << "debug", "Run program in debug mode.");
|
|
|
|
parser.addOption(debugModeOption);
|
|
|
|
|
|
|
|
QCommandLineOption quietModeOption(QStringList() << "quiet", "Limit console output");
|
|
|
|
parser.addOption(quietModeOption);
|
|
|
|
|
|
|
|
QCommandLineOption stagenetOption(QStringList() << "stagenet", "Stagenet is for development purposes only.");
|
|
|
|
parser.addOption(stagenetOption);
|
|
|
|
|
|
|
|
QCommandLineOption testnetOption(QStringList() << "testnet", "Testnet is for development purposes only.");
|
|
|
|
parser.addOption(testnetOption);
|
|
|
|
|
|
|
|
QCommandLineOption walletPathOption(QStringList() << "wallet-file", "Path to wallet keys file.", "file");
|
|
|
|
parser.addOption(walletPathOption);
|
|
|
|
|
|
|
|
QCommandLineOption walletPasswordOption(QStringList() << "password", "Wallet password (escape/quote as needed)", "password");
|
|
|
|
parser.addOption(walletPasswordOption);
|
|
|
|
|
|
|
|
QCommandLineOption daemonAddressOption(QStringList() << "daemon-address", "Daemon address (IPv4:port)", "daemonAddress");
|
|
|
|
parser.addOption(daemonAddressOption);
|
|
|
|
|
|
|
|
QCommandLineOption exportContactsOption(QStringList() << "export-contacts", "Output wallet contacts as CSV to specified path.", "file");
|
|
|
|
parser.addOption(exportContactsOption);
|
|
|
|
|
|
|
|
QCommandLineOption exportTxHistoryOption(QStringList() << "export-txhistory", "Output wallet transaction history as CSV to specified path.", "file");
|
|
|
|
parser.addOption(exportTxHistoryOption);
|
|
|
|
|
|
|
|
auto parsed = parser.parse(argv_);
|
|
|
|
if(!parsed) {
|
|
|
|
qCritical() << parser.errorText();
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
const QStringList args = parser.positionalArguments();
|
|
|
|
bool debugMode = parser.isSet(debugModeOption);
|
|
|
|
bool localTor = parser.isSet(useLocalTorOption);
|
|
|
|
bool stagenet = parser.isSet(stagenetOption);
|
|
|
|
bool testnet = parser.isSet(testnetOption);
|
|
|
|
bool quiet = parser.isSet(quietModeOption);
|
|
|
|
bool exportContacts = parser.isSet(exportContactsOption);
|
|
|
|
bool exportTxHistory = parser.isSet(exportTxHistoryOption);
|
|
|
|
bool cliMode = exportContacts || exportTxHistory;
|
|
|
|
|
|
|
|
if(cliMode) {
|
|
|
|
QCoreApplication cli_app(argc, argv);
|
|
|
|
QCoreApplication::setApplicationName("feather");
|
|
|
|
QCoreApplication::setOrganizationDomain("featherwallet.org");
|
|
|
|
QCoreApplication::setOrganizationName("featherwallet.org");
|
|
|
|
|
|
|
|
auto *ctx = new AppContext(&parser);
|
|
|
|
ctx->applicationPath = QString(argv[0]);
|
|
|
|
ctx->isDebug = debugMode;
|
|
|
|
|
|
|
|
auto *cli = new CLI(ctx, &cli_app);
|
|
|
|
QObject::connect(cli, &CLI::closeApplication, &cli_app, &QCoreApplication::quit);
|
|
|
|
|
|
|
|
if(exportContacts) {
|
|
|
|
if(!quiet)
|
|
|
|
qInfo() << "CLI mode: Address book export";
|
|
|
|
cli->mode = CLIMode::CLIModeExportContacts;
|
|
|
|
QTimer::singleShot(0, cli, &CLI::run);
|
|
|
|
} else if(exportTxHistory) {
|
|
|
|
if(!quiet)
|
|
|
|
qInfo() << "CLI mode: Transaction history export";
|
|
|
|
cli->mode = CLIMode::CLIModeExportTxHistory;
|
|
|
|
QTimer::singleShot(0, cli, &CLI::run);
|
|
|
|
}
|
|
|
|
|
|
|
|
return QCoreApplication::exec();
|
|
|
|
}
|
|
|
|
|
|
|
|
QApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
|
2020-10-11 18:02:23 +00:00
|
|
|
QApplication::setAttribute(Qt::AA_DisableWindowContextHelpButton);
|
2020-10-07 10:36:04 +00:00
|
|
|
QApplication::setDesktopSettingsAware(true); // use system font
|
|
|
|
QApplication::setApplicationVersion(FEATHER_VERSION);
|
|
|
|
|
|
|
|
QApplication app(argc, argv);
|
|
|
|
|
|
|
|
QApplication::setApplicationName("feather");
|
|
|
|
QApplication::setOrganizationDomain("featherwallet.org");
|
|
|
|
QApplication::setOrganizationName("featherwallet.org");
|
|
|
|
|
|
|
|
parser.process(app); // Parse again for --help and --version
|
|
|
|
|
|
|
|
if(!quiet) {
|
|
|
|
QMap<QString, QString> info;
|
|
|
|
info["Qt"] = QT_VERSION_STR;
|
|
|
|
info["Feather"] = FEATHER_VERSION;
|
|
|
|
if (stagenet) info["Mode"] = "Stagenet";
|
|
|
|
else if (testnet) info["Mode"] = "Testnet";
|
|
|
|
else info["Mode"] = "Mainnet";
|
|
|
|
info["SSL"] = QSslSocket::sslLibraryVersionString();
|
|
|
|
info["SSL build"] = QSslSocket::sslLibraryBuildVersionString();
|
|
|
|
for (const auto &k: info.keys())
|
|
|
|
qWarning().nospace().noquote() << QString("%1: %2").arg(k).arg(info[k]);
|
|
|
|
}
|
|
|
|
|
|
|
|
auto *ctx = new AppContext(&parser);
|
|
|
|
ctx->applicationPath = QString(argv[0]);
|
|
|
|
ctx->isDebug = debugMode;
|
|
|
|
|
|
|
|
#if defined(Q_OS_MAC)
|
|
|
|
// For some odd reason, if we don't do this, QPushButton's
|
|
|
|
// need to be clicked *twice* in order to fire ?!
|
|
|
|
QFont fontDef = QApplication::font();
|
|
|
|
fontDef.setPointSize(fontDef.pointSize() + 1);
|
|
|
|
QApplication::setFont(fontDef);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
qInstallMessageHandler(Utils::applicationLogHandler);
|
|
|
|
|
|
|
|
auto *mainWindow = new MainWindow(ctx);
|
|
|
|
return QApplication::exec();
|
|
|
|
}
|