-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathjsonhandler.cpp
97 lines (80 loc) · 2.49 KB
/
jsonhandler.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
/* - ArrowDL - Copyright (C) 2019-present Sebastien Vavassori
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this program; If not, see <http://www.gnu.org/licenses/>.
*/
#include "jsonhandler.h"
#include <Core/AbstractJob>
#include <QtCore/QDebug>
#include <QtCore/QIODevice>
#include <QtCore/QJsonArray>
#include <QtCore/QJsonDocument>
#include <QtCore/QJsonObject>
#include <QtCore/QUrl>
bool JsonHandler::canRead() const
{
return true;
}
bool JsonHandler::canWrite() const
{
return true;
}
bool JsonHandler::read(IScheduler *scheduler)
{
if (!scheduler) {
qWarning("JsonHandler::read() Can't read into null pointer");
return false;
}
QIODevice *d = device();
if (!d->isReadable()) {
return false;
}
QByteArray saveData = d->readAll();
QJsonParseError ok{};
QJsonDocument loadDoc( QJsonDocument::fromJson(saveData, &ok) );
if (ok.error != QJsonParseError::NoError) {
qCritical("Couldn't parse JSON file.");
return false;
}
QJsonObject json = loadDoc.object();
QList<AbstractJob *> jobs;
QJsonArray jobsArray = json["links"].toArray();
for (int i = 0; i < jobsArray.size(); ++i) {
QJsonObject jobObject = jobsArray[i].toObject();
QUrl url = QUrl(jobObject["url"].toString());
AbstractJob *job = scheduler->createJobFile(url);
jobs.append(job);
}
scheduler->append(jobs, false);
return true;
}
bool JsonHandler::write(const IScheduler &scheduler)
{
QIODevice *d = device();
QTextStream out(d);
if (!d->isWritable()) {
return false;
}
QJsonObject json;
QJsonArray jobsArray;
for (auto job : scheduler.jobs()) {
QUrl url = job->sourceUrl();
QJsonObject jobObject;
jobObject["url"] = url.toString();
jobsArray.append(jobObject);
}
json["links"] = jobsArray;
QJsonDocument saveDoc(json);
d->write( saveDoc.toJson() );
return true;
}