2021-06-09 05:48:17 +01:00
|
|
|
/*
|
|
|
|
* tasks.cpp
|
|
|
|
*
|
2022-03-17 12:58:40 +00:00
|
|
|
* Copyright (c) 2020-2022, DarkMatterCore <pabloacurielz@gmail.com>.
|
2021-06-09 05:48:17 +01:00
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <nxdt_includes.h>
|
|
|
|
#include <tasks.hpp>
|
2021-06-18 19:10:19 +01:00
|
|
|
#include <arpa/inet.h>
|
2021-06-09 05:48:17 +01:00
|
|
|
|
2021-06-23 19:27:06 +01:00
|
|
|
#define NXDT_TASK_INTERVAL 250 /* 250 ms. */
|
2021-06-18 19:10:19 +01:00
|
|
|
|
2021-06-25 21:26:20 +01:00
|
|
|
using namespace brls::i18n::literals; /* For _i18n. */
|
|
|
|
|
2021-06-09 05:48:17 +01:00
|
|
|
namespace nxdt::tasks
|
|
|
|
{
|
2021-06-18 08:02:23 +01:00
|
|
|
/* Status info task. */
|
|
|
|
|
2021-06-23 19:27:06 +01:00
|
|
|
StatusInfoTask::StatusInfoTask(void) : brls::RepeatingTask(NXDT_TASK_INTERVAL)
|
2021-06-18 08:02:23 +01:00
|
|
|
{
|
|
|
|
brls::RepeatingTask::start();
|
|
|
|
brls::Logger::debug("Status info task started.");
|
|
|
|
}
|
|
|
|
|
|
|
|
StatusInfoTask::~StatusInfoTask(void)
|
|
|
|
{
|
|
|
|
brls::Logger::debug("Status info task stopped.");
|
|
|
|
}
|
|
|
|
|
2021-07-30 22:07:26 +01:00
|
|
|
bool StatusInfoTask::IsInternetConnectionAvailable(void)
|
2021-07-29 20:55:31 +01:00
|
|
|
{
|
2021-07-30 22:07:26 +01:00
|
|
|
return (this->status_info_data.ip_addr != NULL);
|
2021-07-29 20:55:31 +01:00
|
|
|
}
|
|
|
|
|
2021-06-18 08:02:23 +01:00
|
|
|
void StatusInfoTask::run(retro_time_t current_time)
|
|
|
|
{
|
|
|
|
brls::RepeatingTask::run(current_time);
|
|
|
|
|
2021-06-23 19:27:06 +01:00
|
|
|
StatusInfoData *status_info_data = &(this->status_info_data);
|
|
|
|
|
2021-06-18 08:02:23 +01:00
|
|
|
/* Get current time. */
|
|
|
|
time_t unix_time = time(NULL);
|
2021-08-07 09:42:03 +01:00
|
|
|
localtime_r(&unix_time, &(status_info_data->timeinfo));
|
2021-06-18 08:02:23 +01:00
|
|
|
|
|
|
|
/* Get battery stats. */
|
2021-06-23 19:27:06 +01:00
|
|
|
psmGetBatteryChargePercentage(&(status_info_data->charge_percentage));
|
|
|
|
psmGetChargerType(&(status_info_data->charger_type));
|
2021-06-18 08:02:23 +01:00
|
|
|
|
|
|
|
/* Get network connection status. */
|
2021-06-23 19:27:06 +01:00
|
|
|
u32 signal_strength = 0;
|
2021-06-25 21:13:39 +01:00
|
|
|
NifmInternetConnectionStatus connection_status = static_cast<NifmInternetConnectionStatus>(0);
|
2021-06-23 19:27:06 +01:00
|
|
|
|
|
|
|
Result rc = nifmGetInternetConnectionStatus(&(status_info_data->connection_type), &signal_strength, &connection_status);
|
2021-06-18 19:10:19 +01:00
|
|
|
if (R_SUCCEEDED(rc))
|
2021-06-18 08:02:23 +01:00
|
|
|
{
|
2021-06-23 19:27:06 +01:00
|
|
|
if (status_info_data->connection_type && connection_status == NifmInternetConnectionStatus_Connected)
|
2021-06-18 19:10:19 +01:00
|
|
|
{
|
|
|
|
struct in_addr addr = { .s_addr = 0 };
|
|
|
|
nifmGetCurrentIpAddress(&(addr.s_addr));
|
2021-06-23 19:27:06 +01:00
|
|
|
status_info_data->ip_addr = inet_ntoa(addr);
|
2021-06-18 19:10:19 +01:00
|
|
|
} else {
|
2021-06-23 19:27:06 +01:00
|
|
|
status_info_data->ip_addr = NULL;
|
2021-06-18 19:10:19 +01:00
|
|
|
}
|
|
|
|
} else {
|
2021-06-25 21:13:39 +01:00
|
|
|
status_info_data->connection_type = static_cast<NifmInternetConnectionType>(0);
|
2021-06-23 19:27:06 +01:00
|
|
|
status_info_data->ip_addr = NULL;
|
2021-06-18 08:02:23 +01:00
|
|
|
}
|
|
|
|
|
2021-06-25 22:01:15 +01:00
|
|
|
/* Fire task event. */
|
2021-06-23 19:27:06 +01:00
|
|
|
this->status_info_event.fire(status_info_data);
|
2021-06-18 08:02:23 +01:00
|
|
|
}
|
|
|
|
|
2021-06-09 05:48:17 +01:00
|
|
|
/* Gamecard task. */
|
|
|
|
|
2021-06-11 01:33:11 +01:00
|
|
|
GameCardTask::GameCardTask(void) : brls::RepeatingTask(NXDT_TASK_INTERVAL)
|
2021-06-09 05:48:17 +01:00
|
|
|
{
|
2021-06-11 01:33:11 +01:00
|
|
|
brls::RepeatingTask::start();
|
|
|
|
brls::Logger::debug("Gamecard task started.");
|
2021-07-19 22:09:58 +01:00
|
|
|
|
|
|
|
this->first_notification = (gamecardGetStatus() >= GameCardStatus_Processing);
|
2021-06-11 01:33:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
GameCardTask::~GameCardTask(void)
|
|
|
|
{
|
|
|
|
brls::Logger::debug("Gamecard task stopped.");
|
2021-06-09 05:48:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void GameCardTask::run(retro_time_t current_time)
|
|
|
|
{
|
|
|
|
brls::RepeatingTask::run(current_time);
|
|
|
|
|
2021-06-25 22:01:15 +01:00
|
|
|
this->cur_gc_status = static_cast<GameCardStatus>(gamecardGetStatus());
|
2021-06-09 05:48:17 +01:00
|
|
|
if (this->cur_gc_status != this->prev_gc_status)
|
|
|
|
{
|
|
|
|
brls::Logger::debug("Gamecard status change triggered: {}.", this->cur_gc_status);
|
2021-07-19 22:09:58 +01:00
|
|
|
|
|
|
|
if (!this->first_notification)
|
|
|
|
{
|
|
|
|
if (this->prev_gc_status == GameCardStatus_NotInserted && this->cur_gc_status == GameCardStatus_Processing)
|
|
|
|
{
|
|
|
|
brls::Application::notify("gamecard_tab/error_frame/processing"_i18n);
|
|
|
|
} else
|
|
|
|
if (this->prev_gc_status == GameCardStatus_Processing && this->cur_gc_status > GameCardStatus_Processing)
|
|
|
|
{
|
|
|
|
brls::Application::notify("tasks/notifications/gamecard_status_updated"_i18n);
|
|
|
|
} else
|
|
|
|
if (this->cur_gc_status == GameCardStatus_NotInserted)
|
|
|
|
{
|
|
|
|
brls::Application::notify("tasks/notifications/gamecard_ejected"_i18n);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
this->first_notification = false;
|
|
|
|
}
|
2021-06-25 21:26:20 +01:00
|
|
|
|
|
|
|
/* Update previous gamecard status. */
|
|
|
|
this->prev_gc_status = this->cur_gc_status;
|
|
|
|
|
|
|
|
/* Fire task event. */
|
|
|
|
this->gc_status_event.fire(this->cur_gc_status);
|
2021-06-09 05:48:17 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-11 01:33:11 +01:00
|
|
|
/* Title task. */
|
2021-06-09 05:48:17 +01:00
|
|
|
|
2021-06-11 01:33:11 +01:00
|
|
|
TitleTask::TitleTask(void) : brls::RepeatingTask(NXDT_TASK_INTERVAL)
|
2021-06-09 05:48:17 +01:00
|
|
|
{
|
2021-06-11 01:33:11 +01:00
|
|
|
/* Get system metadata entries. */
|
|
|
|
this->PopulateApplicationMetadataVector(true);
|
|
|
|
|
|
|
|
/* Get user metadata entries. */
|
|
|
|
this->PopulateApplicationMetadataVector(false);
|
|
|
|
|
|
|
|
/* Start task. */
|
|
|
|
brls::RepeatingTask::start();
|
|
|
|
brls::Logger::debug("Title task started.");
|
|
|
|
}
|
|
|
|
|
|
|
|
TitleTask::~TitleTask(void)
|
|
|
|
{
|
|
|
|
/* Clear application metadata vectors. */
|
|
|
|
this->system_metadata.clear();
|
|
|
|
this->user_metadata.clear();
|
|
|
|
|
|
|
|
brls::Logger::debug("Title task stopped.");
|
2021-06-09 05:48:17 +01:00
|
|
|
}
|
|
|
|
|
2021-06-11 01:33:11 +01:00
|
|
|
void TitleTask::run(retro_time_t current_time)
|
2021-06-09 05:48:17 +01:00
|
|
|
{
|
|
|
|
brls::RepeatingTask::run(current_time);
|
|
|
|
|
|
|
|
if (titleIsGameCardInfoUpdated())
|
|
|
|
{
|
2021-06-25 21:26:20 +01:00
|
|
|
brls::Logger::debug("Title info updated.");
|
2021-07-19 22:09:58 +01:00
|
|
|
//brls::Application::notify("tasks/notifications/user_titles"_i18n);
|
2021-06-25 21:26:20 +01:00
|
|
|
|
2021-06-11 01:33:11 +01:00
|
|
|
/* Update user metadata vector. */
|
|
|
|
this->PopulateApplicationMetadataVector(false);
|
|
|
|
|
|
|
|
/* Fire task event. */
|
2021-06-23 19:27:06 +01:00
|
|
|
this->title_event.fire(&(this->user_metadata));
|
2021-06-09 05:48:17 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-24 00:02:47 +01:00
|
|
|
const TitleApplicationMetadataVector* TitleTask::GetApplicationMetadata(bool is_system)
|
2021-06-11 01:33:11 +01:00
|
|
|
{
|
|
|
|
return (is_system ? &(this->system_metadata) : &(this->user_metadata));
|
|
|
|
}
|
|
|
|
|
2021-06-23 19:27:06 +01:00
|
|
|
void TitleTask::PopulateApplicationMetadataVector(bool is_system)
|
|
|
|
{
|
|
|
|
TitleApplicationMetadata **app_metadata = NULL;
|
|
|
|
u32 app_metadata_count = 0;
|
|
|
|
|
|
|
|
/* Get pointer to output vector. */
|
|
|
|
TitleApplicationMetadataVector *vector = (is_system ? &(this->system_metadata) : &(this->user_metadata));
|
|
|
|
vector->clear();
|
|
|
|
|
|
|
|
/* Get application metadata entries. */
|
|
|
|
app_metadata = titleGetApplicationMetadataEntries(is_system, &app_metadata_count);
|
|
|
|
if (app_metadata)
|
|
|
|
{
|
|
|
|
/* Fill output vector. */
|
|
|
|
for(u32 i = 0; i < app_metadata_count; i++) vector->push_back(app_metadata[i]);
|
|
|
|
|
|
|
|
/* Free application metadata array. */
|
|
|
|
free(app_metadata);
|
|
|
|
}
|
|
|
|
|
|
|
|
brls::Logger::debug("Retrieved {} {} metadata {}.", app_metadata_count, is_system ? "system" : "user", app_metadata_count == 1 ? "entry" : "entries");
|
|
|
|
}
|
|
|
|
|
2021-06-09 05:48:17 +01:00
|
|
|
/* USB Mass Storage task. */
|
|
|
|
|
2021-06-11 01:33:11 +01:00
|
|
|
UmsTask::UmsTask(void) : brls::RepeatingTask(NXDT_TASK_INTERVAL)
|
|
|
|
{
|
|
|
|
brls::RepeatingTask::start();
|
|
|
|
brls::Logger::debug("UMS task started.");
|
|
|
|
}
|
|
|
|
|
|
|
|
UmsTask::~UmsTask(void)
|
2021-06-09 05:48:17 +01:00
|
|
|
{
|
2021-06-11 01:33:11 +01:00
|
|
|
/* Clear UMS device vector. */
|
|
|
|
this->ums_devices.clear();
|
|
|
|
|
|
|
|
brls::Logger::debug("UMS task stopped.");
|
|
|
|
}
|
|
|
|
|
2021-06-09 05:48:17 +01:00
|
|
|
void UmsTask::run(retro_time_t current_time)
|
|
|
|
{
|
|
|
|
brls::RepeatingTask::run(current_time);
|
|
|
|
|
|
|
|
if (umsIsDeviceInfoUpdated())
|
|
|
|
{
|
2021-06-25 22:01:15 +01:00
|
|
|
brls::Logger::debug("UMS device info updated.");
|
|
|
|
brls::Application::notify("tasks/notifications/ums_device"_i18n);
|
|
|
|
|
2021-06-11 01:33:11 +01:00
|
|
|
/* Update UMS device vector. */
|
|
|
|
this->PopulateUmsDeviceVector();
|
|
|
|
|
|
|
|
/* Fire task event. */
|
2021-06-23 19:27:06 +01:00
|
|
|
this->ums_event.fire(&(this->ums_devices));
|
2021-06-09 05:48:17 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-23 19:27:06 +01:00
|
|
|
void UmsTask::PopulateUmsDeviceVector(void)
|
2021-06-11 01:33:11 +01:00
|
|
|
{
|
2021-06-23 19:27:06 +01:00
|
|
|
UsbHsFsDevice *ums_devices = NULL;
|
|
|
|
u32 ums_device_count = 0;
|
|
|
|
|
|
|
|
/* Clear UMS device vector. */
|
|
|
|
this->ums_devices.clear();
|
|
|
|
|
|
|
|
/* Get UMS devices. */
|
|
|
|
ums_devices = umsGetDevices(&ums_device_count);
|
|
|
|
if (ums_devices)
|
|
|
|
{
|
|
|
|
/* Fill UMS device vector. */
|
|
|
|
for(u32 i = 0; i < ums_device_count; i++) this->ums_devices.push_back(ums_devices[i]);
|
|
|
|
|
|
|
|
/* Free UMS devices array. */
|
|
|
|
free(ums_devices);
|
|
|
|
}
|
|
|
|
|
|
|
|
brls::Logger::debug("Retrieved info for {} UMS {}.", ums_device_count, ums_device_count == 1 ? "device" : "devices");
|
2021-06-11 01:33:11 +01:00
|
|
|
}
|
|
|
|
|
2021-06-09 05:48:17 +01:00
|
|
|
/* USB host device connection task. */
|
|
|
|
|
2021-06-11 01:33:11 +01:00
|
|
|
UsbHostTask::UsbHostTask(void) : brls::RepeatingTask(NXDT_TASK_INTERVAL)
|
2021-06-09 05:48:17 +01:00
|
|
|
{
|
2021-06-11 01:33:11 +01:00
|
|
|
brls::RepeatingTask::start();
|
|
|
|
brls::Logger::debug("USB host task started.");
|
|
|
|
}
|
|
|
|
|
|
|
|
UsbHostTask::~UsbHostTask(void)
|
|
|
|
{
|
|
|
|
brls::Logger::debug("USB host task stopped.");
|
2021-06-09 05:48:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void UsbHostTask::run(retro_time_t current_time)
|
|
|
|
{
|
|
|
|
brls::RepeatingTask::run(current_time);
|
|
|
|
|
2021-06-25 22:01:15 +01:00
|
|
|
this->cur_usb_host_speed = static_cast<UsbHostSpeed>(usbIsReady());
|
|
|
|
if (this->cur_usb_host_speed != this->prev_usb_host_speed)
|
2021-06-09 05:48:17 +01:00
|
|
|
{
|
2021-06-25 22:01:15 +01:00
|
|
|
brls::Logger::debug("USB host speed changed: {}.", this->cur_usb_host_speed);
|
|
|
|
brls::Application::notify(this->cur_usb_host_speed ? "tasks/notifications/usb_host_connected"_i18n : "tasks/notifications/usb_host_disconnected"_i18n);
|
|
|
|
|
|
|
|
/* Update previous USB host speed. */
|
|
|
|
this->prev_usb_host_speed = this->cur_usb_host_speed;
|
|
|
|
|
|
|
|
/* Fire task event. */
|
|
|
|
this->usb_host_event.fire(this->cur_usb_host_speed);
|
2021-06-09 05:48:17 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|