mirror of
https://github.com/Huntereb/Awoo-Installer
synced 2024-11-10 14:14:21 +00:00
150 lines
No EOL
5.3 KiB
C++
Executable file
150 lines
No EOL
5.3 KiB
C++
Executable file
#include "install/usb_nsp.hpp"
|
|
|
|
|
|
#include <switch.h>
|
|
#include <algorithm>
|
|
#include <malloc.h>
|
|
#include <threads.h>
|
|
#include "data/byte_buffer.hpp"
|
|
#include "data/buffered_placeholder_writer.hpp"
|
|
#include "util/usb_util.hpp"
|
|
#include "error.hpp"
|
|
#include "debug.h"
|
|
#include "nspInstall.hpp"
|
|
#include "util/util.hpp"
|
|
|
|
namespace tin::install::nsp
|
|
{
|
|
USBNSP::USBNSP(std::string nspName) :
|
|
m_nspName(nspName)
|
|
{
|
|
|
|
}
|
|
|
|
struct USBFuncArgs
|
|
{
|
|
std::string nspName;
|
|
tin::data::BufferedPlaceholderWriter* bufferedPlaceholderWriter;
|
|
u64 pfs0Offset;
|
|
u64 ncaSize;
|
|
};
|
|
|
|
int USBThreadFunc(void* in)
|
|
{
|
|
USBFuncArgs* args = reinterpret_cast<USBFuncArgs*>(in);
|
|
tin::util::USBCmdHeader header = tin::util::USBCmdManager::SendFileRangeCmd(args->nspName, args->pfs0Offset, args->ncaSize);
|
|
|
|
u8* buf = (u8*)memalign(0x1000, 0x800000);
|
|
u64 sizeRemaining = header.dataSize;
|
|
size_t tmpSizeRead = 0;
|
|
|
|
try
|
|
{
|
|
while (sizeRemaining)
|
|
{
|
|
tmpSizeRead = usbCommsRead(buf, std::min(sizeRemaining, (u64)0x800000));
|
|
sizeRemaining -= tmpSizeRead;
|
|
|
|
while (true)
|
|
{
|
|
if (args->bufferedPlaceholderWriter->CanAppendData(tmpSizeRead))
|
|
break;
|
|
}
|
|
|
|
args->bufferedPlaceholderWriter->AppendData(buf, tmpSizeRead);
|
|
}
|
|
}
|
|
catch (std::exception& e)
|
|
{
|
|
LOG_DEBUG("An error occurred:\n%s", e.what());
|
|
}
|
|
|
|
free(buf);
|
|
|
|
return 0;
|
|
}
|
|
|
|
int USBPlaceholderWriteFunc(void* in)
|
|
{
|
|
USBFuncArgs* args = reinterpret_cast<USBFuncArgs*>(in);
|
|
|
|
while (!args->bufferedPlaceholderWriter->IsPlaceholderComplete())
|
|
{
|
|
if (args->bufferedPlaceholderWriter->CanWriteSegmentToPlaceholder())
|
|
args->bufferedPlaceholderWriter->WriteSegmentToPlaceholder();
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
void USBNSP::StreamToPlaceholder(std::shared_ptr<nx::ncm::ContentStorage>& contentStorage, NcmContentId placeholderId)
|
|
{
|
|
const PFS0FileEntry* fileEntry = this->GetFileEntryByNcaId(placeholderId);
|
|
std::string ncaFileName = this->GetFileEntryName(fileEntry);
|
|
|
|
LOG_DEBUG("Retrieving %s\n", ncaFileName.c_str());
|
|
size_t ncaSize = fileEntry->fileSize;
|
|
|
|
tin::data::BufferedPlaceholderWriter bufferedPlaceholderWriter(contentStorage, placeholderId, ncaSize);
|
|
USBFuncArgs args;
|
|
args.nspName = m_nspName;
|
|
args.bufferedPlaceholderWriter = &bufferedPlaceholderWriter;
|
|
args.pfs0Offset = this->GetDataOffset() + fileEntry->dataOffset;
|
|
args.ncaSize = ncaSize;
|
|
thrd_t usbThread;
|
|
thrd_t writeThread;
|
|
|
|
thrd_create(&usbThread, USBThreadFunc, &args);
|
|
thrd_create(&writeThread, USBPlaceholderWriteFunc, &args);
|
|
|
|
u64 freq = armGetSystemTickFreq();
|
|
u64 startTime = armGetSystemTick();
|
|
size_t startSizeBuffered = 0;
|
|
double speed = 0.0;
|
|
|
|
while (!bufferedPlaceholderWriter.IsBufferDataComplete())
|
|
{
|
|
u64 newTime = armGetSystemTick();
|
|
|
|
if (newTime - startTime >= freq)
|
|
{
|
|
size_t newSizeBuffered = bufferedPlaceholderWriter.GetSizeBuffered();
|
|
double mbBuffered = (newSizeBuffered / 1000000.0) - (startSizeBuffered / 1000000.0);
|
|
double duration = ((double)(newTime - startTime) / (double)freq);
|
|
speed = mbBuffered / duration;
|
|
|
|
startTime = newTime;
|
|
startSizeBuffered = newSizeBuffered;
|
|
|
|
u64 totalSizeMB = bufferedPlaceholderWriter.GetTotalDataSize() / 1000000;
|
|
u64 downloadSizeMB = bufferedPlaceholderWriter.GetSizeBuffered() / 1000000;
|
|
int downloadProgress = (int)(((double)bufferedPlaceholderWriter.GetSizeBuffered() / (double)bufferedPlaceholderWriter.GetTotalDataSize()) * 100.0);
|
|
|
|
//printf("> Download Progress: %lu/%lu MB (%i%s) (%.2f MB/s)\r", downloadSizeMB, totalSizeMB, downloadProgress, "%", speed);
|
|
inst::ui::setInstInfoText("Downloading " + inst::util::formatUrlString(ncaFileName) + " at " + std::to_string(speed).substr(0, std::to_string(speed).size()-4) + "MB/s");
|
|
inst::ui::setInstBarPerc((double)downloadProgress);
|
|
}
|
|
}
|
|
|
|
u64 totalSizeMB = bufferedPlaceholderWriter.GetTotalDataSize() / 1000000;
|
|
|
|
while (!bufferedPlaceholderWriter.IsPlaceholderComplete())
|
|
{
|
|
u64 installSizeMB = bufferedPlaceholderWriter.GetSizeWrittenToPlaceholder() / 1000000;
|
|
int installProgress = (int)(((double)bufferedPlaceholderWriter.GetSizeWrittenToPlaceholder() / (double)bufferedPlaceholderWriter.GetTotalDataSize()) * 100.0);
|
|
|
|
//printf("> Install Progress: %lu/%lu MB (%i%s)\r", installSizeMB, totalSizeMB, installProgress, "%");
|
|
inst::ui::setInstBarPerc((double)installProgress);
|
|
}
|
|
|
|
thrd_join(usbThread, NULL);
|
|
thrd_join(writeThread, NULL);
|
|
}
|
|
|
|
void USBNSP::BufferData(void* buf, off_t offset, size_t size)
|
|
{
|
|
printf("buffering 0x%lx-0x%lx", offset, offset + size);
|
|
tin::util::USBCmdHeader header = tin::util::USBCmdManager::SendFileRangeCmd(m_nspName, offset, size);
|
|
tin::util::USBRead(buf, header.dataSize);
|
|
}
|
|
} |