mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-09 22:56:35 +00:00
131 lines
4.8 KiB
C++
131 lines
4.8 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/>.
|
|
*/
|
|
#include <stratosphere.hpp>
|
|
#include "ncm_content_manager_factory.hpp"
|
|
#include "ncm_remote_content_manager_impl.hpp"
|
|
|
|
namespace ams::ncm {
|
|
|
|
namespace {
|
|
|
|
constinit sf::SharedPointer<IContentManager> g_content_manager;
|
|
|
|
#if defined(ATMOSPHERE_OS_HORIZON)
|
|
constinit util::TypedStorage<sf::UnmanagedServiceObject<IContentManager, RemoteContentManagerImpl>> g_remote_manager_storage = {};
|
|
#endif
|
|
|
|
}
|
|
|
|
void Initialize() {
|
|
AMS_ASSERT(g_content_manager == nullptr);
|
|
#if defined(ATMOSPHERE_OS_HORIZON)
|
|
util::ConstructAt(g_remote_manager_storage);
|
|
g_content_manager = util::GetReference(g_remote_manager_storage).GetShared();
|
|
#else
|
|
g_content_manager = CreateDefaultContentManager(ContentManagerConfig{});
|
|
#endif
|
|
}
|
|
|
|
void Finalize() {
|
|
AMS_ASSERT(g_content_manager != nullptr);
|
|
g_content_manager.Reset();
|
|
#if defined(ATMOSPHERE_OS_HORIZON)
|
|
util::DestroyAt(g_remote_manager_storage);
|
|
#endif
|
|
}
|
|
|
|
void InitializeWithObject(sf::SharedPointer<IContentManager> manager_object) {
|
|
AMS_ASSERT(g_content_manager == nullptr);
|
|
g_content_manager = manager_object;
|
|
AMS_ASSERT(g_content_manager != nullptr);
|
|
}
|
|
|
|
/* Service API. */
|
|
Result CreateContentStorage(StorageId storage_id) {
|
|
R_RETURN(g_content_manager->CreateContentStorage(storage_id));
|
|
}
|
|
|
|
Result CreateContentMetaDatabase(StorageId storage_id) {
|
|
R_RETURN(g_content_manager->CreateContentMetaDatabase(storage_id));
|
|
}
|
|
|
|
Result VerifyContentStorage(StorageId storage_id) {
|
|
R_RETURN(g_content_manager->VerifyContentStorage(storage_id));
|
|
}
|
|
|
|
Result VerifyContentMetaDatabase(StorageId storage_id) {
|
|
R_RETURN(g_content_manager->VerifyContentMetaDatabase(storage_id));
|
|
}
|
|
|
|
Result OpenContentStorage(ContentStorage *out, StorageId storage_id) {
|
|
sf::SharedPointer<IContentStorage> content_storage;
|
|
R_TRY(g_content_manager->OpenContentStorage(std::addressof(content_storage), storage_id));
|
|
|
|
*out = ContentStorage(std::move(content_storage));
|
|
R_SUCCEED();
|
|
}
|
|
|
|
Result OpenContentMetaDatabase(ContentMetaDatabase *out, StorageId storage_id) {
|
|
sf::SharedPointer<IContentMetaDatabase> content_db;
|
|
R_TRY(g_content_manager->OpenContentMetaDatabase(std::addressof(content_db), storage_id));
|
|
|
|
*out = ContentMetaDatabase(std::move(content_db));
|
|
R_SUCCEED();
|
|
}
|
|
|
|
Result CleanupContentMetaDatabase(StorageId storage_id) {
|
|
R_RETURN(g_content_manager->CleanupContentMetaDatabase(storage_id));
|
|
}
|
|
|
|
Result ActivateContentStorage(StorageId storage_id) {
|
|
R_RETURN(g_content_manager->ActivateContentStorage(storage_id));
|
|
}
|
|
|
|
Result InactivateContentStorage(StorageId storage_id) {
|
|
R_RETURN(g_content_manager->InactivateContentStorage(storage_id));
|
|
}
|
|
|
|
Result ActivateContentMetaDatabase(StorageId storage_id) {
|
|
/* On < 2.0.0, this command doesn't exist, and databases are activated as needed on open. */
|
|
R_SUCCEED_IF(hos::GetVersion() < hos::Version_2_0_0);
|
|
R_RETURN(g_content_manager->ActivateContentMetaDatabase(storage_id));
|
|
}
|
|
|
|
Result InactivateContentMetaDatabase(StorageId storage_id) {
|
|
/* On < 2.0.0, this command doesn't exist. */
|
|
R_SUCCEED_IF(hos::GetVersion() < hos::Version_2_0_0);
|
|
R_RETURN(g_content_manager->InactivateContentMetaDatabase(storage_id));
|
|
}
|
|
|
|
Result InvalidateRightsIdCache() {
|
|
R_RETURN(g_content_manager->InvalidateRightsIdCache());
|
|
}
|
|
|
|
Result ActivateFsContentStorage(fs::ContentStorageId fs_content_storage_id) {
|
|
R_RETURN(g_content_manager->ActivateFsContentStorage(fs_content_storage_id));
|
|
}
|
|
|
|
/* Deprecated API. */
|
|
Result CloseContentStorageForcibly(StorageId storage_id) {
|
|
AMS_ABORT_UNLESS(hos::GetVersion() == hos::Version_1_0_0);
|
|
R_RETURN(g_content_manager->CloseContentStorageForcibly(storage_id));
|
|
}
|
|
|
|
Result CloseContentMetaDatabaseForcibly(StorageId storage_id) {
|
|
AMS_ABORT_UNLESS(hos::GetVersion() == hos::Version_1_0_0);
|
|
R_RETURN(g_content_manager->CloseContentMetaDatabaseForcibly(storage_id));
|
|
}
|
|
}
|