forked from raspberrypi/rpi-imager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
142 lines (129 loc) · 4.71 KB
/
main.cpp
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
/*
* SPDX-License-Identifier: Apache-2.0
* Copyright (C) 2020 Raspberry Pi (Trading) Limited
*/
#include <QFileInfo>
#include <QGuiApplication>
#include <QQmlApplicationEngine>
#include <QQmlContext>
#include <QIcon>
#include <QDebug>
#include <QTextStream>
#include "imagewriter.h"
#include "drivelistmodel.h"
#include "networkaccessmanagerfactory.h"
#include <QtWidgets/QApplication>
#include <QMessageLogContext>
#include <QQuickWindow>
static QTextStream cerr(stderr);
#ifdef Q_OS_WIN
static void consoleMsgHandler(QtMsgType, const QMessageLogContext &, const QString &str) {
cerr << str << endl;
}
#endif
int main(int argc, char *argv[])
{
QApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
#ifdef Q_OS_WIN
// prefer ANGLE (DirectX) over desktop OpenGL
QApplication::setAttribute(Qt::AA_UseOpenGLES);
#endif
QApplication app(argc, argv);
app.setOrganizationName("Raspberry Pi");
app.setOrganizationDomain("raspberrypi.org");
app.setApplicationName("Imager");
app.setWindowIcon(QIcon(":/icons/rpi-imager.ico"));
ImageWriter imageWriter;
NetworkAccessManagerFactory namf;
QQmlApplicationEngine engine;
/* Parse commandline arguments (if any) */
QString customRepo;
QUrl url;
QStringList args = app.arguments();
for (int i=1; i < args.size(); i++)
{
if (!args[i].startsWith("-") && url.isEmpty())
{
if (args[i].startsWith("http:", Qt::CaseInsensitive) || args[i].startsWith("https:", Qt::CaseInsensitive))
{
url = args[i];
}
else
{
QFileInfo fi(args[i]);
if (fi.isFile())
{
url = QUrl::fromLocalFile(args[i]);
}
else
{
cerr << "Argument ignored because it is not a regular file: " << args[i] << endl;;
}
}
}
else if (args[i] == "--repo")
{
if (args.size()-i < 2 || args[i+1].startsWith("-"))
{
cerr << "Missing URL after --repo" << endl;
return 1;
}
customRepo = args[++i];
if (customRepo.startsWith("http://") || customRepo.startsWith("https://"))
{
imageWriter.setCustomOsListUrl(customRepo);
}
else
{
QFileInfo fi(customRepo);
if (!fi.isFile())
{
cerr << "Custom repository file does not exist or is not a regular file: " << customRepo << endl;
return 1;
}
imageWriter.setCustomOsListUrl(QUrl::fromLocalFile(customRepo));
}
}
else if (args[i] == "--debug")
{
#ifdef Q_OS_WIN
/* Allocate console for debug messages on Windows */
if (::AttachConsole(ATTACH_PARENT_PROCESS) || ::AllocConsole())
{
freopen("CONOUT$", "w", stdout);
freopen("CONOUT$", "w", stderr);
std::ios::sync_with_stdio();
qInstallMessageHandler(consoleMsgHandler);
}
#endif
}
else if (args[i] == "--help")
{
cerr << args[0] << " [--debug] [--repo <repository URL>] [<image file to write>]" << endl;
return 0;
}
else
{
cerr << "Ignoring unknown argument: " << args[i] << endl;
}
}
if (!url.isEmpty())
imageWriter.setSrc(url);
imageWriter.setEngine(&engine);
engine.setNetworkAccessManagerFactory(&namf);
engine.rootContext()->setContextProperty("imageWriter", &imageWriter);
engine.rootContext()->setContextProperty("driveListModel", imageWriter.getDriveList());
engine.load(QUrl(QStringLiteral("qrc:/main.qml")));
if (engine.rootObjects().isEmpty())
return -1;
QObject *qmlwindow = engine.rootObjects().value(0);
qmlwindow->connect(&imageWriter, SIGNAL(downloadProgress(QVariant,QVariant)), qmlwindow, SLOT(onDownloadProgress(QVariant,QVariant)));
qmlwindow->connect(&imageWriter, SIGNAL(verifyProgress(QVariant,QVariant)), qmlwindow, SLOT(onVerifyProgress(QVariant,QVariant)));
qmlwindow->connect(&imageWriter, SIGNAL(error(QVariant)), qmlwindow, SLOT(onError(QVariant)));
qmlwindow->connect(&imageWriter, SIGNAL(success()), qmlwindow, SLOT(onSuccess()));
qmlwindow->connect(&imageWriter, SIGNAL(fileSelected(QVariant)), qmlwindow, SLOT(onFileSelected(QVariant)));
qmlwindow->connect(&imageWriter, SIGNAL(cancelled()), qmlwindow, SLOT(onCancelled()));
qmlwindow->connect(&imageWriter, SIGNAL(finalizing()), qmlwindow, SLOT(onFinalizing()));
int rc = app.exec();
return rc;
}