mirror of
https://github.com/Atmosphere-NX/Atmosphere-libs.git
synced 2025-06-26 04:52:47 +02:00
41 lines
1.5 KiB
C++
41 lines
1.5 KiB
C++
/*
|
|
* Copyright (c) 2018-2019 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 "fssystem_path_resolution_filesystem.hpp"
|
|
|
|
namespace ams::fssystem {
|
|
|
|
class SubDirectoryFileSystem : public IPathResolutionFileSystem<SubDirectoryFileSystem> {
|
|
NON_COPYABLE(SubDirectoryFileSystem);
|
|
private:
|
|
using PathResolutionFileSystem = IPathResolutionFileSystem<SubDirectoryFileSystem>;
|
|
private:
|
|
char *base_path;
|
|
size_t base_path_len;
|
|
bool unc_preserved;
|
|
public:
|
|
SubDirectoryFileSystem(std::shared_ptr<fs::fsa::IFileSystem> fs, const char *bp);
|
|
SubDirectoryFileSystem(std::shared_ptr<fs::fsa::IFileSystem> fs, const char *bp, bool unc);
|
|
|
|
virtual ~SubDirectoryFileSystem();
|
|
private:
|
|
Result Initialize(const char *bp);
|
|
public:
|
|
Result ResolveFullPath(char *out, size_t out_size, const char *relative_path);
|
|
};
|
|
|
|
}
|