2019-11-29 08:23:11 +00:00
/*
Copyright ( c ) 2017 - 2018 Adubbz
Permission is hereby granted , free of charge , to any person obtaining a copy
of this software and associated documentation files ( the " Software " ) , to deal
in the Software without restriction , including without limitation the rights
to use , copy , modify , merge , publish , distribute , sublicense , and / or sell
copies of the Software , and to permit persons to whom the Software is
furnished to do so , subject to the following conditions :
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software .
THE SOFTWARE IS PROVIDED " AS IS " , WITHOUT WARRANTY OF ANY KIND , EXPRESS OR
IMPLIED , INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY ,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT . IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM , DAMAGES OR OTHER
LIABILITY , WHETHER IN AN ACTION OF CONTRACT , TORT OR OTHERWISE , ARISING FROM ,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE .
*/
# include "install/http_xci.hpp"
# include <threads.h>
# include "data/buffered_placeholder_writer.hpp"
# include "util/error.hpp"
2019-11-30 16:12:45 +00:00
# include "sdInstall.hpp"
2019-11-29 08:23:11 +00:00
# include "util/util.hpp"
namespace tin : : install : : xci
{
2019-12-13 16:46:23 +00:00
bool stopThreadsHttpXci ;
2019-11-29 08:23:11 +00:00
HTTPXCI : : HTTPXCI ( std : : string url ) :
m_download ( url )
{
}
struct StreamFuncArgs
{
tin : : network : : HTTPDownload * download ;
tin : : data : : BufferedPlaceholderWriter * bufferedPlaceholderWriter ;
u64 pfs0Offset ;
u64 ncaSize ;
} ;
int CurlStreamFunc ( void * in )
{
StreamFuncArgs * args = reinterpret_cast < StreamFuncArgs * > ( in ) ;
auto streamFunc = [ & ] ( u8 * streamBuf , size_t streamBufSize ) - > size_t
{
while ( true )
{
if ( args - > bufferedPlaceholderWriter - > CanAppendData ( streamBufSize ) )
break ;
}
args - > bufferedPlaceholderWriter - > AppendData ( streamBuf , streamBufSize ) ;
return streamBufSize ;
} ;
2019-12-13 16:46:23 +00:00
if ( args - > download - > StreamDataRange ( args - > pfs0Offset , args - > ncaSize , streamFunc ) = = 1 ) stopThreadsHttpXci = true ;
2019-11-29 08:23:11 +00:00
return 0 ;
}
int PlaceholderWriteFunc ( void * in )
{
StreamFuncArgs * args = reinterpret_cast < StreamFuncArgs * > ( in ) ;
2019-12-13 16:46:23 +00:00
while ( ! args - > bufferedPlaceholderWriter - > IsPlaceholderComplete ( ) & & ! stopThreadsHttpXci )
2019-11-29 08:23:11 +00:00
{
if ( args - > bufferedPlaceholderWriter - > CanWriteSegmentToPlaceholder ( ) )
args - > bufferedPlaceholderWriter - > WriteSegmentToPlaceholder ( ) ;
}
return 0 ;
}
2019-11-30 12:58:39 +00:00
void HTTPXCI : : StreamToPlaceholder ( std : : shared_ptr < nx : : ncm : : ContentStorage > & contentStorage , NcmContentId ncaId )
2019-11-29 08:23:11 +00:00
{
2019-11-30 12:58:39 +00:00
const HFS0FileEntry * fileEntry = this - > GetFileEntryByNcaId ( ncaId ) ;
2019-11-29 08:23:11 +00:00
std : : string ncaFileName = this - > GetFileEntryName ( fileEntry ) ;
2019-11-30 17:12:59 +00:00
LOG_DEBUG ( " Retrieving %s \n " , ncaFileName . c_str ( ) ) ;
2019-11-29 08:23:11 +00:00
size_t ncaSize = fileEntry - > fileSize ;
2019-11-30 12:58:39 +00:00
tin : : data : : BufferedPlaceholderWriter bufferedPlaceholderWriter ( contentStorage , ncaId , ncaSize ) ;
2019-11-29 08:23:11 +00:00
StreamFuncArgs args ;
args . download = & m_download ;
args . bufferedPlaceholderWriter = & bufferedPlaceholderWriter ;
args . pfs0Offset = this - > GetDataOffset ( ) + fileEntry - > dataOffset ;
args . ncaSize = ncaSize ;
thrd_t curlThread ;
thrd_t writeThread ;
2019-12-13 16:46:23 +00:00
stopThreadsHttpXci = false ;
2019-11-29 08:23:11 +00:00
thrd_create ( & curlThread , CurlStreamFunc , & args ) ;
thrd_create ( & writeThread , PlaceholderWriteFunc , & args ) ;
u64 freq = armGetSystemTickFreq ( ) ;
u64 startTime = armGetSystemTick ( ) ;
size_t startSizeBuffered = 0 ;
double speed = 0.0 ;
inst : : ui : : setInstBarPerc ( 0 ) ;
2019-12-13 16:46:23 +00:00
while ( ! bufferedPlaceholderWriter . IsBufferDataComplete ( ) & & ! stopThreadsHttpXci )
2019-11-29 08:23:11 +00:00
{
u64 newTime = armGetSystemTick ( ) ;
2019-11-30 18:42:55 +00:00
if ( newTime - startTime > = freq * 0.5 )
2019-11-29 08:23:11 +00:00
{
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 ;
2019-11-30 19:53:04 +00:00
int downloadProgress = ( int ) ( ( ( double ) bufferedPlaceholderWriter . GetSizeBuffered ( ) / ( double ) bufferedPlaceholderWriter . GetTotalDataSize ( ) ) * 100.0 ) ;
2019-11-30 18:20:59 +00:00
# ifdef NXLINK_DEBUG
u64 totalSizeMB = bufferedPlaceholderWriter . GetTotalDataSize ( ) / 1000000 ;
u64 downloadSizeMB = bufferedPlaceholderWriter . GetSizeBuffered ( ) / 1000000 ;
LOG_DEBUG ( " > Download Progress: %lu/%lu MB (%i%s) (%.2f MB/s) \r " , downloadSizeMB , totalSizeMB , downloadProgress , " % " , speed ) ;
# endif
2019-11-29 08:23:11 +00:00
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 ) ;
}
}
inst : : ui : : setInstBarPerc ( 100 ) ;
2019-11-30 18:20:59 +00:00
# ifdef NXLINK_DEBUG
u64 totalSizeMB = bufferedPlaceholderWriter . GetTotalDataSize ( ) / 1000000 ;
# endif
2019-11-29 08:23:11 +00:00
inst : : ui : : setInstInfoText ( " Installing " + ncaFileName + " ... " ) ;
inst : : ui : : setInstBarPerc ( 0 ) ;
2019-12-13 16:46:23 +00:00
while ( ! bufferedPlaceholderWriter . IsPlaceholderComplete ( ) & & ! stopThreadsHttpXci )
2019-11-29 08:23:11 +00:00
{
2019-11-30 19:53:04 +00:00
int installProgress = ( int ) ( ( ( double ) bufferedPlaceholderWriter . GetSizeWrittenToPlaceholder ( ) / ( double ) bufferedPlaceholderWriter . GetTotalDataSize ( ) ) * 100.0 ) ;
2019-11-30 18:20:59 +00:00
# ifdef NXLINK_DEBUG
u64 installSizeMB = bufferedPlaceholderWriter . GetSizeWrittenToPlaceholder ( ) / 1000000 ;
LOG_DEBUG ( " > Install Progress: %lu/%lu MB (%i%s) \r " , installSizeMB , totalSizeMB , installProgress , " % " ) ;
# endif
inst : : ui : : setInstBarPerc ( ( double ) installProgress ) ;
2019-11-29 08:23:11 +00:00
}
inst : : ui : : setInstBarPerc ( 100 ) ;
thrd_join ( curlThread , NULL ) ;
thrd_join ( writeThread , NULL ) ;
2019-12-13 16:46:23 +00:00
if ( stopThreadsHttpXci ) THROW_FORMAT ( " An error occured during data transfer. Check your network connection. " ) ;
2019-11-29 08:23:11 +00:00
}
void HTTPXCI : : BufferData ( void * buf , off_t offset , size_t size )
{
m_download . BufferDataRange ( buf , offset , size , nullptr ) ;
}
}