Duckstation/src/duckstation-qt/autoupdaterdialog.h

69 lines
1.7 KiB
C
Raw Normal View History

// SPDX-FileCopyrightText: 2019-2022 Connor McLaughlin <stenzek@gmail.com>
// SPDX-License-Identifier: (GPL-3.0 OR CC-BY-NC-ND-4.0)
2020-08-06 12:08:22 +00:00
#pragma once
#include "ui_autoupdaterdialog.h"
2020-12-21 16:47:48 +00:00
#include <string>
#include <QtCore/QStringList>
2020-08-06 12:08:22 +00:00
#include <QtWidgets/QDialog>
class QNetworkAccessManager;
class QNetworkReply;
class EmuThread;
2020-08-06 12:08:22 +00:00
class AutoUpdaterDialog final : public QDialog
{
Q_OBJECT
public:
explicit AutoUpdaterDialog(EmuThread* host_interface, QWidget* parent = nullptr);
2020-08-06 12:08:22 +00:00
~AutoUpdaterDialog();
static bool isSupported();
2020-12-21 16:47:48 +00:00
static QStringList getTagList();
static std::string getDefaultTag();
2020-08-06 12:08:22 +00:00
Q_SIGNALS:
void updateCheckCompleted();
public Q_SLOTS:
void queueUpdateCheck(bool display_message);
void queueGetLatestRelease();
private Q_SLOTS:
void getLatestTagComplete(QNetworkReply* reply);
void getLatestReleaseComplete(QNetworkReply* reply);
void queueGetChanges();
void getChangesComplete(QNetworkReply* reply);
2020-08-06 12:08:22 +00:00
void downloadUpdateClicked();
void skipThisUpdateClicked();
void remindMeLaterClicked();
private:
void reportError(const char* msg, ...);
bool updateNeeded() const;
2020-12-21 16:47:48 +00:00
std::string getCurrentUpdateTag() const;
2020-08-06 12:08:22 +00:00
2021-06-28 10:16:48 +00:00
#ifdef _WIN32
2020-08-06 12:08:22 +00:00
bool processUpdate(const QByteArray& update_data);
bool extractUpdater(const QString& zip_path, const QString& destination_path);
bool doUpdate(const QString& zip_path, const QString& updater_path, const QString& destination_path);
#else
bool processUpdate(const QByteArray& update_data);
#endif
Ui::AutoUpdaterDialog m_ui;
EmuThread* m_host_interface;
2020-08-06 12:08:22 +00:00
QNetworkAccessManager* m_network_access_mgr = nullptr;
QString m_latest_sha;
QString m_download_url;
int m_download_size = 0;
2020-08-06 12:08:22 +00:00
bool m_display_messages = false;
bool m_update_will_break_save_states = false;
2020-08-06 12:08:22 +00:00
};