mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-15 01:26:34 +00:00
84 lines
No EOL
3.1 KiB
C++
84 lines
No EOL
3.1 KiB
C++
/*
|
|
* Copyright (c) 2019 Adubbz
|
|
*
|
|
* 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 "impl/ncm_content_manager.hpp"
|
|
#include "ncm_content_manager_service.hpp"
|
|
|
|
namespace sts::ncm {
|
|
|
|
ContentManagerService::~ContentManagerService() {
|
|
impl::FinalizeContentManager();
|
|
}
|
|
|
|
Result ContentManagerService::CreateContentStorage(StorageId storage_id) {
|
|
return impl::CreateContentStorage(storage_id);
|
|
}
|
|
|
|
Result ContentManagerService::CreateContentMetaDatabase(StorageId storage_id) {
|
|
return impl::CreateContentMetaDatabase(storage_id);
|
|
}
|
|
|
|
Result ContentManagerService::VerifyContentStorage(StorageId storage_id) {
|
|
return impl::VerifyContentStorage(storage_id);
|
|
}
|
|
|
|
Result ContentManagerService::VerifyContentMetaDatabase(StorageId storage_id) {
|
|
return impl::VerifyContentMetaDatabase(storage_id);
|
|
}
|
|
|
|
Result ContentManagerService::OpenContentStorage(Out<std::shared_ptr<IContentStorage>> out, StorageId storage_id) {
|
|
std::shared_ptr<IContentStorage> content_storage;
|
|
R_TRY(impl::OpenContentStorage(&content_storage, storage_id));
|
|
out.SetValue(std::move(content_storage));
|
|
return ResultSuccess;
|
|
}
|
|
|
|
Result ContentManagerService::OpenContentMetaDatabase(Out<std::shared_ptr<IContentMetaDatabase>> out, StorageId storage_id) {
|
|
std::shared_ptr<IContentMetaDatabase> content_meta_database;
|
|
R_TRY(impl::OpenContentMetaDatabase(&content_meta_database, storage_id));
|
|
out.SetValue(std::move(content_meta_database));
|
|
return ResultSuccess;
|
|
}
|
|
|
|
Result ContentManagerService::CloseContentStorageForcibly(StorageId storage_id) {
|
|
return impl::CloseContentStorageForcibly(storage_id);
|
|
}
|
|
|
|
Result ContentManagerService::CloseContentMetaDatabaseForcibly(StorageId storage_id) {
|
|
return impl::CloseContentMetaDatabaseForcibly(storage_id);
|
|
}
|
|
|
|
Result ContentManagerService::CleanupContentMetaDatabase(StorageId storage_id) {
|
|
return impl::CleanupContentMetaDatabase(storage_id);
|
|
}
|
|
|
|
Result ContentManagerService::ActivateContentStorage(StorageId storage_id) {
|
|
return impl::ActivateContentStorage(storage_id);
|
|
}
|
|
|
|
Result ContentManagerService::InactivateContentStorage(StorageId storage_id) {
|
|
return impl::InactivateContentStorage(storage_id);
|
|
}
|
|
|
|
Result ContentManagerService::ActivateContentMetaDatabase(StorageId storage_id) {
|
|
return impl::ActivateContentMetaDatabase(storage_id);
|
|
}
|
|
|
|
Result ContentManagerService::InactivateContentMetaDatabase(StorageId storage_id) {
|
|
return impl::InactivateContentMetaDatabase(storage_id);
|
|
}
|
|
|
|
} |