Play-/Source/ui_shared/BootablesProcesses.cpp

137 lines
3.6 KiB
C++
Raw Normal View History

#include <algorithm>
#include "BootablesProcesses.h"
2017-10-20 15:38:51 -04:00
#include "BootablesDbClient.h"
2017-10-23 07:27:42 -04:00
#include "TheGamesDbClient.h"
#include "DiskUtils.h"
2017-10-23 07:27:42 -04:00
#include "string_format.h"
//Jobs
// Scan for new games (from input directory)
// Remove games that might not be available anymore
// Extract game ids from disk images
// Pull disc cover URLs and titles from GamesDb/TheGamesDb
bool IsBootableExecutablePath(const boost::filesystem::path& filePath)
{
auto extension = filePath.extension().string();
std::transform(extension.begin(), extension.end(), extension.begin(), ::tolower);
return (extension == ".elf");
}
bool IsBootableDiscImagePath(const boost::filesystem::path& filePath)
{
auto extension = filePath.extension().string();
std::transform(extension.begin(), extension.end(), extension.begin(), ::tolower);
2018-08-29 13:53:51 -04:00
return (extension == ".iso") ||
(extension == ".isz") ||
(extension == ".cso") ||
(extension == ".bin");
}
void ScanBootables(const boost::filesystem::path& parentPath, bool recursive)
{
for(auto pathIterator = boost::filesystem::directory_iterator(parentPath);
2018-08-29 13:53:51 -04:00
pathIterator != boost::filesystem::directory_iterator(); pathIterator++)
{
auto& path = pathIterator->path();
try
{
if(recursive && boost::filesystem::is_directory(path))
{
ScanBootables(path, recursive);
continue;
}
2019-01-06 00:04:03 +00:00
std::string serial;
if(
2019-01-06 00:04:03 +00:00
!IsBootableExecutablePath(path) &&
!(IsBootableDiscImagePath(path) && DiskUtils::TryGetDiskId(path, &serial)))
{
continue;
}
BootablesDb::CClient::GetInstance().RegisterBootable(path, path.filename().string().c_str());
}
catch(const std::exception& exception)
2017-11-01 07:26:30 -04:00
{
//Failed to process a path, keep going
2017-11-01 07:26:30 -04:00
}
}
}
std::set<boost::filesystem::path> GetActiveBootableDirectories()
{
std::set<boost::filesystem::path> result;
auto bootables = BootablesDb::CClient::GetInstance().GetBootables();
for(const auto& bootable : bootables)
{
auto parentPath = bootable.path.parent_path();
result.insert(parentPath);
}
return result;
}
2017-10-27 18:06:59 -04:00
void PurgeInexistingFiles()
{
auto bootables = BootablesDb::CClient::GetInstance().GetBootables();
for(const auto& bootable : bootables)
{
if(boost::filesystem::exists(bootable.path)) continue;
BootablesDb::CClient::GetInstance().UnregisterBootable(bootable.path);
}
}
void ExtractDiscIds()
{
auto bootables = BootablesDb::CClient::GetInstance().GetBootables();
for(const auto& bootable : bootables)
{
std::string discId;
if(!DiskUtils::TryGetDiskId(bootable.path, &discId)) continue;
BootablesDb::CClient::GetInstance().SetDiscId(bootable.path, discId.c_str());
}
}
void FetchGameTitles()
{
2017-10-20 15:40:49 -04:00
auto bootables = BootablesDb::CClient::GetInstance().GetBootables();
2019-01-06 00:04:03 +00:00
std::vector<std::string> serials;
2017-10-20 15:40:49 -04:00
for(const auto& bootable : bootables)
{
2019-01-06 00:04:03 +00:00
if(bootable.discId.empty())
continue;
if(bootable.coverUrl.empty() || bootable.title.empty() || bootable.overview.empty())
serials.push_back(bootable.discId);
}
if(serials.empty())
return;
auto gamesList = TheGamesDb::CClient::GetInstance().GetGames(serials);
for(auto &game : gamesList)
{
for(const auto &bootable : bootables)
2017-10-20 15:40:49 -04:00
{
2019-01-06 00:04:03 +00:00
for(const auto &discId : game.discIds)
{
if(discId == bootable.discId)
{
BootablesDb::CClient::GetInstance().SetTitle(bootable.path, game.title.c_str());
if(!game.overview.empty())
{
BootablesDb::CClient::GetInstance().SetOverview(bootable.path, game.overview.c_str());
}
if(!game.boxArtUrl.empty())
{
auto coverUrl = string_format("%s/%s", game.baseImgUrl.c_str(), game.boxArtUrl.c_str());
BootablesDb::CClient::GetInstance().SetCoverUrl(bootable.path, coverUrl.c_str());
}
break;
}
}
2017-10-20 15:40:49 -04:00
}
}
}
2017-10-23 07:27:42 -04:00