aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
blob: bfe4ecd09a5992b7ad9ae74e79dfb5e8d2a97692 (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
/*
 * 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/smolbote.hg
 *
 * SPDX-License-Identifier: GPL-3.0
 */

#include "browser.h"
#include "mainwindow/mainwindow.h"
#include "version.h"
#include "webengine/webprofile.h"
#include <configuration/configuration.h>
#include <memory>

int main(int argc, char **argv)
{
    Browser app(argc, argv);

    // create and load configuration
    std::shared_ptr<Configuration> config = std::make_shared<Configuration>();
    if(!config->parseCommandLine(argc, argv)) {
        qWarning("Check --help for usage.");
        return -1;
    }
    if(!config->parseConfigFile(config->value<std::string>("config").value())) {
        qWarning("Error parsing config file.");
    }

    app.setConfiguration(config);

    // set up socket
    bool isSingleInstance = app.bindLocalSocket(QString::fromStdString(config->value<std::string>("socket").value()));
#ifdef QT_DEBUG
    qDebug("bindLocalSocket(%s) = %s", qUtf8Printable(QString::fromStdString(config->value<std::string>("socket").value())), isSingleInstance ? "true" : "false");
#endif

    // if we are the only instance, set up the browser
    if(isSingleInstance) {
        app.setup(QString::fromStdString(config->value<std::string>("profile.default").value()));
        QObject::connect(&app, &Browser::messageAvailable, &app, &Browser::createSession);
    }

    app.sendMessage("", false, config->positionalArguments());

    if(isSingleInstance)
        return app.exec();
    else
        return 0;
}