#pragma once #include #include #include #include namespace Kernel { class VirtualFileSystem : public FileSystem { public: static void initialize(BAN::StringView); static VirtualFileSystem& get(); virtual BAN::RefPtr root_inode() override { return m_root_fs->root_inode(); } // FIXME: virtual dev_t dev() const override { return 0; } BAN::ErrorOr mount(const Credentials&, BAN::StringView, BAN::StringView); BAN::ErrorOr mount(const Credentials&, BAN::RefPtr, BAN::StringView); struct File { BAN::RefPtr inode; BAN::String canonical_path; }; BAN::ErrorOr file_from_relative_path(const File& parent, const Credentials&, BAN::StringView, int); BAN::ErrorOr file_from_absolute_path(const Credentials& credentials, BAN::StringView path, int flags) { return file_from_relative_path({ .inode = root_inode(), .canonical_path = {} }, credentials, path, flags); } private: VirtualFileSystem() = default; struct MountPoint { BAN::RefPtr target; File host; }; MountPoint* mount_from_host_inode(BAN::RefPtr); MountPoint* mount_from_root_inode(BAN::RefPtr); private: Mutex m_mutex; BAN::RefPtr m_root_fs; BAN::Vector m_mount_points; friend class BAN::RefPtr; }; }