aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
blob: 0072b0408eff357d7233fad407c0e2eab666ebeb (plain)
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
/*
 * This file is part of smolbote. It's copyrighted by the contributors recorded
 * in the version control history of the file, available from its original
 * location: https://neueland.iserlohn-fortress.net/gitea/aqua/smolbote
 *
 * SPDX-License-Identifier: GPL-3.0
 */

#include "browser.h"
#include "builtins.h"
#include "commandline.h"
#include "configuration.h"
#include "session/session.h"
#include "session/sessiondialog.h"
#include "util.h"
#include "crashhandler.h"
#include "version.h"
#include <QFile>
#include <QLibraryInfo>
#include <QPluginLoader>
#include <QTranslator>
#include <memory>
#include <plugininterface.h>
#ifdef _WIN32
#include <cstdio>
#include <windows.h>
#endif

#include "config.h"
#if defined(CONFIG_USEPLASMA) && !defined(PLASMA)
#error "You have enabled Plasma integration, but Frameworks was not found."
#endif

#if defined(CONFIG_USEBREAKPAD) && !defined(BREAKPAD)
#error "You have enabled Breakpad integration, but Breakpad was not found."
#endif

int main(int argc, char **argv)
{
    // a beautiful hack to be able to write to stdout on Windows
#ifdef _WIN32
    if(AttachConsole(ATTACH_PARENT_PROCESS)) {
        freopen("CONOUT$", "w", stdout);
        freopen("CONOUT$", "w", stderr);
    }
#endif

    const std::unique_ptr<CommandLine> cmd = std::make_unique<CommandLine>(argc, argv);
    // --version
    if(cmd->exists("version")) {
        return builtins::version();
    }

    // --build
    if(cmd->exists("build")) {
        return builtins::build();
    }

    // Disable Chromium's crash handler so breakpad can capture crashes instead.
    // This has to be done before QtWebEngine gets initialized.
    const auto chromiumFlags = qgetenv("QTWEBENGINE_CHROMIUM_FLAGS");
    if(!chromiumFlags.contains("disable-in-process-stack-traces")) {
        qputenv("QTWEBENGINE_CHROMIUM_FLAGS", chromiumFlags + " --disable-in-process-stack-traces");
    }

    // create and load configuration
    std::unique_ptr<Configuration> config = std::make_unique<Configuration>(argc, argv, cmd->value<std::string>("config").value());
    QTranslator translator;
    if(config->exists("browser.translation")) {
        translator.load(config->value<QString>("browser.translation").value());
    }

    QVector<QPluginLoader *> plugins;
    CommandHash_t pluginCommands;

    // Load plugins
    for(const QString &path : Util::files(config->value<QString>("plugins.path").value())) {
        auto *loader = new QPluginLoader(path);
        const bool loaded = loader->load();
#ifdef QT_DEBUG
        qDebug("Loading plugin %s %s", qUtf8Printable(path), loaded ? "[ok]" : "[failed]");
#endif

        if(loaded) {
            plugins.append(loader);
            auto *plugin = qobject_cast<PluginInterface *>(loader->instance());
            pluginCommands.unite(plugin->commands());
        } else {
            qDebug("%s", qUtf8Printable(loader->errorString()));
            delete loader;
        }
    }

    if(cmd->exists("help")) {
        return builtins::help(argv[0], cmd->description(), config->description(), pluginCommands, &translator);
    }

    // argc, argv, allowSecondary
    Browser app(argc, argv);
    // set this, otherwise the webview becomes black when using a stylesheet
    app.setAttribute(Qt::AA_DontCreateNativeWidgetSiblings, true);
    app.installTranslator(&translator);
    if(config->exists("browser.locale")) {
        auto *locale = new QTranslator(&app);
        if(locale->load("qt_" + config->value<QString>("browser.locale").value(), QLibraryInfo::location(QLibraryInfo::TranslationsPath)))
            app.installTranslator(locale);
        else
            delete locale;
    }

    if(auto iconTheme = config->value<QString>("browser.iconTheme")) {
        QIcon::setThemeName(iconTheme.value());
    }

#ifdef CONFIG_USEBREAKPAD
    const std::string crashpath = config->value<std::string>("browser.crash.path").value_or("/tmp");
    assert(!crashpath.empty());

    CrashHandler::BreakpadContext ctx;
    google_breakpad::MinidumpDescriptor descriptor(crashpath.c_str());

    const auto crashHandler = config->value<std::string>("browser.crash.handler");
    if(crashHandler) {
        const int length = crashHandler.value().length() + 1;
        ctx.handler = new char[length];
        crashHandler.value().copy(ctx.handler, length - 1);
        ctx.handler[length - 1] = '\0';
    }

    // minidump descriptor, filter callback, minidump callback, callback_context, install handler, server_fd
    google_breakpad::ExceptionHandler eh(descriptor, nullptr, CrashHandler::dumpCallback, &ctx, true, -1);

#ifdef QT_DEBUG
    qDebug("Installed breakpad exception handler (path=%s)", crashpath.c_str());
#endif
#endif // CONFIG_USEBREAKPAD

    const bool isStandalone = cmd->exists("no-remote");
    const auto profile = config->value<QString>("profile.default");

    app.setConfiguration(config); // app takes ownership of config
    app.setup(plugins);

    QStringList urls;
    if(const auto arguments = cmd->value<std::vector<std::string>>("args")) {
        for(const auto &u : arguments.value()) {
            if(pluginCommands.contains(QString::fromStdString(u))) {
                return pluginCommands.value(QString::fromStdString(u))();
            } else {
                urls.append(QString::fromStdString(u));
            }
        }
    }
    if(urls.isEmpty())
        urls.append(QString());

    // if app is primary, create new sessions from received messages
    if(app.isPrimary() && !isStandalone) {
        QObject::connect(&app, &Browser::receivedMessage, &app, [](quint32 instanceId, QByteArray message) {
            Q_UNUSED(instanceId);
            auto doc = QJsonDocument::fromJson(message);
            Session::restoreSession(doc.object());
        });
    }

    {
        QJsonObject sessionData;

        if(cmd->exists("pick-session")) {
            auto *dlg = new SessionDialog();
            if(const auto pick = dlg->pickSession())
                sessionData = pick.value();
            else
                sessionData = Session::fromCommandLine(profile.value(), urls);
        } else if(const auto session = cmd->value<QString>("session")) {
            QFile sessionJson(session.value());
            if(sessionJson.open(QIODevice::ReadOnly | QIODevice::Text)) {
                sessionData = QJsonDocument::fromJson(sessionJson.readAll()).object();
                sessionJson.close();
            }
        } else {
            sessionData = Session::fromCommandLine(profile.value(), urls);
        }

        if(app.isPrimary() || isStandalone) {
            Session::restoreSession(sessionData);
        } else {
            // app is secondary and not standalone
            return app.sendMessage(QJsonDocument(sessionData).toJson());
        }
    }

    return app.exec();
}