Remove debug logs

This commit is contained in:
Maschell 2021-10-11 22:43:04 +02:00
parent b50185f8aa
commit 189f20b662
13 changed files with 3 additions and 28 deletions

View File

@ -848,7 +848,6 @@ void ApplicationState::dumpAppFiles() {
contentI++; contentI++;
} }
if (forceExit) { if (forceExit) {
exit(0);
break; break;
} }
} }

View File

@ -56,5 +56,4 @@ DefaultNUSDataProcessor::DefaultNUSDataProcessor(
std::shared_ptr<NUSDecryption> pNUSDecryption) : std::shared_ptr<NUSDecryption> pNUSDecryption) :
dataProvider(std::move(pDataProvider)), dataProvider(std::move(pDataProvider)),
nusDecryption(std::move(pNUSDecryption)) { nusDecryption(std::move(pNUSDecryption)) {
DEBUG_FUNCTION_LINE();
} }

View File

@ -24,7 +24,6 @@
DiscReaderDiscDrive::DiscReaderDiscDrive() : DiscReader() { DiscReaderDiscDrive::DiscReaderDiscDrive() : DiscReader() {
DEBUG_FUNCTION_LINE();
auto *sector_buf = (uint8_t *) malloc(READ_SECTOR_SIZE); auto *sector_buf = (uint8_t *) malloc(READ_SECTOR_SIZE);
if (sector_buf == nullptr) { if (sector_buf == nullptr) {
return; return;
@ -76,7 +75,6 @@ bool DiscReaderDiscDrive::IsReady() {
} }
DiscReaderDiscDrive::~DiscReaderDiscDrive() { DiscReaderDiscDrive::~DiscReaderDiscDrive() {
DEBUG_FUNCTION_LINE();
if (device_handle != -1) { if (device_handle != -1) {
IOSUHAX_FSA_RawOpen(gFSAfd, "/dev/odd01", &device_handle); IOSUHAX_FSA_RawOpen(gFSAfd, "/dev/odd01", &device_handle);
} }

View File

@ -17,14 +17,11 @@
#include "NUSDataProviderWUD.h" #include "NUSDataProviderWUD.h"
NUSDataProviderWUD::NUSDataProviderWUD(const std::shared_ptr<WiiUGMPartition> &pGamePartition, const std::shared_ptr<DiscReader> &pDiscReader) { NUSDataProviderWUD::NUSDataProviderWUD(const std::shared_ptr<WiiUGMPartition> &pGamePartition, const std::shared_ptr<DiscReader> &pDiscReader) {
DEBUG_FUNCTION_LINE();
gamePartition = pGamePartition; gamePartition = pGamePartition;
discReader = pDiscReader; discReader = pDiscReader;
} }
NUSDataProviderWUD::~NUSDataProviderWUD() { NUSDataProviderWUD::~NUSDataProviderWUD() = default;
DEBUG_FUNCTION_LINE();
}
bool NUSDataProviderWUD::readRawContent(const std::shared_ptr<Content> &content, uint8_t *buffer, uint64_t offset, uint32_t size) { bool NUSDataProviderWUD::readRawContent(const std::shared_ptr<Content> &content, uint8_t *buffer, uint64_t offset, uint32_t size) {
if (buffer == nullptr) { if (buffer == nullptr) {
@ -41,7 +38,6 @@ bool NUSDataProviderWUD::readRawContent(const std::shared_ptr<Content> &content,
bool NUSDataProviderWUD::getContentH3Hash(const std::shared_ptr<Content> &content, std::vector<uint8_t> &out_data) { bool NUSDataProviderWUD::getContentH3Hash(const std::shared_ptr<Content> &content, std::vector<uint8_t> &out_data) {
auto cur = gamePartition->getVolumes().begin()->second->h3HashArrayList[content->index]; auto cur = gamePartition->getVolumes().begin()->second->h3HashArrayList[content->index];
if (cur == nullptr || cur->size == 0) { if (cur == nullptr || cur->size == 0) {
DEBUG_FUNCTION_LINE();
return false; return false;
} }
out_data.resize(cur->size); out_data.resize(cur->size);

View File

@ -25,5 +25,4 @@ void NUSDecryption::decryptData(const std::array<uint8_t, 0x10> &IV, uint8_t *in
} }
NUSDecryption::NUSDecryption(std::shared_ptr<Ticket> pTicket) : ticket(std::move(pTicket)) { NUSDecryption::NUSDecryption(std::shared_ptr<Ticket> pTicket) : ticket(std::move(pTicket)) {
DEBUG_FUNCTION_LINE();
} }

View File

@ -61,7 +61,7 @@ std::optional<std::shared_ptr<NUSTitle>> NUSTitle::loadTitle(const std::shared_p
auto fstOpt = FST::make_shared(dataBuffer, 0, VolumeBlockSize(1)); auto fstOpt = FST::make_shared(dataBuffer, 0, VolumeBlockSize(1));
if (!fstOpt.has_value()) { if (!fstOpt.has_value()) {
DEBUG_FUNCTION_LINE(); DEBUG_FUNCTION_LINE("Failed to parse FST");
return {}; return {};
} }
@ -89,7 +89,6 @@ NUSTitle::NUSTitle(std::shared_ptr<TitleMetaData> pTMD,
std::optional<std::shared_ptr<NUSTitle>> std::optional<std::shared_ptr<NUSTitle>>
NUSTitle::loadTitleFromGMPartition(const std::shared_ptr<WiiUGMPartition> &pPartition, const std::shared_ptr<DiscReader> &pDrive, const std::array<uint8_t, 16> &commonKey) { NUSTitle::loadTitleFromGMPartition(const std::shared_ptr<WiiUGMPartition> &pPartition, const std::shared_ptr<DiscReader> &pDrive, const std::array<uint8_t, 16> &commonKey) {
DEBUG_FUNCTION_LINE();
return loadTitle(std::shared_ptr<NUSDataProvider>(new NUSDataProviderWUD(pPartition, pDrive)), commonKey); return loadTitle(std::shared_ptr<NUSDataProvider>(new NUSDataProviderWUD(pPartition, pDrive)), commonKey);
} }

View File

@ -21,8 +21,6 @@
Ticket::Ticket(const std::array<uint8_t, 16> &pEncryptedKey, const std::array<uint8_t, 16> &pDecryptedKey) : Ticket::Ticket(const std::array<uint8_t, 16> &pEncryptedKey, const std::array<uint8_t, 16> &pDecryptedKey) :
ticketKeyEnc(pEncryptedKey), ticketKeyEnc(pEncryptedKey),
ticketKeyDec(pDecryptedKey) { ticketKeyDec(pDecryptedKey) {
DEBUG_FUNCTION_LINE();
} }
std::optional<std::shared_ptr<Ticket>> Ticket::make_shared(const std::vector<uint8_t> &data, std::optional<const std::array<uint8_t, 16>> commonKey) { std::optional<std::shared_ptr<Ticket>> Ticket::make_shared(const std::vector<uint8_t> &data, std::optional<const std::array<uint8_t, 16>> commonKey) {

View File

@ -189,6 +189,5 @@ WiiUPartitions::make_unique(const std::shared_ptr<DiscReader> &discReader, uint3
} }
WiiUPartitions::WiiUPartitions(std::vector<std::shared_ptr<WiiUPartition>> pPartitions) : partitions(std::move(pPartitions)) { WiiUPartitions::WiiUPartitions(std::vector<std::shared_ptr<WiiUPartition>> pPartitions) : partitions(std::move(pPartitions)) {
DEBUG_FUNCTION_LINE();
} }

View File

@ -76,8 +76,6 @@ std::optional<std::shared_ptr<VolumeHeader>> VolumeHeader::make_shared(const std
auto minorVersion = buffer[39]; auto minorVersion = buffer[39];
auto expiringMajorVersion = buffer[40]; auto expiringMajorVersion = buffer[40];
DEBUG_FUNCTION_LINE("FSTSize: %08X", FSTSize);
free(buffer); free(buffer);
auto bufferH3 = (uint8_t *) malloc(ROUNDUP(h3HashArrayListSize, 16)); auto bufferH3 = (uint8_t *) malloc(ROUNDUP(h3HashArrayListSize, 16));

View File

@ -29,11 +29,6 @@
class NodeEntries { class NodeEntries {
public: public:
virtual ~NodeEntries() {
DEBUG_FUNCTION_LINE("Bye");
}
static std::optional<std::shared_ptr<NodeEntry>> static std::optional<std::shared_ptr<NodeEntry>>
DeserializeImpl(const std::vector<uint8_t> &data, DeserializeImpl(const std::vector<uint8_t> &data,
uint32_t offset, uint32_t offset,

View File

@ -58,7 +58,6 @@ std::optional<std::unique_ptr<WiiUDiscHeader>> WiiUDiscHeader::make_unique(const
DEBUG_FUNCTION_LINE("Unexpected offset"); DEBUG_FUNCTION_LINE("Unexpected offset");
return {}; return {};
} }
DEBUG_FUNCTION_LINE();
return std::unique_ptr<WiiUDiscHeader>(new WiiUDiscHeader( return std::unique_ptr<WiiUDiscHeader>(new WiiUDiscHeader(
std::move(manufactorDiscIDOpt.value()), std::move(manufactorDiscIDOpt.value()),
std::move(discIdOpt.value()), std::move(discIdOpt.value()),

View File

@ -27,7 +27,7 @@ public:
} }
//!Destructor //!Destructor
~VPadInput() override {} ~VPadInput() override = default;
bool update(int32_t width, int32_t height) { bool update(int32_t width, int32_t height) {
lastData = data; lastData = data;

View File

@ -66,10 +66,7 @@ void main_loop() {
ApplicationState state; ApplicationState state;
VPadInput input; VPadInput input;
DEBUG_FUNCTION_LINE();
if (gFSAfd < 0 || !sIosuhaxMount) { if (gFSAfd < 0 || !sIosuhaxMount) {
DEBUG_FUNCTION_LINE();
state.setError(ApplicationState::eErrorState::ERROR_IOSUHAX_FAILED); state.setError(ApplicationState::eErrorState::ERROR_IOSUHAX_FAILED);
} }
@ -79,7 +76,6 @@ void main_loop() {
state.update(&input); state.update(&input);
state.render(); state.render();
} }
exit(0);
} }
void initIOSUHax() { void initIOSUHax() {