gpt4all/gpt4all-chat/download.h

113 lines
3.3 KiB
C
Raw Normal View History

2023-04-19 04:10:06 +03:00
#ifndef DOWNLOAD_H
#define DOWNLOAD_H
#include <QCryptographicHash>
#include <QDateTime>
#include <QFile>
#include <QHash>
#include <QList>
#include <QMap>
2023-04-19 04:10:06 +03:00
#include <QNetworkAccessManager>
#include <QNetworkReply>
#include <QObject>
#include <QSslError>
#include <QString>
#include <QThread>
#include <QtGlobal>
class QByteArray;
2023-04-19 04:10:06 +03:00
2023-04-28 17:54:05 +03:00
struct ReleaseInfo {
Q_GADGET
Q_PROPERTY(QString version MEMBER version)
Q_PROPERTY(QString notes MEMBER notes)
Q_PROPERTY(QString contributors MEMBER contributors)
public:
QString version;
QString notes;
QString contributors;
};
class HashAndSaveFile : public QObject
{
Q_OBJECT
public:
HashAndSaveFile();
public Q_SLOTS:
void hashAndSave(const QString &hash, QCryptographicHash::Algorithm a, const QString &saveFilePath,
QFile *tempFile, QNetworkReply *modelReply);
Q_SIGNALS:
2023-06-22 22:44:49 +03:00
void hashAndSaveFinished(bool success, const QString &error,
QFile *tempFile, QNetworkReply *modelReply);
private:
QThread m_hashAndSaveThread;
};
2023-04-19 04:10:06 +03:00
class Download : public QObject
{
Q_OBJECT
2023-04-28 17:54:05 +03:00
Q_PROPERTY(bool hasNewerRelease READ hasNewerRelease NOTIFY hasNewerReleaseChanged)
Q_PROPERTY(ReleaseInfo releaseInfo READ releaseInfo NOTIFY releaseInfoChanged)
Q_PROPERTY(QString latestNews READ latestNews NOTIFY latestNewsChanged)
2023-04-19 04:10:06 +03:00
public:
static Download *globalInstance();
2023-04-28 17:54:05 +03:00
ReleaseInfo releaseInfo() const;
bool hasNewerRelease() const;
QString latestNews() const { return m_latestNews; }
2023-04-19 04:10:06 +03:00
Q_INVOKABLE void downloadModel(const QString &modelFile);
Q_INVOKABLE void cancelDownload(const QString &modelFile);
Q_INVOKABLE void installModel(const QString &modelFile, const QString &apiKey);
2023-05-16 16:32:01 +03:00
Q_INVOKABLE void removeModel(const QString &modelFile);
Q_INVOKABLE bool isFirstStart(bool writeVersion = false) const;
2023-04-19 04:10:06 +03:00
2023-06-22 22:44:49 +03:00
public Q_SLOTS:
void updateLatestNews();
2023-06-22 22:44:49 +03:00
void updateReleaseNotes();
2023-04-22 23:39:32 +03:00
private Q_SLOTS:
2023-04-25 00:52:19 +03:00
void handleSslErrors(QNetworkReply *reply, const QList<QSslError> &errors);
2023-04-28 17:54:05 +03:00
void handleReleaseJsonDownloadFinished();
void handleLatestNewsDownloadFinished();
void handleErrorOccurred(QNetworkReply::NetworkError code);
2023-04-19 04:10:06 +03:00
void handleDownloadProgress(qint64 bytesReceived, qint64 bytesTotal);
void handleModelDownloadFinished();
2023-06-22 22:44:49 +03:00
void handleHashAndSaveFinished(bool success, const QString &error,
QFile *tempFile, QNetworkReply *modelReply);
void handleReadyRead();
2023-04-19 04:10:06 +03:00
Q_SIGNALS:
2023-04-28 17:54:05 +03:00
void releaseInfoChanged();
void hasNewerReleaseChanged();
void requestHashAndSave(const QString &hash, QCryptographicHash::Algorithm a, const QString &saveFilePath,
QFile *tempFile, QNetworkReply *modelReply);
void latestNewsChanged();
2023-04-19 04:10:06 +03:00
private:
2023-04-28 17:54:05 +03:00
void parseReleaseJsonFile(const QByteArray &jsonData);
QString incompleteDownloadPath(const QString &modelFile);
bool hasRetry(const QString &filename) const;
bool shouldRetry(const QString &filename);
void clearRetry(const QString &filename);
2023-04-19 04:10:06 +03:00
HashAndSaveFile *m_hashAndSave;
2023-04-28 17:54:05 +03:00
QMap<QString, ReleaseInfo> m_releaseMap;
QString m_latestNews;
2023-04-19 04:10:06 +03:00
QNetworkAccessManager m_networkManager;
QMap<QNetworkReply*, QFile*> m_activeDownloads;
QHash<QString, int> m_activeRetries;
QDateTime m_startTime;
2023-04-19 04:10:06 +03:00
private:
explicit Download();
~Download() {}
friend class MyDownload;
};
#endif // DOWNLOAD_H