File: main.cpp

package info (click to toggle)
plasma-mobile 6.5.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 20,412 kB
  • sloc: xml: 38,474; cpp: 18,529; javascript: 139; sh: 82; makefile: 5
file content (78 lines) | stat: -rw-r--r-- 2,528 bytes parent folder | download | duplicates (2)
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
// SPDX-FileCopyrightText: 2024 Devin Lin <devin@kde.org>
// SPDX-License-Identifier: GPL-2.0-or-later

#include <QCommandLineParser>
#include <QCoreApplication>
#include <QIcon>
#include <QQmlApplicationEngine>
#include <QQmlContext>
#include <QString>

#include <KAboutData>

#include "tests.h"
#include "utils.h"
#include "version.h"

using namespace Qt::Literals::StringLiterals;

std::unique_ptr<QCommandLineParser> createParser()
{
    auto parser = std::make_unique<QCommandLineParser>();
    parser->addOption(QCommandLineOption(u"list"_s, u"Lists the possible test notifications that can be set."_s));
    parser->addVersionOption();
    parser->addHelpOption();
    parser->addPositionalArgument("test", "The test notification to send.");
    return parser;
}

int main(int argc, char *argv[])
{
    QCoreApplication app(argc, argv);

    auto parser = createParser();
    parser->process(app);

    QCoreApplication::setApplicationName(u"plasma-mobile-notificationtest"_s);
    QCoreApplication::setApplicationVersion(QStringLiteral(PLASMA_MOBILE_VERSION_STRING));
    QCoreApplication::setOrganizationDomain(u"kde.org"_s);

    std::vector<std::unique_ptr<NotificationTest>> notificationTests;
    notificationTests.push_back(std::make_unique<BasicNotificationTest>());
    notificationTests.push_back(std::make_unique<UrlNotificationTest>());
    notificationTests.push_back(std::make_unique<ReplyNotificationTest>());
    notificationTests.push_back(std::make_unique<LowUrgencyNotificationTest>());
    notificationTests.push_back(std::make_unique<HighUrgencyNotificationTest>());
    notificationTests.push_back(std::make_unique<CriticalUrgencyNotificationTest>());
    notificationTests.push_back(std::make_unique<JobNotificationTest>());

    if (parser->isSet(u"list"_s)) {
        for (auto &notification : notificationTests) {
            qInfo() << notification->name();
        }
        return 0;
    } else if (parser->positionalArguments().size() == 0) {
        parser->showHelp();
        return 0;
    }

    const auto args = parser->positionalArguments();
    const QString name = args[0];

    bool found = false;
    for (auto &notification : notificationTests) {
        if (notification->name() == name) {
            qInfo() << "Sending notification" << notification->name();
            notification->sendNotification(app);
            found = true;
            break;
        }
    }

    if (!found) {
        qInfo() << "Test not found.";
        return 0;
    }

    return app.exec();
}