/* * Copyright (c) 2019-2020 Adubbz, Atmosphère-NX * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope 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 . */ #include #include "lr_content_location_resolver_impl.hpp" /* TODO: Properly integrate NCM api into libstratosphere to avoid linker hack. */ namespace ams::ncm::impl { Result OpenContentMetaDatabase(std::shared_ptr *, ncm::StorageId); Result OpenContentStorage(std::shared_ptr *, ncm::StorageId); } namespace ams::lr { ContentLocationResolverImpl::~ContentLocationResolverImpl() { this->ClearRedirections(); } /* Helper function. */ void ContentLocationResolverImpl::GetContentStoragePath(Path* out, ncm::ContentId content_id) { R_ABORT_UNLESS(this->content_storage->GetPath(out, content_id)); } Result ContentLocationResolverImpl::ResolveProgramPath(sf::Out out, ncm::ProgramId id) { /* Use a redirection if present. */ R_UNLESS(!this->program_redirector.FindRedirection(out.GetPointer(), id), ResultSuccess()); /* Find the latest program content for the program id. */ ncm::ContentId program_content_id; R_TRY_CATCH(this->content_meta_database->GetLatestProgram(&program_content_id, id)) { R_CONVERT(ncm::ResultContentMetaNotFound, lr::ResultProgramNotFound()) } R_END_TRY_CATCH; /* Obtain the content path. */ this->GetContentStoragePath(out.GetPointer(), program_content_id); return ResultSuccess(); } Result ContentLocationResolverImpl::RedirectProgramPath(const Path &path, ncm::ProgramId id) { this->program_redirector.SetRedirection(id, path); return ResultSuccess(); } Result ContentLocationResolverImpl::ResolveApplicationControlPath(sf::Out out, ncm::ProgramId id) { R_UNLESS(this->app_control_redirector.FindRedirection(out.GetPointer(), id), lr::ResultControlNotFound()); return ResultSuccess(); } Result ContentLocationResolverImpl::ResolveApplicationHtmlDocumentPath(sf::Out out, ncm::ProgramId id) { R_UNLESS(this->html_docs_redirector.FindRedirection(out.GetPointer(), id), lr::ResultHtmlDocumentNotFound()); return ResultSuccess(); } Result ContentLocationResolverImpl::ResolveDataPath(sf::Out out, ncm::ProgramId id) { /* Find the latest data content for the program id. */ ncm::ContentId data_content_id; R_TRY(this->content_meta_database->GetLatestData(&data_content_id, id)); /* Obtain the content path. */ this->GetContentStoragePath(out.GetPointer(), data_content_id); return ResultSuccess(); } Result ContentLocationResolverImpl::RedirectApplicationControlPathDeprecated(const Path &path, ncm::ProgramId id) { this->app_control_redirector.SetRedirection(id, path, RedirectionFlags_Application); return ResultSuccess(); } Result ContentLocationResolverImpl::RedirectApplicationControlPath(const Path &path, ncm::ProgramId id, ncm::ProgramId owner_id) { this->app_control_redirector.SetRedirection(id, owner_id, path, RedirectionFlags_Application); return ResultSuccess(); } Result ContentLocationResolverImpl::RedirectApplicationHtmlDocumentPathDeprecated(const Path &path, ncm::ProgramId id) { this->html_docs_redirector.SetRedirection(id, path, RedirectionFlags_Application); return ResultSuccess(); } Result ContentLocationResolverImpl::RedirectApplicationHtmlDocumentPath(const Path &path, ncm::ProgramId id, ncm::ProgramId owner_id) { this->html_docs_redirector.SetRedirection(id, owner_id, path, RedirectionFlags_Application); return ResultSuccess(); } Result ContentLocationResolverImpl::ResolveApplicationLegalInformationPath(sf::Out out, ncm::ProgramId id) { R_UNLESS(this->legal_info_redirector.FindRedirection(out.GetPointer(), id), lr::ResultLegalInformationNotFound()); return ResultSuccess(); } Result ContentLocationResolverImpl::RedirectApplicationLegalInformationPathDeprecated(const Path &path, ncm::ProgramId id) { this->legal_info_redirector.SetRedirection(id, path, RedirectionFlags_Application); return ResultSuccess(); } Result ContentLocationResolverImpl::RedirectApplicationLegalInformationPath(const Path &path, ncm::ProgramId id, ncm::ProgramId owner_id) { this->legal_info_redirector.SetRedirection(id, owner_id, path, RedirectionFlags_Application); return ResultSuccess(); } Result ContentLocationResolverImpl::Refresh() { /* Obtain Content Meta Database and Content Storage objects for this resolver's storage. */ std::shared_ptr content_meta_database; std::shared_ptr content_storage; R_TRY(ncm::impl::OpenContentMetaDatabase(&content_meta_database, this->storage_id)); R_TRY(ncm::impl::OpenContentStorage(&content_storage, this->storage_id)); /* Store the acquired objects. */ this->content_meta_database = std::move(content_meta_database); this->content_storage = std::move(content_storage); /* Remove any existing redirections. */ this->ClearRedirections(); return ResultSuccess(); } Result ContentLocationResolverImpl::RedirectApplicationProgramPathDeprecated(const Path &path, ncm::ProgramId id) { this->program_redirector.SetRedirection(id, path, RedirectionFlags_Application); return ResultSuccess(); } Result ContentLocationResolverImpl::RedirectApplicationProgramPath(const Path &path, ncm::ProgramId id, ncm::ProgramId owner_id) { this->program_redirector.SetRedirection(id, owner_id, path, RedirectionFlags_Application); return ResultSuccess(); } Result ContentLocationResolverImpl::ClearApplicationRedirectionDeprecated() { this->ClearRedirections(RedirectionFlags_Application); return ResultSuccess(); } Result ContentLocationResolverImpl::ClearApplicationRedirection(const sf::InArray &excluding_ids) { this->ClearRedirections(excluding_ids.GetPointer(), excluding_ids.GetSize()); return ResultSuccess(); } Result ContentLocationResolverImpl::EraseProgramRedirection(ncm::ProgramId id) { this->program_redirector.EraseRedirection(id); return ResultSuccess(); } Result ContentLocationResolverImpl::EraseApplicationControlRedirection(ncm::ProgramId id) { this->app_control_redirector.EraseRedirection(id); return ResultSuccess(); } Result ContentLocationResolverImpl::EraseApplicationHtmlDocumentRedirection(ncm::ProgramId id) { this->html_docs_redirector.EraseRedirection(id); return ResultSuccess(); } Result ContentLocationResolverImpl::EraseApplicationLegalInformationRedirection(ncm::ProgramId id) { this->legal_info_redirector.EraseRedirection(id); return ResultSuccess(); } Result ContentLocationResolverImpl::ResolveProgramPathForDebug(sf::Out out, ncm::ProgramId id) { /* Use a redirection if present. */ R_UNLESS(!this->debug_program_redirector.FindRedirection(out.GetPointer(), id), ResultSuccess()); /* Otherwise find the path for the program id. */ R_TRY_CATCH(this->ResolveProgramPath(out.GetPointer(), id)) { R_CONVERT(ResultProgramNotFound, lr::ResultDebugProgramNotFound()) } R_END_TRY_CATCH; return ResultSuccess(); } Result ContentLocationResolverImpl::RedirectProgramPathForDebug(const Path &path, ncm::ProgramId id) { this->debug_program_redirector.SetRedirection(id, path); return ResultSuccess(); } Result ContentLocationResolverImpl::RedirectApplicationProgramPathForDebugDeprecated(const Path &path, ncm::ProgramId id) { this->debug_program_redirector.SetRedirection(id, path, RedirectionFlags_Application); return ResultSuccess(); } Result ContentLocationResolverImpl::RedirectApplicationProgramPathForDebug(const Path &path, ncm::ProgramId id, ncm::ProgramId owner_id) { this->debug_program_redirector.SetRedirection(id, owner_id, path, RedirectionFlags_Application); return ResultSuccess(); } Result ContentLocationResolverImpl::EraseProgramRedirectionForDebug(ncm::ProgramId id) { this->debug_program_redirector.EraseRedirection(id); return ResultSuccess(); } }