blob: a2c501fc4cd88d393650d16468bb92cd2bb69678 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#include "kernel/filesystem/mount.hpp"
#include "kapi/system.hpp"
#include "kernel/filesystem/filesystem.hpp"
#include <kstd/memory>
#include <string_view>
namespace filesystem
{
mount::mount(std::string_view const & path, kstd::shared_ptr<filesystem> const & fs)
: m_path(path)
, m_filesystem(fs)
{
if (!m_filesystem)
{
kapi::system::panic("[FILESYSTEM] mount initialized with null filesystem.");
}
}
auto mount::path() const -> std::string_view
{
return m_path;
}
auto mount::get_filesystem() const -> kstd::shared_ptr<filesystem> const &
{
return m_filesystem;
}
} // namespace filesystem
|