mirror of
				https://github.com/Atmosphere-NX/Atmosphere-libs.git
				synced 2025-10-31 11:36:02 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			72 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			72 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 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 <http://www.gnu.org/licenses/>.
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| #include "lr_location_resolver_impl_base.hpp"
 | |
| #include "lr_location_redirector.hpp"
 | |
| 
 | |
| namespace ams::lr {
 | |
| 
 | |
|     class ContentLocationResolverImpl : public LocationResolverImplBase {
 | |
|         private:
 | |
|             ncm::StorageId m_storage_id;
 | |
|             bool m_enabled;
 | |
| 
 | |
|             /* Objects for this storage type. */
 | |
|             ncm::ContentMetaDatabase m_content_meta_database;
 | |
|             ncm::ContentStorage m_content_storage;
 | |
|         public:
 | |
|             ContentLocationResolverImpl(ncm::StorageId storage_id, bool enabled) : m_storage_id(storage_id), m_enabled(enabled), m_content_meta_database(), m_content_storage() { /* ... */ }
 | |
| 
 | |
|             ~ContentLocationResolverImpl();
 | |
|         private:
 | |
|             /* Helper functions. */
 | |
|             void GetContentStoragePath(Path *out, ncm::ContentId content_id);
 | |
|             Result ResolveProgramPath(Path *out, RedirectionAttributes *out_attr, ncm::ProgramId id);
 | |
|         public:
 | |
|             /* Actual commands. */
 | |
|             Result ResolveProgramPath(sf::Out<Path> out, ncm::ProgramId id);
 | |
|             Result RedirectProgramPath(const Path &path, ncm::ProgramId id);
 | |
|             Result ResolveApplicationControlPath(sf::Out<Path> out, ncm::ProgramId id);
 | |
|             Result ResolveApplicationHtmlDocumentPath(sf::Out<Path> out, ncm::ProgramId id);
 | |
|             Result ResolveDataPath(sf::Out<Path> out, ncm::DataId id);
 | |
|             Result RedirectApplicationControlPathDeprecated(const Path &path, ncm::ProgramId id);
 | |
|             Result RedirectApplicationControlPath(const Path &path, ncm::ProgramId id, ncm::ProgramId owner_id);
 | |
|             Result RedirectApplicationHtmlDocumentPathDeprecated(const Path &path, ncm::ProgramId id);
 | |
|             Result RedirectApplicationHtmlDocumentPath(const Path &path, ncm::ProgramId id, ncm::ProgramId owner_id);
 | |
|             Result ResolveApplicationLegalInformationPath(sf::Out<Path> out, ncm::ProgramId id);
 | |
|             Result RedirectApplicationLegalInformationPathDeprecated(const Path &path, ncm::ProgramId id);
 | |
|             Result RedirectApplicationLegalInformationPath(const Path &path, ncm::ProgramId id, ncm::ProgramId owner_id);
 | |
|             Result Refresh();
 | |
|             Result RedirectApplicationProgramPathDeprecated(const Path &path, ncm::ProgramId id);
 | |
|             Result RedirectApplicationProgramPath(const Path &path, ncm::ProgramId id, ncm::ProgramId owner_id);
 | |
|             Result ClearApplicationRedirectionDeprecated();
 | |
|             Result ClearApplicationRedirection(const sf::InArray<ncm::ProgramId> &excluding_ids);
 | |
|             Result EraseProgramRedirection(ncm::ProgramId id);
 | |
|             Result EraseApplicationControlRedirection(ncm::ProgramId id);
 | |
|             Result EraseApplicationHtmlDocumentRedirection(ncm::ProgramId id);
 | |
|             Result EraseApplicationLegalInformationRedirection(ncm::ProgramId id);
 | |
|             Result ResolveProgramPathForDebug(sf::Out<Path> out, ncm::ProgramId id);
 | |
|             Result RedirectProgramPathForDebug(const Path &path, ncm::ProgramId id);
 | |
|             Result RedirectApplicationProgramPathForDebugDeprecated(const Path &path, ncm::ProgramId id);
 | |
|             Result RedirectApplicationProgramPathForDebug(const Path &path, ncm::ProgramId id, ncm::ProgramId owner_id);
 | |
|             Result EraseProgramRedirectionForDebug(ncm::ProgramId id);
 | |
|             Result Disable();
 | |
|     };
 | |
|     static_assert(lr::IsILocationResolver<ContentLocationResolverImpl>);
 | |
| 
 | |
| }
 |