mirror of
https://github.com/Atmosphere-NX/Atmosphere-libs.git
synced 2025-06-21 11:02:45 +02:00
88 lines
3.5 KiB
C++
88 lines
3.5 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 <stratosphere/fs/impl/fs_newable.hpp>
|
|
#include <stratosphere/fs/fs_istorage.hpp>
|
|
#include <stratosphere/fs/fs_query_range.hpp>
|
|
|
|
namespace ams::fs {
|
|
|
|
class MemoryStorage : public ::ams::fs::IStorage, public ::ams::fs::impl::Newable {
|
|
private:
|
|
u8 * const m_buf;
|
|
const s64 m_size;
|
|
public:
|
|
MemoryStorage(void *b, s64 sz) : m_buf(static_cast<u8 *>(b)), m_size(sz) { /* .. */ }
|
|
public:
|
|
virtual Result Read(s64 offset, void *buffer, size_t size) override {
|
|
/* Succeed immediately on zero-sized read. */
|
|
R_SUCCEED_IF(size == 0);
|
|
|
|
/* Validate arguments. */
|
|
R_UNLESS(buffer != nullptr, fs::ResultNullptrArgument());
|
|
R_UNLESS(IStorage::CheckAccessRange(offset, size, m_size), fs::ResultOutOfRange());
|
|
|
|
/* Copy from memory. */
|
|
std::memcpy(buffer, m_buf + offset, size);
|
|
return ResultSuccess();
|
|
}
|
|
|
|
virtual Result Write(s64 offset, const void *buffer, size_t size) override {
|
|
/* Succeed immediately on zero-sized write. */
|
|
R_SUCCEED_IF(size == 0);
|
|
|
|
/* Validate arguments. */
|
|
R_UNLESS(buffer != nullptr, fs::ResultNullptrArgument());
|
|
R_UNLESS(IStorage::CheckAccessRange(offset, size, m_size), fs::ResultOutOfRange());
|
|
|
|
/* Copy to memory. */
|
|
std::memcpy(m_buf + offset, buffer, size);
|
|
return ResultSuccess();
|
|
}
|
|
|
|
virtual Result Flush() override {
|
|
return ResultSuccess();
|
|
}
|
|
|
|
virtual Result GetSize(s64 *out) override {
|
|
*out = m_size;
|
|
return ResultSuccess();
|
|
}
|
|
|
|
virtual Result SetSize(s64 size) override {
|
|
AMS_UNUSED(size);
|
|
return fs::ResultUnsupportedOperationInMemoryStorageA();
|
|
}
|
|
|
|
virtual Result OperateRange(void *dst, size_t dst_size, OperationId op_id, s64 offset, s64 size, const void *src, size_t src_size) override {
|
|
AMS_UNUSED(offset, size, src, src_size);
|
|
|
|
switch (op_id) {
|
|
case OperationId::Invalidate:
|
|
return ResultSuccess();
|
|
case OperationId::QueryRange:
|
|
R_UNLESS(dst != nullptr, fs::ResultNullptrArgument());
|
|
R_UNLESS(dst_size == sizeof(QueryRangeInfo), fs::ResultInvalidSize());
|
|
reinterpret_cast<QueryRangeInfo *>(dst)->Clear();
|
|
return ResultSuccess();
|
|
default:
|
|
return fs::ResultUnsupportedOperationInMemoryStorageB();
|
|
}
|
|
}
|
|
};
|
|
|
|
}
|