aboutsummaryrefslogtreecommitdiff
path: root/src/commandline.cpp
blob: 5b48ac78d689fe0577705c6ab843ebe3c75a3bb9 (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
/*
 * 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 "commandline.h"
#include "version.h"
#include <configuration.h>
#include <iomanip>
#include <iostream>

inline std::string optionText(const QStringList &opts)
{
    std::string r;
    for(auto i = opts.constBegin(); i != opts.constEnd(); ) {
        if(i->length() == 1) {
            r.append("-" + i->toStdString());
        } else {
            r.append("--" + i->toStdString());
        }

        ++i;
        if(i != opts.constEnd()) {
            r.append(", ");
        }
    }
    return r;
}

inline void printOption(const QCommandLineOption &option)
{
    std::cout << "  "
              << std::setw(18) << std::left << optionText(option.names())
              << std::setw(32) << std::left << option.description().toStdString()
              << std::setw(18) << std::left << option.defaultValues().join(", ").toStdString()
              << std::endl;
}

constexpr const char *socketPath()
{
#if defined(Q_OS_UNIX)
    // could be a path such as "/tmp/foo"
    return "/tmp/smolbote.socket";
#elif defined(Q_OS_WIN32)
    // could be a pipe path such as "\\.\pipe\foo"
    return = "\\\\.\\pipe\\smolbote_socket";
#endif
}

CommandLine::CommandLine()
    : QCommandLineParser()
    , helpOption(addHelpOption())
    , versionOption(addVersionOption())
    , buildOption("build", "Displays build information.")
    , configOption({ "c", "config" }, "Sets configuration file.", "path", Configuration::defaultUserConfigLocation())
    , profileOption({ "p", "profile" }, "Sets default profile.", "profile", "")
    , socketOption("socket", "Sets local socket.", "name", socketPath())
    , newWindowOption("in-new-window", "Open URL in new window")
{
    setApplicationDescription("yet another no-frills browser");

    addOption(buildOption);
    addOption(configOption);
    addOption(profileOption);
    addOption(socketOption);
    addOption(newWindowOption);

    addPositionalArgument("URL", "URL(s) to open");
}

void CommandLine::parseCommandLine(const QCoreApplication &app)
{
    QCommandLineParser::parse(app.arguments());

    application = const_cast<QCoreApplication *>(&app);

    if(isSet(helpOption)) {
        printHelp();
    }

    if(isSet(versionOption)) {
        printVersion();
    }

    if(isSet(buildOption)) {
        printBuild();
    }
}

void CommandLine::printHelp(int exitCode)
{
    std::cout << "Usage: " << application->arguments().at(0).toStdString() << " [options] URL" << std::endl;
    std::cout << application->applicationName().toStdString() << " " << SMOLBOTE_DESCRIBE << ": "
              << applicationDescription().toStdString() << std::endl
              << std::endl;

    std::cout << "Options: " << std::endl;
    printOption(helpOption);
    printOption(versionOption);
    printOption(buildOption);
    printOption(configOption);
    printOption(profileOption);
    printOption(socketOption);
    printOption(newWindowOption);
    std::cout << std::endl;

    std::cout << "You can also overwrite configuration options using the syntax: " << std::endl
              << "--browser.setting.path=value" << std::endl
              << "More information on available keys can be found on the manual page." << std::endl
              << std::endl;

    std::cout << "Arguments: " << std::endl;
    std::cout << "- "
              << std::setw(20) << std::left << "URL"
              << std::setw(40) << std::left << "URL(s) to open"
              << std::endl
              << std::endl;

    exit(exitCode);
}

void CommandLine::printVersion(int exitCode)
{
    std::cout << application->applicationName().toStdString() << " " << SMOLBOTE_DESCRIBE << std::endl;
    exit(exitCode);
}

void CommandLine::printBuild(int exitCode)
{
    std::cout << SMOLBOTE_BRANCH << ":" << SMOLBOTE_COMMIT << std::endl;
    exit(exitCode);
}