mirror of
https://github.com/Atmosphere-NX/Atmosphere-libs.git
synced 2025-06-26 21:12:41 +02:00
196 lines
10 KiB
C++
196 lines
10 KiB
C++
/*
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
*/
|
|
#pragma once
|
|
#include <stratosphere.hpp>
|
|
|
|
namespace ams::ncm {
|
|
|
|
class RemoteContentStorageImpl {
|
|
private:
|
|
::NcmContentStorage srv;
|
|
public:
|
|
RemoteContentStorageImpl(::NcmContentStorage &cs) : srv(cs) { /* ... */ }
|
|
|
|
~RemoteContentStorageImpl() { ::ncmContentStorageClose(std::addressof(srv)); }
|
|
private:
|
|
ALWAYS_INLINE ::NcmPlaceHolderId *Convert(PlaceHolderId *p) {
|
|
static_assert(sizeof(PlaceHolderId) == sizeof(::NcmPlaceHolderId));
|
|
return reinterpret_cast<::NcmPlaceHolderId *>(p);
|
|
}
|
|
|
|
ALWAYS_INLINE ::NcmPlaceHolderId *Convert(PlaceHolderId &p) {
|
|
static_assert(sizeof(PlaceHolderId) == sizeof(::NcmPlaceHolderId));
|
|
return reinterpret_cast<::NcmPlaceHolderId *>(std::addressof(p));
|
|
}
|
|
|
|
ALWAYS_INLINE ::NcmContentId *Convert(ContentId *c) {
|
|
static_assert(sizeof(ContentId) == sizeof(::NcmContentId));
|
|
return reinterpret_cast<::NcmContentId *>(c);
|
|
}
|
|
|
|
ALWAYS_INLINE ::NcmContentId *Convert(ContentId &c) {
|
|
static_assert(sizeof(ContentId) == sizeof(::NcmContentId));
|
|
return reinterpret_cast<::NcmContentId *>(std::addressof(c));
|
|
}
|
|
public:
|
|
Result GeneratePlaceHolderId(sf::Out<PlaceHolderId> out) {
|
|
return ncmContentStorageGeneratePlaceHolderId(std::addressof(this->srv), Convert(out.GetPointer()));
|
|
}
|
|
|
|
Result CreatePlaceHolder(PlaceHolderId placeholder_id, ContentId content_id, s64 size) {
|
|
static_assert(alignof(ContentId) < alignof(PlaceHolderId));
|
|
return ncmContentStorageCreatePlaceHolder(std::addressof(this->srv), Convert(content_id), Convert(placeholder_id), size);
|
|
}
|
|
|
|
Result DeletePlaceHolder(PlaceHolderId placeholder_id) {
|
|
return ncmContentStorageDeletePlaceHolder(std::addressof(this->srv), Convert(placeholder_id));
|
|
}
|
|
|
|
Result HasPlaceHolder(sf::Out<bool> out, PlaceHolderId placeholder_id) {
|
|
return ncmContentStorageHasPlaceHolder(std::addressof(this->srv), out.GetPointer(), Convert(placeholder_id));
|
|
}
|
|
|
|
Result WritePlaceHolder(PlaceHolderId placeholder_id, s64 offset, const sf::InBuffer &data) {
|
|
return ncmContentStorageWritePlaceHolder(std::addressof(this->srv), Convert(placeholder_id), offset, data.GetPointer(), data.GetSize());
|
|
}
|
|
|
|
Result Register(PlaceHolderId placeholder_id, ContentId content_id) {
|
|
static_assert(alignof(ContentId) < alignof(PlaceHolderId));
|
|
return ncmContentStorageRegister(std::addressof(this->srv), Convert(content_id), Convert(placeholder_id));
|
|
}
|
|
|
|
Result Delete(ContentId content_id) {
|
|
return ncmContentStorageDelete(std::addressof(this->srv), Convert(content_id));
|
|
}
|
|
|
|
Result Has(sf::Out<bool> out, ContentId content_id) {
|
|
return ncmContentStorageHas(std::addressof(this->srv), out.GetPointer(), Convert(content_id));
|
|
}
|
|
|
|
Result GetPath(sf::Out<Path> out, ContentId content_id) {
|
|
return ncmContentStorageGetPath(std::addressof(this->srv), out.GetPointer()->str, sizeof(out.GetPointer()->str), Convert(content_id));
|
|
}
|
|
|
|
Result GetPlaceHolderPath(sf::Out<Path> out, PlaceHolderId placeholder_id) {
|
|
return ncmContentStorageGetPlaceHolderPath(std::addressof(this->srv), out.GetPointer()->str, sizeof(out.GetPointer()->str), Convert(placeholder_id));
|
|
}
|
|
|
|
Result CleanupAllPlaceHolder() {
|
|
return ncmContentStorageCleanupAllPlaceHolder(std::addressof(this->srv));
|
|
}
|
|
|
|
Result ListPlaceHolder(sf::Out<s32> out_count, const sf::OutArray<PlaceHolderId> &out_buf) {
|
|
return ncmContentStorageListPlaceHolder(std::addressof(this->srv), Convert(out_buf.GetPointer()), out_buf.GetSize(), out_count.GetPointer());
|
|
}
|
|
|
|
Result GetContentCount(sf::Out<s32> out_count) {
|
|
return ncmContentStorageGetContentCount(std::addressof(this->srv), out_count.GetPointer());
|
|
}
|
|
|
|
Result ListContentId(sf::Out<s32> out_count, const sf::OutArray<ContentId> &out_buf, s32 offset) {
|
|
return ncmContentStorageListContentId(std::addressof(this->srv), Convert(out_buf.GetPointer()), out_buf.GetSize(), out_count.GetPointer(), offset);
|
|
}
|
|
|
|
Result GetSizeFromContentId(sf::Out<s64> out_size, ContentId content_id) {
|
|
return ncmContentStorageGetSizeFromContentId(std::addressof(this->srv), out_size.GetPointer(), Convert(content_id));
|
|
}
|
|
|
|
Result DisableForcibly() {
|
|
return ncmContentStorageDisableForcibly(std::addressof(this->srv));
|
|
}
|
|
|
|
Result RevertToPlaceHolder(PlaceHolderId placeholder_id, ContentId old_content_id, ContentId new_content_id) {
|
|
return ncmContentStorageRevertToPlaceHolder(std::addressof(this->srv), Convert(placeholder_id), Convert(old_content_id), Convert(new_content_id));
|
|
}
|
|
|
|
Result SetPlaceHolderSize(PlaceHolderId placeholder_id, s64 size) {
|
|
return ncmContentStorageSetPlaceHolderSize(std::addressof(this->srv), Convert(placeholder_id), size);
|
|
}
|
|
|
|
Result ReadContentIdFile(const sf::OutBuffer &buf, ContentId content_id, s64 offset) {
|
|
return ncmContentStorageReadContentIdFile(std::addressof(this->srv), buf.GetPointer(), buf.GetSize(), Convert(content_id), offset);
|
|
}
|
|
|
|
Result GetRightsIdFromPlaceHolderIdDeprecated(sf::Out<ams::fs::RightsId> out_rights_id, PlaceHolderId placeholder_id) {
|
|
::NcmRightsId rights_id;
|
|
R_TRY(ncmContentStorageGetRightsIdFromPlaceHolderId(std::addressof(this->srv), std::addressof(rights_id), Convert(placeholder_id)));
|
|
|
|
static_assert(sizeof(*out_rights_id.GetPointer()) <= sizeof(rights_id));
|
|
std::memcpy(out_rights_id.GetPointer(), std::addressof(rights_id), sizeof(*out_rights_id.GetPointer()));
|
|
return ResultSuccess();
|
|
}
|
|
|
|
Result GetRightsIdFromPlaceHolderId(sf::Out<ncm::RightsId> out_rights_id, PlaceHolderId placeholder_id) {
|
|
::NcmRightsId rights_id;
|
|
R_TRY(ncmContentStorageGetRightsIdFromPlaceHolderId(std::addressof(this->srv), std::addressof(rights_id), Convert(placeholder_id)));
|
|
|
|
static_assert(sizeof(*out_rights_id.GetPointer()) <= sizeof(rights_id));
|
|
std::memcpy(out_rights_id.GetPointer(), std::addressof(rights_id), sizeof(*out_rights_id.GetPointer()));
|
|
return ResultSuccess();
|
|
}
|
|
|
|
Result GetRightsIdFromContentIdDeprecated(sf::Out<ams::fs::RightsId> out_rights_id, ContentId content_id) {
|
|
::NcmRightsId rights_id;
|
|
R_TRY(ncmContentStorageGetRightsIdFromContentId(std::addressof(this->srv), std::addressof(rights_id), Convert(content_id)));
|
|
|
|
static_assert(sizeof(*out_rights_id.GetPointer()) <= sizeof(rights_id));
|
|
std::memcpy(out_rights_id.GetPointer(), std::addressof(rights_id), sizeof(*out_rights_id.GetPointer()));
|
|
return ResultSuccess();
|
|
}
|
|
|
|
Result GetRightsIdFromContentId(sf::Out<ncm::RightsId> out_rights_id, ContentId content_id) {
|
|
::NcmRightsId rights_id;
|
|
R_TRY(ncmContentStorageGetRightsIdFromContentId(std::addressof(this->srv), std::addressof(rights_id), Convert(content_id)));
|
|
|
|
static_assert(sizeof(*out_rights_id.GetPointer()) <= sizeof(rights_id));
|
|
std::memcpy(out_rights_id.GetPointer(), std::addressof(rights_id), sizeof(*out_rights_id.GetPointer()));
|
|
return ResultSuccess();
|
|
}
|
|
|
|
Result WriteContentForDebug(ContentId content_id, s64 offset, const sf::InBuffer &data) {
|
|
return ncmContentStorageWriteContentForDebug(std::addressof(this->srv), Convert(content_id), offset, data.GetPointer(), data.GetSize());
|
|
}
|
|
|
|
Result GetFreeSpaceSize(sf::Out<s64> out_size) {
|
|
return ncmContentStorageGetFreeSpaceSize(std::addressof(this->srv), out_size.GetPointer());
|
|
}
|
|
|
|
Result GetTotalSpaceSize(sf::Out<s64> out_size) {
|
|
return ncmContentStorageGetTotalSpaceSize(std::addressof(this->srv), out_size.GetPointer());
|
|
}
|
|
|
|
Result FlushPlaceHolder() {
|
|
return ncmContentStorageFlushPlaceHolder(std::addressof(this->srv));
|
|
}
|
|
|
|
Result GetSizeFromPlaceHolderId(sf::Out<s64> out_size, PlaceHolderId placeholder_id) {
|
|
return ncmContentStorageGetSizeFromPlaceHolderId(std::addressof(this->srv), out_size.GetPointer(), Convert(placeholder_id));
|
|
}
|
|
|
|
Result RepairInvalidFileAttribute() {
|
|
return ncmContentStorageRepairInvalidFileAttribute(std::addressof(this->srv));
|
|
}
|
|
|
|
Result GetRightsIdFromPlaceHolderIdWithCache(sf::Out<ncm::RightsId> out_rights_id, PlaceHolderId placeholder_id, ContentId cache_content_id) {
|
|
static_assert(sizeof(::NcmRightsId) == sizeof(ncm::RightsId));
|
|
::NcmRightsId *out = reinterpret_cast<::NcmRightsId *>(out_rights_id.GetPointer());
|
|
return ncmContentStorageGetRightsIdFromPlaceHolderIdWithCache(std::addressof(this->srv), out, Convert(placeholder_id), Convert(cache_content_id));
|
|
}
|
|
};
|
|
static_assert(ncm::IsIContentStorage<RemoteContentStorageImpl>);
|
|
|
|
}
|