2023-04-19 01:10:06 +00:00
|
|
|
#include "download.h"
|
2023-05-03 00:31:17 +00:00
|
|
|
#include "network.h"
|
2023-06-22 19:44:49 +00:00
|
|
|
#include "modellist.h"
|
2023-06-28 20:05:35 +00:00
|
|
|
#include "mysettings.h"
|
2023-04-19 01:10:06 +00:00
|
|
|
|
|
|
|
#include <QCoreApplication>
|
|
|
|
#include <QNetworkRequest>
|
|
|
|
#include <QNetworkAccessManager>
|
|
|
|
#include <QJsonDocument>
|
|
|
|
#include <QJsonObject>
|
|
|
|
#include <QJsonArray>
|
|
|
|
#include <QUrl>
|
|
|
|
#include <QDir>
|
2023-04-23 15:28:17 +00:00
|
|
|
#include <QStandardPaths>
|
2023-04-27 17:52:24 +00:00
|
|
|
#include <QSettings>
|
2023-04-19 01:10:06 +00:00
|
|
|
|
|
|
|
class MyDownload: public Download { };
|
|
|
|
Q_GLOBAL_STATIC(MyDownload, downloadInstance)
|
|
|
|
Download *Download::globalInstance()
|
|
|
|
{
|
|
|
|
return downloadInstance();
|
|
|
|
}
|
|
|
|
|
|
|
|
Download::Download()
|
|
|
|
: QObject(nullptr)
|
2023-04-23 23:43:20 +00:00
|
|
|
, m_hashAndSave(new HashAndSaveFile)
|
2023-04-19 01:10:06 +00:00
|
|
|
{
|
2023-04-23 23:43:20 +00:00
|
|
|
connect(this, &Download::requestHashAndSave, m_hashAndSave,
|
|
|
|
&HashAndSaveFile::hashAndSave, Qt::QueuedConnection);
|
|
|
|
connect(m_hashAndSave, &HashAndSaveFile::hashAndSaveFinished, this,
|
|
|
|
&Download::handleHashAndSaveFinished, Qt::QueuedConnection);
|
2023-04-24 21:52:19 +00:00
|
|
|
connect(&m_networkManager, &QNetworkAccessManager::sslErrors, this,
|
|
|
|
&Download::handleSslErrors);
|
2023-04-28 14:54:05 +00:00
|
|
|
updateReleaseNotes();
|
2023-05-02 22:24:16 +00:00
|
|
|
m_startTime = QDateTime::currentDateTime();
|
2023-04-19 01:10:06 +00:00
|
|
|
}
|
|
|
|
|
2023-06-28 15:13:33 +00:00
|
|
|
static bool operator==(const ReleaseInfo& lhs, const ReleaseInfo& rhs) {
|
2023-04-28 14:54:05 +00:00
|
|
|
return lhs.version == rhs.version;
|
|
|
|
}
|
|
|
|
|
2023-06-28 15:13:33 +00:00
|
|
|
static bool compareVersions(const QString &a, const QString &b) {
|
2023-04-29 00:30:52 +00:00
|
|
|
QStringList aParts = a.split('.');
|
|
|
|
QStringList bParts = b.split('.');
|
|
|
|
|
|
|
|
for (int i = 0; i < std::min(aParts.size(), bParts.size()); ++i) {
|
|
|
|
int aInt = aParts[i].toInt();
|
|
|
|
int bInt = bParts[i].toInt();
|
|
|
|
|
|
|
|
if (aInt > bInt) {
|
|
|
|
return true;
|
|
|
|
} else if (aInt < bInt) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return aParts.size() > bParts.size();
|
|
|
|
}
|
|
|
|
|
2023-04-28 14:54:05 +00:00
|
|
|
ReleaseInfo Download::releaseInfo() const
|
|
|
|
{
|
|
|
|
const QString currentVersion = QCoreApplication::applicationVersion();
|
|
|
|
if (m_releaseMap.contains(currentVersion))
|
|
|
|
return m_releaseMap.value(currentVersion);
|
|
|
|
return ReleaseInfo();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Download::hasNewerRelease() const
|
|
|
|
{
|
|
|
|
const QString currentVersion = QCoreApplication::applicationVersion();
|
|
|
|
QList<QString> versions = m_releaseMap.keys();
|
|
|
|
std::sort(versions.begin(), versions.end(), compareVersions);
|
|
|
|
if (versions.isEmpty())
|
|
|
|
return false;
|
|
|
|
return compareVersions(versions.first(), currentVersion);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Download::isFirstStart() const
|
|
|
|
{
|
|
|
|
QSettings settings;
|
|
|
|
settings.sync();
|
|
|
|
QString lastVersionStarted = settings.value("download/lastVersionStarted").toString();
|
|
|
|
bool first = lastVersionStarted != QCoreApplication::applicationVersion();
|
|
|
|
settings.setValue("download/lastVersionStarted", QCoreApplication::applicationVersion());
|
|
|
|
settings.sync();
|
|
|
|
return first;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Download::updateReleaseNotes()
|
|
|
|
{
|
|
|
|
QUrl jsonUrl("http://gpt4all.io/meta/release.json");
|
|
|
|
QNetworkRequest request(jsonUrl);
|
|
|
|
QSslConfiguration conf = request.sslConfiguration();
|
|
|
|
conf.setPeerVerifyMode(QSslSocket::VerifyNone);
|
|
|
|
request.setSslConfiguration(conf);
|
|
|
|
QNetworkReply *jsonReply = m_networkManager.get(request);
|
2023-07-11 16:37:21 +00:00
|
|
|
connect(qApp, &QCoreApplication::aboutToQuit, jsonReply, &QNetworkReply::abort);
|
2023-04-28 14:54:05 +00:00
|
|
|
connect(jsonReply, &QNetworkReply::finished, this, &Download::handleReleaseJsonDownloadFinished);
|
2023-04-19 01:10:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Download::downloadModel(const QString &modelFile)
|
|
|
|
{
|
2023-06-22 19:44:49 +00:00
|
|
|
QFile *tempFile = new QFile(ModelList::globalInstance()->incompleteDownloadPath(modelFile));
|
2023-05-02 22:24:16 +00:00
|
|
|
QDateTime modTime = tempFile->fileTime(QFile::FileModificationTime);
|
|
|
|
bool success = tempFile->open(QIODevice::WriteOnly | QIODevice::Append);
|
2023-04-23 23:43:20 +00:00
|
|
|
qWarning() << "Opening temp file for writing:" << tempFile->fileName();
|
|
|
|
if (!success) {
|
2023-06-22 19:44:49 +00:00
|
|
|
const QString error
|
|
|
|
= QString("ERROR: Could not open temp file: %1 %2").arg(tempFile->fileName()).arg(modelFile);
|
|
|
|
qWarning() << error;
|
2023-11-21 20:24:42 +00:00
|
|
|
clearRetry(modelFile);
|
2023-07-06 00:12:37 +00:00
|
|
|
ModelList::globalInstance()->updateDataByFilename(modelFile, ModelList::DownloadErrorRole, error);
|
2023-04-23 23:43:20 +00:00
|
|
|
return;
|
|
|
|
}
|
2023-06-22 19:44:49 +00:00
|
|
|
tempFile->flush();
|
2023-05-02 22:24:16 +00:00
|
|
|
size_t incomplete_size = tempFile->size();
|
|
|
|
if (incomplete_size > 0) {
|
2023-06-22 19:44:49 +00:00
|
|
|
bool success = tempFile->seek(incomplete_size);
|
|
|
|
if (!success) {
|
|
|
|
incomplete_size = 0;
|
|
|
|
success = tempFile->seek(incomplete_size);
|
|
|
|
Q_ASSERT(success);
|
2023-05-02 22:24:16 +00:00
|
|
|
}
|
|
|
|
}
|
2023-04-23 23:43:20 +00:00
|
|
|
|
2023-07-06 00:12:37 +00:00
|
|
|
if (!ModelList::globalInstance()->containsByFilename(modelFile)) {
|
2023-06-22 19:44:49 +00:00
|
|
|
qWarning() << "ERROR: Could not find file:" << modelFile;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-07-06 00:12:37 +00:00
|
|
|
ModelList::globalInstance()->updateDataByFilename(modelFile, ModelList::DownloadingRole, true);
|
|
|
|
ModelInfo info = ModelList::globalInstance()->modelInfoByFilename(modelFile);
|
2023-10-19 19:25:37 +00:00
|
|
|
QString url = !info.url.isEmpty() ? info.url : "http://gpt4all.io/models/gguf/" + modelFile;
|
2023-05-03 00:31:17 +00:00
|
|
|
Network::globalInstance()->sendDownloadStarted(modelFile);
|
2023-06-04 23:02:43 +00:00
|
|
|
QNetworkRequest request(url);
|
|
|
|
request.setAttribute(QNetworkRequest::User, modelFile);
|
2023-06-22 19:44:49 +00:00
|
|
|
request.setRawHeader("range", QString("bytes=%1-").arg(tempFile->pos()).toUtf8());
|
2023-04-24 04:05:06 +00:00
|
|
|
QSslConfiguration conf = request.sslConfiguration();
|
|
|
|
conf.setPeerVerifyMode(QSslSocket::VerifyNone);
|
|
|
|
request.setSslConfiguration(conf);
|
2023-04-19 01:10:06 +00:00
|
|
|
QNetworkReply *modelReply = m_networkManager.get(request);
|
2023-07-11 16:37:21 +00:00
|
|
|
connect(qApp, &QCoreApplication::aboutToQuit, modelReply, &QNetworkReply::abort);
|
2023-04-19 01:10:06 +00:00
|
|
|
connect(modelReply, &QNetworkReply::downloadProgress, this, &Download::handleDownloadProgress);
|
2023-11-21 20:24:42 +00:00
|
|
|
connect(modelReply, &QNetworkReply::errorOccurred, this, &Download::handleErrorOccurred);
|
2023-04-19 01:10:06 +00:00
|
|
|
connect(modelReply, &QNetworkReply::finished, this, &Download::handleModelDownloadFinished);
|
2023-04-23 23:43:20 +00:00
|
|
|
connect(modelReply, &QNetworkReply::readyRead, this, &Download::handleReadyRead);
|
|
|
|
m_activeDownloads.insert(modelReply, tempFile);
|
2023-04-19 01:10:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Download::cancelDownload(const QString &modelFile)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < m_activeDownloads.size(); ++i) {
|
2023-04-23 23:43:20 +00:00
|
|
|
QNetworkReply *modelReply = m_activeDownloads.keys().at(i);
|
2023-04-19 01:10:06 +00:00
|
|
|
QUrl url = modelReply->request().url();
|
|
|
|
if (url.toString().endsWith(modelFile)) {
|
2023-05-03 00:31:17 +00:00
|
|
|
Network::globalInstance()->sendDownloadCanceled(modelFile);
|
|
|
|
|
2023-04-19 01:10:06 +00:00
|
|
|
// Disconnect the signals
|
|
|
|
disconnect(modelReply, &QNetworkReply::downloadProgress, this, &Download::handleDownloadProgress);
|
|
|
|
disconnect(modelReply, &QNetworkReply::finished, this, &Download::handleModelDownloadFinished);
|
|
|
|
|
|
|
|
modelReply->abort(); // Abort the download
|
|
|
|
modelReply->deleteLater(); // Schedule the reply for deletion
|
2023-04-23 23:43:20 +00:00
|
|
|
|
2023-05-02 22:24:16 +00:00
|
|
|
QFile *tempFile = m_activeDownloads.value(modelReply);
|
2023-04-23 23:43:20 +00:00
|
|
|
tempFile->deleteLater();
|
|
|
|
m_activeDownloads.remove(modelReply);
|
2023-04-19 01:10:06 +00:00
|
|
|
|
2023-07-06 00:12:37 +00:00
|
|
|
ModelList::globalInstance()->updateDataByFilename(modelFile, ModelList::DownloadingRole, false);
|
2023-04-19 01:10:06 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-15 00:12:15 +00:00
|
|
|
void Download::installModel(const QString &modelFile, const QString &apiKey)
|
|
|
|
{
|
|
|
|
Q_ASSERT(!apiKey.isEmpty());
|
|
|
|
if (apiKey.isEmpty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
Network::globalInstance()->sendInstallModel(modelFile);
|
2023-07-01 15:34:21 +00:00
|
|
|
QString filePath = MySettings::globalInstance()->modelPath() + modelFile;
|
2023-05-15 00:12:15 +00:00
|
|
|
QFile file(filePath);
|
|
|
|
if (file.open(QIODeviceBase::WriteOnly | QIODeviceBase::Text)) {
|
|
|
|
QTextStream stream(&file);
|
|
|
|
stream << apiKey;
|
|
|
|
file.close();
|
2024-01-22 19:15:13 +00:00
|
|
|
ModelList::globalInstance()->updateModelsFromDirectory();
|
2023-05-15 00:12:15 +00:00
|
|
|
}
|
2024-01-22 19:15:13 +00:00
|
|
|
|
|
|
|
ModelList::globalInstance()->updateDataByFilename(modelFile, ModelList::InstalledRole, true);
|
2023-05-15 00:12:15 +00:00
|
|
|
}
|
|
|
|
|
2023-05-16 13:32:01 +00:00
|
|
|
void Download::removeModel(const QString &modelFile)
|
|
|
|
{
|
2023-06-28 20:05:35 +00:00
|
|
|
const QString filePath = MySettings::globalInstance()->modelPath() + modelFile;
|
2023-06-22 19:44:49 +00:00
|
|
|
QFile incompleteFile(ModelList::globalInstance()->incompleteDownloadPath(modelFile));
|
|
|
|
if (incompleteFile.exists()) {
|
|
|
|
incompleteFile.remove();
|
|
|
|
}
|
|
|
|
|
2023-05-16 13:32:01 +00:00
|
|
|
QFile file(filePath);
|
2023-06-22 19:44:49 +00:00
|
|
|
if (file.exists()) {
|
|
|
|
Network::globalInstance()->sendRemoveModel(modelFile);
|
|
|
|
file.remove();
|
2023-05-16 13:32:01 +00:00
|
|
|
}
|
|
|
|
|
2024-01-22 19:15:13 +00:00
|
|
|
ModelList::globalInstance()->updateDataByFilename(modelFile, ModelList::InstalledRole, false);
|
2023-07-06 00:12:37 +00:00
|
|
|
ModelList::globalInstance()->updateDataByFilename(modelFile, ModelList::BytesReceivedRole, 0);
|
|
|
|
ModelList::globalInstance()->updateDataByFilename(modelFile, ModelList::BytesTotalRole, 0);
|
|
|
|
ModelList::globalInstance()->updateDataByFilename(modelFile, ModelList::TimestampRole, 0);
|
|
|
|
ModelList::globalInstance()->updateDataByFilename(modelFile, ModelList::SpeedRole, QString());
|
|
|
|
ModelList::globalInstance()->updateDataByFilename(modelFile, ModelList::DownloadErrorRole, QString());
|
2023-05-16 13:32:01 +00:00
|
|
|
}
|
|
|
|
|
2023-04-24 21:52:19 +00:00
|
|
|
void Download::handleSslErrors(QNetworkReply *reply, const QList<QSslError> &errors)
|
|
|
|
{
|
|
|
|
QUrl url = reply->request().url();
|
2023-06-02 19:46:41 +00:00
|
|
|
for (const auto &e : errors)
|
2023-04-24 21:52:19 +00:00
|
|
|
qWarning() << "ERROR: Received ssl error:" << e.errorString() << "for" << url;
|
|
|
|
}
|
|
|
|
|
2023-04-28 14:54:05 +00:00
|
|
|
void Download::handleReleaseJsonDownloadFinished()
|
|
|
|
{
|
|
|
|
QNetworkReply *jsonReply = qobject_cast<QNetworkReply *>(sender());
|
|
|
|
if (!jsonReply)
|
|
|
|
return;
|
|
|
|
|
|
|
|
QByteArray jsonData = jsonReply->readAll();
|
|
|
|
jsonReply->deleteLater();
|
|
|
|
parseReleaseJsonFile(jsonData);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Download::parseReleaseJsonFile(const QByteArray &jsonData)
|
|
|
|
{
|
|
|
|
QJsonParseError err;
|
|
|
|
QJsonDocument document = QJsonDocument::fromJson(jsonData, &err);
|
|
|
|
if (err.error != QJsonParseError::NoError) {
|
2023-06-22 19:44:49 +00:00
|
|
|
qWarning() << "ERROR: Couldn't parse: " << jsonData << err.errorString();
|
2023-04-28 14:54:05 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
QJsonArray jsonArray = document.array();
|
|
|
|
|
|
|
|
m_releaseMap.clear();
|
|
|
|
for (const QJsonValue &value : jsonArray) {
|
|
|
|
QJsonObject obj = value.toObject();
|
|
|
|
|
|
|
|
QString version = obj["version"].toString();
|
|
|
|
QString notes = obj["notes"].toString();
|
|
|
|
QString contributors = obj["contributors"].toString();
|
|
|
|
ReleaseInfo releaseInfo;
|
|
|
|
releaseInfo.version = version;
|
|
|
|
releaseInfo.notes = notes;
|
|
|
|
releaseInfo.contributors = contributors;
|
|
|
|
m_releaseMap.insert(version, releaseInfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
emit hasNewerReleaseChanged();
|
|
|
|
emit releaseInfoChanged();
|
|
|
|
}
|
|
|
|
|
2023-11-21 20:24:42 +00:00
|
|
|
bool Download::hasRetry(const QString &filename) const
|
|
|
|
{
|
|
|
|
return m_activeRetries.contains(filename);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Download::shouldRetry(const QString &filename)
|
|
|
|
{
|
|
|
|
int retries = 0;
|
|
|
|
if (m_activeRetries.contains(filename))
|
|
|
|
retries = m_activeRetries.value(filename);
|
|
|
|
|
|
|
|
++retries;
|
|
|
|
|
|
|
|
// Allow up to ten retries for now
|
|
|
|
if (retries < 10) {
|
|
|
|
m_activeRetries.insert(filename, retries);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Download::clearRetry(const QString &filename)
|
|
|
|
{
|
|
|
|
m_activeRetries.remove(filename);
|
|
|
|
}
|
|
|
|
|
2023-05-03 00:31:17 +00:00
|
|
|
void Download::handleErrorOccurred(QNetworkReply::NetworkError code)
|
|
|
|
{
|
|
|
|
QNetworkReply *modelReply = qobject_cast<QNetworkReply *>(sender());
|
|
|
|
if (!modelReply)
|
|
|
|
return;
|
|
|
|
|
2023-11-21 20:24:42 +00:00
|
|
|
// This occurs when the user explicitly cancels the download
|
|
|
|
if (code == QNetworkReply::OperationCanceledError)
|
|
|
|
return;
|
|
|
|
|
2023-06-04 23:02:43 +00:00
|
|
|
QString modelFilename = modelReply->request().attribute(QNetworkRequest::User).toString();
|
2023-11-21 20:24:42 +00:00
|
|
|
if (shouldRetry(modelFilename)) {
|
|
|
|
downloadModel(modelFilename);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
clearRetry(modelFilename);
|
|
|
|
|
2023-06-22 19:44:49 +00:00
|
|
|
const QString error
|
|
|
|
= QString("ERROR: Network error occurred attempting to download %1 code: %2 errorString %3")
|
|
|
|
.arg(modelFilename)
|
|
|
|
.arg(code)
|
|
|
|
.arg(modelReply->errorString());
|
|
|
|
qWarning() << error;
|
2023-07-06 00:12:37 +00:00
|
|
|
ModelList::globalInstance()->updateDataByFilename(modelFilename, ModelList::DownloadErrorRole, error);
|
2023-05-03 00:31:17 +00:00
|
|
|
Network::globalInstance()->sendDownloadError(modelFilename, (int)code, modelReply->errorString());
|
|
|
|
cancelDownload(modelFilename);
|
|
|
|
}
|
2023-04-28 14:54:05 +00:00
|
|
|
|
2023-04-19 01:10:06 +00:00
|
|
|
void Download::handleDownloadProgress(qint64 bytesReceived, qint64 bytesTotal)
|
|
|
|
{
|
|
|
|
QNetworkReply *modelReply = qobject_cast<QNetworkReply *>(sender());
|
|
|
|
if (!modelReply)
|
|
|
|
return;
|
2023-05-02 22:24:16 +00:00
|
|
|
QFile *tempFile = m_activeDownloads.value(modelReply);
|
|
|
|
if (!tempFile)
|
|
|
|
return;
|
|
|
|
QString contentRange = modelReply->rawHeader("content-range");
|
|
|
|
if (contentRange.contains("/")) {
|
|
|
|
QString contentTotalSize = contentRange.split("/").last();
|
|
|
|
bytesTotal = contentTotalSize.toLongLong();
|
|
|
|
}
|
2023-04-19 01:10:06 +00:00
|
|
|
|
2023-06-22 19:44:49 +00:00
|
|
|
const QString modelFilename = modelReply->request().attribute(QNetworkRequest::User).toString();
|
2023-07-06 00:12:37 +00:00
|
|
|
const qint64 lastUpdate = ModelList::globalInstance()->dataByFilename(modelFilename, ModelList::TimestampRole).toLongLong();
|
2023-06-22 19:44:49 +00:00
|
|
|
const qint64 currentUpdate = QDateTime::currentMSecsSinceEpoch();
|
|
|
|
if (currentUpdate - lastUpdate < 1000)
|
|
|
|
return;
|
|
|
|
|
2023-07-06 00:12:37 +00:00
|
|
|
const qint64 lastBytesReceived = ModelList::globalInstance()->dataByFilename(modelFilename, ModelList::BytesReceivedRole).toLongLong();
|
2023-06-22 19:44:49 +00:00
|
|
|
const qint64 currentBytesReceived = tempFile->pos();
|
|
|
|
|
|
|
|
qint64 timeDifference = currentUpdate - lastUpdate;
|
|
|
|
qint64 bytesDifference = currentBytesReceived - lastBytesReceived;
|
|
|
|
qint64 speed = (bytesDifference / timeDifference) * 1000; // bytes per second
|
|
|
|
QString speedText;
|
|
|
|
if (speed < 1024)
|
|
|
|
speedText = QString::number(static_cast<double>(speed), 'f', 2) + " B/s";
|
|
|
|
else if (speed < 1024 * 1024)
|
|
|
|
speedText = QString::number(static_cast<double>(speed / 1024.0), 'f', 2) + " KB/s";
|
|
|
|
else
|
|
|
|
speedText = QString::number(static_cast<double>(speed / (1024.0 * 1024.0)), 'f', 2) + " MB/s";
|
|
|
|
|
2023-07-06 00:12:37 +00:00
|
|
|
ModelList::globalInstance()->updateDataByFilename(modelFilename, ModelList::BytesReceivedRole, currentBytesReceived);
|
|
|
|
ModelList::globalInstance()->updateDataByFilename(modelFilename, ModelList::BytesTotalRole, bytesTotal);
|
|
|
|
ModelList::globalInstance()->updateDataByFilename(modelFilename, ModelList::SpeedRole, speedText);
|
|
|
|
ModelList::globalInstance()->updateDataByFilename(modelFilename, ModelList::TimestampRole, currentUpdate);
|
2023-04-19 01:10:06 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 23:43:20 +00:00
|
|
|
HashAndSaveFile::HashAndSaveFile()
|
|
|
|
: QObject(nullptr)
|
2023-04-19 01:10:06 +00:00
|
|
|
{
|
2023-04-23 23:43:20 +00:00
|
|
|
moveToThread(&m_hashAndSaveThread);
|
|
|
|
m_hashAndSaveThread.setObjectName("hashandsave thread");
|
|
|
|
m_hashAndSaveThread.start();
|
|
|
|
}
|
2023-04-19 01:10:06 +00:00
|
|
|
|
2023-04-23 23:43:20 +00:00
|
|
|
void HashAndSaveFile::hashAndSave(const QString &expectedHash, const QString &saveFilePath,
|
2023-05-02 22:24:16 +00:00
|
|
|
QFile *tempFile, QNetworkReply *modelReply)
|
2023-04-23 23:43:20 +00:00
|
|
|
{
|
|
|
|
Q_ASSERT(!tempFile->isOpen());
|
2023-06-04 23:02:43 +00:00
|
|
|
QString modelFilename = modelReply->request().attribute(QNetworkRequest::User).toString();
|
2023-04-19 01:10:06 +00:00
|
|
|
|
2023-04-23 23:43:20 +00:00
|
|
|
// Reopen the tempFile for hashing
|
2023-05-02 22:24:16 +00:00
|
|
|
if (!tempFile->open(QIODevice::ReadOnly)) {
|
2023-06-22 19:44:49 +00:00
|
|
|
const QString error
|
|
|
|
= QString("ERROR: Could not open temp file for hashing: %1 %2").arg(tempFile->fileName()).arg(modelFilename);
|
|
|
|
qWarning() << error;
|
|
|
|
emit hashAndSaveFinished(false, error, tempFile, modelReply);
|
2023-04-19 01:10:06 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
QCryptographicHash hash(QCryptographicHash::Md5);
|
2023-04-23 23:43:20 +00:00
|
|
|
while(!tempFile->atEnd())
|
|
|
|
hash.addData(tempFile->read(16384));
|
|
|
|
if (hash.result().toHex() != expectedHash) {
|
|
|
|
tempFile->close();
|
2023-06-22 19:44:49 +00:00
|
|
|
const QString error
|
|
|
|
= QString("ERROR: Download error MD5SUM did not match: %1 != %2 for %3").arg(hash.result().toHex()).arg(expectedHash).arg(modelFilename);
|
|
|
|
qWarning() << error;
|
2023-05-02 22:24:16 +00:00
|
|
|
tempFile->remove();
|
2023-06-22 19:44:49 +00:00
|
|
|
emit hashAndSaveFinished(false, error, tempFile, modelReply);
|
2023-04-23 23:43:20 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// The file save needs the tempFile closed
|
|
|
|
tempFile->close();
|
|
|
|
|
2023-04-27 00:57:25 +00:00
|
|
|
// Attempt to *move* the verified tempfile into place - this should be atomic
|
|
|
|
// but will only work if the destination is on the same filesystem
|
|
|
|
if (tempFile->rename(saveFilePath)) {
|
2023-06-22 19:44:49 +00:00
|
|
|
emit hashAndSaveFinished(true, QString(), tempFile, modelReply);
|
2023-11-21 20:24:42 +00:00
|
|
|
ModelList::globalInstance()->updateModelsFromDirectory();
|
2023-04-27 00:57:25 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-04-23 23:43:20 +00:00
|
|
|
// Reopen the tempFile for copying
|
2023-05-02 22:24:16 +00:00
|
|
|
if (!tempFile->open(QIODevice::ReadOnly)) {
|
2023-06-22 19:44:49 +00:00
|
|
|
const QString error
|
|
|
|
= QString("ERROR: Could not open temp file at finish: %1 %2").arg(tempFile->fileName()).arg(modelFilename);
|
|
|
|
qWarning() << error;
|
|
|
|
emit hashAndSaveFinished(false, error, tempFile, modelReply);
|
2023-04-19 01:10:06 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Save the model file to disk
|
2023-04-23 23:43:20 +00:00
|
|
|
QFile file(saveFilePath);
|
2023-04-19 01:10:06 +00:00
|
|
|
if (file.open(QIODevice::WriteOnly)) {
|
2023-04-23 23:43:20 +00:00
|
|
|
QByteArray buffer;
|
|
|
|
while (!tempFile->atEnd()) {
|
|
|
|
buffer = tempFile->read(16384);
|
|
|
|
file.write(buffer);
|
|
|
|
}
|
2023-04-19 01:10:06 +00:00
|
|
|
file.close();
|
2023-04-23 23:43:20 +00:00
|
|
|
tempFile->close();
|
2023-06-22 19:44:49 +00:00
|
|
|
emit hashAndSaveFinished(true, QString(), tempFile, modelReply);
|
2023-04-23 15:28:17 +00:00
|
|
|
} else {
|
|
|
|
QFile::FileError error = file.error();
|
2023-06-22 19:44:49 +00:00
|
|
|
const QString errorString
|
2023-06-26 13:35:29 +00:00
|
|
|
= QString("ERROR: Could not save model to location: %1 failed with code %1").arg(saveFilePath).arg(error);
|
2023-06-22 19:44:49 +00:00
|
|
|
qWarning() << errorString;
|
2023-04-23 23:43:20 +00:00
|
|
|
tempFile->close();
|
2023-06-22 19:44:49 +00:00
|
|
|
emit hashAndSaveFinished(false, errorString, tempFile, modelReply);
|
2023-04-23 23:43:20 +00:00
|
|
|
}
|
2023-11-17 18:27:17 +00:00
|
|
|
|
|
|
|
ModelList::globalInstance()->updateModelsFromDirectory();
|
2023-04-23 23:43:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Download::handleModelDownloadFinished()
|
|
|
|
{
|
|
|
|
QNetworkReply *modelReply = qobject_cast<QNetworkReply *>(sender());
|
|
|
|
if (!modelReply)
|
|
|
|
return;
|
|
|
|
|
2023-06-04 23:02:43 +00:00
|
|
|
QString modelFilename = modelReply->request().attribute(QNetworkRequest::User).toString();
|
2023-05-02 22:24:16 +00:00
|
|
|
QFile *tempFile = m_activeDownloads.value(modelReply);
|
2023-04-23 23:43:20 +00:00
|
|
|
m_activeDownloads.remove(modelReply);
|
|
|
|
|
|
|
|
if (modelReply->error()) {
|
2023-06-26 13:35:29 +00:00
|
|
|
const QString errorString
|
|
|
|
= QString("ERROR: Downloading failed with code %1 \"%2\"").arg(modelReply->error()).arg(modelReply->errorString());
|
|
|
|
qWarning() << errorString;
|
2023-04-23 15:28:17 +00:00
|
|
|
modelReply->deleteLater();
|
2023-04-23 23:43:20 +00:00
|
|
|
tempFile->deleteLater();
|
2023-11-21 20:24:42 +00:00
|
|
|
if (!hasRetry(modelFilename)) {
|
|
|
|
ModelList::globalInstance()->updateDataByFilename(modelFilename, ModelList::DownloadingRole, false);
|
|
|
|
ModelList::globalInstance()->updateDataByFilename(modelFilename, ModelList::DownloadErrorRole, errorString);
|
|
|
|
}
|
2023-04-23 15:28:17 +00:00
|
|
|
return;
|
2023-04-19 01:10:06 +00:00
|
|
|
}
|
|
|
|
|
2023-11-21 20:24:42 +00:00
|
|
|
clearRetry(modelFilename);
|
|
|
|
|
2023-04-23 23:43:20 +00:00
|
|
|
// The hash and save needs the tempFile closed
|
|
|
|
tempFile->close();
|
2023-04-19 01:10:06 +00:00
|
|
|
|
2023-07-06 00:12:37 +00:00
|
|
|
if (!ModelList::globalInstance()->containsByFilename(modelFilename)) {
|
2023-06-22 19:44:49 +00:00
|
|
|
qWarning() << "ERROR: downloading no such file:" << modelFilename;
|
|
|
|
modelReply->deleteLater();
|
|
|
|
tempFile->deleteLater();
|
|
|
|
return;
|
|
|
|
}
|
2023-04-23 23:43:20 +00:00
|
|
|
|
2023-06-22 19:44:49 +00:00
|
|
|
// Notify that we are calculating hash
|
2023-07-06 00:12:37 +00:00
|
|
|
ModelList::globalInstance()->updateDataByFilename(modelFilename, ModelList::CalcHashRole, true);
|
|
|
|
QByteArray md5sum = ModelList::globalInstance()->modelInfoByFilename(modelFilename).md5sum;
|
2023-06-28 20:05:35 +00:00
|
|
|
const QString saveFilePath = MySettings::globalInstance()->modelPath() + modelFilename;
|
2023-06-22 19:44:49 +00:00
|
|
|
emit requestHashAndSave(md5sum, saveFilePath, tempFile, modelReply);
|
2023-04-23 23:43:20 +00:00
|
|
|
}
|
|
|
|
|
2023-06-22 19:44:49 +00:00
|
|
|
void Download::handleHashAndSaveFinished(bool success, const QString &error,
|
2023-05-02 22:24:16 +00:00
|
|
|
QFile *tempFile, QNetworkReply *modelReply)
|
2023-04-23 23:43:20 +00:00
|
|
|
{
|
|
|
|
// The hash and save should send back with tempfile closed
|
|
|
|
Q_ASSERT(!tempFile->isOpen());
|
2023-06-04 23:02:43 +00:00
|
|
|
QString modelFilename = modelReply->request().attribute(QNetworkRequest::User).toString();
|
2023-05-03 00:31:17 +00:00
|
|
|
Network::globalInstance()->sendDownloadFinished(modelFilename, success);
|
2023-07-06 00:12:37 +00:00
|
|
|
ModelList::globalInstance()->updateDataByFilename(modelFilename, ModelList::CalcHashRole, false);
|
2023-04-23 23:43:20 +00:00
|
|
|
modelReply->deleteLater();
|
|
|
|
tempFile->deleteLater();
|
2023-06-22 19:44:49 +00:00
|
|
|
|
2023-07-06 00:12:37 +00:00
|
|
|
ModelList::globalInstance()->updateDataByFilename(modelFilename, ModelList::DownloadingRole, false);
|
2023-06-22 19:44:49 +00:00
|
|
|
if (!success)
|
2023-07-06 00:12:37 +00:00
|
|
|
ModelList::globalInstance()->updateDataByFilename(modelFilename, ModelList::DownloadErrorRole, error);
|
2023-06-22 19:44:49 +00:00
|
|
|
else
|
2023-07-06 00:12:37 +00:00
|
|
|
ModelList::globalInstance()->updateDataByFilename(modelFilename, ModelList::DownloadErrorRole, QString());
|
2023-04-23 23:43:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Download::handleReadyRead()
|
|
|
|
{
|
|
|
|
QNetworkReply *modelReply = qobject_cast<QNetworkReply *>(sender());
|
|
|
|
if (!modelReply)
|
|
|
|
return;
|
|
|
|
|
2023-05-02 22:24:16 +00:00
|
|
|
QFile *tempFile = m_activeDownloads.value(modelReply);
|
2023-04-23 23:43:20 +00:00
|
|
|
QByteArray buffer;
|
|
|
|
while (!modelReply->atEnd()) {
|
|
|
|
buffer = modelReply->read(16384);
|
|
|
|
tempFile->write(buffer);
|
|
|
|
}
|
2023-05-02 22:24:16 +00:00
|
|
|
tempFile->flush();
|
2023-04-19 01:10:06 +00:00
|
|
|
}
|