summaryrefslogtreecommitdiffstats
path: root/qdbd/main.cpp
blob: f7b289ca07ee80fc8dbf5e168877d3b134558237 (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
/******************************************************************************
**
** Copyright (C) 2016 The Qt Company Ltd.
** Contact: http://www.qt.io/licensing/
**
** This file is part of the Qt Debug Bridge.
**
** $QT_BEGIN_LICENSE:COMM$
**
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see http://www.qt.io/terms-conditions. For further
** information use the contact form at http://www.qt.io/contact-us.
**
** $QT_END_LICENSE$
**
******************************************************************************/
#include "configuration.h"
#include "libqdb/protocol/qdbtransport.h"
#include "usb-gadget/usbgadget.h"
#include "server.h"

#include <QtCore/qcommandlineparser.h>
#include <QtCore/qcoreapplication.h>
#include <QtCore/qdebug.h>
#include <QtCore/qloggingcategory.h>

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

    QCommandLineParser parser;
    parser.addHelpOption();
    parser.addOption({"debug-transport", "Show each transmitted message"});
    parser.addOption({"debug-connection", "Show enqueued messages"});
    parser.addOption({"ffs-dir", "Directory to the USB Function File System endpoints to use", "directory"});
    parser.addOption({"gadget-configfs-dir",
                      "Location of the configfs gadget configuration (including the gadget name)",
                      "directory"});
    parser.addOption({"rndis-function-name", "Name of the Function File System function that provides RNDIS", "name"});
    parser.process(app);

    if (parser.isSet("ffs-dir"))
        Configuration::setFunctionFsDir(parser.value("ffs-dir"));
    if (parser.isSet("gadget-configfs-dir"))
        Configuration::setGadgetConfigFsDir(parser.value("gadget-configfs-dir"));
    if (parser.isSet("rndis-function-name"))
        Configuration::setRndisFunctionName(parser.value("rndis-function-name"));

    QString filterRules;
    if (!parser.isSet("debug-transport")) {
        filterRules.append("transport=false\n");
    }
    if (!parser.isSet("debug-connection")) {
        filterRules.append("connection=false\n");
    }
    QLoggingCategory::setFilterRules(filterRules);

    Server server{new QdbTransport{new UsbGadget{}}};
    if (server.initialize()) {
        qDebug() << "initialized server";
    } else {
        qDebug() << "could not initialize server";
        return 1;
    }

    return app.exec();
}