mirror of
https://github.com/DarkMatterCore/nxdumptool.git
synced 2024-11-09 12:11:44 +00:00
3e10421ec9
DataTransferTaskFrame is a template class that's derived from brls::AppletFrame, which automatically starts a background task using an internal object belonging to a class derived from DataTransferTask. A DataTransferProgressDisplay view is used to show progress updates. If the background task hits an error, the class takes care of switching to an ErrorFrame view with the corresponding error message. GameCardImageDumpTaskFrame is a derived class of DataTransferTaskFrame that uses a GameCardImageDumpTask object as its background task. In layman's terms, this provides a way to fully dump gamecard images using the new UI. DataTransferTaskFrame depends on the newly added is_base_template helper from goneskiing to check if the class for the provided task is derived from DataTransferTask. Other changes include: * DataTransferProgressDisplay: rename setProgress() method to SetProgress(). * DataTransferTask: move post-task-execution code into its own new private method, PostExecutionCallback(), and update both OnCancelled() and OnPostExecute() callbacks to invoke it. * DataTransferTask: update OnProgressUpdate() to allow sending a last progress update to all event subscribers even if the background task was cancelled. * DataTransferTask: update OnProgressUpdate() to allow sending a first progress update if no data has been transferred but the total transfer size is already known. * DataTransferTask: update OnProgressUpdate() to avoid calculating the ETA if the speed isn't greater than 0. * DumpOptionsFrame: remove UpdateOutputStorages() method. * DumpOptionsFrame: update class to use the cached output storage value from our RootView. * DumpOptionsFrame: add GenerateOutputStoragesVector() method, which is used to avoid setting dummy options while initializing the output storages SelectListItem. * DumpOptionsFrame: update UMS task callback to add the rest of the leftover logic from UpdateOutputStorages(). * DumpOptionsFrame: update RegisterButtonListener() to use a wrapper callback around the user-provided callback to check if the USB host was selected as the output storage but no USB host connection is available. * ErrorFrame: use const references for all input string arguments. * FileWriter: fix a localization stirng name typo. * FileWriter: fix an exception that was previously being thrown by a fmt::format() call because of a wrong format specifier. * FocusableItem: add a static assert to check if the provided ViewType is derived from brls::View. * gamecard: redefine global gamecard status variable as an atomic unsigned 8-bit integer, which fixes a "status-hopping" issue previously experienced by repeating tasks running under other threads that periodically call gamecardGetStatus(). * GameCardImageDumpOptionsFrame: define GAMECARD_TOGGLE_ITEM macro, which is used to initialize all ToggleListItem elements from the view. * GameCardImageDumpOptionsFrame: update button callback to push a GameCardImageDumpTaskFrame view onto the borealis stack. * GameCardImageDumpTask: move class into its own header and module files. * GameCardImageDumpTask: update class to also take in the checksum lookup method (not yet implemented). * GameCardImageDumpTask: update class to send its first progress update as soon as the gamecard image size is known. * GameCardImageDumpTask: update class to avoid returning a string if the task was cancelled -- DataTransferTaskFrame offers logic to display the appropiate cancel message on its own. * GameCardTab: update PopulateList() method to display the new version information available in TitleGameCardApplicationMetadataEntry elements as part of the generated TitlesTabItem objects. * i18n: add new localization strings. * OptionsTab: update background task callback logic to handle task cancellation, reflecting the changes made to DataTransferTask. * OptionsTab: reflect changes made to DataTransferProgressDisplay. * RootView: cache the currently selected output storage value at all times, which is propagated throughout different parts of the UI. Getter and setter helpers have been added to operate with this value. * RootView: add GetUsbHostSpeed() helper, which can be used by child views to retrieve the USB host speed on demand. * RootView: update UMS task callback to automatically reset the cached output storage value back to the SD card if a UMS device was previously selected. * title: define TitleGameCardApplicationMetadataEntry struct, which also holds version-specific information retrieved from the gamecard titles. * title: refactor titleGetGameCardApplicationMetadataEntries() to return a dynamically allocated array of TitleGameCardApplicationMetadataEntry elements. * usb: redefine global endpoint max packet size variable as an atomic unsigned 16-bit integer, which fixes a "status-hopping" issue previously experienced by repeating tasks running under other threads that periodically call usbIsReady(). * UsbHostTask: add GetUsbHostSpeed() method.
182 lines
5.8 KiB
C++
182 lines
5.8 KiB
C++
/*
|
|
* tasks.hpp
|
|
*
|
|
* Copyright (c) 2020-2024, DarkMatterCore <pabloacurielz@gmail.com>.
|
|
*
|
|
* This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool).
|
|
*
|
|
* nxdumptool is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* nxdumptool 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#ifndef __TASKS_HPP__
|
|
#define __TASKS_HPP__
|
|
|
|
#include <borealis.hpp>
|
|
|
|
#include "core/nxdt_includes.h"
|
|
#include "core/gamecard.h"
|
|
#include "core/title.h"
|
|
#include "core/ums.h"
|
|
#include "core/usb.h"
|
|
#include "download_task.hpp"
|
|
|
|
#define EVENT_SUBSCRIPTION(event_type, event_name) \
|
|
ALWAYS_INLINE event_type::Subscription RegisterListener(event_type::Callback cb) { return this->event_name.subscribe(cb); } \
|
|
ALWAYS_INLINE void UnregisterListener(event_type::Subscription subscription) { this->event_name.unsubscribe(subscription); }
|
|
|
|
namespace nxdt::tasks
|
|
{
|
|
/* Used to hold status info data. */
|
|
typedef struct {
|
|
struct tm timeinfo;
|
|
u32 charge_percentage;
|
|
PsmChargerType charger_type;
|
|
bool connected;
|
|
NifmInternetConnectionType connection_type;
|
|
char ip_addr[16];
|
|
} StatusInfoData;
|
|
|
|
/* Used to hold pointers to application metadata entries. */
|
|
typedef std::vector<TitleApplicationMetadata*> TitleApplicationMetadataVector;
|
|
|
|
/* Used to hold information from UMS devices. */
|
|
typedef std::pair<const UsbHsFsDevice*, std::string> UmsDeviceVectorEntry;
|
|
typedef std::vector<UmsDeviceVectorEntry> UmsDeviceVector;
|
|
|
|
/* Custom event types. */
|
|
typedef brls::Event<const StatusInfoData&> StatusInfoEvent;
|
|
typedef brls::Event<const GameCardStatus&> GameCardStatusEvent;
|
|
typedef brls::Event<const TitleApplicationMetadataVector&> UserTitleEvent;
|
|
typedef brls::Event<const UmsDeviceVector&> UmsEvent;
|
|
typedef brls::Event<const UsbHostSpeed&> UsbHostEvent;
|
|
|
|
/* Status info task. */
|
|
/* Its event returns a reference to a StatusInfoData struct. */
|
|
class StatusInfoTask: public brls::RepeatingTask
|
|
{
|
|
private:
|
|
StatusInfoEvent status_info_event;
|
|
StatusInfoData status_info_data{};
|
|
|
|
protected:
|
|
void run(retro_time_t current_time) override;
|
|
|
|
public:
|
|
StatusInfoTask();
|
|
~StatusInfoTask();
|
|
|
|
bool IsInternetConnectionAvailable(void);
|
|
|
|
EVENT_SUBSCRIPTION(StatusInfoEvent, status_info_event);
|
|
};
|
|
|
|
/* Gamecard task. */
|
|
/* Its event returns a GameCardStatus value. */
|
|
class GameCardTask: public brls::RepeatingTask
|
|
{
|
|
private:
|
|
GameCardStatusEvent gc_status_event;
|
|
GameCardStatus cur_gc_status = GameCardStatus_NotInserted;
|
|
GameCardStatus prev_gc_status = GameCardStatus_NotInserted;
|
|
bool first_notification = true;
|
|
|
|
protected:
|
|
void run(retro_time_t current_time) override;
|
|
|
|
public:
|
|
GameCardTask();
|
|
~GameCardTask();
|
|
|
|
EVENT_SUBSCRIPTION(GameCardStatusEvent, gc_status_event);
|
|
};
|
|
|
|
/* Title task. */
|
|
/* Its event returns a reference to a TitleApplicationMetadataVector with metadata for user titles (system titles don't change at runtime). */
|
|
class TitleTask: public brls::RepeatingTask
|
|
{
|
|
private:
|
|
UserTitleEvent user_title_event;
|
|
|
|
TitleApplicationMetadataVector system_metadata{};
|
|
TitleApplicationMetadataVector user_metadata{};
|
|
|
|
void PopulateApplicationMetadataVector(bool is_system);
|
|
|
|
protected:
|
|
void run(retro_time_t current_time) override;
|
|
|
|
public:
|
|
TitleTask();
|
|
~TitleTask();
|
|
|
|
/* Intentionally left here to let views retrieve title metadata on-demand. */
|
|
const TitleApplicationMetadataVector& GetApplicationMetadata(bool is_system);
|
|
|
|
EVENT_SUBSCRIPTION(UserTitleEvent, user_title_event);
|
|
};
|
|
|
|
/* USB Mass Storage task. */
|
|
/* Its event returns a reference to a UmsDeviceVector. */
|
|
class UmsTask: public brls::RepeatingTask
|
|
{
|
|
private:
|
|
UmsEvent ums_event;
|
|
|
|
UsbHsFsDevice *ums_devices = nullptr;
|
|
u32 ums_devices_count = 0;
|
|
|
|
UmsDeviceVector ums_devices_vector{};
|
|
|
|
void PopulateUmsDeviceVector(void);
|
|
|
|
protected:
|
|
void run(retro_time_t current_time) override;
|
|
|
|
public:
|
|
UmsTask();
|
|
~UmsTask();
|
|
|
|
/* Intentionally left here to let views retrieve UMS device info on-demand. */
|
|
const UmsDeviceVector& GetUmsDevices(void);
|
|
|
|
EVENT_SUBSCRIPTION(UmsEvent, ums_event);
|
|
};
|
|
|
|
/* USB host device connection task. */
|
|
class UsbHostTask: public brls::RepeatingTask
|
|
{
|
|
private:
|
|
UsbHostEvent usb_host_event;
|
|
UsbHostSpeed cur_usb_host_speed = UsbHostSpeed_None;
|
|
UsbHostSpeed prev_usb_host_speed = UsbHostSpeed_None;
|
|
|
|
protected:
|
|
void run(retro_time_t current_time) override;
|
|
|
|
public:
|
|
UsbHostTask();
|
|
~UsbHostTask();
|
|
|
|
/* Intentionally left here to let views retrieve USB host connection speed on-demand. */
|
|
const UsbHostSpeed& GetUsbHostSpeed(void);
|
|
|
|
EVENT_SUBSCRIPTION(UsbHostEvent, usb_host_event);
|
|
};
|
|
}
|
|
|
|
#undef EVENT_SUBSCRIPTION
|
|
|
|
#endif /* __TASKS_HPP__ */
|