/* * 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 . */ #pragma once #include #include #include "ncm_icontentstorage.hpp" namespace sts::ncm { class ReadOnlyContentStorageInterface : public IContentStorage { public: Result Initialize(const char* root_path, MakeContentPathFunc content_path_func); public: virtual Result GeneratePlaceHolderId(Out out) override; virtual Result CreatePlaceHolder(PlaceHolderId placeholder_id, ContentId content_id, u64 size) override; virtual Result DeletePlaceHolder(PlaceHolderId placeholder_id) override; virtual Result HasPlaceHolder(Out out, PlaceHolderId placeholder_id) override; virtual Result WritePlaceHolder(PlaceHolderId placeholder_id, u64 offset, InBuffer data) override; virtual Result Register(PlaceHolderId placeholder_id, ContentId content_id) override; virtual Result Delete(ContentId content_id) override; virtual Result Has(Out out, ContentId content_id) override; virtual Result GetPath(OutPointerWithServerSize out, ContentId content_id) override; virtual Result GetPlaceHolderPath(OutPointerWithServerSize out, PlaceHolderId placeholder_id) override; virtual Result CleanupAllPlaceHolder() override; virtual Result ListPlaceHolder(Out out_count, OutBuffer out_buf) override; virtual Result GetContentCount(Out out_count) override; virtual Result ListContentId(Out out_count, OutBuffer out_buf, u32 start_offset) override; virtual Result GetSizeFromContentId(Out out_size, ContentId content_id) override; virtual Result DisableForcibly() override; virtual Result RevertToPlaceHolder(PlaceHolderId placeholder_id, ContentId old_content_id, ContentId new_content_id) override; virtual Result SetPlaceHolderSize(PlaceHolderId placeholder_id, u64 size) override; virtual Result ReadContentIdFile(OutBuffer buf, ContentId content_id, u64 offset) override; virtual Result GetRightsIdFromPlaceHolderId(Out out_rights_id, Out out_key_generation, PlaceHolderId placeholder_id) override; virtual Result GetRightsIdFromContentId(Out out_rights_id, Out out_key_generation, ContentId content_id) override; virtual Result WriteContentForDebug(ContentId content_id, u64 offset, InBuffer data) override; virtual Result GetFreeSpaceSize(Out out_size) override; virtual Result GetTotalSpaceSize(Out out_size) override; virtual Result FlushPlaceHolder() override; virtual Result GetSizeFromPlaceHolderId(Out out, PlaceHolderId placeholder_id) override; virtual Result RepairInvalidFileAttribute() override; virtual Result GetRightsIdFromPlaceHolderIdWithCache(Out out_rights_id, Out out_key_generation, PlaceHolderId placeholder_id, ContentId cache_content_id) override; public: DEFINE_SERVICE_DISPATCH_TABLE { MAKE_SERVICE_COMMAND_META(ReadOnlyContentStorageInterface, GeneratePlaceHolderId), MAKE_SERVICE_COMMAND_META(ReadOnlyContentStorageInterface, CreatePlaceHolder), MAKE_SERVICE_COMMAND_META(ReadOnlyContentStorageInterface, DeletePlaceHolder), MAKE_SERVICE_COMMAND_META(ReadOnlyContentStorageInterface, HasPlaceHolder), MAKE_SERVICE_COMMAND_META(ReadOnlyContentStorageInterface, WritePlaceHolder), MAKE_SERVICE_COMMAND_META(ReadOnlyContentStorageInterface, Register), MAKE_SERVICE_COMMAND_META(ReadOnlyContentStorageInterface, Delete), MAKE_SERVICE_COMMAND_META(ReadOnlyContentStorageInterface, Has), MAKE_SERVICE_COMMAND_META(ReadOnlyContentStorageInterface, GetPath), MAKE_SERVICE_COMMAND_META(ReadOnlyContentStorageInterface, GetPlaceHolderPath), MAKE_SERVICE_COMMAND_META(ReadOnlyContentStorageInterface, CleanupAllPlaceHolder), MAKE_SERVICE_COMMAND_META(ReadOnlyContentStorageInterface, ListPlaceHolder), MAKE_SERVICE_COMMAND_META(ReadOnlyContentStorageInterface, GeneratePlaceHolderId), MAKE_SERVICE_COMMAND_META(ReadOnlyContentStorageInterface, GetContentCount), MAKE_SERVICE_COMMAND_META(ReadOnlyContentStorageInterface, ListContentId), MAKE_SERVICE_COMMAND_META(ReadOnlyContentStorageInterface, GetSizeFromContentId), MAKE_SERVICE_COMMAND_META(ReadOnlyContentStorageInterface, DisableForcibly), MAKE_SERVICE_COMMAND_META(ReadOnlyContentStorageInterface, RevertToPlaceHolder, FirmwareVersion_200), MAKE_SERVICE_COMMAND_META(ReadOnlyContentStorageInterface, SetPlaceHolderSize, FirmwareVersion_200), MAKE_SERVICE_COMMAND_META(ReadOnlyContentStorageInterface, ReadContentIdFile, FirmwareVersion_200), MAKE_SERVICE_COMMAND_META(ReadOnlyContentStorageInterface, GetRightsIdFromPlaceHolderId, FirmwareVersion_200), MAKE_SERVICE_COMMAND_META(ReadOnlyContentStorageInterface, GetRightsIdFromContentId, FirmwareVersion_200), MAKE_SERVICE_COMMAND_META(ReadOnlyContentStorageInterface, WriteContentForDebug, FirmwareVersion_200), MAKE_SERVICE_COMMAND_META(ReadOnlyContentStorageInterface, GetFreeSpaceSize, FirmwareVersion_200), MAKE_SERVICE_COMMAND_META(ReadOnlyContentStorageInterface, GetTotalSpaceSize, FirmwareVersion_200), MAKE_SERVICE_COMMAND_META(ReadOnlyContentStorageInterface, FlushPlaceHolder, FirmwareVersion_300), MAKE_SERVICE_COMMAND_META(ReadOnlyContentStorageInterface, GetSizeFromPlaceHolderId, FirmwareVersion_400), MAKE_SERVICE_COMMAND_META(ReadOnlyContentStorageInterface, RepairInvalidFileAttribute, FirmwareVersion_400), MAKE_SERVICE_COMMAND_META(ReadOnlyContentStorageInterface, GetRightsIdFromPlaceHolderIdWithCache, FirmwareVersion_800), }; }; }