mirror of
				https://github.com/Atmosphere-NX/Atmosphere-libs.git
				synced 2025-11-03 21:01:17 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			63 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			2.4 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/fs_common.hpp>
 | 
						|
#include <stratosphere/fs/fs_istorage.hpp>
 | 
						|
#include <stratosphere/fs/impl/fs_newable.hpp>
 | 
						|
 | 
						|
namespace ams::fs {
 | 
						|
 | 
						|
    #if defined(ATMOSPHERE_OS_HORIZON)
 | 
						|
    class RemoteStorage : public IStorage, public impl::Newable {
 | 
						|
        NON_COPYABLE(RemoteStorage);
 | 
						|
        NON_MOVEABLE(RemoteStorage);
 | 
						|
        private:
 | 
						|
            ::FsStorage m_base_storage;
 | 
						|
        public:
 | 
						|
            RemoteStorage(::FsStorage &s) : m_base_storage(s) { /* ... */}
 | 
						|
 | 
						|
            virtual ~RemoteStorage() { fsStorageClose(std::addressof(m_base_storage)); }
 | 
						|
        public:
 | 
						|
            virtual Result Read(s64 offset, void *buffer, size_t size) override {
 | 
						|
                R_RETURN(fsStorageRead(std::addressof(m_base_storage), offset, buffer, size));
 | 
						|
            };
 | 
						|
 | 
						|
            virtual Result Write(s64 offset, const void *buffer, size_t size) override {
 | 
						|
                R_RETURN(fsStorageWrite(std::addressof(m_base_storage), offset, buffer, size));
 | 
						|
            };
 | 
						|
 | 
						|
            virtual Result Flush() override {
 | 
						|
                R_RETURN(fsStorageFlush(std::addressof(m_base_storage)));
 | 
						|
            };
 | 
						|
 | 
						|
            virtual Result GetSize(s64 *out_size) override {
 | 
						|
                R_RETURN(fsStorageGetSize(std::addressof(m_base_storage), out_size));
 | 
						|
            };
 | 
						|
 | 
						|
            virtual Result SetSize(s64 size) override {
 | 
						|
                R_RETURN(fsStorageSetSize(std::addressof(m_base_storage), size));
 | 
						|
            };
 | 
						|
 | 
						|
            virtual Result OperateRange(void *dst, size_t dst_size, OperationId op_id, s64 offset, s64 size, const void *src, size_t src_size) override {
 | 
						|
                /* TODO: How to deal with this? */
 | 
						|
                AMS_UNUSED(dst, dst_size, op_id, offset, size, src, src_size);
 | 
						|
                R_THROW(fs::ResultUnsupportedOperation());
 | 
						|
            };
 | 
						|
    };
 | 
						|
    #endif
 | 
						|
 | 
						|
}
 |